@charset "utf-8";

*{
    box-sizing: border-box;
    font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

html{
  background-color: #fffdf8;
  color: #333;
}

/* .filter{
  width: 100%;
  height: 100%;
  background-color: #4d4d4d;
  z-index: infinite;
} */




#top{
    height: 100vh;
    padding: 20px;
    background-color: #fffdf8;
}

@media screen and (min-width: 768px) {
  #top{
    padding: 50px;
  }
}


.top_img-slide {
    /* width: 95%;
    height: 90vh; */
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
  }
  

  .img-wrapper img{
    width: 100%;
    height: 100%;
    
  }

  .slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide-panel:nth-child(2) {
    opacity: 0;
  }
  .slide-panel:nth-child(3) {
    opacity: 0;
  }

  .slide-panel img{
    object-fit: cover;
  }


.top_logo{
    width: 20%;
    min-width: 100px;
    max-width: 150px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}






@media screen and (min-width: 768px) {
  header{
    width: 15%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid rgb(185, 185, 185);
    z-index: -5;
  }
}

/* ハンバーガーメニュー */



.m_hamburger{
  width: 30px;
  height: 30px;
  border: 1px solid black;
  border-radius: 50%;
  background-color: #fffdf8;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .m_hamburger{
    display: none;
  }
}

.hamburger-inner{
  position: relative;
  width: 100%;
  height: 40%;
}

.m_hamburger span{
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  left: 0;
  border-radius: 2px;
  transition: 0.5s;
}

.m_hamburger span:nth-child(1){
  top: 0;
}

.m_hamburger span:nth-child(2){
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger span:nth-child(3){
  top: 100%;
  transform: translateY(-100%);
}

.m_hamburger.is-active{
  opacity: 0;
}


.header_nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  max-width: 200px;
  height: 100vh;
  background-color: #fffdf8;
  transform: translateX(-120%);
  opacity: 0;
  transition: 0.5s;
  z-index: 900;
  
}

@media screen and (min-width: 768px) {
  .header_nav{
    display: none;
    
  }
}

@media screen and (max-width: 768px) {
  .header_nav.is-active{
    transform: translateX(0);
    opacity: 1;
  }
}

.header_nav-logo{
  width: 60px;
}

.m_nav-button{
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  background-color: transparent;
}

.nav-button-inner{
  position: relative;
  width: 100%;
  height: 100%;
}

.m_nav-button span{
  width: 120%;
  height: 2px;
  background-color: black;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 2px;
}

.m_nav-button span:nth-child(1){
  transform: rotate(45deg);
}

.m_nav-button span:nth-child(2){
  transform: rotate(-45deg);
}


.header_nav-inner{
  padding: 30px 0 0 calc(20%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header_nav-list{
  width: 60%;
  margin: 2em 0;
}

.header_nav-list li:not(:last-child){
  margin-bottom: 1em;
}

.header_nav-list li a{
  font-size: 11px;
}

.header_nav-sns-wrapper{
  width: fit-content;
}




@media screen and (max-width: 768px) {
  .header-container{
    display: none;
  }
}



.header-container{
  padding: 60px 30px 0 40px;
}


.header-list{
  margin: 50px 0;
}

.header-logo{
  width: 80%;
}



header ul li:not(:last-child){
  margin-bottom: 30px;
}

header ul li a{
  text-decoration: none;
  color: inherit;
  transition: 0.5s;
  position: relative;
  font-size: 13px;
  letter-spacing: 0.2em;
}

header ul li a:hover{
  opacity: 0.5;
  
  
}

header ul li a::before{
  content: "";
  width: 0;
  height: 1px;
  background: #333;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transition: 0.3s;
}

header ul li a:hover:before{
  width: 100%;
  left: 0;
}

.header_sns{
  width: 25px;
  height: 100%;
  transition: 0.3s;
}

.header_sns:hover{
  opacity: 0.6;
  
}

.header_sns:not(:last-child){
  margin-bottom: 20px;
}


/* 画面上部の予約ボタン */
.fixed-reserve-btn-wrapper{
  position: fixed;
  top: 0;
  right: 10px;
  display: flex;
  column-gap: 15px;
  z-index: 800;
}

@media screen and (min-width: 768px) {
  .fixed-reserve-btn-wrapper{
    right: 50px;
    column-gap: 30px;
  }
}

.fixed-reserve-btn{
  min-width: 100px;
  background-color: #8e701e;
  border-radius: 0 0 10px 10px;
  border: 1px solid black;
  border-top: none;
  padding: 3px 8px 8px;
  position: relative;
  transition: 0.2s;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .fixed-reserve-btn{
    width: 150px;
    padding: 18px 10px 10px;
  }
}

.fixed-reserve-btn:nth-of-type(2){
  background-color: #ffffff;
  color: #333;
}

.fixed-reserve-btn:hover{
  transform: scale(1.2);
  background-color: #ffffff;
  color: #8e701e;
  border-color: #8e701e;
}




.fixed-reserve-btn a{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



.fixed-reserve-btn p{
  text-align: left;
  letter-spacing: 0.17em;
}

.fixed-reserve-btn p:nth-of-type(1){
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .fixed-reserve-btn p:nth-of-type(1){
    font-size: 16px;
  }
}

.fixed-reserve-btn p:nth-of-type(2){
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .fixed-reserve-btn p:nth-of-type(2){
    font-size: 12px;
  }
}


@media screen and (min-width: 768px) {
  .view{
    width: 85%;
    position: absolute;
    right: 0;
  }
}

.about-container{
  display: flex;
}

@media screen and (max-width: 768px) {
  .about-container{
    flex-direction: column;
    padding: 30px;
  }
}

@media screen and (min-width: 768px) {
  .about-container{
    width: 85%;
    margin: 0 auto;
    column-gap: 30px;
  }
}


.about-img-wrapper{
  width: 80%;
}

@media screen and (max-width: 768px) {
  .about-img-wrapper{
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .about-img-wrapper{
    width: 40%;
  }
}

.about-img-wrapper img{
  object-fit: cover;
  object-position: 25% 0;
  aspect-ratio: 3 / 4;
}

.about-container p{
  font-size: 13px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
}

@media screen and (max-width: 768px) {
  .about-container p{
    order: 3;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 1.5em;
  }
}

@media screen and (min-width: 768px) {
  .about-container p{
    width: 50%;
    height: 80%;
    /* padding: 30px; */
    margin: auto auto 2em;
    
  }
}

#top_about{
  padding-bottom: 50px;
}

#top_about h3{
  font-size: 1.5em;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  #top_about h3{
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  #top_about h3{
    writing-mode: vertical-rl;
    padding: 20px;
  }
}

.service{
  padding: 40px 30px;
}

@media screen and (min-width: 768px) {
  .service{
    /* min-height: 86vh; */
    padding: 50px 50px 50px 100px;
    
  }
}

.breakfast_service{
  min-height: 0;
}

.service-title-wrapper{
  display: flex;
}

.service-title-flex-column{
  column-gap: 20px;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .service-title-flex-column{
    margin-bottom: 20px;
  }
}

.service-title-flex{
  column-gap: 20px;
}

@media screen and (min-width: 768px) {
  .service-title-flex{
    margin-bottom: 20px;
    
  }
}







.service-title-flex-item-index{
  transform: translateY(-1em);
  column-gap: 10px;
}

@media screen and (min-width: 768px) {
  .service-title-flex-item-index{
    transform: translateY(-1em);
    column-gap: 10px;
    align-items: start;
  }
}

.service-title-flex-item{
  transform: translateY(-1em);
  column-gap: 10px;
  align-items: end;
}

@media screen and (min-width: 768px) {
  .service-title-flex-item{
    column-gap: 10px;
    align-items: start;
  }
}

.service-title{
  font-size: 30px;
  writing-mode: vertical-lr;
  letter-spacing: 0.3em;
}

@media screen and (min-width: 768px) {
  .service-title{
    font-size: 40px;
    letter-spacing: 0.4em;
  }
}

.service-title-flex-item p{
  font-size: 20px;
  letter-spacing: 0.2em;
  align-items: end;
}

@media screen and (min-width: 768px) {
  .service-title-flex-item p{
    font-size: 20px;
    letter-spacing: 0.2em;
  }
}

.service-title_bar{
  border-top: 1px solid #333;
  width: 100%;
  margin-bottom: 2em;

}

@media screen and (min-width: 768px) {
  .service-flex-wrapper{
    display: flex;
  }
}


.flex{
  display: flex;
}




@media screen and (min-width: 768px) {
  .service-flex{
    column-gap: 20px;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .service-flex{
    flex-direction: column;
    justify-content: left;
  }
}


.service-flex-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  order: 2;
}

@media screen and (min-width: 768px) {
  .service-flex-item{
    width: 30%;
    height: 400px;
    justify-content: space-between;
    align-items: start;
  }
}

.bokusui-flex-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  order: 1;
}

@media screen and (min-width: 768px) {
  .bokusui-flex-item{
    width: 30%;
    height: 400px;
    justify-content: space-between;
    align-items: start;
  }
}

 .service-txt{
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.9em;
 }

 @media screen and (max-width: 768px) {
   .service-txt{
    order: 2;
    margin: 2em 0;
    letter-spacing: 0.1em;
    line-height: 1.5em;
   }
 }

.info-btn{
  border: 1px solid #333;
  padding: 8px 30px 8px 15px;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
  
}

@media screen and (max-width: 768px) {
  .info-btn{
    order: 3;
    padding: 5px 10px;
  }
}

.info-btn:hover{
  scale: 0.975;
  transition: 0.3s;
  background-color: #333;
  color: #ffffff;
}

.info-btn a{
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; 
  
}

.info-btn p{
  width: fit-content;
  text-align: left;
}



.info-btn-txt{
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
}

.info-btn-small-txt{
  font-size: 12px;
  letter-spacing: 0.1em;
}




@media screen and (min-width: 768px) {
  .service-img-wrapper{
    width: calc(70% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .service-img-wrapper{
    order: 1;
  }
}


/* フッター */
footer{
  background-color: #4d4d4d;
  padding: 70px 60px;
}



@media screen and (min-width: 768px) {
  footer{
    padding: 70px 130px;
  }
}



@media screen and (min-width: 768px) {
  .footer-container{
    display: flex;
    column-gap: 200px;
    justify-content: center;
  }
}

.footer_info{
  color: #fffdf8;
}


.info-box p{
  line-height: 1.7em;
}

.info-box:not(:last-child){
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .footer_info-large{
    font-size: 19px;
    letter-spacing: 0.3em;
  }
}

@media screen and (min-width: 768px) {
  .footer_info-large-2{
    font-size: 17px;
    letter-spacing: 0.27em;
  }
}

@media screen and (min-width: 768px) {
  .footer_info-small{
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}



.footer_info-small span{
  margin-right: 0.8em;
}

.footer_pryvacy{
  font-size: 12px;
  text-decoration: none;
  color: white;
}





@media screen and (min-width: 768px) {
  .footer_info-middle{
    font-size: 16px;
    letter-spacing: 0.3em;
  }
}

.footer_sns_flex{
  display: flex;
  column-gap: 20px;
}


.footer_sns-wrapper{
  width: 30px;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer_sns-wrapper{
    width: 40px;
  }
}

.footer_sns-wrapper a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media screen and (max-width: 768px) {
  .footer_logo{
    display: none;
  }
}

.footer_logo{
  margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
  .footer_list{
    display: none;
  }
}

.footer_list li:not(:last-child){
  margin-bottom: 15px;
}

.footer_list li a{
  text-decoration: none;
  color: #fffdf8;
  font-size: 11px;
  letter-spacing: 0.4em;
}


/* guide.html */


.guide-container{
  display: flex;
  width: 90%;
  margin: 0 15px 0 auto ;
  padding-top: 80px;
  column-gap: 15px;
}

@media screen and (min-width: 768px) {
  .guide-container{
    /* width: 85%; */
    width: 100%;
    /* padding-top: 50px; */
    padding: 50px 50px 50px 100px;
    margin: 0;
    column-gap: 30px;
  }
}

.guide-heading{
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  justify-content: end;
}

@media screen and (min-width: 768px) {
  .guide-heading{
    /* transform: translateY(-1em); */
    column-gap: 10px;
    flex-direction: row;
    align-items: end;
  }
}

.guide-heading h2{
  transform: translateY(0.32em);
  font-size: 28px;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .guide-heading h2{
    transform: translateY(0.32em);
    font-size: 38px;
    letter-spacing: 0.3em;
  }
}

.guide-heading_img-wrapper{
  max-width: 80%;
}

.guide-intro-wrapper{
  margin: 80px auto;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .guide-intro-wrapper{
    margin: 120px auto 140px;
    width: fit-content;
  }
}

.guide-intro-wrapper h4{
  font-size: 18px;
  margin-bottom: 1.5em;
  letter-spacing: 0.25em;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .guide-intro-wrapper h4{
    text-align: center;
  }
}

.guide-intro-wrapper p{
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2em;
}

@media screen and (min-width: 768px) {
  .guide-intro-wrapper p{
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 2;
  }
}

.service-title-small{
  font-size: 24px;
  writing-mode: vertical-lr;
  letter-spacing: 0.3em;
}

.sub-service-title-small{
  font-size: 18px;
  letter-spacing: 0.2em;
  align-items: end;
}

.overview-content{
  /* width: 90%; */
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .overview-content{
    width: 90%;
    margin: 0 0 0 auto;
  }
}

/* .overview-txt-wrapper:not(:last-child){
  margin-bottom: 4em;
} */

.overview-txt-wrapper p{
  font-size: 12px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.15em;
  line-height: 2;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .bokusui-flex{
    margin-bottom: 0;
  }
}

.bokusui-img{
  width: 100%;
  height: 100%;
  margin: 30px 0;
}

@media screen and (min-width: 768px) {
  .bokusui-img{
    width: 70%;
    height: 100%;
    margin: 90px 0;
  }
}




/* stay.html */

.guest-room-flex{
  column-gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .guest-room-flex{
    column-gap: 20px;
    margin-bottom: 20px;
  }
}


.guest-room-content{
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .guest-room-content{
    width: 90%;
    min-width: 500px;
    margin: 0 0 0 auto;
  }
}

.room-box{
  padding-top: 30px;
  border-top: 1px solid black;
}

@media screen and (min-width: 768px) {
  .room-box{
    /* height: 60vh; */
    
    padding: 50px 15px 0;
  }
}

.room-box:not(:last-child){
  margin-bottom: 50px;
}


.room-box-flex{
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .room-box-flex{
    flex-direction: row;
  }
}


.room-box-flex-item{
  order: 2;
}

@media screen and (min-width: 768px) {
  .room-box-flex-item{
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .facilities-content{
    padding-left: 1em;
  }
}

@media screen and (max-width: 768px) {
  .facilities-content:first-child{
    margin: 0 auto;
    width: fit-content;
  }
}



.facilities-content:not(:last-child){
  margin-bottom: 2em;
}

.facilities-content p{
  text-indent: -1em;
  padding-left: 1em;
}

.room-box-flex{
  column-gap: 50px;
}

/* swiper */

/* .swiper {
  max-width: 400px;
  
} */

.swiper{
  width: 100%;
  max-height: 500px;
}

@media screen and (min-width: 768px) {
  .swiper{
    order: 2;
  }
}

.swiper-wrapper {
  height: auto;
}

.swiper-slide {
  height: auto;
}

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

.swiper-scrollbar{
  display: none;
}

.swiper-button-prev,.swiper-button-next{
  color: #ffffff;
  top: 95%;
  display: none;
}

.swiper-button-prev{
  left: 40%;
}

.swiper-button-next{
  right: 40%;
}

.swiper-button-prev:after,.swiper-button-next:after{
  font-size: 15px;
  font-weight: 700;
}

.swiper-button-wrapper{
  width: 50px;
}

.swiper-container{
  position: relative;
}



.rental-flex{
  flex-direction: column;
  row-gap: 30px;
}

.room-box_room-name{
  font-size: 20px;
  font-weight: 600;
  height: auto;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: left;
  margin: 1em 0;
}

@media screen and (min-width: 768px) {
  .room-box_room-name{
    font-size: 20px;
    font-weight: 600;
    height: auto;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-align: left;
  }
}

.room-box_ex{
  font-size: 12px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
  .room-box_ex{
    font-size: 12px;
      font-weight: 400;
      height: auto;
      letter-spacing: 0.1em;
      line-height: 1.4;
      text-align: left;
  }
}

.room-box_detail{
  font-size: 12px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
  .room-box_detail{
    font-size: 12px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-align: left;
  }
}


.facilitie{
  
  padding: 50px 50px 50px 100px;
  
}

.facilitie-flex-item{
  width: 100%;
}

.facilitie-content{
  width: fit-content;
  margin: 50px auto;
}

.facilitie-content ul li{
  font-size: 12px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 2;
}

.facilitie-content p{
  font-size: 12px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top: 2em;
}

.private-content{
  margin: 50px 70px;
}

.private-txt-wrapper{
  margin-bottom: 50px;
}

.private-img-wrapper{
  width: 50%;
}


.private-btn-flex{
  align-items: flex-start;
  column-gap: 45px;
}

.rental-txt-wrapper{
  margin-top: 20px;
}

.rental-txt{
  text-decoration: underline;
}






.reserve-btn{
    border: 1px solid black;
    border-radius: 15px;
    padding: 10px 15px;
    height: fit-content;
}

.reserve-btn p{
    text-align: left;
    white-space: nowrap;
}


/* 朝食 */

.breakfast_fv{
    padding: 50px 50px 50px 100px;
}

.breakfast-title-flex-item{
    column-gap: 10px;
    align-items: end;
}

.breakfast-service-title{
    font-size: 40px;
    writing-mode: vertical-lr;
    letter-spacing: 0.4em;
    transform: translateY(0.3em);
}

.breakfast-title-flex-item p{
    font-size: 20px;
    letter-spacing: 0.2em;
    vertical-align: bottom;
  }

.Breakfast-flex{
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .Breakfast-flex{
    flex-direction: row;
    column-gap: 20px;
  }
}



@media screen and (min-width: 768px) {
  .row-reverse{
  flex-direction: row-reverse;
}
}


.Breakfast-flex p{
  order: 2;
  min-width: 40%;
}

.breakfast-img-box{
    width: 80%;
    margin: 0 auto 6%;
}
@media screen and (max-width: 768px) {
  .breakfast-img-box:last-child{
    margin-bottom: 20%;
  }
}


@media screen and (min-width: 768px) {
  .breakfast-img-box{
    width: 60%;
    margin: 0 auto 90px;
}
}


.breakfast-img-wrapper{
    width: 75%;
}

@media screen and (min-width: 768px) {
  .breakfast-img-wrapper{
    width: 55%;
}
}


.br-img-r{
    margin: 0 0 0 auto;
}

.breakfast-img-wrapper img{
    width: 100%;
    height: 100%;
}


/* 温泉 */

.onsen-contents{
    border-top: 1px solid black;
    transform: translateY(1.5em);
    padding-top: 30px;
    width: 100%;
}

.onsen-contents-txt-wrapper p{
    font-size: 0.8em;
}

.onsen-txt-contents{
    border-top: 1px solid black;
    transform: translateY(1.5em);
    padding-top: 30px;
    width: 100%;
    padding-left: 2em;
}

@media screen and (min-width: 768px) {
  .onsen-txt-contents{
    padding-left: 4em;
}
}



@media screen and (min-width: 768px) {
  .onsen-service_onsen-name{
    white-space: nowrap;
    transform: translateY(0.75em);
    margin: 0 4px;
  }
}


.onsen-component-detail{
    background-color: #4d4d4d;
    padding: 20px;
    border-radius: 30px;
    width: 100%;
    margin: 40px 0 70px;
}

@media screen and (min-width: 768px) {
  .onsen-component-detail{
    padding: 40px;
    width: 80%;
}
}

.onsen-component-detail h4{
    color: #ffffff;
    font-size: 1.4em;
    letter-spacing: 0.15em;
}

.onsen-component-detail p{
    color: white;
    font-size: 0.65em;
    letter-spacing: 0.1em;
    line-height: 1.6em;
    margin-top: 1.3em;
}


.onsen-service{
    padding: 18% 10%;
}

@media screen and (min-width: 768px) {
  .onsen-service{
    padding: 50px 50px 50px 100px;
}
}

.onsen-service-flex{
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .onsen-service-flex{
    flex-direction: row;
  }
}

.onsen-service-title-flex{
  column-gap: 20px;
  margin-bottom: 20px;
  align-items: end;
}

@media screen and (min-width: 768px) {
  .onsen-service-title-flex{
    column-gap: 20px;
    margin-bottom: 20px;
    
  }
}

@media screen and (min-width: 768px) {
  .title-flex-queen{
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .title-flex-queen h2{
    order: 2;
  }
}

/* .title-flex-queen p{
  white-space: nowrap;
} */

/* アクセス */

.access-map-flex{
  flex-direction: column;
  padding: 35px;
}

@media screen and (min-width: 768px) {
  .access-map-flex{
    padding: 50px 50px 50px 100px;
    justify-content: space-between;
  }
}



.map-wrapper iframe{
  width: 100%;
  height: 300px;
}

.access_service-title-flex{
  column-gap: 20px;
}

@media screen and (min-width: 768px) {
  .access_service-title-flex{
    column-gap: 70px;
  }
}

.access_service-title{
  white-space: nowrap;
  font-size: 20px;
  transform: translateY(-0.6em);
}

.access_service-title-bar{
  width: 100%;
  height: 1px;
  background-color: #333;
}



/* 周辺案内 */

.tourist-servise{
  padding-left: 5%;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .tourist-servise{
    padding: 50px 50px 50px 100px;
  }
}

.tourist-flex-item{
  width: 100%;
}

.tourist-content-flex{
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .tourist-content-flex{
    column-gap: 35px;
  }
}

.tourist-img-wrapper{
  width: 100%;
  
}

@media screen and (min-width: 768px) {
  .tourist-img-wrapper{
    width: 50%;
  }
}

.spot-name{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.8em;
}

@media screen and (min-width: 768px) {
  .spot-name{
    font-size: 20px;
    margin-bottom: 1.8em;
  }
}

.spot-ex-txt{
  font-size: 12px;
  margin-bottom: 2em;
}

.spot-btn-flex{
  column-gap: 20px;
}

@media screen and (min-width: 768px) {
  .spot-btn-flex{
    column-gap: 40px;
  }
}

.spot-btn{
  padding: 7px 15px;
  border: 1px solid black;
  border-radius: 10px;
  position: relative;
  font-size: 11px;
  letter-spacing: 0.15em;
  transition: 0.5s;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .spot-btn{
    padding: 5px 15px;
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}

.spot-btn:hover{
  background-color: #4d4d4d;
  color: #ffffff;
}

.spot-btn a{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;  
}


.tourist-content:not(:last-child){
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .tourist-content:not(:last-child){
    margin-bottom: 70px;
  }
}



.takumi-double-img{
  width: 100%;
  column-gap: 30px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .takumi-double-img{
    width: 50%;
    column-gap: 20px;
    margin-top: 20px;
  }
}

.tourist-servise-inner{
  padding: 20px 20px 0 20px;
}

@media screen and (min-width: 768px) {
  .tourist-servise-inner{
    padding: 40px 0 0 40px;
  }
}


/* プライバシーポリシー */

.privacy-container{
  padding: 100px 0 80px;
  min-height: 100vh;
}

.privacy-content{
  width: 80%;
  margin: 0 auto;
}

.privacy-title{
  margin-bottom: 3em;
}

.privacy-title h2{
  font-size: 2em;
}

.privacy-title p{
  font-size: 1.2em;
}

.privacy-txt-wrapper p{
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-align: left;
}

.privacy-txt-wrapper p:not(:last-child){
  margin-bottom: 2em;
}


.privacy-txt-wrapper_flex{
  display: flex;
  flex-flow: column;
  row-gap: 0.15em;
  
}

.privacy-txt-wrapper_flex a{
  text-decoration: none;
  color: inherit;
  width: fit-content;
  transition: 0.2s;
}

.privacy-txt-wrapper_flex a:hover{
  opacity: 0.5;
}








