/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/
*::before,
*::after{
    box-sizing: border-box;
}
.poppins{
    font-family: 'Poppins';
}
.w126{
    width: 100%;
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
}
/*=====================================
*
*header
*
=======================================*/
.header_bar{
    display: flex;
    align-items: flex-start;
    height: 80px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgba(0, 0, 0, 0));
    overflow: hidden;
    pointer-events: none;
    z-index: 9;
}
.header_bar_inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    will-change: transform;
    margin-top: 15px;
}
.header_bar span{
    font-size: max(12px, 1.0417vw); /* 20px / 1920px */
    font-weight: 600;
    color: #fff;
    margin-right: 40px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 2px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30%); }
}
@media screen and (max-width: 568px){
  .header_bar{
    height: 50px;
  }
  .header_bar span{
    letter-spacing: 0;
  }
}
/*=====================================
*
*front
*
=======================================*/
.front_title{
    text-align: center;
    position: relative;
}
.front_title .sub{
    font-size: 24px;
    color: #333;
    margin: 0 auto;
    font-family: 'Noto Serif JP';
}
.front_title h2{
    font-size: 40px;
    font-weight: 500;
    font-family: 'Noto Serif JP';
}
.center_text{
    text-align: center;
    margin: 20px auto;
}
.center_text p{
    font-size: 16px;
    line-height: 2;
}
@media screen and (max-width: 768px){
  .front_title h2{
    font-size: 32px;
  }
}
@media screen and (max-width: 568px){
  .front_title h2{
    font-size: 24px;
  }
  .front_title .sub{
    font-size: 20px;
  }
  .center_text p br{
    display: none;
  }
}
/*=====================================
*mv
=======================================*/
.mv{
    position: relative;
    overflow: hidden;
    height: 100vh;
}
.mv_image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv_inner{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 150px;
    color: #fff;
}
.mv_inner .main{
    font-size: max(38px, 4.6875vw); /* 90px / 1920px */
    font-family: 'DM Serif Display';
    margin-top: 60px;
    line-height: 1;
}
.mv_inner .sub{
    font-size: max(30px, 3.125vw); /* 60px / 1920px */
    margin: 40px auto;
    font-family: 'DM Serif Display';
    line-height: 1.3;
    margin: 40px auto 60px;
}
.mv_inner p{
    font-size: max(12px, 1.0417vw); /* 20px / 1920px */
    margin: 40px auto;
}
@media screen and (max-width: 568px){
  .mv_inner{
    padding: 0 10px;
  }
  .mv_inner .logo{
    width: 120px;
  }
  .mv_inner .sub{
    margin: 20px auto 40px;
  }
}

/*=====================================
*section1
=======================================*/
.sec1{
    margin: 100px auto;
    position: relative;
}

.sec1 .bg{
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 80%;
    max-width: 1400px;
    height: 60%;
    max-height: 400px;
    background: #fbf9f6;
    z-index: -1;
}

.sec1 .sec1_flex{
    display: flex;
    justify-content: space-between;
    margin: 60px auto;
    position: relative;
}
.sec1 .slide{
    width: 47.62%;
}
.sec1 .slide .main{

}
.sec1 .slide .sub{
    margin: 10px auto;
}
.sec1 .slide .sub ol{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.sec1 .slide .sub ol li{
    cursor: pointer;
    position: relative;
}
.sec1 .slide .sub ol li.active::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff3a;
    border: 2px solid #ffc90e;
}

.sec1 .inner{
    width: 50%;
}
.sec1 .inner h3{
    font-size: 24px;
}
.sec1 .inner .text{
    margin: 40px auto;
}
.sec1 .inner .text p{
    margin: 20px auto;
    line-height: 2;
}
.sec1 .inner .area{
    margin: 20px auto;
}
.sec1 .inner .area span{
    display: block;
}
.sec1 .inner .more{
    margin: 20px auto;
    text-align: right;
}
.sec1 .inner .more a{
    color: #333;
    position: relative;
    padding-right: 16px;
}
.sec1 .inner .more a::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 6px solid #333;
}
@media screen and (max-width: 768px){
  .sec1 .sec1_flex{
    display: block;
  }
  .sec1 .slide{
    width: 100%;
  }
  .sec1 .inner{
    width: 100%;
    margin-top: 40px;
  }
  .sec1 .bg {
    bottom: -5%;
    width: 90%;
    max-width: 1400px;
    height: 100%;
    max-height: 800px;
  }
}
/*=====================================
*section2
=======================================*/
.sec2{
    margin: 160px auto 100px;
    position: relative;
}
.sec2 .sec2_list{

}
.sec2 .sec2_list > ol{
    display: flex;
    flex-wrap: wrap;
}
.sec2 .sec2_list > ol > li{
    width: 32%;
    margin-top: 40px;
    margin-right: 2%;
}
.sec2 .sec2_list > ol > li a{
    color: #333;
    transition: ease all .3s;
}
.sec2 .sec2_list > ol > li a:hover{
    opacity: .7;
}
.sec2 .sec2_list > ol > li:nth-child(3n){
    margin-right: 0;
}
.sec2 .sec2_list > ol > li .tag{
    margin: 10px auto;
}
.sec2 .sec2_list > ol > li .tag ol{
    display: flex;
    flex-wrap: wrap;
}
.sec2 .sec2_list > ol > li .tag ol li{
    font-size: 14px;
    line-height: 1;
    padding: 5px 15px;
    border: 1px solid #333;
    margin-right: 10px;
}
.sec2 .sec2_list .morebtn{
    margin: 60px auto;
    text-align: center;
}
.sec2 .sec2_list .morebtn a{
    background: #fafafa;
    border: 1px solid #333;
    padding: 15px;
    width: 100%;
    max-width: 240px;
    display: block;
    text-align: center;
    margin: 0 auto;
    transition: ease all .3s;
    position: relative;
    color: #333;
}
.sec2 .sec2_list .morebtn a::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 6px solid #333;
    transition: ease all .3s;
}
.sec2 .sec2_list .morebtn a:hover::after{
    border-left: 6px solid #fff;
}
.sec2 .sec2_list .morebtn a:hover{
    background: #333;
    color: #fff;
}
@media screen and (max-width: 768px){
  .sec2 .sec2_list > ol > li .tag ol li {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 568px){
  .sec2 .sec2_list > ol > li,
  .sec2 .sec2_list > ol > li:nth-child(3n){
    width: 48%;
    margin-right: 4%;
  }
  .sec2 .sec2_list > ol > li:nth-child(2n){
    margin-right: 0;
  }
}
/*=====================================
*section3
=======================================*/
.sec3{
    margin: 100px auto;
    position: relative;
    padding: 100px 0;
    background: url(../images/sec3-bg.jpg)no-repeat;
}
.sec3 .map{
  width: 100%;
  height: 520px;
  background: #111;
}
@media screen and (max-width: 568px){
  .sec3 .map {
    height: 200px;
  }
}
/*=====================================
*section4
=======================================*/
.sec4{
  margin: 100px auto;
}
.sec4 .sec4_list{
  margin: 60px auto;
}
.sec4 .sec4_list ol{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.sec4 .sec4_list ol li{
  width: 32%;
}
@media screen and (max-width: 568px){
  .sec4 .sec4_list ol li{
    width: 100%;
    margin: 20px auto;
  }
  .sec4 .sec4_list ol li .title{
    margin-top: 10px;
  }
}
/*=====================================
*section5
=======================================*/
.sec5{
  margin: 100px auto;
}
.sec5_list{
  margin-top: 40px;
}
.sec5_list .splide__slide{
  width: 600px;
  max-width: 90vw;
  background: #fbf9f6;
  padding: 40px;
}
.sec5_list .splide__slide .image{
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
}
.sec5_list .splide__slide p{
  margin-top: 10px;
  line-height: 2;
  font-family: 'Noto Serif JP';
}
@media screen and (max-width: 568px){
  .sec5_list .splide__slide{
    padding: 20px;
  }
  .sec5_list .splide__slide p{
    font-size: 14px;
  }
  .sec5_list .splide__slide .image{
    width: 50px;
    height: 50px;
  }
}

/*=====================================
*section6
=======================================*/
/*=====================================
*section7
=======================================*/

/*=====================================
*section8
=======================================*/

/*=====================================
*section9
=======================================*/

/*=====================================
*section10
=======================================*/


/*=====================================
*
*single
*
=======================================*/
#single{

}
#single .single_header{
  height: 340px;
  overflow: hidden;
  background: #000;
  position: relative;
}
#single .single_header .bg{
  opacity: .6;
}
#single .single_header .bg img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#single .single_header .logo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
}
#single .maincontents{
  display: flex;
  justify-content: space-between;
}
#single .maincontents .sidenav{
  width: 25%;
}
#single .maincontents .sidenav aside{
}
#single .maincontents .sidenav aside h2{
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
  color: #111;
  margin-bottom: 20px;
}
#single .maincontents .sidenav aside h2::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: #111;
}
#single .maincontents .sidenav aside ol{
  margin-top: 20px;
}
#single .maincontents .sidenav aside ol li{
  margin-bottom: 20px;
}
#single .maincontents .sidenav aside ol li a{
  color: #333;
  transition: ease all .3s;
}
#single .maincontents .sidenav aside ol li a:hover{
  opacity: .7;
}
#single .maincontents .sidenav aside ol li a .cate{
    font-size: 12px;
    color: #111;
    padding: 5px 10px;
    border: 1px solid #111;
    display: inline-block;
    margin: 10px auto;
}
#single .maincontents .sidenav aside ol li a h3{
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
#single .maincontents .contents{
  width: 68%;
}
#single .maincontents .contents .topcate{

}
#single .maincontents .contents .topcate a{
    font-size: 14px;
    color: #111;
    padding: 5px 10px;
    border: 1px solid #111;
    display: inline-block;
    margin: 10px auto;
}
#single .maincontents .contents h1{
  font-family: 'Noto Serif JP';
  font-size: 34px;
  margin-bottom: 80px;
  font-weight: 700;
}
#single .maincontents .contents h2{
  font-size: 28px;
  color: #111;
  font-weight: 700;
  margin: 60px auto 40px;
}
#single .maincontents .contents p{
  margin: 40px auto;
  line-height: 1.8;
  color: #444444;
}
#single .single_intro{
  background: #fbf9f6;
  padding: 40px 20px;
  margin: 60px auto;
}
#single .single_intro .ingle_intro_flex{
    display: flex;
    justify-content: space-between;
    margin: 60px auto 0;
    position: relative;
}
#single .single_intro .ingle_intro_flex .slide{
    width: 47.62%;
}
#single .single_intro .ingle_intro_flex .slide .main{

}
#single .single_intro .ingle_intro_flex .slide .sub{
    margin: 10px auto;
}
#single .single_intro .ingle_intro_flex .slide .sub ol{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#single .single_intro .ingle_intro_flex .slide .sub ol li{
    cursor: pointer;
    position: relative;
}
#single .single_intro .ingle_intro_flex .slide .sub ol li.active::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff3a;
    border: 2px solid #ffc90e;
}
#single .single_intro .ingle_intro_flex .inner{
    width: 50%;
}
#single .single_intro .ingle_intro_flex .inner h3{
    font-size: 24px;
}
#single .single_intro .ingle_intro_flex .inner .text{
    margin: 40px auto;
}
#single .single_intro .ingle_intro_flex .inner .text p{
    margin: 20px auto;
    line-height: 2;
}
#single .single_intro .ingle_intro_flex .inner .area{
    margin: 20px auto;
}
#single .single_intro .ingle_intro_flex .inner .area span{
    display: block;
}
#single .single_intro .ingle_intro_flex .inner .more{
    margin: 20px auto 0;
    text-align: right;
}
#single .single_intro .ingle_intro_flex .inner .more a{
    color: #333;
    position: relative;
    padding-right: 16px;
}
#single .single_intro .ingle_intro_flex .inner .more a::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 6px solid #333;
}
#single .related_column{
  margin: 60px auto 100px;
}
#single .related_column .related_title{
  margin: 60px auto;
}
#single .related_column .related_title h2{
  font-size: 40px;
  color: #111;
  font-weight: 700;
  font-family: 'Noto Serif JP';
}
#single .related_column ol li a{
  color: #333;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  transition: ease all .3s;
}
#single .related_column ol li a:hover{
  opacity: .7;
}
#single .related_column ol li a .image{
  overflow: hidden;
  width: 32%;
}
#single .related_column ol li a .text{
  width: 68%;
  padding: 10px 20px;
}
#single .related_column ol li a .text .cate{
  font-size: 12px;
  color: #111;
  padding: 5px 10px;
  border: 1px solid #111;
  display: inline-block;
  margin: 10px auto;
}
#single .related_column ol li a .text h3{
  font-size: 24px;
  font-weight: 600;
  color: #111;
}
#single .related_column ol li a .text p{
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin: 10px auto;
}
#single .related_column ol li a .text .date{
  font-size: 12px;
  color: #888;
}
@media screen and (max-width: 1260px){
  #single .single_intro{
    width: 100vw;
    margin-left: -20px;
  }
}
@media screen and (max-width: 768px){
  #single .single_header{
    height: 240px;
  }
  #single .single_header .logo img{
    width: 150px;
  }
  #single .maincontents{
    display: block;
  }
  #single .maincontents .sidenav{
    width: 100%;
    margin-top: 60px;
  }
  #single .maincontents .sidenav aside ol{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  #single .maincontents .sidenav aside ol li{
    width: 49%;
  }
  #single .maincontents .contents{
    width: 100%;
  }
  #single .maincontents .contents h1{
    font-size: 28px;
    margin-bottom: 40px;
  }
  #single .maincontents .contents h2{
    font-size: 24px;
    margin: 40px auto 20px;
  }
  #single .maincontents .contents p{
    margin: 20px auto;
  }
  #single .single_intro .ingle_intro_flex{
    display: block;
    margin-top: 40px;
  }
  #single .single_intro .ingle_intro_flex .slide{
    width: 100%;
  }
  #single .single_intro .ingle_intro_flex .inner{
    width: 100%;
    margin-top: 40px;
  }
  #single .related_column .related_title h2{
    font-size: 32px;
  }
  #single .related_column .related_title {
    margin: 60px auto 20px;
  }
  #single .related_column ol li a .text h3{
    font-size: 20px;
  }
  #single .related_column ol li a .text p{
    font-size: 14px;
  }
}
@media screen and (max-width: 568px){
  #single .single_header{
    height: 180px;
  }
  #single .single_header .logo img{
    width: 120px;
  }
  #single .maincontents .contents h1{
    font-size: 24px;
  }
  #single .maincontents .contents h2{
    font-size: 20px;
  }
  #single .single_intro .ingle_intro_flex .inner .text {
    margin: 20px auto;
  }
  #single .single_intro .ingle_intro_flex .inner .text p{
    font-size: 14px;
  }
  #single .related_column .related_title h2{
    font-size: 24px;
  }
  #single .related_column ol li a{
    display: block;
  }
  #single .related_column ol li a .image{
    width: 100%;
  }
  #single .related_column ol li a .text {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
}
#single #toc_container{
  margin: 40px auto;
  width: 100%;
}
#single #toc_container .toc_title{
  margin: 0 auto;
  color: #111;
}
#single #toc_container .toc_list{
  background: none;
  border: none;
}
#single #toc_container .toc_list li{
  list-style: none;
  margin: 15px auto;
}
#single #toc_container .toc_list li::before{
  content: none;
}
#single #toc_container .toc_list li a{
  color: #111;
}

.lodging_header{
  position: relative;
  height: 600px;
  background: #000;
  overflow: hidden;
}
.lodging_header .bg img{
  position: absolute;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: .6;
}
.lodging_header .logo{
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
}
.lodging_header .text{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
}
.lodging_header .text h1{
  font-size: 40px;
  font-family: 'Noto Serif JP';
  color: #fff;
}
.lodging_header .text .star{
  margin-top: 30px;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.lodging_header .text .star img{
    margin-left: 10px;
}
.lodging_title{
  text-align: center;
  position: relative;
  z-index: 2;
}
.lodging_title h2{
  font-size: 40px;
  font-family: 'Noto Serif JP';
}
.lodging_title .en{
  color: #f4ecdf;
  font-family: 'Noto Serif JP';
  font-size: 100px;
  font-size: 9vw;
  position: absolute;
  left: 0;
  top: -20px;
  line-height: 1;
  z-index: -1;
  letter-spacing: 4px;
  font-weight: 700;
}
.lodging_inner{
  margin: 100px auto;
}
#lodging .center_text{
  line-height: 2.4;
  margin: 60px auto;
}
#lodging .cv_area{
  background: url(../images/cv_bg.jpg)no-repeat;
  background-size: cover;
  padding: 80px 0;
}
#lodging .cv_area a{
  font-size: 32px;
  font-weight: 600;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  padding: 25px 10px;
  line-height: 1;
  position: relative;
}
#lodging .cv_area a::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left: 10px solid #fff;
  transition: ease all .3s;
}
#lodging .status{
  padding: 100px 0;
  background: url(../images/sec3-bg.jpg) no-repeat;
  background-size: cover;
}
#lodging .status .status_flex > div{
    display: flex;
    justify-content: space-between;
    margin: 60px auto 0;
    position: relative;
}
#lodging .status .status_flex .slide{
    width: 47.62%;
}
#lodging .status .status_flex .slide .main{

}
#lodging .status .status_flex .slide .sub{
    margin: 10px auto;
}
#lodging .status .status_flex .slide .sub > div{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#lodging .status .status_flex .slide .sub > div figure{
    cursor: pointer;
    position: relative;
}
#lodging .status .status_flex .slide .sub > div figure.active::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff3a;
    border: 2px solid #ffc90e;
}
#lodging .status .status_flex .text{
    width: 50%;
}
#lodging .status .status_flex .text h3{
    font-size: 24px;
}
#lodging .status .status_flex .text .text{
    margin: 40px auto;
}
#lodging .status .status_flex .text .text p{
    margin: 20px auto;
    line-height: 2;
}
#lodging .status .status_flex .text .area{
    margin: 20px auto;
}
#lodging .status .status_flex .text .area span{
    display: block;
}
#lodging .status .status_flex .text .more{
    margin: 20px auto 0;
    text-align: right;
}
#lodging .status .status_flex .text .more a{
    color: #333;
    position: relative;
    padding-right: 16px;
}
#lodging .status .status_flex .text .more a::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 6px solid #333;
}
#lodging .status .status_flex .text .price > div{
  display: flex;
  align-items: center;
  padding: 20px;
}
#lodging .status .status_flex .text .price > div .title{
  width: 80px;
  font-size: 28px;
  font-weight: 600;
  color: #111;
}
#lodging .status .status_flex .text .price > div .col{
  font-size: 28px;
}
#lodging .status .status_flex .text .text_inner{
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
#lodging .status .status_flex .text .text_inner > div{
  display: flex;
  align-items: center;
}
#lodging .status .status_flex .text .text_inner > div .title{
  width: 80px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}
#lodging .status .status_flex .text .text_btn{
  margin-top: 80px;
  text-align: center;
  position: relative;
}
#lodging .status .status_flex .text .text_btn .comment{
    background: url(../images/comment.png) no-repeat;
    background-size: contain;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 260px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    z-index: 2;
}
#lodging .status .status_flex .text .text_btn a{
  background: #1e150f;
  color: #fff;
  display: block;
  max-width: 340px;
  line-height: 1;
  padding: 25px 10px;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin: 0 auto;
  border-radius: 3px;
  border: 2px solid #1e150f;
  transition: ease all .3s;
}
#lodging .status .status_flex .text .text_btn a:hover{
  background: #fff;
  color: #1e150f;
}
#lodging .status .status_flex .text .text_btn a::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left: 10px solid #fff;
  transition: ease all .3s;
}
#lodging .status .status_flex .text .text_btn a:hover::after{
  border-left: 10px solid #1e150f;
}

#lodging .facilities_list{

}
#lodging .facilities_list .main > div{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
#lodging .facilities_list .main > div .facilities_inner{
  width: 32%;
  border: 1px solid #eadac0;
  padding: 20px;
  margin-top: 20px;
}
#lodging .facilities_list .main > div .facilities_inner > div{
  display: flex;
  align-items: center;
}
#lodging .facilities_list .main > div .facilities_inner > div p{
  margin-left: 20px;
  font-weight: 500;
  color: #635745;
}
#lodging .facilities_list .sub{
  margin-top: 40px;
}
#lodging .facilities_list .sub > div{
  display: flex;
  justify-content: space-between;
}
#lodging .pick_text{
  margin: 40px auto;
  font-size: 20px;
  text-align: center;
  padding: 40px;
  color: #635745;
  border: 1px solid #eadac0;
  background: #fcfaf7;
  max-width: 940px;
}


#lodging .maps{
  margin: 60px auto;
  height: 500px;
}
#lodging .caution_list{
  margin: 60px auto;
}
#lodging .caution_list > div{
  display: flex;
  justify-content: space-between;
}
#lodging .caution_list > div .caution_inner{
  width: 23%;
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px;
}
#lodging .caution_list > div .caution_inner p{
  margin-top: 20px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
#lodging .more_btn{
    margin: 20px auto;
    text-align: right;
}
#lodging .more_btn a{
    color: #333;
    position: relative;
    padding-right: 16px;
}
#lodging .more_btn a::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left: 6px solid #333;
}

#lodging .area_text{
  background: url(../images/lodging_bg.jpg)no-repeat;
}
#lodging .lodging_column_flex{
  margin: 60px auto;
}
#lodging .lodging_column_flex > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row-reverse;
}
#lodging .lodging_column_flex.re > div {
  flex-flow: nowrap;
}
#lodging .lodging_column_flex > div .text{
  width: 48%;
}
#lodging .lodging_column_flex > div .text h3{
  font-size: 24px;
  font-family: 'Noto Serif JP';
  margin-bottom: 60px;
}
#lodging .lodging_column_flex > div .text p{
  line-height: 2;
}
.lodging_bottom{
    display: flex;
    flex-wrap: wrap;
}
.lodging_bottom > li{
    width: 32%;
    margin-top: 40px;
    margin-right: 2%;
}
.lodging_bottom > li a{
    color: #333;
    transition: ease all .3s;
}
.lodging_bottom > li a:hover{
    opacity: .7;
}
.lodging_bottom > li:nth-child(3n){
    margin-right: 0;
}
.lodging_bottom > li .tag{
    margin: 10px auto;
}
.lodging_bottom > li .tag ol{
    display: flex;
    flex-wrap: wrap;
}
.lodging_bottom > li .tag ol li{
    font-size: 14px;
    line-height: 1;
    padding: 5px 15px;
    border: 1px solid #333;
    margin-right: 10px;
}
@media screen and (max-width: 968px){
  #lodging .facilities_list .main > div .facilities_inner{
    width: 49%;
  }
  #lodging .caution_list > div .caution_inner{
    padding: 20px 10px;
  }
  #lodging .caution_list > div .caution_inner p{
    font-size: 14px;
    height: auto;
  }
  #lodging .lodging_column_flex > div figure{
    width: 50%;
  }
  #lodging .lodging_column_flex > div .text h3{
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px){
  .lodging_header{
    height: 320px;
  }
  .lodging_header .logo img{
    width: 150px;
  }
  .lodging_header .text{
    top: 60%;
  }
  .lodging_header .text .star{
    margin-top: 20px;
  }
  .lodging_title h2{
    font-size: 32px;
  }
  .lodging_title .en{
    font-size: 60px;
  }
  #lodging .cv_area a{
    max-width: 340px;
  }
  #lodging .status .status_flex > div{
    display: block;
  }
  #lodging .status .status_flex > div .slide{
    width: 100%;
  }
  #lodging .status .status_flex .text{
    width: 100%;
    margin-top: 20px;
  }
  #lodging .facilities_list .main > div{
    display: block;
  }
  #lodging .facilities_list .main > div .facilities_inner{
    width: 100%;
  }
  #lodging .facilities_list .sub > div{
    flex-wrap: wrap;
    gap: calc(8% / 3);
    margin: 10px auto;
  }
  #lodging .facilities_list .sub > div figure{
    width: calc(23% - 10px);
  }
  #lodging .pick_text{
    padding: 20px;
    font-size: 16px;
  }
  #lodging .caution_list {
    margin: 60px auto 20px;
  }
  #lodging .caution_list > div{
    flex-wrap: wrap;
    gap: 2%;
  }
  #lodging .caution_list > div .caution_inner{
    width: 49%;
    margin: 5px auto;
  }
  #lodging .lodging_column_flex > div .text h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 568px){
  .lodging_header{
    height: 240px;
  }
  .lodging_header .bg img{
    width: auto;
    height: 100%;
    min-width: 100%;
  }
  .lodging_header .logo{
    top: 30%;
  }
  .lodging_header .logo img{
    width: 120px;
  }
  .lodging_header .text{
    top: 60%;
  }
  .lodging_header .text h1{
    font-size: 24px;
  }
  .lodging_header .text .star{
    margin-top: 10px;
  }
  .lodging_title h2{
    font-size: 24px;
  }
  #lodging .center_text{
    margin: 40px auto;
  }
  .lodging_title .en{
    font-size: 40px;
  }
  #lodging .center_text p br{
    display: none;
  }
  #lodging .status .status_flex .text .price > div,
  #lodging .status .status_flex .text .text_inner{
    padding: 10px;
  }
  #lodging .status .status_flex .text .price > div .title,
  #lodging .status .status_flex .text .price > div .col {
    font-size: 20px;
  }
  #lodging .status .status_flex .text .text_inner > div .title{
    font-size: 16px;
  }
  #lodging .status .status_flex .text .text_inner > div .col{
    font-size: 14px;
  }
  #lodging .lodging_column_flex > div{
    display: block;
    margin: 40px auto;
  }
  #lodging .lodging_column_flex > div figure {
    width: 100%;
  }
  #lodging .lodging_column_flex > div .text {
    width: 100%;
    margin-top: 20px;
  }
  .lodging_bottom{
    display: block;
  }
  .lodging_bottom > li{
    width: 100%;
    margin: 20px auto;
  }
}
/*=====================================
*
*page
*
=======================================*/

/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/
.breadcrumb{
  margin: 20px auto;
}
.breadcrumb ul{
  display: flex;
}
.breadcrumb ul li{

}
.breadcrumb ul li::after{
  content: '>';
  margin: 0 10px;
  font-size: 14px;
}
.breadcrumb ul li:last-child::after{
  content: none;
}
.breadcrumb ul li a{
  color: #444;
  font-size: 14px;
}
@media screen and (max-width: 768px){
  .breadcrumb ul{
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb ul::-webkit-scrollbar{
    display: none;
  }
  .breadcrumb ul li a{
    font-size: 12px;
  }
}
/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
footer{
  background: url(../images/col-bg.jpg)no-repeat;
  overflow: hidden;
}
.foot_column{
  margin: 80px auto 20px;
}
.foot_column .foot_title{
    text-align: center;
    position: relative;
}
.foot_column .foot_title .sub{
    font-size: 24px;
    color: #fff;
    margin: 0 auto;
    font-family: 'Noto Serif JP';
}
.foot_column .foot_title h2{
    font-size: 40px;
    font-weight: 500;
    font-family: 'Noto Serif JP';
    color: #fff;
}
.foot_column .center_text{
  text-align: center;
  color: #fff;
}
.foot_column .colmn_list{
  margin-top: 40px;
}
.foot_column .colmn_list ol{
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.foot_column .colmn_list ol li{
  width: 32%;
  position: relative;
  margin-bottom: 60px;
}
.foot_column .colmn_list ol li a{
  color: #333;
  position: relative;
  transition: ease all .3s;
}
.foot_column .colmn_list ol li a:hover{
  opacity: .7;
}
.foot_column .colmn_list ol li a .image{
  overflow: hidden;
}
.foot_column .colmn_list ol li a .title{
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    width: calc(100% - 20px);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
}
footer .foot_bot{
  background: rgb(17 17 17 / 60%);
  color: #fff;
  padding: 10px;
}
footer .foot_bot .footer_menu{
  text-align: center;
  margin: 30px auto;
}
footer .foot_bot .footer_menu ol{
  display: flex;
  justify-content: center;
}
footer .foot_bot .footer_menu ol li{
  position: relative;
}
footer .foot_bot .footer_menu ol li::after{
  content: '/';
  margin: 0 10px;
}
footer .foot_bot .footer_menu ol li:last-child::after{
  display: none;
}
footer .foot_bot .footer_menu ol li a{
  color: #fff;
  font-weight: 400;
  transition: ease all .3s;
}
footer .foot_bot .footer_menu ol li a:hover{
  opacity: .7;
}
footer .foot_bot .copyright{
  text-align: center;
}
@media screen and (max-width: 768px){
  .foot_column .colmn_list ol li{
    width: 49%;
  }
  .foot_column .colmn_list ol li a .image{
    padding-right: 10px;
  }
}
@media screen and (max-width: 568px){
  footer{
    background-size: cover;
  }
  .foot_column .foot_title h2{
    font-size: 24px;
  }
}
@media screen and (max-width: 440px){
  .foot_column .colmn_list ol{
    display: block;
  }
  .foot_column .colmn_list ol li{
    width: 100%;
  }
}
/*=====================================
*
*sidenav
*
=======================================*/

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ削除
=======================================*/
@media screen and (min-width: 1025px){
    .pcnone{
        display: none;
    }
}
/*=====================================
*tablet削除
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
    .tabnone{
      display: none;
    }
}
/*=====================================
*sp削除
=======================================*/
@media screen and (max-width:414px){
    .spnone{
        display: none;
    }
}
  