#loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #EDE8E4;
  z-index: 9999;
  transition: opacity 0.8s, visibility 0.8s;
}
#loading.loaded{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loading .loading_conte{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#loading .loading_logo{
  width: 450px;
  margin: 0 auto 90px;
}
#loading .loading_logo img{
  width: 100%;
  height: auto;
}
#loading .container{
  width: 200px;
  height: 60px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#loading .circle{
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: pink;
  left: 15%;
  transform-origin: 50%;
  animation: circle .5s alternate infinite ease;
}
@keyframes circle{
  0%{
      top: 60px;
      height: 5px;
      border-radius: 50px 50px 25px 25px;
      transform: scaleX(1.7);
  }
  40%{
      height: 20px;
      border-radius: 50%;
      transform: scaleX(1);
  }
  100%{
      top: 0%;
  }
}
#loading .circle:nth-child(2){
  left: 50%;
  animation-delay: .4s;
}
#loading .circle:nth-child(3){
  left: 85%;
  animation-delay: .2s;
}
#loading .shadow{
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(220, 91, 81, .5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow .5s alternate infinite ease;
}
@keyframes shadow{
  0%{
      transform: scaleX(1.5);
  }
  40%{
      transform: scaleX(1);
      opacity: .7;
  }
  100%{
      transform: scaleX(.2);
      opacity: .4;
  }
}
#loading .shadow:nth-child(4){
  left: 50%;
  animation-delay: .2s
}
#loading .shadow:nth-child(5){
  left: 85%;
  animation-delay: .3s;
}

#mv{
  padding-top: 146px;
  padding-bottom: 78px;
}
#mv .conte{
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mv .conte .copy{
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
#mv .conte .copy span{
  line-height: 1;
  margin-top: -0.6em;
}
#mv .conte .logo{
  width: 800px;
}

#about{
  position: relative;
  height: 910px;
}
#about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/common/bg_wavy_02.webp);
  background-size: 100% 100%;
}
#about::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/common/bg_wavy_01.webp);
  background-size: 100% 99%;
}
#about .bg_img{
  height: 910px;
  overflow: hidden;
}
#about .bg_img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
#about .bg_inner{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
}
#about .bg_inner .sec_ttl{
  width: 422px;
  margin-left: auto;
  margin-right: auto;
}
#about .bg_inner .txt{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.15em;
  margin-top: 4em;
}
#about .slide_txt_conte{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
#about .slide_txt_conte .slide_txt_lists{
  display: flex;
  align-items: center;
  width:  305vw;
  overflow: hidden;
  margin-right: -150vw;
}
#about .slide_txt_conte .slide_txt_lists li{
  animation : slideTxt 30s linear infinite;
  width: 150vw;
  overflow: hidden;
  padding-left: 5vw;
}
@keyframes slideTxt{
  0%{ transform: translateX(0)}
  100%{ transform: translateX(-100%)}
}

#circle{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
#circle .slide_circle_conte{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#circle .splide__track{
  overflow: visible;
  width: 100%;
}
#circle .splide__slide{
  animation: float 5s linear infinite;
}
#circle .splide__slide.type-a{
  animation-delay: 0s;
}
#circle .splide__slide.type-b{
  animation-delay: 2.5s;
}
@keyframes float{
  0%{ transform: translateY(100px)}
  50%{ transform: translateY(-100px)}
  100%{ transform: translateY(100px)}
}

#square{
  position: relative;
  background: url(../images/sec_square_bg.webp);
  background-size: 100% 682px;
  background-repeat: no-repeat;
}
#square .sec_ttl{
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -6px;
}
#square .head_conte{
  position: relative;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
}
#square .head_conte .head{
  position: relative;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFF;
  text-align: center;
  padding-bottom: .4em;
}
#square .head_conte .head::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_01.svg);
  background-size: 100% 100%;
}
#square .head_conte .txt{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2.2;
  color: #FFF;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 2.5em;
}
#square .head_conte .btn_lists{
  width: 735px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}
#square .head_conte .btn_lists .btn_list{
  width: 338px;
  text-align: center;
}
#square .head_conte .btn_lists .btn_list .shadow_btn_wrap{
  position: relative;
}
#square .head_conte .btn_lists .btn_list .shadow_btn_wrap::after{
  content: "";
  position: absolute;
  bottom: -5px;
  right: -3px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  z-index: -1;
}
#square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn{
  display: block;
  position: relative;
  background: #FFF;
  color: #02aad5;
  border-radius: 100px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: .7em 0;
  transition: .3s;
}
#square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/arrow_01.svg);
  background-size: 100% 100%;
  z-index: 1;
}

#square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn:hover{
  position: relative;
  bottom: -5px;
  right: -3px;
  transition: .3s;
}

#topics{
  margin-top: 196px;
}
#topics .sec_ttl{
  width: 436px;
  margin-left: auto;
  margin-right: auto;
}
#topics .conte{
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 63px;
  background: #FFF;
  border-radius: 50px;
  padding-top: 76px;
  padding-bottom: 60px;
}
#topics .opening_hours{
  text-align: center;
}
#topics .opening_hours .ttl{
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
#topics .opening_hours .inner{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#topics .opening_hours .inner .time{
  font-size: 59px;
  line-height: .5;
  letter-spacing: 0.1em;
}
#topics .opening_hours .inner .time span{
  display: block;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: .6em;
}
#topics .opening_hours .inner .line_time{
  width: 57px;
  height: 5px;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
  background: #000;
}

#topics .opening_hours .close_announce{
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 1.1em;
}

#topics .opening_hours .note{
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  font-weight: 600;
  margin-top: 2.5em;
  text-align: left;
}

#topics .opening_hours .note._fix{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  margin-top: 2.5em;
  text-align: center;
}

#topics .opening_hours._child{
  position: relative;
  margin-top: 60px;
  padding-top: 60px;
}
#topics .opening_hours._child::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 514px;
  height: 1px;
  background: #000;
}
#topics .opening_hours._child .attraction_lists li{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  gap: 0.3em;
}
#topics .opening_hours._child .attraction_lists li:nth-child(n+2){
  margin-top: .5em;
  margin-top: 0.2em;
}

#topics .opening_hours .bnr{
  width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

#topics .opening_hours .shadow_btn_wrap{
  position: relative;
  width: 338px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  z-index: 1;
}
#topics .opening_hours .shadow_btn_wrap::after{
  content: "";
  position: absolute;
  bottom: -5px;
  right: -3px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  z-index: -1;
}
#topics .opening_hours .shadow_btn_wrap .btn{
  display: block;
  position: relative;
  background: #009e86;
  color: #FFF;
  border-radius: 100px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: .7em 0;
  transition: .3s;
}
#topics .opening_hours .shadow_btn_wrap .btn::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/arrow_02.svg);
  background-size: 100% 100%;
  z-index: 1;
}

#topics .opening_hours .shadow_btn_wrap .btn:hover{
  position: relative;
  bottom: -5px;
  right: -3px;
  transition: .3s;
}

#topics .event_news{
  width: 775px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}
#topics .event_news_conte{
  width: 100%;
}
#topics .event_news_conte .ttl{
  margin-bottom: 40px;
}
#topics .event .ttl{
  width: 128px;
}
#topics .news .ttl{
  width: 116px;
}
#topics .event_news_conte .lists .list{
  padding: 70px 0;
}
#topics .event_news_conte .lists .list:nth-child(n+2){
  border-top: 1px solid #000;
}
#topics .event_news_conte .lists .list:nth-child(1){
  border-top: none;
  padding-top: 20px;
}
#topics .event_news_conte .lists .list .data{
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0.6em;
}
#topics .event_news_conte .lists .list .txt{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.02em;
}
#topics .event_news_conte .lists .list .txt a{
  color: #009f83;
}
#topics .event_news_conte .lists .list .more_btn{
  position: relative;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 117px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #009f83;
  color: #009f83;
  margin-top: 1em;
  font-size: 14px;
  letter-spacing: 0;
}
#topics .event_news_conte .lists .list .more_btn .arrow{
  display: inline-block;
  width: 15px;
}

/* イベント・ニュースのアコーディオン（各投稿） */
#topics .event.event_news_conte .lists .list{
  position: relative;
  height: 120px;
  overflow: hidden;
  transition: height .3s linear;
}
#topics .event.event_news_conte .lists .list::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
#topics .event.event_news_conte .lists .list.active{
  height: auto;
  transition: height .3s linear;
}
#topics .event.event_news_conte .lists .list.active::after{
  content: none;
}
#topics .event.event_news_conte .lists .list .lead_btn{
  width: 35px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  cursor: pointer;
  transition: 0s !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

#topics .info_conte{
  position: relative;
  width: 775px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding-top: 75px;
}
#topics .info_conte::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_02.svg);
  background-size: 100% 100%;
}
#topics .info_conte .wrap{
  position: relative;
  height: 150px;
  text-align: center;
  overflow: hidden;
  transition: height .3s linear;
}
#topics .info_conte .wrap::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
#topics .info_conte .wrap.active{
  height: auto;
  transition: height .3s linear;
}
#topics .info_conte .wrap.active::after{
  content: none;
}

#topics .info_conte .wrap .head{
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
}
#topics .info_conte .wrap .txt{
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}
#topics .info_conte .wrap .txt .fw{
  font-size: 14px;
  font-weight: 700;
}
#topics .info_conte .lead_btn{
  width: 35px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  transition: 0s !important;
}

#stay{
  margin-top: 207px;
}
#stay .sec_ttl{
  width: 347px;
  margin-left: auto;
  margin-right: auto;
}
#stay .about{
  position: relative;
  margin-top: 82px;
}
#stay .about .bg_img{
  width: 100%;
  height: 460px;
  overflow: hidden;
}
#stay .about .bg_img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top center;
}
#stay .about .txt_lists{
  display: flex;
  flex-direction: column;
  align-items: last baseline;
  font-size: 20px;
  letter-spacing: 0.07em;
  font-weight: 500;
  gap: .8em;
  position: absolute;
  top: 50%;
  left: 217px;
  transform: translateY(-50%);
}
#stay .about .txt_lists .txt_list{
  text-align: center;
  display: inline-block;
  color: #000;
  background: #fff;
  padding: .2em 1.4em;
}
#stay .inner{
  position: relative;
  width: 990px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
#stay .inner_head{
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2.3;
  margin-bottom: 7em;
}
#stay .inner .wrap{
  position: relative;
  padding-top: 70px;
  margin-top: 70px;
}
#stay .inner .wrap._01{
  padding-top: 0;
  margin-top: 0;
}
#stay .inner .wrap::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_02.svg);
  background-size: 100% 100%;
}
#stay .inner .wrap._01::after{
  background: none;
}
#stay .inner .wrap._04{
  padding-bottom: 70px;
}
#stay .inner .wrap._04::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_02.svg);
  background-size: 100% 100%;
}
#stay .inner .wrap .wrap_ttl{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
#stay .inner .wrap._01 .wrap_ttl{
  width: 361px;
}
#stay .inner .wrap._02 .wrap_ttl{
  width: 349px;
}
#stay .inner .wrap._03 .wrap_ttl{
  width: 362px;
}
#stay .inner .wrap._04 .wrap_ttl{
  width: 171px;
}

#stay .inner .wrap .img_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
}
#stay .inner .wrap._04 .img_wrap{
  justify-content: center;
}
#stay .inner .wrap .img_wrap .img{
  width: 48%;
}
#stay .inner .wrap._04 .img_wrap .img{
  width: 650px;
}
#stay .inner .wrap .txt_wrap{
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#stay .inner .wrap .txt_wrap .txt_box{
  width: auto;
}
#stay .inner .wrap .txt_wrap .txt_box .txt{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
#stay .inner .wrap .txt_wrap .txt_box .txt_note{
  display: inline-block;
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 8px;
  margin-top: 2em;
  padding: 0.6em 1.4em;
}
#stay .inner .wrap .txt_wrap .txt_box .txt_note .f-s{
  font-size: 80%;
}

#stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap{
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 20px;
}
#stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap .icon_box{
  display: flex;
  gap: 20px;
}
#stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap .icon{
  width: 40px;
}

#stay .inner .wrap .txt_wrap .btn{
  width: 100px;
}

#activity{
  margin-top: 180px;
}
#activity .sec_ttl{
  width: 668px;
  margin-left: auto;
  margin-right: auto;
}
#activity .inner{
  position: relative;
  width: 990px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 180px;
}
#activity .inner .wrap{
  position: relative;
  padding-top: 70px;
  margin-top: 70px;
}
#activity .inner .wrap:nth-child(1){
  padding-top: 0;
  margin-top: 0;
}
#activity .inner .wrap::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_02.svg);
  background-size: 100% 100%;
}
#activity .inner .wrap:nth-child(1)::after{
  background: none;
}
#activity .inner .wrap .wrap_ttl{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
#activity .inner .wrap._01 .wrap_ttl{
  width: 414px;
}
#activity .inner .wrap._02 .wrap_ttl{
  width: 330px;
}
#activity .inner .wrap._03 .wrap_ttl{
  width: 186px;
}
#activity .inner .wrap._04 .wrap_ttl{
  width: 400px;
}
#activity .inner .wrap._05 .wrap_ttl{
  width: 484px;
}
#activity .inner .wrap._06 .wrap_ttl{
  width: 488px;
}

#activity .inner .wrap .img_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
}
#activity .inner .wrap .img_wrap .img{
  width: 48%;
}
#activity .inner .wrap .txt_wrap{
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#activity .inner .wrap .txt_wrap .txt_box{
  width: auto;
}
#activity .inner .wrap .txt_wrap .txt_box .txt{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
#activity .inner .wrap .txt_wrap .txt_box .txt span{
  display: block;
  font-size: 12px;
  margin-top: 0.5em;
}
#activity .inner .wrap .txt_wrap .btn{
  width: 100px;
}


#relaxation{
  margin-top: 244px;
}
#relaxation .sec_ttl{
  position: relative;
  width: 816px;
  margin-left: auto;
  margin-right: auto;
}

#uminaka{
  position: relative;
  background: url(../images/sec_uminaka_bg.webp);
  background-size: 100% 652px;
  background-repeat: no-repeat;
  margin-top: 195px;
}
#uminaka .sec_ttl{
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -6px;
}
#uminaka .head_conte{
  position: relative;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
}
#uminaka .head_conte .head{
  position: relative;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFF;
  text-align: center;
  padding-bottom: .4em;
}
#uminaka .head_conte .head::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_01.svg);
  background-size: 100% 100%;
}
#uminaka .head_conte .txt{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2.2;
  color: #FFF;
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 2.5em;
}
#uminaka .inner{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #FFF;
  border-radius: 50px;
  width: 1000px;
  margin-top: 55px;
  padding-left: 90px;
  padding-right: 90px;
  padding-bottom: 110px;
}
#uminaka .inner .conte{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#uminaka .inner .conte .wrap{
  position: relative;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}
#uminaka .inner .conte .wrap:last-child{
  padding-bottom: 0;
}
#uminaka .inner .conte .wrap._02,
#uminaka .inner .conte .wrap._03{
  width: 49%;
}
#uminaka .inner .conte .wrap._04::after,
#uminaka .inner .conte .wrap._05::after,
#uminaka .inner .conte .wrap._06::after,
#uminaka .inner .conte .wrap._07::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_02.svg);
  background-size: 100% 100%;
}
#uminaka .inner .conte .wrap .wrap_ttl{
  text-align: center;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 1em;
  letter-spacing: 0.2em;
}
#uminaka .inner .conte .wrap .wrap_ttl span{
  font-size: 60%;
}
#uminaka .inner .conte .wrap .img_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#uminaka .inner .conte .wrap .img_wrap .img{
  width: 48%;
}
#uminaka .inner .conte .wrap .img_wrap.one .img{
  width: 100%;
}
#uminaka .inner .conte .wrap .txt_wrap{
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#uminaka .inner .conte .wrap .txt_wrap .txt{
  margin-top: 2em;
}
#uminaka .inner .conte .wrap .txt_wrap .txt span{
  font-size: 12px;
}
#uminaka .inner .conte .wrap .txt_wrap .btn{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #000;
  margin-top: 1.5em;
}
#uminaka .inner .conte .wrap .txt_wrap .btn .arrow{
  display: inline-block;
  width: 15px;
}

#uminaka .uminakatabi{
  position: relative;
  padding-top: 0;
  margin-top: 100px;
  padding-top: 90px;
}
#uminaka .uminakatabi::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/line_wavy_02.svg);
  background-size: 100% 100%;
}
#uminaka .uminakatabi .txt_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#uminaka .uminakatabi .txt_wrap .logo{
  width: 140px;
}
#uminaka .uminakatabi .txt_wrap .txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-left: 2em;
}
#uminaka .uminakatabi .btn_wrap{
  width: 388px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

#others{
  margin-top: 180px;
  padding-bottom: 220px;
}
#others .sec_ttl{
  width: 542px;
  margin-left: auto;
  margin-right: auto;
}
#others .others_conte{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 140px;
}
#others .others_conte .others_item{
  width: 48%;
}
#others .others_conte .others_item .ttl{
  font-size: 23px;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
}
#others .others_conte .others_item .txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 1.5em;
  text-align: justify;
}
#others .others_conte .others_item .txt_note{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 1em;
}
#others .others_conte .others_item .txt_note .more_btn{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 125px;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #000;
  margin-top: 1.5em;
  font-size: 14px;
}
#others .others_conte .others_item .txt_note .more_btn .arrow{
  display: inline-block;
  width: 15px;
}

#info{
  position: relative;
  padding-top: 250px;
  background: #FFF;
}
#info::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: url(../images/common/bg_wavy_02.webp);
  background-size: 100% 100%;
}
#info .sec_ttl{
  width: 925px;
  margin-left: auto;
  margin-right: auto;
}
#info .info_conte{
  width: 990px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 75px;
  text-align: center;
  border-top: 4px dotted #009e86;
}
#info .info_conte .ttl{
  font-size: 33px;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 1.3em;
}

#info .opening_hours{
  padding-top: 95px;
  border-top: 0;
}
#info .opening_hours .inner{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#info .opening_hours .inner .time{
  font-size: 59px;
  line-height: .5;
  letter-spacing: 0.1em;
}
#info .opening_hours .inner .time span{
  display: block;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: .6em;
}
#info .opening_hours .inner .line_time{
  width: 57px;
  height: 5px;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
  background: #000;
}
#info .opening_hours .close_announce{
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 1.1em;
}
#info .opening_hours .note{
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
  font-weight: 600;
  margin-top: 2.5em;
  text-align: left;
}
#info .opening_hours .note._fix{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  margin-top: 2.5em;
  text-align: center;
}

#info .opening_hours._child{
  position: relative;
  margin-top: 60px;
  padding-top: 60px;
}
#info .opening_hours._child::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 514px;
  height: 1px;
  background: #000;
}
#info .opening_hours._child .attraction_lists li{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  gap: 0.3em;
}
#info .opening_hours._child .attraction_lists li:nth-child(n+2){
  margin-top: .5em;
  margin-top: 0.2em;
}

#info .map .map_iframe{
  height: 384px;
}
#info .map .map_address{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-top: 1em;
}

#info .general .btn_lists{
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 30px;
}
#info .general .btn_lists .btn_list{
  width: 370px;
  text-align: center;
}
#info .general .btn_lists .btn_list .shadow_btn_wrap{
  position: relative;
  z-index: 1;
}
#info .general .btn_lists .btn_list .shadow_btn_wrap::after{
  content: "";
  position: absolute;
  bottom: -5px;
  right: -3px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  z-index: -1;
}
#info .general .btn_lists .btn_list .shadow_btn_wrap .btn{
  display: block;
  position: relative;
  background: #009e86;
  color: #FFF;
  border-radius: 100px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: .7em 0;
  transition: .3s;
}
#info .general .btn_lists .btn_list .shadow_btn_wrap .btn::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/arrow_02.svg);
  background-size: 100% 100%;
  z-index: 1;
}
#info .general .btn_lists .btn_list .shadow_btn_wrap .btn:hover{
  position: relative;
  bottom: -5px;
  right: -3px;
  transition: .3s;
}

#info .equipment .equipment_img{
  width: 680px;
  margin-left: auto;
  margin-right: auto;
}
#info .equipment .shadow_btn_wrap{
  width: 320px;
  margin-top: 4em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
#info .equipment .shadow_btn_wrap::after{
  content: "";
  position: absolute;
  bottom: -5px;
  right: -3px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  z-index: -1;
}
#info .equipment .shadow_btn_wrap .btn{
  display: block;
  position: relative;
  background: #009e86;
  color: #FFF;
  border-radius: 100px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: .7em 0;
  transition: .3s;
}
#info .equipment .shadow_btn_wrap .btn::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../images/common/arrow_02.svg);
  background-size: 100% 100%;
  z-index: 1;
}
#info .equipment .shadow_btn_wrap .btn:hover{
  position: relative;
  bottom: -5px;
  right: -3px;
  transition: .3s;
}
#equipment_modal{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s;
}
#equipment_modal.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: .3s;
}
#equipment_modal .conte{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 990px;
  position: relative;
  background: #FFF;
  border-radius: 30px;
  padding-bottom: 70px;
}
#equipment_modal .conte .ttl{
  font-size: 19px;
  font-weight: 900;
  color: #009f83;
  text-align: center;
  padding: 2em 0;
}
#equipment_modal .conte .modal_close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
}
#equipment_modal .conte .equipment_img{
  width: 875px;
  margin-left: auto;
  margin-right: auto;
}

#info .contact{
  padding-bottom: 190px;
}
#info .contact .contact_txt{
  font-size: 24px;
}
#info .contact .contact_txt span{
  display: block;
  font-size: 55%;
  margin-top: 0.2em;
}
#info .contact .contact_tel{
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: #02aad5;
  margin-top: 0;
  letter-spacing: .1em;
}

#info .contact .contact_wrap_child{
  width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #000000;
}
#info .contact .contact_wrap_child .ttl{
  font-size: 24px;
  letter-spacing: 0.15em;
}

/* Slickスライダー用カスタムスタイル */
.slide_conte{
  margin-top: 70px;
  position: relative;
  overflow: visible;
}
.slide_conte .slick-track{
  display: flex;
  gap: 200px;
}
.slide_conte .slick-list{
  padding: 0 !important;
  overflow: hidden;
}
.slide_conte .slide_item{
  
  background: #FFF;
}
.slide_conte .slide_item._first::before,
.slide_conte .slide_item._last::before{ 
  content: '';
  position: absolute;
  top: 0;
  width: 500px;
  height: 100%;
  background: #FFF;
  border-radius: 100%;
  z-index: -1;
}
.slide_conte .slide_item._first::before{
  left: 0;
  transform: translateX(-50%);
}
.slide_conte .slide_item._last::before{
  right: 0;
  transform: translateX(50%);
}
.slide_conte .slide_wrap{
  padding: 70px 0;
  width: 508px;
  height: 670px;
}
.slide_conte .slick-slide{
  position: relative;
}
.slide_conte .slick-slide::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 200px;
  height: 100%;
  background: #FFF;
}
.slide_conte .slick-slide._last::after{
  content: none;
}
/* 矢印ボタンの基本スタイル */
/* .slide_inner{
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
} */
.slick-arrow{
  position: static;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 1000;
  opacity: 1 !important;
}
.slick-prev,
.slick-next{
  width: 120px  !important;
  height: 120px !important;
}
.slick-prev{
  left: 10% !important;
}
.slick-next{
  right: 10% !important;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before{
  opacity: .55 !important;
}
.slick-prev:before{
  content: "" !important;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/arrow_04.svg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 100 !important;
}
.slick-next:before{
  content: "" !important;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/arrow_05.svg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 100 !important;
}
.slide_conte .slide_wrap .ttl{
  font-size: 23px;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
}
#stay .slide_conte .slide_wrap .img{
  width: 100%;
  height: 280px;
}
#stay .slide_conte .slide_wrap .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide_conte .slide_wrap .txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 1.5em;
  text-align: justify;
}
.slide_conte .slide_wrap .txt .note{
  font-size: 60%;
}
.slide_conte .slide_wrap .txt_note{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 1em;
}
.slide_conte .slide_wrap .txt_note .note .btn{
  color: #02aad5;
  text-decoration: underline;
}
.slide_conte .slide_wrap .txt_note .more_btn{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 125px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #000;
  margin-top: 1.5em;
  font-size: 14px;
}
.slide_conte .slide_wrap .txt_note .more_btn .arrow{
  display: inline-block;
  width: 15px;
}

.slide_nav_lists{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-top: 4em;
}
.slide_nav_lists .slide_nav_list{
  padding: 0 1em;
  line-height: 1;
  border-right: 1px solid #000;
}
.slide_nav_lists .slide_nav_list:last-child{
  border-right: none;
}

#relaxation .slide_conte .slide_wrap._ex{
  position: relative;
  padding-right: 330px;
  box-sizing: content-box;
  height: auto;
  padding-bottom: 164px;
}
#relaxation .slide_conte .slide_wrap._ex .note_box{
  position: absolute;
  top: 48%;
  right: 0;
  transform: translate(0%, -50%);
  width: 300px;
  height: auto;
  background: #efefef;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  padding: 2em 1em;
  border-radius: 30px;
}
#relaxation .slide_conte .slide_wrap._ex .note_box::after{
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  transform: translate(-97%, -50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 23px solid #efefef;
  border-left: none;
  background: none;
}
#relaxation .slide_conte .slide_wrap._ex .note_box .note_ttl{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1em;
}
#relaxation .slide_conte .slide_wrap._ex .note_box .note_txt span{
  font-size: 67%;
  letter-spacing: 0;
}
#relaxation .slide_conte .slide_wrap._ex .note_box .note_txt span.note_txt_span{
  display: inline-block;
  margin-top: 1em;
}


#relaxation .slide_conte .slide_wrap .txt_note,
#others .slide_conte .slide_wrap .txt_note{
  margin-top: 0;
}

#relaxation .slide_conte .slide_wrap .txt_note .more_btn,
#others .slide_conte .slide_wrap .txt_note .more_btn{
  margin-left: auto;
  margin-right: 0;
}


.illust{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
/* アニメーション1: ふわふわ浮遊 */
@keyframes floatAnimation{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-15px);
  }
  100%{
    transform: translateY(0);
  }
}
/* アニメーション2: ふわっと拡大縮小 */
@keyframes scaleAnimation{
  0%{
    transform: scale(.9);
  }
  50%{
    transform: scale(1);
  }
  100%{
    transform: scale(.9);
  }
}
/* アニメーション3: ゆらゆら揺れる */
@keyframes swayMotion{
  0%{
    transform: translateY(0) rotate(3deg);
  }
  25%{
    transform: translateY(-8px) rotate(0deg);
  }
  50%{
    transform: translateY(0) rotate(3deg);
  }
  75%{
    transform: translateY(8px) rotate(0deg);
  }
  100%{
    transform: translateY(0) rotate(3deg);
  }
}
/* アニメーションクラス */
.illust-float{
  animation: floatAnimation 2s ease-in-out infinite;
}
.illust-scale{
  animation: scaleAnimation 3s ease-in-out infinite;
}
.illust-sway{
  animation: swayMotion 4s ease-in-out infinite;
}

.illust._01{
  width: 195px;
  top: 40px;
  left: -90px;
}
.illust._02{
  width: 288px;
  top: 140px;
  right: -120px;
}
.illust._03{
  width: 178px;
  right: -200px;
  top: 580px;
}
.illust._04{
  width: 278px;
  top: -210px;
  right: -50px;
}
.illust._05{
  width: 267px;
  top: -170px;
  right: 110px;
}
.illust._06{
  width: 164px;
  top: -53px;
  right: 310px;
}
.illust._07{
  width: 168px;
  top: 150px;
  right: auto;
  left: -110px;
}
.illust._08{
  width: 148px;
  top: 0px;
  right: -90px;
}
.illust._09{
  width: 253px;
  top: 1804px;
  left: -140px;
}
.illust._10{
  width: 192px;
  top: 2633px;
  right: -110px;
}
.illust._11{
  width: 253px;
  bottom: -50px;
  left: -242px;
}
.illust._12{
  width: 293px;
  top: -49px;
  left: -95px;
}
.illust._13{
  width: 360px;
  top: 1550px;
  right: -173px;
}
.illust._14{
  width: 340px;
  top: 2336px;
  right: -173px;
}
.illust._15{
  width: 283px;
  top: 2320px;
  left: -190px;
}
.illust._16{
  width: 228px;
  top: 3250px;
  left: -160px;
}
.illust._17{
  width: 238px;
  top: 3920px;
  right: 140px;
}
.illust._18{
  width: 275px;
  top: -180px;
  right: -250px;
}
.illust._19{
  width: 204px;
  top: -110px;
  left: -230px;
}
.illust._20{
  width: 166px;
  top: -280px;
  left: 0;
}
.illust._21{
  width: 266px;
  top: -180px;
  left: -160px;
}
.illust._22{
  width: 266px;
  top: -360px;
  right: -40px;
}
.illust._23{
  width: 136px;
  top: -154px;
  right: -40px;
}
.illust._24{
  width: 232px;
  top: 420px;
  left: -150px;
}
.illust._25{
  width: 232px;
  top: 1720px;
  right: -150px;
}
.illust._26{
  width: 395px;
  top: -280px;
  left: -420px;
}
.illust._27{
  width: 380px;
  top: -120px;
  right: -427px;
}
.illust._28{
  width: 268px;
  top: 20px;
  right: -150px;
}

@media screen and (max-width: 1400px){
  #loading .loading_logo{
    width: 32.14vw;
    margin: 0 auto 6.42vw;
  }
  #loading .container{
    width: 14.28vw;
    height: 4.28vw;
  }
  #loading .circle{
    width: 1.42vw;
    height: 1.42vw;
  }
  @keyframes circle{
    0%{
        top: 4.28vw;
        height: 0.35vw;
        border-radius: 3.57vw 3.57vw 1.78vw 1.78vw;
        transform: scaleX(1.7);
    }
    40%{
        height: 1.42vw;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top: 0%;
    }
  }
  #loading .shadow{
    width: 1.42vw;
    height: 0.28vw;
    top: 4.42vw;
  }


  #mv{
    padding-top: 10.42vw;
    padding-bottom: 5.57vw;
  }
  #mv .conte{
    width: 74.28vw;
  }
  #mv .conte .copy{
    font-size: 2.28vw;
  }
  #mv .conte .logo{
    width: 57.14vw;
  }

  #about{
    height: 65vw;
  }
  #about::before{
    height: 1.07vw;
  }
  #about::after{
    height: 1.07vw;
  }
  #about .bg_img{
    height: 65vw;
  }
  #about .bg_inner .sec_ttl{
    width: 30.14vw;
  }
  #about .bg_inner .txt{
    font-size: 1.28vw;
  }
  
  #circle{
    padding-top: 7.14vw;
    padding-bottom: 7.14vw;
  }
  @keyframes float{
    0%{ transform: translateY(7.14vw)}
    50%{ transform: translateY(-7.14vw)}
    100%{ transform: translateY(7.14vw)}
  }
  
  #square{
    background-size: 100% 48.71vw;
  }
  #square .sec_ttl{
    width: 100vw;
    top: -0.42vw;
  }
  #square .head_conte{
    width: 71.42vw;
    padding-top: 8.57vw;
  }
  #square .head_conte .head{
    font-size: 2.71vw;
  }
  #square .head_conte .head::after{
    height: 0.57vw;
  }
  #square .head_conte .txt{
    font-size: 1.28vw;
  }
  #square .head_conte .btn_lists{
    width: 52.5vw;
    margin-top: 5vw;
  }
  #square .head_conte .btn_lists .btn_list{
    width: 24.14vw;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap::after{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn{
    font-size: 1.35vw;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn::before{
    right: 0.71vw;
    width: 1vw;
    height: 1vw;
  }
  
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn:hover{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  
  #topics{
    margin-top: 14vw;
  }
  #topics .sec_ttl{
    width: 31.14vw;
  }
  #topics .conte{
    width: 71.42vw;
    margin-top: 4.5vw;
    padding-top: 5.42vw;
    padding-bottom: 4.28vw;
  }
  #topics .opening_hours .ttl{
    font-size: 2vw;
  }
  #topics .opening_hours .inner .time{
    font-size: 4.21vw;
  }
  #topics .opening_hours .inner .time span{
    font-size: 1.35vw;
  }
  #topics .opening_hours .inner .line_time{
    width: 4.07vw;
    height: 0.35vw;
    margin-bottom: 0.71vw;
    margin-left: 1.07vw;
    margin-right: 1.07vw;
  }

  #topics .opening_hours .close_announce{
    font-size: 3.07vw;
  }
  

  #topics .opening_hours .note{
    font-size: 1.35vw;
  }
  #topics .opening_hours .note._fix{
    font-size: 1vw;
  }

  #topics .opening_hours._child{
    margin-top: 4.28vw;
    padding-top: 4.28vw;
  }
  #topics .opening_hours._child::before{
    width: 36.71vw;
  }
  #topics .opening_hours._child .attraction_lists li{
    font-size: 1.42vw;
  }
  #topics .opening_hours .bnr{
    width: 39.28vw;
    margin-top: 4.28vw;
  }
  
  #topics .opening_hours .shadow_btn_wrap{
    width: 24.14vw;
    margin-top: 4.28vw;
  }
  #topics .opening_hours .shadow_btn_wrap::after{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  #topics .opening_hours .shadow_btn_wrap .btn{
    font-size: 1.35vw;
  }
  #topics .opening_hours .shadow_btn_wrap .btn::before{
    right: 0.71vw;
    width: 1vw;
    height: 1vw;
  }
  
  #topics .opening_hours .shadow_btn_wrap .btn:hover{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  
  #topics .event_news{
    width: 55.35vw;
    margin-top: 7.14vw;
  }
  #topics .event_news_conte .ttl{
    margin-bottom: 2.85vw;
  }
  #topics .event .ttl{
    width: 9.14vw;
  }
  #topics .news .ttl{
    width: 8.28vw;
  }
  #topics .event_news_conte .lists .list{
    padding: 1.42vw 0;
    padding: 5vw 0;
  }
  #topics .event_news_conte .lists .list:nth-child(1){
    padding-top: 1.42vw;
  }
  #topics .event_news_conte .lists .list .data{
    font-size: 1.07vw;
  }
  #topics .event_news_conte .lists .list .txt{
    font-size: 1.14vw;
  }
  #topics .event_news_conte .lists .list .more_btn{
    width: 8.35vw;
    font-size: 1vw;
  }
  #topics .event_news_conte .lists .list .more_btn .arrow{
    width: 1.07vw;
  }
  #topics .event.event_news_conte .lists .list .lead_btn{
    width: 2.5vw;
    margin-top: 1.42vw;
  }
  
  #topics .info_conte{
    width: 55.35vw;
    margin-top: 5vw;
    padding-top: 5.35vw;
  }
  #topics .info_conte::before{
    height: 0.57vw;
  }
  #topics .info_conte .wrap{
    height: 10.71vw;
  }
  #topics .info_conte .wrap .head{
    font-size: 1.5vw;
  }
  #topics .info_conte .wrap .txt{
    font-size: 0.85vw;
  }
  #topics .info_conte .wrap .txt .fw{
    font-size: 1vw;
  }
  #topics .info_conte .lead_btn{
    width: 2.5vw;
    margin-top: 1.42vw;
  }
  
  #stay{
    margin-top: 14.78vw;
  }
  #stay .sec_ttl{
    width: 24.78vw;
  }
  #stay .about{
    margin-top: 5.85vw;
  }
  #stay .about .bg_img{
    height: 32.85vw;
  }
  #stay .about .txt_lists{
    font-size: 1.42vw;
    left: 15.5vw;
  }
  #stay .inner{
    width: 70.71vw;
    margin-top: 7.14vw;
  }
  #stay .inner_head{
    font-size: 1.14vw;
  }
  #stay .inner .wrap{
    padding-top: 5vw;
    margin-top: 5vw;
  }
  #stay .inner .wrap:nth-child(1){
    margin-top: 0;
  }
  #stay .inner .wrap::after{
    height: 0.57vw;
  }
  #stay .inner .wrap._04{
    padding-bottom: 5vw;
  }
  #stay .inner .wrap._04::before{
    height: 0.57vw;
  }
  #stay .inner .wrap .wrap_ttl{
    margin-bottom: 4.28vw;
  }
  #stay .inner .wrap._01 .wrap_ttl{
    width: 25.78vw;
  }
  #stay .inner .wrap._02 .wrap_ttl{
    width: 24.92vw;
  }
  #stay .inner .wrap._03 .wrap_ttl{
    width: 25.85vw;
  }
  #stay .inner .wrap._04 .wrap_ttl{
    width: 12.21vw;
  }
  
  #stay .inner .wrap .img_wrap{
    margin-bottom: 3.28vw;
  }
  #stay .inner .wrap._04 .img_wrap .img{
    width: 46.42vw;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt{
    font-size: 1.14vw;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt_note{
    font-size: 1vw;
  }

  #stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap{
    gap: 1.42vw;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap .icon_box{
    gap: 1.42vw;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap .icon{
    width: 2.85vw;
  }

  #stay .inner .wrap .txt_wrap .btn{
    width: 7.14vw;
  }
  
  #activity{
    margin-top: 12.85vw;
  }
  #activity .sec_ttl{
    width: 47.71vw;
  }
  #activity .inner{
    width: 70.71vw;
    margin-top: 12.85vw;
  }
  #activity .inner .wrap{
    padding-top: 5vw;
    margin-top: 5vw;
  }
  #activity .inner .wrap:nth-child(1){
    margin-top: 0;
  }
  #activity .inner .wrap::after{
    height: 0.57vw;
  }
  #activity .inner .wrap .wrap_ttl{
    margin-bottom: 4.28vw;
  }
  #activity .inner .wrap._01 .wrap_ttl{
    width: 29.57vw;
  }
  #activity .inner .wrap._02 .wrap_ttl{
    width: 23.57vw;
  }
  #activity .inner .wrap._03 .wrap_ttl{
    width: 13.28vw;
  }
  #activity .inner .wrap._04 .wrap_ttl{
    width: 28.57vw;
  }
  #activity .inner .wrap._05 .wrap_ttl{
    width: 34.57vw;
  }
  #activity .inner .wrap._06 .wrap_ttl{
    width: 34.85vw;
  }
  
  #activity .inner .wrap .img_wrap{
    margin-bottom: 3.28vw;
  } 
  #activity .inner .wrap .txt_wrap{
    font-weight: 400;
  }
  #activity .inner .wrap .txt_wrap .txt_box .txt{
    font-size: 1.14vw;
  }
  #activity .inner .wrap .txt_wrap .txt_box .txt span{
    font-size: 0.85vw;
  }
  #activity .inner .wrap .txt_wrap .btn{
    width: 7.14vw;
  }
  
  #relaxation{
    margin-top: 17.42vw;
  }
  #relaxation .sec_ttl{
    width: 58.28vw;
  }

  #uminaka{
    background-size: 100% 46.57vw;
    margin-top: 13.92vw;
  }
  #uminaka .sec_ttl{
    width: 100vw;
    top: -0.42vw;
  }
  #uminaka .head_conte{
    width: 71.42vw;
    padding-top: 8.57vw;
  }
  #uminaka .head_conte .head{
    font-size: 2.71vw;
  }
  #uminaka .head_conte .head::after{
    height: 0.57vw;
  }
  #uminaka .head_conte .txt{
    font-size: 1.28vw;
  }
  #uminaka .inner{
    border-radius: 3.57vw;
    width: 71.42vw;
    margin-top: 3.92vw;
    padding-left: 6.42vw;
    padding-right: 6.42vw;
    padding-bottom: 7.85vw;
  }
  #uminaka .inner .conte .wrap{
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  #uminaka .inner .conte .wrap._04::after,
  #uminaka .inner .conte .wrap._05::after,
  #uminaka .inner .conte .wrap._06::after,
  #uminaka .inner .conte .wrap._07::after{
    height: 0.57vw;
  }
  #uminaka .inner .conte .wrap .wrap_ttl{
    font-size: 2.14vw;
  }
  #uminaka .inner .conte .wrap .txt_wrap{
    font-size: 1.14vw;
  }
  #uminaka .inner .conte .wrap .txt_wrap .txt span{
    font-size: 0.85vw;
  }
  #uminaka .inner .conte .wrap .txt_wrap .btn{
    width: 10vw;
  }
  #uminaka .inner .conte .wrap .txt_wrap .btn .arrow{
    width: 1.07vw;
  }
  
  #uminaka .uminakatabi{
    margin-top: 7.14vw;
    padding-top: 6.42vw;
  }
  #uminaka .uminakatabi::after{
    height: 0.57vw;
  }
  #uminaka .uminakatabi .txt_wrap .logo{
    width: 10vw;
  }
  #uminaka .uminakatabi .txt_wrap .txt{
    font-size: 1.14vw;
  }
  #uminaka .uminakatabi .btn_wrap{
    width: 27.71vw;
    margin-top: 3.57vw;
  }

  #others{
    margin-top: 12.85vw;
    padding-bottom: 15.71vw;
  }
  #others .sec_ttl{
    width: 38.71vw;
  }
  #others .others_conte{
    width: 71.42vw;
    margin-top: 10vw;
  }
  #others .others_conte .others_item .ttl{
    font-size: 1.64vw;
  }
  #others .others_conte .others_item .txt{
    font-size: 1.14vw;
  }
  #others .others_conte .others_item .txt_note{
    font-size: 0.85vw;
  }
  #others .others_conte .others_item .txt_note .more_btn{
    width: 8.92vw;
    font-size: 1vw;
  }
  #others .others_conte .others_item .txt_note .more_btn .arrow{
    width: 1.07vw;
  }
  
  #info{
    padding-top: 17.85vw;
  }
  #info::before{
    height: 1.07vw;
  }
  #info .sec_ttl{
    width: 66.07vw;
  }
  #info .info_conte{
    width: 70.71vw;
    padding-top: 5.35vw;
    padding-bottom: 5.35vw;
  }
  #info .info_conte .ttl{
    font-size: 2.35vw;
  }
  
  #info .opening_hours{
    padding-top: 6.78vw;
  }
  #info .opening_hours .inner .time{
    font-size: 4.21vw;
  }
  #info .opening_hours .inner .time span{
    font-size: 1.35vw;
  }
  #info .opening_hours .inner .line_time{
    width: 4.07vw;
    height: 0.35vw;
    margin-bottom: 0.71vw;
    margin-left: 1.07vw;
    margin-right: 1.07vw;
  }
  #info .opening_hours .close_announce{
    font-size: 3.07vw;
  }
  #info .opening_hours .note{
    font-size: 1.35vw;
  }

  #info .opening_hours._child{
    margin-top: 4.28vw;
    padding-top: 4.28vw;
  }
  #info .opening_hours._child::before{
    width: 36.71vw;
  }
  #info .opening_hours._child .attraction_lists li{
    font-size: 1.14vw;
  }
  
  #info .map .map_iframe{
    height: 27.42vw;
  }
  #info .map .map_address{
    font-size: 1.14vw;
  }
  
  #info .general .btn_lists{
    gap: 2.14vw 2.14vw;
  }
  #info .general .btn_lists .btn_list{
    width: 26.42vw;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap::after{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap .btn{
    font-size: 1.35vw;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap .btn::before{
    right: 0.71vw;
    width: 1vw;
    height: 1vw;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap .btn:hover{
    bottom: -0.35vw;
    right: -0.21vw;
  }

  #info .equipment .equipment_img{
    width: 48.57vw;
  }
  #info .equipment .shadow_btn_wrap{
    width: 22vw;
  }
  #info .equipment .shadow_btn_wrap::after{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  #info .equipment .shadow_btn_wrap .btn{
    font-size: 1.35vw;
  }
  #info .equipment .shadow_btn_wrap .btn::before{
    right: 0.71vw;
    width: 1vw;
    height: 1vw;
  }
  #info .equipment .shadow_btn_wrap .btn:hover{
    bottom: -0.35vw;
    right: -0.21vw;
  }
  #equipment_modal .conte{
    width: 70vw;
    padding-bottom: 5vw;
  }
  #equipment_modal .conte .ttl{
    font-size: 1.35vw;
  }
  #equipment_modal .conte .modal_close{
    top: 1.42vw;
    right: 1.42vw;
    width: 2.85vw;
  }
  #equipment_modal .conte .equipment_img{
    width: 62vw;
  }
  
  #info .contact{
    padding-bottom: 13.57vw;
  }
  #info .contact .contact_txt{
    font-size: 1.71vw;
  }
  #info .contact .contact_tel{
    font-size: 2.71vw;
  }

  #info .contact .contact_wrap_child{
    width: 39.28vw;
    margin-top: 4.28vw;
    padding-top: 4.28vw;
  }
  #info .contact .contact_wrap_child .ttl{
    font-size: 1.71vw;
  }


  /* Slickスライダー用カスタムスタイル */
  .slide_conte{
    margin-top: 5vw;
  }
  .slide_conte .slick-track{
    gap: 14.28vw;
  }
  .slide_conte .slide_item._first::before,
  .slide_conte .slide_item._last::before{ 
    width: 35.71vw;
  }
  .slide_conte .slide_wrap{
    padding: 5vw 0;
    width: 36.28vw;
    height: 47.85vw;
  }
  .slide_conte .slick-slide::after{
    width: 14.28vw;
  }
  /* 矢印ボタンの基本スタイル */
  /* .slide_inner{
    width: 85.71vw;
  } */
  .slick-prev,
  .slick-next{
    width: 8.57vw !important;
    height: 8.57vw !important;
  }
  .slide_conte .slide_wrap .ttl{
    font-size: 1.64vw;
  }
  #stay .slide_conte .slide_wrap .img{
    height: 20vw;
  }
  .slide_conte .slide_wrap .txt{
    font-size: 1.14vw;
  }
  .slide_conte .slide_wrap .txt_note{
    font-size: 0.85vw;
  }
  .slide_conte .slide_wrap .txt_note .more_btn{
    width: 8.92vw;
    font-size: 1vw;
  }
  .slide_conte .slide_wrap .txt_note .more_btn .arrow{
    width: 1.07vw;
  }

  .slide_nav_lists{
    font-size: 1.71vw;
  }

  #relaxation .slide_conte .slide_wrap._ex{
    padding-right: 23.57vw;
    padding-bottom: 11.71vw;
  }
  #relaxation .slide_conte .slide_wrap._ex .note_box{
    width: 21.42vw;
    font-size: 1.14vw;
  }
  #relaxation .slide_conte .slide_wrap._ex .note_box::after{
    border-top: 1.07vw solid transparent;
    border-bottom: 1.07vw solid transparent;
    border-right: 1.64vw solid #efefef;
  }
  #relaxation .slide_conte .slide_wrap._ex .note_box .note_ttl{
    font-size: 1.14vw;
  }


  .illust._01{
    width: 13.92vw;
    top: 2.85vw;
    left: -6.42vw;
  }
  .illust._02{
    width: 20.57vw;
    top: 10vw;
    right: -8.57vw;
  }
  .illust._03{
    width: 12.71vw;
    right: -14.28vw;
    top: 41.42vw;
  }
  .illust._04{
    width: 19.85vw;
    top: -15vw;
    right: -3.57vw;
  }
  .illust._05{
    width: 19.07vw;
    top: -12.14vw;
    right: 7.85vw;
  }
  .illust._06{
    width: 11.71vw;
    top: -3.78vw;
    right: 22.14vw;
  }
  .illust._07{
    width: 12vw;
    top: 10.71vw;
    left: -7.85vw;
  }
  .illust._08{
    width: 10.57vw;
    top: 0px;
    right: -6.42vw;
  }
  .illust._09{
    width: 18.07vw;
    top: 128.85vw;
    left: -10vw;
  }
  .illust._10{
    width: 13.71vw;
    top: 188.07vw;
    right: -7.85vw;
  }
  .illust._11{
    width: 18.07vw;
    bottom: -3.57vw;
    left: -17.28vw;
  }
  .illust._12{
    width: 20.92vw;
    top: -3.5vw;
    left: -6.78vw;
  }
  .illust._13{
    width: 25.71vw;
    top: 110.71vw;
    right: -12.35vw;
  }
  .illust._14{
    width: 24.28vw;
    top: 166.85vw;
    right: -12.35vw;
  }
  .illust._15{
    width: 20.21vw;
    top: 165.71vw;
    left: -13.57vw;
  }
  .illust._16{
    width: 16.28vw;
    top: 232.14vw;
    left: -11.42vw;
  }
  .illust._17{
    width: 17vw;
    top: 280vw;
    right: 10vw;
  }
  .illust._18{
    width: 19.64vw;
    top: -12.85vw;
    right: -17.85vw;
  }
  .illust._19{
    width: 14.57vw;
    top: -7.85vw;
    left: -16.42vw;
  }
  .illust._20{
    width: 11.85vw;
    top: -20vw;
    left: 0;
  }
  .illust._21{
    width: 19vw;
    top: -12.85vw;
    left: -11.42vw;
  }
  .illust._22{
    width: 19vw;
    top: -25.71vw;
    right: -2.85vw;
  }
  .illust._23{
    width: 9.71vw;
    top: -11vw;
    right: -2.85vw;
  }
  .illust._24{
    width: 16.57vw;
    top: 30vw;
    left: -10.71vw;
  }
  .illust._25{
    width: 16.57vw;
    top: 122.85vw;
    right: -10.71vw;
  }
  .illust._26{
    width: 28.21vw;
    top: -20vw;
    left: -30vw;
  }
  .illust._27{
    width: 27.14vw;
    top: -8.57vw;
    right: -30.5vw;
  }
  .illust._28{
    width: 19.14vw;
    top: 1.42vw;
    right: -10.71vw;
  }
}

@media screen and (max-width: 750px){
  #loading .loading_logo{
    width: 61.14vw;
    margin: 0 auto 12.42vw;
  }
  #loading .container{
    width: 24.28vw;
    height: 4.28vw;
  }
  #loading .circle{
    width: 1.42vw;
    height: 1.42vw;
  }
  @keyframes circle{
    0%{
        top: 4.28vw;
        height: 0.35vw;
        border-radius: 3.57vw 3.57vw 1.78vw 1.78vw;
        transform: scaleX(1.7);
    }
    40%{
        height: 1.42vw;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top: 0%;
    }
  }
  #loading .shadow{
    width: 1.42vw;
    height: 0.28vw;
    top: 4.42vw;
  }


  #mv{
    padding-top: 20vw;
    padding-bottom: 12.4vw;
  }
  #mv .conte{
    width: 100%;
    flex-direction: column-reverse;
  }
  #mv .conte .copy{
    font-size: 4.26vw;
    writing-mode: horizontal-tb;
  }
  #mv .conte .copy span{
    margin-left: -0.4em;
    margin-top: 0;
  }
  #mv .conte .logo{
    width: 90vw;
    margin-top: 7vw;
    margin-bottom: 7vw;
  }

  #about{
    height: 161.33vw;
  }
  #about::before{
    height: 2vw;
    background-size: 118% 100%;
  }
  #about::after{
    height: 2vw;
    background-size: 118% 100%;
  }
  #about .bg_img{
    height: 161.33vw;
  }
  #about .bg_img img{
    object-position: center;
  }
  #about .bg_inner{
    top: 47%;
  }
  #about .bg_inner .sec_ttl{
    width: 56.13vw;
  }
  #about .bg_inner .txt{
    font-size: 3.6vw;
    line-height: 2.3;
    margin-top: 2em;
  }
  #about .slide_txt_conte .slide_txt_lists{
    width:  705vw;
    margin-right: -350vw;
  }
  #about .slide_txt_conte .slide_txt_lists li{
    animation : slideTxt 30s linear infinite;
    width: 350vw;
    padding-left: 5vw;
  }

  #circle{
    padding-top: 20.26vw;
    padding-bottom: 20.26vw;
  }
  #circle .splide__slide{
    animation: float 7s linear infinite;
  }
  @keyframes float{
    0%{ transform: translateY(20.26vw)}
    50%{ transform: translateY(-20.26vw)}
    100%{ transform: translateY(20.26vw)}
  }
  
  #square{
    background-size: 100% 106.66vw;
  }
  #square .sec_ttl{
    width: 100%;
    top: 0;
  }
  #square .head_conte{
    width: 85.06vw;
    padding-top: 16vw;
  }
  #square .head_conte .head{
    font-size: 5.33vw;
  }
  #square .head_conte .head::after{
    height: 1.6vw;
    background-size: 100% 100%;
  }
  #square .head_conte .txt{
    font-size: 3.6vw;
    margin-top: 3em;
    margin-bottom: 5em;
  }
  #square .head_conte .map{
    width: 86.66vw;
    margin-left: auto;
    margin-right: auto;
  }
  #square .head_conte .btn_lists{
    width: 66.66vw;
    flex-direction: column;
    gap: 7.33vw;
    margin-top: 9.6vw;
  }
  #square .head_conte .btn_lists .btn_list{
    width: 100%;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap::after{
    bottom: -2vw;
    right: -1vw;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn{
    font-size: 3.46vw;
    padding: 1em 0;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn::before{
    right: 2.33vw;
    width: 2.86vw;
    height: 2.86vw;
  }
  #square .head_conte .btn_lists .btn_list .shadow_btn_wrap .btn:hover{
    bottom: -2vw;
    right: -1vw;
  }
  
  #topics{
    margin-top: 20vw;
  }
  #topics .sec_ttl{
    width: 58.13vw;
  }
  #topics .conte{
    width: 86.66vw;
    margin-top: 9.33vw;
    border-radius: 6.66vw;
    padding-top: 8.8vw;
    padding-bottom: 8.8vw;
  }
  #topics .opening_hours .ttl{
    font-size: 4.4vw;
  }
  #topics .opening_hours .inner .time{
    font-size: 8vw;
  }
  #topics .opening_hours .inner .time span{
    font-size: 2.53vw;
  }
  #topics .opening_hours .inner .line_time{
    width: 7.6vw;
    height: 0.66vw;
    margin-bottom: 3.2vw;
    margin-left: 3.73vw;
    margin-right: 3.73vw;
  }

  #topics .opening_hours .close_announce{
    font-size: 7vw;
    line-height: 1;
    letter-spacing: 0;
    margin-top: 1em;
  }



  #topics .opening_hours .note{
    width: 76%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3.23vw;
    line-height: 1.2;
    margin-top: 2.5em;
  }

  #topics .opening_hours .note._fix{
    width: 76%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.53vw;
    line-height: 1.4;
    margin-top: 2.5em;
  }

  #topics .opening_hours .note._fix {
    width: 90%;
    font-size: 2.8vw;
    margin-top: 2.2em;
  }

  #topics .opening_hours._child{
    margin-top: 6.66vw;
    padding-top: 6.66vw;
  }
  #topics .opening_hours._child::before{
    width: 68.66vw;
  }
  #topics .opening_hours._child .attraction_lists{
    letter-spacing: 0;
  }
  #topics .opening_hours._child .attraction_lists li{
    font-size: 3.63vw;
  }
  #topics .opening_hours .bnr{
    width: 67.46vw;
    margin-top: 12.66vw;
  }
  
  #topics .opening_hours .shadow_btn_wrap{
    width: 66.66vw;
    margin-top: 6vw;
  }
  #topics .opening_hours .shadow_btn_wrap::after{
    bottom: -2vw;
    right: -1vw;
  }
  #topics .opening_hours .shadow_btn_wrap .btn{
    font-size: 3.46vw;
    padding: 1em 0;
  }
  #topics .opening_hours .shadow_btn_wrap .btn::before{
    right: 2.33vw;
    width: 2.86vw;
    height: 2.86vw;
  }
  #topics .opening_hours .shadow_btn_wrap .btn:hover{
    bottom: -2vw;
    right: -1vw;
  }
  
  #topics .event_news{
    width: 66vw;
    margin-top: 18.66vw;
    flex-direction: column;
    gap: 13.33vw;
  }
  #topics .event_news_conte{
    width: 100%;
  }
  #topics .event_news_conte .ttl{
    margin-bottom: 4vw;
    margin-left: auto;
    margin-right: auto;
  }
  #topics .event .ttl{
    width: 21.33vw;
  }
  #topics .news .ttl{
    width: 19.2vw;
  }
  #topics .event_news_conte .lists .list{
    padding: 7vw 0;
  }
  #topics .event_news_conte .lists .list:nth-child(1){
    padding-top: 1.42vw;
  }
  #topics .event_news_conte .lists .list .data{
    font-size: 3.33vw;
  }
  #topics .event_news_conte .lists .list .txt{
    font-size: 3vw;
    text-align: left;
    line-height: 1.35;
  }
  #topics .event_news_conte .lists .list .more_btn{
    width: 23.63vw;
    margin-top: 1em;
    font-size: 2.7vw;
  }
  #topics .event_news_conte .lists .list .more_btn .arrow {
    width: 3.5vw;
  }
  
  /* イベント・ニュースのアコーディオン（SP） */
  #topics .event.event_news_conte .lists .list{
    height: 30vw;
    height: 33vw;
  }
  #topics .event.event_news_conte .lists .list .lead_btn{
    width: 8vw;
    margin-top: 3vw;
    margin-bottom: 1px;
  }
  
  #topics .info_conte{
    width: 76vw;
    margin-top: 10vw;
    padding-top: 8.93vw;
  }
  #topics .info_conte::before{
    width: 66vw;
    left: 50%;
    transform: translateX(-50%);
    height: 1.6vw;
    background-size: 100% 100%;
  }
  #topics .info_conte .wrap{
    height: 35.6vw;
  }
  
  #topics .info_conte .wrap .head{
    font-size: 4vw;
    line-height: 1.5;
  }
  #topics .info_conte .wrap .txt{
    font-size: 2.8vw;
    letter-spacing: 0;
    text-align: justify;
  }
  #topics .info_conte .wrap .txt .fw{
    font-size: 3vw;
  }
  #topics .info_conte .lead_btn{
    width: 9.33vw;
    margin-top: 4vw;
  }

  #stay{
    margin-top: 19.6vw;
  }
  #stay .sec_ttl{
    width: 46.26vw;
  }
  #stay .about{
    margin-top: 24.93vw;
  }
  #stay .about .bg_img{
    height: 50.93vw;
  }
  #stay .about .bg_img img{
    object-position: top center;
  }
  #stay .about .txt_lists{
    font-size: 3.6vw;
    letter-spacing: 0.07em;
    gap: 1.25em;
    left: 5.6vw;
  }
  #stay .about .txt_lists .txt_list{
    padding: .2em 0.5em;
  }
  #stay .inner{
    width: 86.66vw;
    margin-top: 13.73vw;
  }
  #stay .inner_head{
    font-size: 3.2vw;
    margin-bottom: 7em;
  }
  #stay .inner .wrap{
    padding-top: 12vw;
    margin-top: 12vw;
  }
  #stay .inner .wrap:nth-child(1){
    margin-top: 0;
  }
  #stay .inner .wrap::after{
    height: 2vw;
    background-size: 118% 100%;
  }
  #stay .inner .wrap._04{
    padding-bottom: 12vw;
  }
  #stay .inner .wrap._04::before{
    height: 2vw;
    background-size: 118% 100%;
  }
  #stay .inner .wrap .wrap_ttl{
    margin-bottom: 7.6vw;
  }
  #stay .inner .wrap._01 .wrap_ttl{
    width: 45.4vw;
  }
  #stay .inner .wrap._02 .wrap_ttl{
    width: 46.53vw;
  }
  #stay .inner .wrap._03 .wrap_ttl{
    width: 46.53vw;
  }
  #stay .inner .wrap._04 .wrap_ttl{
    width: 22.8vw;
  }
  
  #stay .inner .wrap .img_wrap{
    flex-direction: column;
    gap: 3.73vw;
    margin-bottom: 8.4vw;
  }
  #stay .inner .wrap .img_wrap .img{
    width: 100%;
  }
  #stay .inner .wrap._04 .img_wrap .img{
    width: 100%;
  }
  #stay .inner .wrap .txt_wrap{
    flex-direction: column;
    gap: 0;
  }
  #stay .inner .wrap .txt_wrap .txt_box{
    width: 100%;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt{
    font-size: 3.2vw;
    line-height: 1.8;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt_note{
    font-size: 2.8vw;
    border-radius: 6px;
    letter-spacing: -0.02em;
    padding: 0.6em 0.9em;
  }

  #stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap{
    flex-direction: column;
    align-items: flex-start;
    gap: 2.66vw;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap .icon_box{
    gap: 2.66vw;
  }
  #stay .inner .wrap .txt_wrap .txt_box .txt_note_wrap .icon{
    width: 7.46vw;
  }

  #stay .inner .wrap .txt_wrap .btn{
    width: 17.33vw;
    margin-left: auto;
    margin-right: 0;
    margin-top: -12vw;
  }

  #activity{
    margin-top: 24vw;
  }
  #activity .sec_ttl{
    width: 89.06vw;
  }
  #activity .inner{
    width: 86.66vw;
    margin-top: 12vw;
  }
  #activity .inner .wrap{
    padding-top: 12vw;
    margin-top: 12vw;
  }
  #activity .inner .wrap:nth-child(1){
    margin-top: 0;
  }
  #activity .inner .wrap::after{
    height: 2vw;
    background-size: 118% 100%;
  }
  #activity .inner .wrap .wrap_ttl{
    margin-bottom: 7.6vw;
  }
  #activity .inner .wrap._01 .wrap_ttl{
    width: 49.33vw;
  }
  #activity .inner .wrap._02 .wrap_ttl{
    width: 44vw;
  }
  #activity .inner .wrap._03 .wrap_ttl{
    width: 24.8vw;
  }
  #activity .inner .wrap._04 .wrap_ttl{
    width: 53.33vw;
  }
  #activity .inner .wrap._05 .wrap_ttl{
    width: 64.53vw;
  }
  #activity .inner .wrap._06 .wrap_ttl{
    width: 65.06vw;
  }
  
  #activity .inner .wrap .img_wrap{
    flex-direction: column;
    gap: 3.73vw;
    margin-bottom: 8.4vw;
  }
  #activity .inner .wrap .img_wrap .img{
    width: 100%;
  }
  #activity .inner .wrap .txt_wrap{
    flex-direction: column;
    gap: 0;
  }
  #activity .inner .wrap .txt_wrap .txt_box{
    width: 100%;
  }
  #activity .inner .wrap .txt_wrap .txt_box .txt{
    font-size: 3.2vw;
    line-height: 1.8;
  }
  #activity .inner .wrap .txt_wrap .txt_box .txt span{
    font-size: 2.93vw;
  }
  #activity .inner .wrap .txt_wrap .btn{
    width: 17.33vw;
    margin-left: auto;
    margin-right: 0;
    margin-top: 5vw;
  }

  #relaxation{
    margin-top: 26vw;
  }
  #relaxation .sec_ttl{
    width: 88.93vw;
  }

  #uminaka{
    background-size: 100% 104vw;
    margin-top: 15.73vw;
  }
  #uminaka .sec_ttl{
    width: 100%;
    top: 0;
  }
  #uminaka .head_conte{
    width: 85vw;
    padding-top: 16vw;
  }
  #uminaka .head_conte .head{
    font-size: 5.33vw;
  }
  #uminaka .head_conte .head::after{
    height: 1.6vw;
    background-size: 100% 100%;
  }
  #uminaka .head_conte .txt{
    font-size: 3.6vw;
    margin-top: 3em;
    margin-bottom: 5em;
  }
  #uminaka .inner{
    width: 86.66vw;
    margin-top: 12vw;
    padding-left: 9.33vw;
    padding-right: 9.33vw;
    padding-bottom: 19.2vw;
  }
  #uminaka .inner .conte .wrap{
    padding-top: 8.66vw;
    padding-bottom: 8.66vw;
  }
  #uminaka .inner .conte .wrap:last-child{
    padding-bottom: 0;
  }
  #uminaka .inner .conte .wrap._02,
  #uminaka .inner .conte .wrap._03{
    width: 100%;
  }
  #uminaka .inner .conte .wrap._04::after,
  #uminaka .inner .conte .wrap._05::after,
  #uminaka .inner .conte .wrap._06::after,
  #uminaka .inner .conte .wrap._07::before{
    height: 2vw;
    background-size: 118% 100%;
  }
  #uminaka .inner .conte .wrap .wrap_ttl{
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 1.5em;
  }
  #uminaka .inner .conte .wrap .wrap_ttl span{
    font-size: 70%;
  }
  #uminaka .inner .conte .wrap .img_wrap{
    flex-direction: column;
    gap: 3.73vw;
  }
  #uminaka .inner .conte .wrap .img_wrap .img{
    width: 100%;
  }
  #uminaka .inner .conte .wrap .img_wrap.one .img{
    width: 100%;
  }
  #uminaka .inner .conte .wrap .txt_wrap{
    font-size: 3.2vw;
  }
  #uminaka .inner .conte .wrap .txt_wrap .txt{
    margin-top: 2em;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0em;
  }
  #uminaka .inner .conte .wrap .txt_wrap .txt span{
    font-size: 80%;
  }
  #uminaka .inner .conte .wrap .txt_wrap .btn{
    width: 29.33vw;
    margin-top: 2em;
  }
  #uminaka .inner .conte .wrap .txt_wrap .btn .arrow{
    width: 4vw;
  }
  
  #uminaka .uminakatabi{
    margin-top: 14.4vw;
    padding-top: 12vw;
  }
  #uminaka .uminakatabi::after{
    font-size: 3.2vw;
  }
  #uminaka .uminakatabi .txt_wrap{
    flex-direction: column;
    gap: 7vw;
  }
  #uminaka .uminakatabi .txt_wrap .logo{
    width: 33.06vw;
  }
  #uminaka .uminakatabi .txt_wrap .txt{
    text-align: center;
    font-size: 3.2vw;
    margin-left: auto;
    margin-right: auto;
  }
  #uminaka .uminakatabi .btn_wrap{
    width: 66.66vw;
    margin-top: 9.33vw;
  }

  #others{
    margin-top: 47.73vw;
    padding-bottom: 13.33vw;
  }
  #others .sec_ttl{
    width: 72.26vw;
  }
  #others .others_conte{
    flex-direction: column;
    width: 86.66vw;
    margin-top: 20vw;
    gap: 11.06vw;
  }
  #others .others_conte .others_item{
    width: 100%;
  }
  #others .others_conte .others_item .ttl{
    font-size: 5.06vw;
  }
  #others .others_conte .others_item .txt{
    font-size: 3.2vw;
  }
  #others .others_conte .others_item .txt_note{
    font-size: 2.93vw;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }
  #others .others_conte .others_item .txt_note .more_btn{
    width: 29.06vw;
    font-size: 3.2vw;
    margin-right: auto;
  }
  #others .others_conte .others_item .txt_note .more_btn .arrow{
    width: 4vw;
  }
  
  #info{
    padding-top: 14.66vw;
  }
  #info::before{
    height: 2vw;
    background-size: 118% 100%;
  }
  #info .sec_ttl{
    width: 91.73vw;
  }
  #info .info_conte{
    width: 80vw;
    padding-top: 12vw;
    padding-bottom: 12vw;
    border-top: 4px dotted #009e86;
  }
  #info .info_conte .ttl{
    font-size: 4.4vw;
  }
  
  #info .opening_hours{
    padding-top: 10.26vw;
    border-top: 0;
  }
  #info .opening_hours .inner .time{
    font-size: 8vw;
  }
  #info .opening_hours .inner .time span{
    font-size: 2.53vw;
  }
  #info .opening_hours .inner .line_time{
    width: 7.6vw;
    height: 0.66vw;
    margin-bottom: 3.2vw;
    margin-left: 3.73vw;
    margin-right: 3.73vw;
  }

  #info .opening_hours .close_announce{
    font-size: 7vw;
    line-height: 1;
    letter-spacing: 0;
    margin-top: 1em;
  }

  #info .opening_hours .note{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3.23vw;
    line-height: 1.2;
    margin-top: 2.5em;
  }

  #info .opening_hours .note._fix{
    width: 81%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.53vw;
    line-height: 1.4;
    margin-top: 2.5em;
  }

  #info .opening_hours._child{
    margin-top: 6.66vw;
    padding-top: 6.66vw;
  }
  #info .opening_hours._child::before{
    width: 68.66vw;
  }
  #info .opening_hours._child .attraction_lists{
    letter-spacing: 0;
  }
  #info .opening_hours._child .attraction_lists li{
    font-size: 3.33vw;
  }
  
  #info .map .map_iframe{
    height: 40vw;
  }
  #info .map .map_address{
    font-size: 3.33vw;
    letter-spacing: 0.04em;
    margin-top: 1em;
  }
  
  #info .general .btn_lists{
    width: 66.66vw;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    gap: 6vw;
  }
  #info .general .btn_lists .btn_list{
    width: 100%;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap::after{
    bottom: -2vw;
    right: -1vw;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap .btn{
    font-size: 3.46vw;
    padding: 1em 0;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap .btn::before{
    right: 2.33vw;
    width: 2.86vw;
    height: 2.86vw;
  }
  #info .general .btn_lists .btn_list .shadow_btn_wrap .btn:hover{
    bottom: -2vw;
    right: -1vw;
  }

  #info .equipment .equipment_img{
    width: 100%;
  }
  #info .equipment .shadow_btn_wrap{
    width: 66.66vw;
  }
  #info .equipment .shadow_btn_wrap::after{
    bottom: -2vw;
    right: -1vw;
  }
  #info .equipment .shadow_btn_wrap .btn{
    font-size: 3.46vw;
    padding: 1em 0;
  }
  #info .equipment .shadow_btn_wrap .btn::before{
    right: 2.33vw;
    width: 2.86vw;
    height: 2.86vw;
  }
  #info .equipment .shadow_btn_wrap .btn:hover{
    bottom: -2vw;
    right: -1vw;
  }

  #equipment_modal .conte{
    width: 90vw;
    padding-bottom: 10vw;
  }
  #equipment_modal .conte .ttl{
    font-size: 4.4vw;
  }
  #equipment_modal .conte .modal_close{
    top: 6.85vw;
    right: 3.85vw;
    width: 7.71vw;
  }
  #equipment_modal .conte .equipment_img{
    width: 80vw;
  }
  
  #info .contact{
    padding-bottom: 17.6vw;
  }
  #info .contact .contact_txt{
    font-size: 4.26vw;
  }
  #info .contact .contact_txt span{
    font-size: 76%;
  }
  #info .contact .contact_tel{
    font-size: 6.4vw;
    margin-top: 0.4em;
  }

  #info .contact .contact_wrap_child{
    width: 100%;
    margin-top: 9.06vw;
    padding-top: 9.06vw;
  }
  #info .contact .contact_wrap_child .ttl{
    font-size: 3.73vw;
  }

  /* Slickスライダー用カスタムスタイル */
  .slide_conte{
    margin-top: 7.65vw;
  }
  .slide_conte .slick-track{
    gap: 20vw;
    gap: 10vw;
  }
  .slide_conte .slide_item._first::before,
  .slide_conte .slide_item._last::before{ 
    width: 10vw;
    border-radius: 0;
  }
  .slide_conte .slide_item._first::before{
    left: 0;
    transform: translateX(-100%);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .slide_conte .slide_item._last::before{
    right: 0;
    transform: translateX(100%);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .slide_conte .slide_wrap{
    padding: 10.66vw 0;
    width: 90vw;
    width: 70vw;
    height: 133.53vw;
  }
  .slide_conte .slick-slide::after{
    width: 20vw;
  }
  
  .slick-prev,
  .slick-next{
    width: 12.13vw  !important;
    height: 12.13vw !important;
    top: 36% !important;
  }
  .slick-prev{
    left: 5% !important;
  }
  .slick-next{
    right: 5% !important;
  }
  .slide_conte .slide_wrap .ttl{
    font-size: 5.06vw;
  }
  #stay .slide_conte .slide_wrap .img{
    height: 39.66vw;
  }
  .slide_conte .slide_wrap .txt{
    font-size: 3.2vw;
  }
  .slide_conte .slide_wrap .txt_note{
    font-size: 2.93vw;
    flex-direction: column;
    align-items: flex-start;
  }
  .slide_conte .slide_wrap .txt_note .more_btn{
    width: 29.06vw;
    font-size: 3.2vw;
    margin-left: auto;
    margin-right: auto;
  }
  .slide_conte .slide_wrap .txt_note .more_btn .arrow{
    width: 4vw;
  }

  .slide_nav_lists{
    font-size: 3.86vw;
    margin-top: 4em;
  }
  .slide_nav_lists .slide_nav_list {
    padding: 0 0.7em;
  }

  #relaxation .slide_conte .slide_wrap._ex{
    padding-right: 0;
    padding-bottom: 3.3vw;
  }
  #relaxation .slide_conte .slide_wrap._ex .img{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  #relaxation .slide_conte .slide_wrap._ex .note_box{
    position: static;
    transform: translate(0, 0);
    width: 100%;
    font-size: 2.8vw;
    padding: 1em 2em;
    margin-top: 2vw;
  }
  #relaxation .slide_conte .slide_wrap._ex .note_box::after{
    top: 0;
    left: -50%;
    transform: translate(-50%, 100%);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 23px solid #efefef;
  }
  #relaxation .slide_conte .slide_wrap._ex .note_box .note_ttl{
    font-size: 2.8vw;
    margin-bottom: 0.5em;
  }


  .illust._01{
    width: 21.92vw;
    top: 53.85vw;
    left: -6.42vw;
  }
  .illust._02{
    width: 30.57vw;
    top: 56vw;
    right: -6.57vw;
  }
  .illust._04{
    width: 32.85vw;
    top: -16vw;
    right: -6.27vw;
  }
  .illust._05{
    width: 34.07vw;
    top: -33.14vw;
    right: 0.85vw;
  }
  .illust._06{
    width: 23.71vw;
    top: -29.78vw;
    right: auto;
    left: 3vw;
  }
  .illust._07{
    width: 27vw;
    top: 69.43vw;
    right: auto;
    left: -6.3vw;
  }
  .illust._08{
    width: 20.57vw;
    top: -7vw;
    right: -3.42vw;
  }
  .illust._09{
    width: 22.07vw;
    top: 480.85vw;
    left: auto;
    right: 0;
  }
  .illust._10{
    width: 24.71vw;
    top: 547.78vw;
    right: auto;
    left: -2vw;
  }
  .illust._11{
    width: 33.07vw;
    bottom: -3.57vw;
    left: -6.28vw;
  }
  .illust._12{
    width: 31.92vw;
    top: 202.5vw;
    left: -5.78vw;
  }
  .illust._13{
    width: 27.71vw;
    top: 462.71vw;
    right: -6.35vw;
  }
  .illust._14{
    width: 41.28vw;
    top: 902.14vw;
    right: auto;
    left: -2vw;
  }
  .illust._15{
    width: 30.21vw;
    top: 656.71vw;
    left: -6.27vw;
  }
  .illust._16{
    width: 20.28vw;
    top: 952.14vw;
    left: auto;
    right: -6vw;
  }
  .illust._17{
    width: 30.28vw;
    top: 1153.14vw;
    left: 2vw;
    right: auto;
  }
  .illust._18{
    width: 27.64vw;
    top: 10.15vw;
    right: 0;
    left: auto;
  }
  .illust._19{
    width: 23.57vw;
    top: -26.85vw;
    left: -3.42vw;
  }
  .illust._20{
    width: 11.85vw;
    width: 21.85vw;
    top: -70vw;
    left: -4vw;
  }
  .illust._21{
    width: 31vw;
    top: -21.85vw;
    left: -4.42vw;
  }
  .illust._22{
    width: 29vw;
    top: -78.71vw;
    right: -5.85vw;
  }
  .illust._23{
    width: 21.71vw;
    top: -42vw;
    right: -5.85vw;
  }
  .illust._24{
    width: 30.57vw;
    top: 160vw;
    left: -6.71vw;
  }
  .illust._25{
    width: 23.57vw;
    top: 537.85vw;
    right: -3.71vw;
  }
  .illust._26{
    width: 46.21vw;
    top: -59vw;
    left: -13vw;
  }
  .illust._27{
    width: 51.14vw;
    top: -26.57vw;
    right: -13vw;
  }
  .illust._28{
    width: 25.14vw;
    top: -4.58vw;
    right: auto;
    left: -9vw;
  }
}
