@charset "UTF-8";
/* CSS Document */
html,body{
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #FCF8F4;
  font-family: "TsukuGoPr5-R-Between2-Light";
  color:#687060;
  font-size:15px;
  position: relative;
  min-height: 100vh;
  scroll-behavior: smooth;
}
*{
  box-sizing:border-box;
}
section img{
  display:block;
  max-width:100%;
}

/************************************ヘッダー基本*/
header a,
footer a{
  text-decoration:none;
  color:inherit;
}
header ul,
footer ul,
ul.post_list{
  list-style-type:none;
  padding: 0;
  margin: 0;
}
#mobile_nav{
  display: none;
  padding:0;
}


/************************************PCナビゲーション*/
#pc_nav{
  width:100%;
  display:flex;
  padding: 30px 80px 20px 30px;/*予約ボタンの分*/
  position: relative;
  z-index: 98;
  align-items: flex-end;
}
#pc_nav nav{
  width:100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 4%;
  padding-bottom: 5px;
}
#reserve_btn{
  position:fixed;
  right:0;
  top:0;
  background: #3e6e4c;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 47px;
  padding: 10px;
  box-shadow: 1px 2px 5px;
}
#reserve_btn img{
  width: 20px;
  margin-left: 2px;
  opacity: 0.8;
}
#reserve_btn span{
  writing-mode: vertical-rl;
  color:white;
  margin: 11px 0;
  font-size: 14px;
  font-weight: 500;
}
#reserve_btn i{
  writing-mode: vertical-rl;
  font-style: normal;
  font-size: 0.8em;
  color: #BFBFBF;
}
#pc_nav .second_menu{
  display:flex;
  justify-content: flex-end;
  font-size: 12px;
  margin: 0 0 25px 0;
}
#pc_nav .second_menu li{
  margin-left: 2em;
  padding-top: 5px;
}
#pc_nav .second_menu li:before{
  content:"";
  display:inline-block;
  width:0.7em;
  height:0.7em;
  background: #aeaeae;
  transition:background .3s;
  margin: 0 4px 0 0;
}
#pc_nav .second_menu a:hover{
  color:#3e6e4c;
}
#pc_nav .second_menu li:hover:before{
  background: #3e6e4c;
  transition:background .3s;
}
#pc_nav .second_menu li:last-child{
  padding-top: 0;
}
#pc_nav .second_menu li:last-child span{
  font-family: 'FOT-筑紫ゴシック Pro B';
  font-size:1.3em;
  font-weight: 600;
}
#pc_nav .main_menu{
  display:flex;
  justify-content: space-between;
  font-size:15px;
  font-weight:bold;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 860px;
}
#pc_nav .main_menu>li{
  border-left:1px solid rgb(0 0 0 / 18%);
  transition:.3s;
  width: 100%;
}
#pc_nav .main_menu>li:hover{
  background:#5c836021;
  transition:.3s;
}
#pc_nav .main_menu>li:last-child{
  border-right:1px solid rgb(0 0 0 / 18%);  
}
#pc_nav .main_menu>li a,
#pc_nav .main_menu>li span{
  display:block;
  padding: 12px 0;
  width:100%;
  height:100%;
  text-align:center;
}
#pc_nav .main_menu>li span{
  cursor: pointer;
}
#pc_nav .main_menu ul{
  position:absolute;
  background: rgb(252 248 244 / 76%);
  padding: 10px 0 0;
  opacity:1;
}
#pc_nav .main_menu ul li{
  height:0;
  overflow:hidden;
  transition:.5s;
}
#pc_nav .main_menu ul li a{
  text-align:left;
  font-size: 14px;
  padding: 6px 10px;
}
#pc_nav .main_menu ul li a:before{
  content:"▶︎";
  display:inline-block;
  transform:scale(0.5);
  margin-right:0.1em;
  color:#cbcbcb;
}
#pc_nav .main_menu ul li:hover a:before{
  color:#376b4c;
}
#pc_nav .main_menu>li:hover ul li{
  height: 41px;
  transition:.5s;
  padding-left: 0;
}

/*幅による調整*/
@media (max-width: 900px) {
  #pc_nav .main_menu>li a,
  #pc_nav .main_menu>li span{
    font-size: 0.9em;
  }
  #pc_nav .second_menu{
    flex-wrap:wrap;
    margin: -4px 0 6px 0;
    max-width: 410px;
  }
  #pc_nav .second_menu li{
    margin-left: 2em;
    padding-top: 0;
    padding-bottom: 6px;
  }
}
@media (max-width: 820px) {
  #pc_nav{
    padding: 30px 70px 20px 20px;
  }
  #pc_nav>a img{
    width: 150px;
  }
}
@media (max-width: 720px) {
  #pc_nav{
    display:none;
  }
  #mobile_nav{
    display: block;
  }
}


/************************************モバイルナビゲーション＿通常時*/
#mobile_nav{
  width: 100%;
  height: 100vh;
  background:#3e6e4c;
  position:fixed;
  left: calc((100vw - 54px)* -1);
  transition: left .3s ease-in-out;
  z-index: 99;
}
#mobile_nav.open{
  left:0;
  transition: left .3s ease-in-out;
  z-index: 99;
}
.menu-trigger{
  display: block;
  width: 54px;
  height: 67px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 98;
}
.menu-trigger span {
  position: absolute;
  top: 21px;
  width: 1px;
  height: 23px;
  display: inline-block;
  transition: all .4s;
  background-color: #ababab;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {left: 19px;}
.menu-trigger span:nth-of-type(2) {left: 27px;}
.menu-trigger span:nth-of-type(3) {right: 18px;}

.open .menu-trigger span {
  height: 30px;
}
.open .menu-trigger span:nth-of-type(2) {
  height: 0;
}
.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translate(-1px,13px) rotate(-45deg);
  transform: translate(8px,-3px) rotate(-45deg);
}
.open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translate(-1px,-13px) rotate(45deg);
  transform: translate(-8px,-3px) rotate(45deg);
}
.menu-trigger p{
  margin: 50px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 11px;
  text-align: center;
}
#mobile_nav.open #mobile_nav_close{
  opacity:0;
  transition: opacity .4s;
}
#mobile_nav_close{
  width: 54px;
  height:100%;
  position:absolute;
  top:0;
  right:0;
  padding: 87px 0 0 0;
  opacity:10;
  transition: opacity .4s;
  z-index: 97;
}
#mobile_nav_close>a{
  position:relative;
  display:block;
  width:100%;
  height:auto;
}
#mobile_nav_close>a:after{
  content:"";
  display:block;
  width: 40px;
  margin:0 auto;
  height:1PX;
  border-top:1px solid rgb(0 0 0 / 0.18);
  border-bottom:1px solid rgb(255 255 255 / 0.28);
  position:absolute;
  bottom:0;
  left: 8px;
}
#mobile_nav_close img{
  display: block;
  margin:0 auto;
}
.mnc_logo{
  padding: 10px 0 30px 1px;
}
.mnc_reserve,
.mnc_contact{
  padding: 14px 0;
}
.mnc_reserve span,
.mnc_contact span{
  writing-mode: vertical-rl;
  color:white;
  margin: 0 auto;
  display: block;
  font-size:13px;
}
.mnc_reserve i,
.mnc_contact i{
  writing-mode: vertical-rl;
  margin: 10px auto 0;
  display: block;
  font-style: normal;
  font-size: 0.7em;
  color: #BFBFBF;
}
.mnc_access,
.mnc_tel{
  color: #BFBFBF;
  font-size:10px;
  text-align:center;
  padding: 14px 0;
}
.mnc_access span,
.mnc_tel span{
  font-feature-settings: "palt";
}
.mnc_access img,
.mnc_tel img{
  filter: grayscale(1) invert(0) brightness(100);
}
.mnc_access img{
  width: 20px;
}
.mnc_fb,
.mnc_tw{
  position: absolute !important;
  bottom:20px;
}
.mnc_fb:after,
.mnc_tw:after{
  display:none !important;
}
.mnc_fb img,
.mnc_tw img{
  width:27px;
}
.mnc_tw{
  bottom:80px;
}

/*高さごとの調整*/
@media (max-height: 700px) {
  .mnc_tw{
    display: none !important;
  }
}
@media (max-height: 635px) {
  .mnc_fb{
    display: none !important;
  }
}


/************************************モバイルナビゲーション＿オープン*/
#mobile_nav_open{
  position:relative;
  left: -54px;
  padding: 10%;
  height: 100%;
  overflow: scroll;
}
.open #mobile_nav_open{
  left:0;
}
#mobile_nav_open>a{
  display:block;
  margin: 0 auto 10%;
  width: 130px;
}
#mobile_nav_open>a img{
  display:block;
  width: 130px;
}
#mobile_nav_open .main_menu{
  color:white;
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin: 0 0 30px 0;
}
#mobile_nav_open .main_menu li{
  width: 45%;
  text-align:center;
}
#mobile_nav_open .main_menu li:before{
  content:"";
  display:block;
  border-top:1px solid rgb(0 0 0 / 0.18);
  border-bottom:1px solid rgb(255 255 255 / 0.28);
}
#mobile_nav_open .main_menu li:nth-last-of-type(2):after,
#mobile_nav_open .main_menu li:last-child:after{
  content:"";
  display:block;
  border-top:1px solid rgb(0 0 0 / 0.18);
  border-bottom:1px solid rgb(255 255 255 / 0.28);
}
#mobile_nav_open .main_menu li a{
  display:block;
  width: 100%;
  height:100%;
  padding:8%;
}
#mobile_nav_open .second_menu{
  color: #e0e0e0;
  display:flex;
  flex-wrap:wrap;
  font-size: 13px;
  justify-content: space-around;
  margin: 0 0 30px;
}
#mobile_nav_open .second_menu li{
  margin: 0 5px 1em;
}
#mobile_nav_open .second_menu li:before{
  content:"";
  display:inline-block;
  width:0.7em;
  height:0.7em;
  background: #aeaeae;
  transition:background .3s;
  margin: 0 4px 0 0;
}
#mobile_menu_btn {
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-bottom: 51px;
}
#mobile_menu_btn a{
  background:white;
  padding: 9px;
  text-align:center;
  color:#3e6e4c;
  font-weight:600;
  width:40%;
  height: 55px;
  font-size: 12px;
  border-radius: 2px;
}
#mobile_menu_btn img{
  display:block;
  margin: 0 auto;
}
#mobile_menu_btn .btn_reserve{
  width:100%;
  margin-bottom: 20px;
  font-size:14px;
}
#mobile_menu_btn .btn_reserve img{
  display:inline-block;
  filter: invert(91%) sepia(100%) saturate(9829%) hue-rotate(104deg) brightness(100%) contrast(30%);
  margin: 6px 10px -6px 0;
}
#mobile_menu_btn .btn_inq img{
  margin: 3px auto 2px;
}
#mobile_sns_btn{
  display:flex;
  justify-content: space-around;
  width: 90px;
  margin: 0 auto 30px;
  transform: scale(1.3);
}
#mobile_nav_open address{
  color:white;
  font-style:normal;
  bottom: 20px;
  width:100%;
  left: 0;
}
#mobile_nav_open address h5{
  font-weight:400;
  text-align:center;
  margin: 0;
}
#mobile_nav_open address a{
  font-weight:bold;
  text-align:center;
  margin: 0 auto 0;
  display: block;
  width: auto;
  font-size:16px;
}
#mobile_nav_open address a span{
  font-size:1.5em;
  margin-left:0.3em;
}

/*高さごとの調整*/
@media (max-height: 840px) {
  #mobile_nav_open .second_menu{
    margin: 0 0 10px;
  }
  #mobile_menu_btn{
    margin-bottom:15px;
  }
  #mobile_menu_btn a{
    width:32% !important;
    font-size:11px !important;;
  }
  #mobile_menu_btn a.btn_reserve img{
    display:block;
    margin:0 auto;
    height:20px;
  }
  #mobile_sns_btn{
    margin-bottom:10px;
  }
}


/************************************アイキャッチ*/
#head_eyecatch{
  width:100%;
  height: auto;
  aspect-ratio: 100 / 42;
  position:relative;
}
#head_eyecatch:before,
#head_eyecatch:after{
  content:"";
  display: block;
  background-image: url("img/nami.svg");
  width: 100%;
  height: 46px;
  background-size: 1000px;
  position: absolute;
}
#head_eyecatch:before{
  top:0;
}
#head_eyecatch:after{
  bottom:0;
  rotate: 180deg;
}
#head_eyecatch img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/*ページタイトル*/
.page_title{
  background:#687060;
  color:white;
  writing-mode: vertical-rl;
  padding: 21px 4px;
  font-size:28px;
  font-family: "FOT-キアロ Std B";
  font-weight: normal;
  position: absolute;
  bottom: 0;
  left: 29px;
  margin: 0;
  z-index: 95;
}
.page_title span{
  display:none;
}
.home .page_title{
  display:none;
}

/*アイキャッチなし時*/
#head_eyecatch.no-eyecatch{
  width:100%;
  height: auto;
  aspect-ratio:unset;
  background:none;
  position:relative;
  font-size:28px;
}
#head_eyecatch.no-eyecatch:after{
  display:none;  
}
#head_eyecatch.no-eyecatch:before{
  background:none;
  border-top:2px solid #3e6e4c;
  width: calc(100% - 40px);
  display:block;
  position: relative;
  top: 144px;
  margin: 0 auto;
  max-width: 1060px;
}
#head_eyecatch.no-eyecatch img{
  display:none;
}
.no-eyecatch .page_title{
  display: block;
  background-color: #FCF8F4;
  color:#3e6e4c;
  writing-mode: unset;
  padding: 0;
  font-size: 24px;
  font-family: 'FOT-筑紫ゴシック Pro B';
  font-weight: bold;
  position: relative;
  margin: 50px auto 50px;
  width: 11em;
  text-align:center;
  left: unset;
}
.no-eyecatch .page_title span{
  display:block;
  font-size:14px;
}

/*アイキャッチ_モバイル*/
@media (max-width: 720px) {
  #head_eyecatch,
  #head_eyecatch.no-eyecatch{
    height: auto;
    aspect-ratio: 100 / 70;
    width:calc(100% - 54px);
    margin-left:54px;
    z-index: 90;
    overflow: hidden;
  }
  #head_eyecatch:before{
    display:none;
  }
  #head_eyecatch:before,
  #head_eyecatch:after{
    width: calc(100vw - 50px);
  }
  #head_eyecatch.no-eyecatch{
    aspect-ratio: unset;
  }
  .page_title{
    left: unset;
    right: 20px;
    font-size: 18px;
  }
  .no-eyecatch .page_title{
    right: unset;
    font-size: 18px;
    margin: 0px auto 30px;
  }
  #head_eyecatch.no-eyecatch:before{
    top: 76px;
  }
}


/************************************フッター*/
footer{
  background:white;
  display:flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  justify-content: space-between;
  padding: 30px;
  align-items: flex-start;
}
footer:before {
  display:block;
  content:"";
  width:100%;
  height: 20px;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  position: absolute;
  top: -20px;
  left: 0;
}
#footer_left{
  padding: 0 20px 0;
}
#footer_center{
  flex-grow:1;
}
footer .main_menu{
  display:flex;
  flex-wrap: wrap;
  padding: 0 6%;
  margin-bottom: 16px;
  margin-top: -12px;
  min-height: 120px;
  gap: 4px;
  align-content: flex-start;
}
footer .main_menu li{
  width: auto;
  padding: 0;
  min-width: 7em;
  height: 39px;
}
footer .main_menu li a{
  text-align:left;
  font-size: 14px;
  padding: 6px 10px;
  width: 100%;
  height: 100%;
  display: block;
}
footer .main_menu li a:hover{
  background:#f7f7f7;
}
footer .main_menu li a:before{
  content:"▶︎";
  display:inline-block;
  transform:scale(0.5);
  margin-right:0.1em;
  color:#cbcbcb;
}
footer .main_menu li:hover,
footer .main_menu li:hover a:before{
  color:#376b4c;
}
#footer_sns_btn{
  padding: 0 6%;
  display:flex;
  gap: 28px;
  width: 151px;
  justify-content: flex-start;
  margin: 0 0 22px 8px;
}
#footer_sns_btn a{
  display:block;
  width:31px;
  height:31px;
  flex-shrink: 0;
}
#footer_sns_btn a svg{
  fill:#d5d5d5;
}
#footer_sns_btn a.btn_tw:hover svg{
  fill:#55acee;
}
#footer_sns_btn a.btn_fb:hover svg{
  fill:#1877f2;
}
footer .second_menu{
  display:flex;
  flex-wrap: wrap;
  padding: 0 6%;
  margin:0 0 0 8px;
  gap: 0 1em;
}
footer .second_menu li{
  font-size: 12px;
  position: relative;
  height: 29px;
}
footer .second_menu li a{
  display: block;
  width:100%;
  height:100%;
  padding: 5px 5px 5px 1em;
}
footer .second_menu li:before{
  content:"";
  display: block;
  width:0.7em;
  height:0.7em;
  background: #aeaeae;
  transition:background .3s;
  position: absolute;
  top: 13px;
}
footer .second_menu a:hover{
  color:#3e6e4c;
}
footer .second_menu li:hover:before{
  background: #3e6e4c;
  transition:background .3s;
}
#footer_right{
  width: 190px;
  flex-shrink: 0;
}
#footer_menu_btn{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
#footer_menu_btn a{
  background: #f7f7f7;
  padding: 9px;
  text-align:center;
  color: #3e6e4c;
  font-weight:600;
  width: 45%;
  height: 55px;
  font-size: 12px;
  border-radius: 2px;
  position:relative;
}
#footer_menu_btn img{
  display:block;
  margin: 0 auto;
}
#footer_menu_btn .btn_reserve{
  display: block;
  width:100%;
  margin-bottom: 20px;
  font-size:14px;
  background: #3e6e4c;
  color: white;
}
#footer_menu_btn .btn_reserve img{
  display:inline-block;
  margin: 6px 10px -6px 0;
}
#footer_menu_btn .btn_inq img{
  margin: 3px auto 2px;
}
#footer_menu_btn a:hover{
  top:1px;
  left:1px;
}
#footer_right address{
  font-style:normal;
  bottom: 20px;
  width:100%;
  left: 0;
}
#footer_right address h5{
  font-weight:400;
  text-align:center;
  margin: 0;
}
#footer_right address a{
  font-weight:bold;
  text-align:center;
  margin: 4px auto 0;
  display: block;
  width: auto;
  font-size: 14px;
  line-height: 19px;
}
#footer_right address a span{
  font-size:1.5em;
  margin-left:0.3em;
}
@media (max-width: 871px) {
  #footer_menu_btn{
    margin-bottom: 61px;
  }
}
@media (max-width: 812px) {
  #footer_menu_btn{
    margin-bottom: 106px;
  }
}
@media (max-width: 720px) {
  footer{
    width:calc(100% - 54px);
    margin-left:54px;
    flex-direction: column;
  }
  #footer_left{
    padding: 0 20px 0;
    margin: 0 auto 50px;
  }
  #footer_right{
    order: 2;
    width: 200px;
    margin:0 auto;
  }
  #footer_center{
    display:none;
  }
  #footer_menu_btn{
    margin-bottom: 40px;
  }
}


/************************************コンテンツ_メイン*/
#contents{
  padding-bottom: 334px;
}
.inner,
.wp-pagenavi,
.pager{
  width: 100%;
  max-width:1100px;
  margin: 0 auto;
  padding: 80px 20px;
  overflow:hidden;
}

.privacy-policy .inner,.privacy-policy #head_eyecatch.no-eyecatch:before,
.day-use .inner,.day-use #head_eyecatch.no-eyecatch:before,
.inquiry .inner,.inquiry #head_eyecatch.no-eyecatch:before,
.about .inner,.about #head_eyecatch.no-eyecatch:before,
.access .inner{
  max-width:700px;
}
.floor-guide .inner,.floor-guide #head_eyecatch.no-eyecatch:before,
.sightseeing .inner,
.plan .inner,
.room .inner,
.meal .inner{
  max-width:800px;
}
.single .inner,.single #head_eyecatch.no-eyecatch:before,.pager{
  max-width:900px;
}


section:nth-of-type(2n){
  background:white;
}
.abreast{
  display:flex;
  justify-content: space-between;
}
section a{
  color:inherit;
}
section a:hover{
  color:#3e6e4c;
}
section h3{
  color:#3e6e4c;
  text-align:center;
  font-size:24px;
  margin: 0 auto 80px;
  font-family: "FOT-筑紫ゴシック Pro B";
}
.min{
  font-family: "FOT-筑紫B明朝 Pr6 M";
}
h3.kumo{
  background:url("img/i_kumo.svg") no-repeat;
  text-align:left;
  padding: 15px 0 14px 27px;
  font-size: 20px;
  margin: 0 auto 20px;
  background-size: contain;
}
.btn{
  display:inline-block;
  background:#3e6e4c;
  width:auto;
  color:white;
  text-decoration:none;
  padding: 0.8em 1.3em;
  position:relative;
  border-radius:2px;
  font-size: 0.9em;
}
.btn:hover{
  color:white;
  top:1px;
  left:1px;
  opacity:0.9;
}
.btn_link:before{
  content:"";
  display:inline-block;
  width:1.3em;
  height:1.3em;
  background:url(img/i_elink.svg) no-repeat;
  margin: 0 0.5em -0.35em 0;
}
#contents p{
  line-height:1.8em;
}

ul.post_list{
  display:flex;
  gap: 71px 5%;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.post_list li{
  width: 30%;
}
.post_list li .post_img_wrap{
  width:100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 6px;
}
.post_list li img{
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: .3s;
}
.post_list li h4{
  margin:0;
  line-height:1.6em;
}
.post_list li a{
  display:block;
  text-decoration:none;
  color:inherit;
  width: 100%;
  height: auto;
}
.post_list li a:hover h4{
  text-decoration:underline;
  color:#3e6e4c;
  width: 100%;
  height: 100%;
}
.post_list li a:hover img{
  transition: .3s;
  transform: scale(1.1);
}
.post_list li i,
.post_date_outer i{
  display:inline-block;
  background:#3e6e4c;
  color:white;
  font-style:normal;
  font-weight:bold;
  font-size:10px;
  padding: 3px 4px;
  margin-right: 6px;
  top: -1px;
  position: relative;
  line-height: 1em;
}
.post_list li time{
  font-size:13px;
  display:inline-block;
}
.post_list+a{
  display: block;
  width: 11em;
  text-align: center;
  margin: 50px auto;
}
span.kg{
  display:inline-block;
}

@media (max-width: 720px) {
  #contents{
    padding: 0 0 607px 54px;
  }
  #contents .inner,.wp-pagenavi,.pager{
    width: 100%;
    padding: 50px 4%;
  }  
  .abreast{
    display:block;
  }
  .abreast>div{
    width:100% !important;
  }
  h3.kumo{
    text-align:left;
    padding: 15px 0 14px 27px;
    font-size: 17px;
    margin: 0 auto 20px;
  }
}
@media (max-width: 600px) {
  .post_list li{
    font-size:13px;
  }
  .post_list li time{
    font-size:11px;
  }
  .post_list li i{
    font-size:8px;
  }
}
@media (max-width: 520px) {
  .post_list li{
    width: 47%;
  }
}


/************************************コンテンツ_トップページ*/
.home .abreast{
  gap: 7%;
  padding: 80px 7%;
}
.home .abreast img{
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home .abreast .box_left,
.home .abreast .box_right{
  display:flex;
  width:45%;
  height:auto;
  flex-direction: column;
  justify-content: space-between;
}
.home .abreast .box_right{
  width:55%;
}
.home section:nth-of-type(2) .abreast .box_right{
  order:1;
}
.home section:nth-of-type(2) .abreast .box_left{
  order:2;
}
.home .abreast h3{
  text-align: left;
  font-weight:normal;
  font-size:25px;
  margin: 0 0 0.7em;
  line-height: 1.5;
}
.home .abreast a{
  display:block;
  font-weight: bolder;
  text-decoration:none;
  border-bottom:1px solid #3e6e4c;
  font-size: 15px;
  text-align: leright;
  position:relative;
  padding: 6px 28px 1px 7px;
  margin: 20px 0 38px;
  width: 200px;
  transition:  .25s ease-out;
}
.home .abreast a:after{
  display:block;
  content:"";
  width: 20px;
  height: 20px;
  border-bottom:1px solid #3e6e4c;
  position:absolute;
  top: 7px;
  right: -11px;
  transform: rotate(45deg);
}
.home .abreast a span{
  font-size:0.7em;
  margin-right:1em;
}
.home .abreast a:hover{
  width: 205px;
  transition: .25s ease-out;
}
.home section:last-child h3{
  text-align:center;
  font-size:24px;
  margin: 0 auto 80px;
}
@media (max-width: 720px) {
  .home .abreast a{
    left: calc(50% - 104px);
  }
  .home .abreast>div{
    text-align:center;
  }
  .home .abreast h3{
    text-align:center;
  }
}

/************************************コンテンツ_豊富温泉*/
.onsen .abreast{
  gap:7%;
  justify-content: center;
}
.onsen .abreast img{
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.onsen .abreast>div{
  width: 45%;
  height:auto;
}
.onsen .min{
  text-align:left;
  margin-bottom: 23px;
}
.onsen .abreast.left_h3{
  gap:7%;
  justify-content: flex-start;
}
.onsen .left_h3 .box_left{
  width: 135px;
}
.onsen .left_h3 .box_right{
  width: calc(100% - 135px);
  padding-top: 10px;
}
.onsen .left_h3 dl{
  margin:0 0 50px;
  padding:0;
  display:flex;
  flex-wrap: wrap;
  width: 100%;
}
.onsen .left_h3 dt{
  width: 25%;
  border-bottom: 1px solid #70707054;
  padding:1em;
  color: #66816f;
  font-weight: bold;
  max-width: 180px;
}
.onsen .left_h3 dd{
  width: 75%;
  margin: 0;
  border-bottom: 1px solid #70707054;
  padding:1em;
}
@media (max-width: 720px) {
  .onsen .left_h3 dt{
    padding:0.5em;
    font-size:0.9em;
  }
  .onsen .left_h3 dd{
    font-size:0.9em;
    padding:0.5em;
  }  
}

/************************************コンテンツ_プライバシーポリシー*/
.privacy-policy h3{
  text-align:left;
  font-size: 15px;
  margin: 42px 0 0;
}
.privacy-policy ul{
  padding-left:1em;
}
.privacy-policy li{
  margin-bottom:0.3em;
}

/************************************コンテンツ_日帰り入浴*/
.day-use section img{
  float:right;
}
.day-use section p{
  padding-left:2em;
}

/************************************コンテンツ_テイクアウト*/
.takeout section p{
  text-align:center;
  font-weight:bold;
  margin-bottom:2em;
}
.takeout .nibox{
  flex-wrap:wrap;
  display: flex;
  justify-content: space-between;
}
.takeout .nibox img {
  display:block;
  width:33%;
  height:auto;
  margin-bottom:0.5%;
}
@media (max-width: 580px) {
  .takeout .nibox img {
    width:49.5%;
  }
  .takeout .nibox img:last-child {
    width:100%;
  }
}

/************************************コンテンツ_お問い合わせ*/
.inquiry .inner>p{
  text-align:center;  
}
.inquiry .abreast.left_h3{
  gap:7%;
  justify-content: flex-start;
  padding-bottom: 0;
}
.inquiry .left_h3 .box_left{
  width: 135px;
}
.inquiry .left_h3 .box_right{
  width: calc(100% - 135px);
  margin-top:-5px;
}
.inquiry .box_right p:first-child{
  font-size:22px;
  font-weight:bold;
}
.inquiry .box_right span{
  font-size:0.7em;
  margin-right:0.5em;
}
.inquiry dl{
  margin:0;
  padding: 0 1em;
  display:flex;
  flex-wrap: wrap;
}
.inquiry dt{
  width:30%;
  padding: 0 0;
  font-weight:bold;
  font-family: "FOT-筑紫ゴシック Pro B";
}
.inquiry dt span{
  color:#3e6e4c;
  font-size:0.8em;
}
.inquiry dd{
  width:70%;
  padding: 0 0 40px 0;
  margin: 0;
}
.inquiry dd input[type="text"],
.inquiry dd input[type="tel"],
.inquiry dd input[type="email"],
.inquiry dd textarea{
  width:100%;
  font-size:22px;
  padding:0.4em;
  color:#4f4f4f;
  outline:3px solid #ababab;
  border:none
}
.inquiry dd textarea{
  font-size:18px;
}
.inquiry dd input[type="text"]:focus,
.inquiry dd input[type="tel"]:focus,
.inquiry dd input[type="email"]:focus,
.inquiry dd textarea:focus{
  outline:3px solid #3e6e4c;
}
.inquiry .wpcf7-list-item {
  margin: 0 1em 0 0;
  font-size:16px;
}
.inquiry input[type="submit"]{
  display:block;
  width:8em;
  margin:0 auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  cursor:pointer;
}
input[type="submit"]:hover{
  color:white;
  top:1px;
  left:1px;
  opacity:0.9;
}
@media (max-width: 720px) {
  .inquiry dl{
    flex-direction: column;
  }
  .inquiry dl>*{
    width:100%;
  }
  .inquiry dt p{
    margin:0;
  }
  .inquiry dd{
    padding-bottom: 13px;
  }
}

/************************************コンテンツ_アクセス*/
.access .inner:first-child{
  max-width:100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0 !important;
}
.access iframe {
  width: 100%;
  height:auto;
  aspect-ratio: 16/9;
  max-height:450px;
}
.access .inner:first-child p{
  text-align:center;
}
.access .abreast .box_left{
  width:30%;
}
.access .abreast .box_right{
  width:70%;  
}
.access .abreast .btn{
  margin-bottom:2em;
}
.access .abreast h4{
  margin-bottom:0;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.access .inner h5{
  font-size:18px;
  color:#66816f;
  font-family: 'FOT-筑紫ゴシック Pro B';
  text-align:center;
  margin: 3em auto 0;
  line-height:2em;
  background:white;
  padding:1em;
  max-width: 700px;
}
.access .inner h5 span{
  display:block;
  font-size:15px;
  color:#687060;
}

/************************************コンテンツ_当ホテルについて*/
.about .inner dl{
  margin:0 0 50px;
  padding:0;
  display:flex;
  flex-wrap: wrap;
  width: 100%;
}
.about .inner dt{
  width: 25%;
  border-bottom: 1px solid #70707054;
  padding:1em;
  color: #66816f;
  font-weight: bold;
  max-width: 180px;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.about .inner dd{
  width: 75%;
  margin: 0;
  border-bottom: 1px solid #70707054;
  padding:1em;
}

/************************************コンテンツ_周辺観光*/
.sightseeing .abreast{
  gap:4%;
}
.sightseeing .box_left{
  width:55%;
  height: auto;
}
.sightseeing .box_left h3{
  text-align:left;
  margin:0 0 1em;
}
.sightseeing .box_left h4{
  font-size:1.1em;
  margin:0 0 1em;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.sightseeing .box_right{
  width:45%;
  height: auto;
}
.sightseeing .box_right img{
  object-fit:cover;
  width:100%;
  height:100%;
  display:block;
}
.sightseeing section:nth-of-type(2) .box_left,.sightseeing section:nth-of-type(4) .box_left{
  order:2;
}
.sightseeing section:last-child{
  background:none;
}
.sightseeing section:last-child .abreast{
  flex-wrap:wrap;
}
.sightseeing section:last-child h3{
  width:100%;  
}
.sightseeing section:last-child a{
  display:block;
  width:30%;
  height:auto;
  margin:0 0 4%;
}
.sightseeing section:last-child a:hover{
  position:relative;
  top:1px;
  left:1px;
  opacity:0.8;
  background:black;
}
.sightseeing section:last-child img{
  display:block;
  width:100%;
  height:auto;
}
@media (max-width: 720px) {
  .sightseeing section:last-child .abreast{
    display:flex;
  }
  .sightseeing section:last-child a{
    width: 100%;
  }
  .sightseeing section:last-child h3{
    width:100%;
    font-size:1.2em;
    margin-bottom:2em;
  }
}
/************************************コンテンツ_客室*/
.room .room_about{
  flex-wrap:wrap;
  padding-bottom:0!important;
}
.room .room_about>*{
  width:100%;
}
.openicon p{
  display:inline-block;
  background:#727272;
  color:#FBFDB4;
  padding:0.5em;
  line-height:1em;
}
.room .room_about h3{
  width: 44%;
  margin:0;
  text-align:left;
}
.room .room_about h5{
  width: 56%;
  text-align:right;
  font-size:15px;
  margin: 10px 0 41px 0;
}
.room .room_about h4{
  font-size:18px;
  margin:0;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.room_image{
  padding-top:1em!important;
  padding-bottom:1em!important;
  display: flex;
  flex-wrap: wrap;
  gap:0 3%;
  justify-content: flex-start;
  height: auto;
  position:relative;
}
.room_image img{
  display:block;
  height: auto;
}
#room_condominium .room_image{
  height: 548px;
  cursor:pointer;
  transition: .3s;
  padding-bottom: 99px !important;
}
#room_condominium .room_image img{
  display:block;
  width:calc((100% - 6%)/3);
  margin-bottom:3vw;
  height:auto;
  flex-shrink: 0;
  flex-grow: 0;
}
#room_condominium .room_image img[src*="room00000.jpg"],
#room_condominium .room_image img[src*="room00004.jpg"]{
  width:calc((100% - 3%)/2);
}
#room_condominium .room_image img[src*="room10"]{
  width:calc((100% - 12%)/5);
}
.room_detail{
  padding-top: 0 !important;
}
.room_detail .box_left{
  width:20%;
}
.room_detail h3{
  text-align:left;
  font-size:18px;
  margin: 8px 0 0;
  color: #727272;
}
.room_detail .box_right{
  width:80%;
}
.room_detail dl{
  margin:0 0 50px;
  padding:0;
  display:flex;
  flex-wrap: wrap;
  width: 100%;
}
.room_detail dt{
  width: 25%;
  border-bottom: 1px solid #70707054;
  padding:1em;
  color: #727272;
  font-family: 'FOT-筑紫ゴシック Pro B';
  max-width: 180px;
}
.room_detail dd{
  width: 75%;
  margin: 0;
  border-bottom: 1px solid #70707054;
  padding:1em;
}
#room_img_open{
  position:absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient( rgb(251 248 243 / 0%) 0%, rgb(251 248 243 / 100%) 30%);
  width:100%;
  height: 118px;
  text-align:center;
  padding-top: 82px;
  font-size: 12px;
  color:rgb(92 131 96 / 100%);
}
#room_img_open .open{
  display:none;
}
#room_img_open:before{
  content:"";
  display:block;
  width: 20px;
  height: 20px;
  border-left:2px solid rgb(92 131 96 / 48%);
  border-bottom:2px solid rgb(92 131 96 / 48%);
  position:absolute;
  top: 47px;
  left: calc(50% - 11px);
  rotate:-45deg;
  transition: .3s;
}
#room_condominium .room_image.open{
  height: auto;
  transition: .3s;
}
.open #room_img_open .open{
  display:block;
}
.open #room_img_open .close{
  display:none;
}
.open #room_img_open:before{
  rotate: 135deg;
  top: 62px;
  transition: .3s;
}

@media (max-width: 720px) {
  #room_condominium .room_image img{
    width:calc((100% - 3%)/2);
  }
  #room_condominium .room_image img[src*="room0"]{
    order:1;
  }
  #room_condominium .room_image img[src*="room1"]{
    order:3;
  width:calc((100% - 6%)/3);
  }
  #room_condominium .room_image img[src*="room00000.jpg"]{
    width:100%;
  }
  #room_condominium .room_image img[src*="room00004.jpg"]{
    width:100%;
  }
  #room_condominium .room_image img[src*="room00001.jpg"]{
    order:2;
  }
  .openicon p{
    display:block;
    width:11em;
    font-size:10px;
    margin:0 auto 1em;
  }
  .room .room_about h4{
    font-size:14px;
  }
  .room .room_about p{
    text-align: justify;
    font-size:13px;
  }
  .room .room_about h3{
    width:auto;
    font-size:18px;
    text-align:center;
  }
  .room .room_about h5{
    width:auto;
    margin: 10px 0 2em 0;
    font-size:13px;
    text-align: left;
    text-align:center;
    padding-bottom: 20px;
    border-bottom: 1px solid #d7d7d7;
  }
  .room_detail h3{
    font-size:0.9em;
    text-align:center
  }
  .room_detail dl{
    font-size:0.8em;
  }
}




/************************************コンテンツ_お料理*/
.meal section p{
  text-align:center;
  font-weight:bold;
}
.meal #contents ul{
  list-style-type:none;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin: 0 auto;
  background-color: #f1f2e9;
  color: #2a5346;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 30px;
}
.meal #contents li{
  text-indent: -2.5em;
  padding-top: 2.5em;
}
.meal #contents span{
  color: #353535;
  margin-bottom: 0.5em;
  font-weight: bold;
}
/************************************コンテンツ_宿泊プラン*/
.plan section ul{
  margin:0;
  padding:0;
  list-style-type:none;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan section li{
  width: 22.7%;
  position:relative;
  margin-bottom:4%;
  padding:1em;
  color:white;
  text-align:center;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}
.plan section li:nth-of-type(1){
  background:#82A085;
}
.plan section li:nth-of-type(2){
  background:#9CABB2;
}
.plan section li:nth-of-type(3){
  background:#A7AC96;
}
.plan section li:nth-of-type(4){
  background:#C3BB82;
}
.plan section li i{
  display:block;
  font-family: "FOT-筑紫B明朝 Pr6 M";
  font-size:16px;
  margin-bottom: 0.5em;
}
.plan section li h4{
  font-size:17px;
  margin:0 0 10px 0;
  line-height:1.2em;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.plan section li h4 span{
  display:inline-block;
}
.plan section li p{
  font-size:13px;  
  margin:0;
}
.plan section li h5{
  font-family: "FOT-筑紫B明朝 Pr6 M";
  font-style:italic;
  font-size:28px;
  margin:0;
}
.plan section li h5 span{
  font-family:initial;
  font-style:normal;
  font-size:0.55em;
  margin:0 0 0 0.3em;
  font-weight:400;
}
.plan section li a{
  text-decoration:none;
  border:1px solid white;
  display:block;
  width:100%;
  height:auto;
  padding:0.5em;
  background:rgb(255 255 255 / 17%);
}
.plan section li a:hover{
  position:relative;
  top:1px;
  left:1px;
  opacity:0.8;
  color:white;
}
.plan section li.plan_other{
  width: 30.6%;
  padding:0;
}
.plan section li.plan_other a{
  color:#66816f;
  padding:1em;
  height:100%;
  background:white;
  border:1px solid #e1e1e1;
}
.plan .box_left{
  width:50%;  
}
.plan .box_right{
  width:50%;  
}
.plan .in_first{
  padding-bottom:1em !important;
}
.plan .in_second{
  padding-top:0 !important;
}
.plan h3{
  text-align:left;
  margin-bottom: 2em;
}
.plan .in_first p{
  font-size:1.1em;
  font-weight:bold;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.plan .in_first p span{
  font-size:0.8em;
}
@media (max-width: 720px) {
  .plan section li{
    width:48% !important;
  }
}
@media (max-width: 400px) {
  .plan section li{
    width:100% !important;
  }
}

.single .inner{
  background:white;
  padding: 1em;
}
.post_eyecatch_outer{
  width:100%;
  height:auto;
  aspect-ratio: 16/9;
  overflow:hidden;
  margin-bottom:5em;
}
.post_eyecatch_outer img{
  display:block;
  width:100%;
  height: 100%;
  object-fit: cover;
}
.post_head h2{
  text-align:center;
  width:600px;
  max-width:100%;
  margin: 2em auto;
  font-family: 'FOT-筑紫ゴシック Pro B';
}
.post_date_outer{
  width:600px;
  max-width:100%;  
  margin:0 auto 2em;
  text-align:right;
}
article{
  width:600px;
  max-width:100%;
  margin: 0 auto 4em;
}
article p{
  text-align:justify;
}
article img{
  display: block;
  margin:1em 0;
}
.wp-caption img{
  margin: 0;
}
.wp-caption-text{
  font-size:0.8em;
  text-align: left;
  margin: 0.2em 0;
  width: 100%;
}
article img.aligncenter,
.wp-caption.aligncenter{
  margin:0 auto;
  width: fit-content;
}
article img.alignleft,
.wp-caption.alignleft{
  float:left;
  margin:1em 1em 1em 0 ;
}
article img.alignright,
.wp-caption.alignright{
  float:right;
  margin:1em 0 1em 1em ;
}
article h1{
  margin: 50px 0 0;
  text-align:left;
  font-size:18px;
}
article h2{
  margin: 50px 0 0;
  text-align:left;
  font-size:18px;
}
article h3{
  margin: 50px 0 0;
  text-align:left;
  font-size:18px;
}
article h3:first-child{
  margin: 0;
}
article table{
  background: #f7f7f7;
  border-spacing: 0;
}
article th,
article td {
	padding: 1em;
	border: 1px solid white;
}
article th {
	color: #666;
	background: #d9e0da;
}
article td {
	color: #333;
	padding-right: 40px;
}
.pager{
  padding: 1em 1em 0;
  display:flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.pager>a{
  text-decoration:none;
  line-height: 1em;
}
.wp-pagenavi{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.wp-pagenavi>*{
  text-decoration:none;
  background:white;
  margin:0 0.2em 1em;
  padding: 14px;
  line-height: 1em;
}
.wp-pagenavi>a:hover{
  background-color:#65886f;
  color:white;
}
.wp-pagenavi .current{
  background-color:#8aa993;
  color:white;
}

.previouspostslink:before,
.pager>a:last-of-type:before{
  content:"";
  display:inline-block;
  width:0.4em;
  height:0.8em;
  margin-right:0.5em;
  background: #687060;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.nextpostslink:after,
.pager>a:first-of-type:after{
  content:"";
  display:inline-block;
  width:0.4em;
  height:0.8em;
  margin-left:0.5em;
  background: #687060;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.previouspostslink:hover:before,
.nextpostslink:hover:after{
  background: #ffffff;
}

@media (max-width: 460px) {
    .reservation #contents{
      padding:0 0 607px 0;
  }
  .reservation #mobile_nav_close{
    display:none;
  }
  .reservation #mobile_nav{
    height: 80px;
    background: #0b3c19cc;
    border-radius: 0 7px 7px 0;
    margin-top: 3px;
  }
  .reservation #mobile_nav.open{
    height: 100vh;
  }
}