﻿@charset "utf-8";

/* ****************************************************************************************************
   * 全体
**************************************************************************************************** */

@font-face {
  font-family: 'NotoSansCJKjp';
  font-weight: 300;
  src: url('/resource/_font/NotoSansCJKjp-Light.woff') format('woff'),
       url('/resource/_font/NotoSansCJKjp-Light.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-weight: 600;
  src: url('/resource/_font/NotoSansCJKjp-Medium.woff') format('woff'),
       url('/resource/_font/NotoSansCJKjp-Medium.ttf') format('opentype');
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-weight: 900;
  src: url('/resource/_font/NotoSansCJKjp-Bold.otf') format('opentype');
}

html {
  font-size: 10px;
}

body {
  color: #333;
  font: 1.4rem/1.78 'NotoSansCJKjp', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

a {
  color: #047141;
}

.body {
  max-width: 1020px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.column ~ .column {
  margin-top: 4rem;
}

.js-tel a {
  color: inherit;
  text-decoration: none;
}

@media (min-width:736px) {
  [sp] {
    display: none !important;
  }
}

@media (max-width:736px) {
  html {
    font-size: 9px;
  }
  [pc] {
    display: none !important;
  }
  .body {
    width: 100%;
    padding-left: 3.125%;
    padding-right: 3.125%;
  }
}

@media (max-width:320px) {
  html { font-size:8.5px }
}

/* ****************************************************************************************************
   * header
**************************************************************************************************** */

#header {
  position: relative;
  z-index: 9999;
  background: url(/resource/images/common/bg-1.jpg);
}

#header .header {
  display: flex;
  justify-content: space-between;
}

#header .logo {
  padding-top: 15px;
}

#header .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

#header .nav {
  font-size: 0;
}

#header .nav ul.dropdown > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

#header .nav ul.dropdown ul {
  position: absolute;
  left: 1px;
  z-index: 1;
  min-width: 100%;
  font-size: 1.4rem;
  white-space: nowrap;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}

#header .nav ul.dropdown ul ul {
  left: 99%;
  margin-top: -2.8em;
}

#header .nav ul.dropdown ul li {
  background: url(/resource/images/common/bg-2.jpg);
}

#header .nav ul.dropdown ul li a {
  display: block;
  text-decoration: none;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  margin-top: -1px;
}

#header .nav ul.dropdown ul li:hover {
  background: url(/resource/images/common/bg-3.jpg);
}

@media (max-width:736px) {
  body {
    margin-top: 45px;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 45px;
    transition: 0.2s left;
  }
  .nav-active #header {
    left: -290px;
  }
  #header .logo {
    width: auto;
    padding-top: 5px;
  }
  #header .logo img {
    height: 35px;
  }
  #header .nav ul.dropdown li {
    display: block !important;
    border-right: 0 !important;
    border-bottom: 1px solid #e4e4e4;
  }
  #header .nav ul.dropdown li a {
    display: block;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: left;
    padding: 0.75em;
  }
  #header .nav ul.dropdown li:hover {
    background: url(/resource/images/common/bg-3.jpg);
  }
  #header .nav ul.dropdown li a img {
    display: none;
  }
  #header .nav ul.dropdown ul {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    white-space: normal;
  }
  #header .nav ul.dropdown ul li {
    position: relative;
    border: none;
    border-top: 1px solid #e4e4e4;
  }
  #header .nav ul.dropdown ul li a {
    padding: 0.75em;
    padding-left: 2em;
    border: 0;
  }
  #header .nav ul.dropdown ul ul li a {
    padding-left: 3em;
  }
  #header .nav ul.dropdown ul ul {
    display: block !important;
    margin-top: 0;
  }
  #header .nav ul.dropdown li.parent > a {
    width: 50%;
  }
  #header .nav ul.dropdown li.parent > ul > li {
    background: url(/resource/images/common/bg-3.jpg);
  }
  #header .nav ul.dropdown li.parent:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    color: #008734;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    position: absolute;
    top: 1.5rem;
    right: 1rem;
  }
  #header .nav ul.dropdown li.parent.active:after {
    top: 2rem;
    transform: rotate(-135deg);
  }
  .layout-lower #visual {
    height: 150px;
  }
  
  #wrapper {
    position: relative;
    left: 0;
    transition: 0.2s left;
  }
  #wrapper.nav-active {
    left: -290px;
  }
  #sp-nav {
    position: fixed;
    top: 0;
    right: -290px;
    bottom: 0;
    z-index: 9999;
    width: 290px;
    overflow-y: auto;
    transition: 0.2s right;
    background: url(/resource/images/common/bg-2.jpg);
  }
  #wrapper.nav-active {
    right: 0;
  }
  .nav-active #header .nav {
    right: 0;
  }
  
  /* icon */
  .icon-menu-trigger {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 0;
    padding-top: 45px;
    background: #008734;
    -webkit-appearance: none;
    border: none;
  }
  .icon-menu-trigger:before,
  .icon-menu-trigger:after,
  .icon-menu-trigger span:before {
    content: '';
    position: absolute;
    left: 20%;
    display: block;
    width: 60%;
    height: 0;
    padding-top: 2px;
    background: #fff;
  }
  .icon-menu-trigger:before {
    top: 29%;
    transition: 0.2s top, 0.2s transform;
  }
  .icon-menu-trigger:after {
    top: 47%;
    transition: 0.2s opacity;
  }
  .icon-menu-trigger span:before {
    top: 66%;
    transition: 0.2s top, 0.2s transform;
  }
  
  /* active */
  .icon-menu-trigger.nav-active:before {
    top: 50%;
    transform: rotate(135deg);
  }
  .icon-menu-trigger.nav-active:after {
    opacity: 0;
  }
  .icon-menu-trigger.nav-active span:before {
    top: 50%;
    transform: rotate(45deg);
  }
  
  #header .footer {
    padding: 0;
  }
}

.layout-lower #visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-shadow: -1px -1px 6px rgba(50,50,50,0.7),1px 1px 6px rgba(50,50,50,0.7),-1px -1px 6px rgba(50,50,50,0.7),-1px 1px 6px rgba(50,50,50,0.7);
  line-height: 1;
  height: 250px;
  background: url(/resource/images/common/visual-lower.jpg) center center /cover no-repeat;
}

/* ****************************************************************************************************
   * breadcrumb
**************************************************************************************************** */

#breadcrumb {
  padding: 1em 0;
  background: url(/resource/images/common/bg-3.jpg);
}

#breadcrumb .body {
  max-width: 1220px;
}

#breadcrumb ol {
  letter-spacing: -0.4em;
}

#breadcrumb ol li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

#breadcrumb ol li a {
  display: inline-block;
}

#breadcrumb ol li a[href] {
  color: #047141;
}

#breadcrumb ol li:first-child a {
  padding-left: 1.8em;
  background: url(/resource/images/common/breadcrumb-home.png) 0 center no-repeat;
}

#breadcrumb ol li ~ li:before {
  content: url(/resource/images/common/breadcrumb-arrow.png);
  display: inline-block;
  margin: 0 1em;
}

#breadcrumb + .section {
  padding-top: 3rem;
}

/* ****************************************************************************************************
   * main
**************************************************************************************************** */

img[class*="wp-image"] {
  height: auto !important;
}

#main {
  font-size: 1.6rem;
  background: url(/resource/images/common/bg-2.jpg);
}

#main > .section:first-child {
  padding-top: 3rem;
}

#main > .section:nth-child(2n+1) {
  background: url(/resource/images/common/bg-3.jpg);
}

#main .topics .list {
  padding-top: 8px;
  background: url(/resource/images/index/border.png) 0 0 no-repeat;
}

#main .topics .list a.item {
  position: relative;
  width: 100%;
  display: table;
  font-size: 1.6rem;
  color: inherit;
  text-decoration: none;
  padding: 0.5em;
  border-bottom: 1px solid #c0baad;
}

#main .topics .list a.item:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.5em;
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: #c0baad;
  margin-top: -6px;
}

#main .topics .list a.item > * {
  display: table-cell;
  vertical-align: top;
}

#main .topics .list a.item .time {
  width: 8em;
  color: #037341;
}

@media (max-width:736px) {
  #main .topics .list a.item .time {
    width: 6em;
  }
}

#main .topics .list a.item:nth-child(2n+2) {
  background: rgba(255,246,222,0.5);
}

#main .topics .list a.item:hover {
  background: url(/resource/images/common/bg-3.jpg);
}

#main .note {
  padding: 3.2% 0 1.5%;
  background: url(/resource/images/common/note-bg-top.png) center top /contain no-repeat,
              url(/resource/images/common/note-bg-bottom.png) center bottom /contain no-repeat;
}

#main .note .inner {
  align-items: center;
  padding: 2em 3em;
  background: url(/resource/images/common/note-bg-middle.png) center 0 /contain repeat-y;
}

#main .facility .title {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5em;
}

#main .facility .item {
  color: inherit;
}

#main .facility .item:not(:empty) {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 1em;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(36,10,0,0.15);
}

#main .facility .item:not(:empty):after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: block;
  width: 0;
  border: 6px solid transparent;
  border-right-color: #92bd40;
  border-bottom-color: #92bd40;
}

#main .facility .item .photo img {
  width: 100%;
  height: auto;
}

#main .facility .item dt {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  color: #92bd40;
  text-align: center;
  padding: 1em 0;
}

#main .facility .item dd {
  min-height: 1.8em;
  font-size: 1.4rem;
}

#main .facility .item .shortstay {
  display: table;
  color: #df6207;
  line-height: 1;
  padding: 3px;
  border: 1px solid;
  margin: 1.5em auto 0.5em;
}

@media (max-width:736px) {
  #main .facility .layout-flex-3 .item {
    width: 48%;
    margin-bottom: 1em;
  }
  #main .facility .title img {
    width: 180%;
    max-width: 180%;
  }
  #main .note .inner {
    padding: 1em;
  }
  #main .facility .layout-flex-3 {
    display: block;
  }
  #main .facility .layout-flex-3 .item {
    width: 100%;
  }
}

#main .blog .list {
  font-size: 0;
}

#main .blog .list .item {
  position: relative;
  width: 30%;
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  color: inherit;
  text-decoration: none;
  padding: 1em;
  background: #fff;
  box-shadow: 4px 4px 0 rgba(36,10,0,0.15);
  margin-left: 5%;
}

#main .blog .list .item:after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: block;
  width: 0;
  border: 6px solid transparent;
  border-right-color: #92bd40;
  border-bottom-color: #92bd40;
}

#main .blog .list .item .photo img {
  width: 100%;
  height: auto;
}

#main .blog .list .item dt {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  color: #92bd40;
  padding: 1em 0;
}

#main .blog .list .item .date {
  text-align: right;
  margin-bottom: 0.25em;
}

#main .blog .list .item .category {
  display: table;
  line-height: 1.2;
  color: #fff;
  padding: 3px;
  background: #95b655;
  margin-left: auto;
  margin-bottom: 1em;
}

#main .blog .list .item .date:before {
  content: url(/resource/images/common/icon-time.png);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

#main .blog .list .item:nth-child(3n+1) {
  margin-left: 0;
}

@media (max-width:736px) {
  #main .blog .list .item {
    display: table;
    width: 100%;
    margin-left: 0;
    margin-bottom: 4%;
  }
  #main .blog .list .item .photo,
  #main .blog .list .item .content {
    display: table-cell;
    vertical-align: top;
  }
  #main .blog .list .item .photo {
    width: 45%;
    padding-right: 10px;
  }
  #main .blog .list .item dt {
    padding: 0;
  }
}

/* ****************************************************************************************************
   * footer
**************************************************************************************************** */

#footer {
  padding-top: 1.5em;
  background: url(/resource/images/common/bg-1.jpg);
}

#footer .nav ul {
  text-align: center;
}

#footer .nav ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 1em;
}

#footer .nav ul li a {
  display: block;
  font-weight: bold;
  color: #fff;
  padding-left: 1.5em;
  background: url(/resource/images/common/listmark-1.png) 0 center no-repeat;
}

#footer .footer {
  margin-top: 2em;
  margin-bottom: 2em;
}

#footer .footer dl {
  color: #3f2b00;
  text-align: center;
}

#footer .footer dl dt {
  width: 50%;
  max-width: 210px;
  padding-bottom: 0.5em;
  margin: 0 auto;
}

@media (max-width:736px) {
  [for=sitemap-trigger] {
    position: relative;
    display: block;
    text-align: center;
    padding: 1em;
    border-bottom: 1px solid #444;
  }
  [for=sitemap-trigger]:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 3px solid;
    border-bottom: 3px solid;
    margin-top: -6px;
    transform: rotate(45deg);
  }
  [for=sitemap-trigger]:hover {
    background: #444;
  }
  #sitemap-trigger + .nav {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s opacity;
  }
  #sitemap-trigger:checked + .nav {
    height: auto;
    visibility: visible;
    opacity: 1;
  }
  
  #footer .nav ul {
    display: table;
    text-align: left;
    margin-left: auto;
  }
  #footer .nav ul li {
    width: 34%;
    margin: 0;
  }
  #footer .nav ul li:nth-child(3n+3) {
    width: 30%;
  }
}

#footer .copyright {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding-bottom: 3em;
}

#pagetop {
  width: 20%;
  max-width: 96px;
  position: fixed;
  right: 3.125%;
  bottom: 3.125%;
  z-index: 9998;
  display: block;
  transition: 0.2s right;
}

#pagetop img {
  width: 100%;
}

.nav-active #pagetop {
  right: 300px;
}
