@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Yuji+Boku&display=swap');

/*共通*/
body{
  font-family: "Noto Sans JP", sans-serif;
  font-weight:400;
  color:#333;
  letter-spacing: 0.05em;
}
body{
  background: url('../img/bg.jpg') repeat top left /1000px auto;
}
figure{
  overflow: hidden;
}
section{
  margin:clamp(60px,8vw,150px) auto;
}
.wrap{
  width:80%;
  max-width: 1200px;
  margin:0 auto;
}
.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex > *{
  margin:0 auto;
}
a{
  text-decoration: none;
  transition:ease 1s;
  margin:0.5em auto;
  display:inline-block;
  color: #009245;
}
a.gaibu{
  font-weight:500;
  position: relative;
}
a.gaibu:after{
  font-family: "Material Symbols Outlined";
  content: "\e89e";  
  font-weight: 300;
  color:#009245;
  position: absolute;
  top:50%;
  right:-1.2em;
  margin-top:calc(1em / -2);
}
a.gaibu:hover{
  opacity:0.5;
}
.umekomi{
  width: 100%;
  aspect-ratio: 16 / 9;
}
.umekomi iframe{
  width: 100%;
  height: 100%;
}

.yuji-boku-regular{
  font-family: "Yuji Boku", serif;
  font-weight: 400;
  font-style: normal;
}
.red_text{
  color:#C50018;
  padding:0 0.3em;
  font-weight: bold;
}
.tel{
  font-size:1.5em;
  font-weight:500;
  margin-bottom:1em;
  display:inline-block;
  position: relative;
}
.tel:before{
  font-family: "Material Symbols Outlined";
  content:'\e61c';  
  font-weight: 300;
  position: absolute;
    top:50%;
  left:-1.2em;
  margin-top:calc(1em / -2);
}
.tel:hover{
  opacity: 0.5;
}
.futozi{
  font-weight:500;
}
.text_small{
  font-size: 0.8em;
}
h2.yuji-boku-regular{
  font-size:clamp(38px,4.6vw,43px);
  letter-spacing: 0.1em;
  margin:0;
}
.keep{
  word-break: keep-all;
}
.botan_style_1 a{
  padding:1em;
  border:solid 1px #fff;
  border-radius:100px;
  width: 100%;
  max-width:350px;
  margin:1em auto;
  color:#fff;
}
.botan_style_1 a:hover{
  background-color:rgba(255,255,255,.3);
}

.botan_style_2 a{
  color:#fff;
  padding:1em;
  position: relative;
  background:#333;
  display: block;
  overflow:hidden;
  z-index: 1;
  width: 100%;
}
.botan_style_2 a::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.botan_style_2 a:hover {
  color: #333;
}
.botan_style_2 a:hover::after {
  transform: scale(1, 1);
}
 

.style1{
   background:url(../img/head1.svg) no-repeat center left / auto 1em ,
              url(../img/head1.svg) no-repeat center right / auto 1em ;
   padding:0.5em 2em;
   display: inline-block;
}
/*トップ*/
.home p{
  margin:0;
}
/*メインビジュアル*/
#main_page{
  width:100%;
  height:calc(100vh - 100px);
  position:relative;
}

.main_slide{
  width:100%;
  height:100%;
}

.main_slide:after{
  content:'';
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  background: linear-gradient(0deg, rgba(66, 33, 11, 0) 70%, rgba(66, 33, 11, .5) 90%, rgba(66, 33, 11, .8) 100%);
  z-index:1;
  mix-blend-mode: multiply;
}

.main_slide img{
  object-fit: cover;
  width:100%;
  height:100%!important;
  transform: scale(1);
  transition: transform 6s ease; /* 1スライド分と同じ時間 */
}

.main_slide .swiper-slide-active img {
  transform: scale(1.15);
}

.logo{
  width:100%;
  height:100%;
  position: absolute;
  top:0;
  z-index: 998;
}
.logo h1{
  width: 100%;
    height: 100%;
    display: flex;;
    justify-content: center;
}
.logo img{
  width:200px;
  height:auto;
}
.headnav{
  position:absolute;
  top:20px;
  right:20px;
  z-index: 999;
}
#menu-btn-check{
  display: none;
}
.menu-content ul{
  display: flex;
  gap:1.5em;
}
.menu-content ul a{
  color:#fff;
}

.main_start{
  position: absolute;
  width: 1px;
  height: 50px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  z-index: 9999;
  bottom: 5%;
  left: 0;
  right: 0;
}
.main_start:before{
  content: 'スクロール';
  position: absolute;
  color:#fff;
  top: -2em;
  font-size: 0.8em;
  width: 5.5em;
  display: block;
  left: 0;
  transform:translateX(-50%);
}
.anime_ball {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: ball 4s infinite ease-in-out;
}

@keyframes ball {
  0% {
    top: 0;
    opacity: 0;
  }

  22% {
    top: 0;
    opacity: 0;
  }

  78% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/*お知らせ*/
.news{
  margin-top:0;
  padding-top:2%;
  background:url('../img/iv_bg.png') no-repeat bottom center / cover;
}

.news th{
  font-size:1.7em;
  color:#754C24;
  vertical-align: middle;
}
.news_li{
  border-top:#998675 solid 1px;
  border-bottom:#998675 solid 1px;
  margin:0;
}
.news_li_box{
  margin:0 1em;
  gap:20px;
  align-items: center;
  height:3em;
  padding-right:2em;
  position: relative;
  transition:ease .5s;
  justify-content: flex-start;
}
.news_li_box:after{
  content:'→';
  position: absolute;
  right:0.5em;
  font-weight: 200;
  top: 50%;
  margin-top: calc(1em / -2);
}


.news_li a{
  margin:0.5em 0;
  border-left:#998675 solid 1px;
  display: block;
  color:#333;
} 
.news_li a:hover .news_li_box{
  transform:translateX(0.5em);
}

.iv_clender{
  width:35%;
  margin:0 auto;
  padding: 0 0 45px 0;
  position: relative;
  min-width: 300px;
}

.iv_h{
  position: absolute;
  z-index: 10;
  height: 27%;
  display: flex;
  min-width: 130px;
  right: 0;
  transform: translateX(87%);
}

.iv_clender .swiper{
  outline-offset: 5px;
  outline: solid 1px #998675;
  border: solid 2px #998675; 
  margin-top:15%;
}

/*swiper*/
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
    width: 30px; /* 背景画像の幅を必ず指定 */
    height: 30px; /* 背景画像の高さを必ず指定 */
    top: auto;
    bottom:0px;
}


.swiper-button-next:after,
.swiper-button-prev:after {
    content: "";

  }

.swiper-button-next {
  right: 25px;
background: transparent url('../img/arrow.png') no-repeat center / contain;
transform: scale(-1, 1); 
}

.swiper-button-prev {
  left: 25px;
background: transparent url('../img/arrow.png') no-repeat center / contain;
  }

.swiper-slide img {
  width: 100%;
  height: auto;
}

/*動画*/
.youtube{
  position: relative;
  margin:5% 0;
}
.youtube:before , .youtube:after{
  content:'';
  position: absolute;
  display: block;
  background: url(../img/movie_bg.svg) no-repeat center / contain;
  z-index: -1;
  padding-top:15%;
  height:0;
}
.youtube:before{
  width:15%;
  bottom:12%;
  left:0;
  transform: translateX(-63%);
}
.youtube:after{
  width:10%;
  top:10%;
  right:0;
  transform: translateX(63%);
}

/*営業案内*/
.eigyou{
  border-top:double #333 4px;
  border-bottom:double #333 4px;
  max-width: 500px;
  margin:0 auto;
}
.eigyou_table{
  margin:7px 0;
}
.eigyou tr:first-child{
  border-bottom:solid 1px #333;
}
.eigyou th{
  border-right:solid 1px #333;
  font-size:1.2em;
  color:#754C24;
}
.eigyou th,.eigyou td{
  height:3em;
  vertical-align: middle;
  line-height: 1.2;
  padding:1em;
  word-break: keep-all;
}

.guide_menu{
  gap:5%;
  margin:7% auto;
}
.guide_menu .guide_box{
  flex:1;
}
.guide_box:nth-child(2){
  margin:40px 0;
}
.guide_box h3{
  margin:0.5em 0;
  font-size:1.5em;
  color:#754C24;
  background: url('../img/right_circle.svg') no-repeat center right 3px/ auto 0.9em;
  padding-right:1.5em;
}
.guide_box p{
  color:#333;
}
.guide_box a:hover h3{
  background-position: center right;
}
.guide_box a:hover img{
  transform: scale(1.05);
}

/*料金*/
.price{
  background: url(../img/price_bg.svg) no-repeat center top / cover;
  padding:calc(5% + 50px) 0;
}
.price h2{
  color:#009245;
  background:url(../img/head2.svg) no-repeat center bottom / auto .7em;
  padding-bottom:1.3em;
  margin-bottom:0;
}
.price_table{
  max-width: 500px!important;
  margin:0 auto;
}
.price_table tr:not(:last-child){
  border-bottom:solid 1px #fff;
}
.price_table th,.price_table td{
  color:#fff;
  font-family: "Yuji Boku", serif;
  padding:clamp(15px,1.6vw,20px);
  vertical-align: middle;
  font-size:1.2em;
  text-align: center;
  line-height: 1.1;
}
.price_table td{font-size:1.5em;}

/*交通案内*/
.access{
  background:url(../img/access_bg2_1.png)no-repeat top 10% left -10%/30% auto,
  url(../img/access_bg2.png)no-repeat bottom 10% right -10%/30% auto;
}
.access h2{
  color:#754C24
}

.access_guide {
  text-align: center;
}
.access_guide h4{
  color:#009245;
  margin-bottom:0.5em;

}
/*よくある質問*/
.question{
  background:url(../img/washi-gray.jpg) repeat;
  padding:5% 0;
  margin-top:calc(5% + 50px);
  padding-bottom:calc(10% + 0px);
}
.question h2{
  color:#fff;
}

.question dt{
  color:#fff;
  border-bottom:solid 1px #fff;
  padding:2em 2em 1em 1em;
  position: relative;
}

.question dd{
  display: none;
  color:#333;
  padding:1em;
  background-color: #fff;
  margin:1em;
  transition: transform .5s;

}
.question dt:after{
  content:'▶';
  position:absolute;
  right:2em;
  font-size:0.5em;  
}
.question dt.active:after{
  transform:rotate(90deg);
}

footer{
  background:url('../img/washi-green.jpg') repeat center / 100px auto;
  text-align: center;
  padding:clamp(60px,8vw,100px) 0 2% 0;
}
footer h1,footer p{
  color:#fff;
}
footer h1{
  font-size:clamp(25px,2.9vw,35px);
}
footer .link{
  justify-content: space-evenly;
  margin-top:5%;
  margin-bottom:3%;
}
footer .link .botan_style_2{
  width: 100%;
  max-width: 500px;
}
footer .f_logo{
  width:140px;
  display: flex;
  margin:0 auto;
}

.f_nav li{
  display: inline-block;
  position: relative;
}
.f_nav li a{
  color:#fff;
  padding:0.3em 1em;
  display: block;
  margin:0;
}

.f_nav a:not(:last-child):after{
  content:'|';
  right:-1em;
  position:relative;
}

/*下層*/

/*ヘッダ部分*/
.page_header{
  height:80px;
  background-color: rgba(255,255,255,.7);
  position: relative;
  margin:0 1em;
  align-items: center;
}
.page_header .logo{
  justify-content: flex-start;
  height: auto;
  position: relative;
}
.page_header .menu-content ul a{
  color:#333;
}
.back_image{
  height: 200px;
  display: flex;
  overflow: hidden;
  align-items: center;
  position: relative;
}
.back_image img{
  width:100%;
  height: 100%;
  object-fit: cover;
}

.back_image:before{
  content:'';
  background:rgba(0,0,0,0.35);
  mix-blend-mode: multiply;
  display: block;
  width:100%;
  height:100%;
  z-index: 1;
  position: absolute;
}
.page_head{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 10%;
}
.page_head h1{
  text-align: center;
  color:#fff;
  font-family: "Yuji Boku", serif;
  background:url('../img/head2.svg') no-repeat center bottom / auto 1em;
  padding-bottom:1.3em;
  margin:0;
}
/*-------------*/

/*-------------
固定ページ
-------------*/
.pages h2{
  font-family: "Yuji Boku", serif;
  margin:0;
  font-size:clamp(25px,2.5vw,30px);
}

.pages h3{
  font-family: "Yuji Boku", serif;
  margin:0.3em 0 0 0;
  font-size:20px;
}

.pages p{
  margin:0.8em 0;
}

div[class^="gallery"] figure{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
    height: 0;
position: relative;}

  div[class^="gallery"] figure img{
width:100%;
height:100%;
object-fit: cover;
  position: absolute;
}


.gallery_l figure{
  width: 100%!important;
  max-width:1200px;
  height: 475px!important;
  margin-bottom:25px;
  margin:0 auto;
}

.gallery_m .gallery_box{
  width:calc((100% - 6vw) / 2);  
}
.gallery_m figure{
  padding:30% 0;
}
.gallery_s .gallery_box{
  width:calc((100% - 12vw) / 3); 
}
.gallery_s figure{
  padding:42% 0;
}


/*温泉*/
.pages small{
  color:#736357;
  font-weight: 600;
  margin-bottom: 1.3em;
  display: block;
}


.pages h2{
  font-family: "Yuji Boku", serif;
  margin:0;
  line-height: 1.25;
}

.pages h3{
  font-family: "Yuji Boku", serif;
  margin:0.3em 0 0 0;
  font-size:clamp(15px,1.6vw,20px);
}



div[class^="gallery"] .gaiyou{
  margin:min(2vw , 25px);
}

.higawari{
  background: url('../img/higawari_bg.svg') repeat center /100px auto;
  padding: clamp(60px, 8vw, 100px) 0;

}
.higawari_title{
  font-size:1.4em;
  margin-top:0;
  margin-bottom:2em!important;
  line-height: 1.5;
}
.family .inner{
  text-align: center;
  padding: clamp(50px, 7vw, 80px);
  border:solid 2px #333;
  background-color: #fff;;
}
.fam_img{
  max-width: 500px;
  margin:0 auto;
}
.seibun_grf div{
  display: flex;
  padding:1em;
  border-bottom:#333 solid 1px;
}
.seibun_grf dt{
  flex-basis: 90px;
  min-width: 90px;
}

.eat_menu h2{
  position: relative;
  padding:0 0 1em 0;
  margin:2em;
}

.eat_menu h2:after{
  content:'';
  position: relative;
  display: block;
  margin:0.3em auto 0 auto;
  width: 80px;
  height:2px;
  border-radius: 5px;
  background-color: #009245;
}

.eat_menu .gallery_s .gallery_box{
  margin-bottom: 6vw;
}

/*施設案内*/
.facility h2{
  color:#333;
  padding-left:0.3em;
  padding-bottom:0.5em;
  margin-bottom:1em;
  border-bottom:solid 1px #333;
}
.facility .section_box{
  background: #fff;
  padding: clamp(50px, 7vw, 80px);
    background: url(../img/faci_bg.svg) repeat center / 150px auto, rgba(152, 143, 75, 0.1);
    mix-blend-mode: multiply;
}

.facility .right_box .section_box{
  margin:0 0 0 auto;
  background-color:rgba(150,90 ,75,0.1);
}

.facility .f_gal .gallery_box{
    width:calc((100% - 3vw) / 3);  
    margin-bottom:3vw;
}

/*観光案内*/
.kanko_menu .gallery_box a{
  display: block;
  margin-bottom:6vw;
}
.kanko_menu .gallery_box p{
  font-weight:500;
}
/*リンク*/
.link a{
  display: block;
}

.link a:hover{
  transform:translateX(0.35em);
}


/*-------------
投稿
-------------*/
.blog-list__list-item a{
  border-bottom:1px #333 solid;
  padding:0.5em;
  display: block;
}


.blog-list__list-item h2,.blog-list__list-item p{
  margin:0;
}
.blog-list__list-item a:hover{
  transform: translateX(0.3em);
}



article#single{
  margin:0 auto 5em auto;
  padding:5%;
  max-width: 1000px;
  background-color: #fff;
  border:solid #333 1px;
}

/*-------------
POPUP
-------------*/

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

#modal-container>div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

#modal-container>img {
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 30px);
  transition:
}

img.popup {
  cursor: pointer;
}