/* TOPページ */
/*動画*/
/*header設定*/
#yt_header {
  position: relative;
  /*ローディング画像などを表示す際の基点とするため指定*/
  height: 100vh;
  /*高さを全画面にあわせる*/
  text-align: center;
  color: #fff;
  /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
  background: url("../img/movie.jpg") no-repeat;
  background-size: cover;
}

@media screen and (max-width:896px) {
  #yt_header {
    height: 37vh;
    /*検証画面38vh*/
  }
}

/* ローディングアイコン設定 */
#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/
#loading.disappear {
  display: none;
}

/* youtube設定 */
#youtube-top {
  position: fixed;
  z-index: 1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-top.appear {
  animation-name: PageAnimeAppear;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#glampispa {
  /*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

@media screen and (max-width:896px) {
  #glampispa {
    top: 25%;
    /*検証画面22%*/
    width: 130vw;
    height: 100vh;
  }
}

/*youtubeがクリックされないためのマスク*/
#glampispa-mask {
  position: absolute;
  z-index: 2;
  /*下から2番目に表示*/
  top: 0;
  width: 100%;
  height: 100%;
}

/*下のコンテンツ*/
#container_top {
  position: relative;
  /*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
  z-index: 3;
  /*一番上に表示*/
  background: #fff;
  padding-bottom: 1px;
}

#resort-rg {
  z-index: 3;
  position: relative;
  width: 100%;
  height: auto;
}

#footer {
  z-index: 3;
  position: relative;
}

.ytp-chrome-top {
  display: none !important;
}

.top_slid {
  position: relative;
}

.top_slid h2 {
  color: #fff;
  width: max-content;
  line-height: 1.9;
  font-weight: bold;
  font-size: 23px;
  text-shadow: 2px 2px 3px #333;
  position: absolute;
  top: 63%;
  left: 5%;
  z-index: 3;
  text-align: left;
}

.top_slid h2 img {
  width: 300px;
  margin: 0 auto;
}

.top_slid h2 span.subttl {
  font-size: 18px;
}

.top_slid h2 span.openday {
  font-family: 'Kaushan Script', cursive;
  font-size: 18px;
}

@media screen and (max-width:896px) {
  .top_slid {
    margin-top: 60px;
    height: auto;
  }

  .top_slid h2 {
    top: 65%;
    line-height: 1.7;
    font-size: 12px;
  }

  .top_slid h2 span.subttl {
    font-size: 11px;
  }

  .top_slid h2 span.openday {
    font-size: 11px;
  }
}

/*
.top_mv {padding-top: 80px; position: relative;}
.top_mv img {width: 100%;}
.top_mv h2 {
  color: #fff;
  width: 100%;
  line-height: 1.5;
  font-weight: bold;
  font-size: 40px;
  text-shadow:2px 2px 3px #333;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.top_mv h2 span.openday {font-family: 'Kaushan Script', cursive; font-size: 24px;}
@media screen and (max-width:896px) {
.top_mv {padding-top: 60px;}
.top_mv h2 {top: 60%; font-size: 22px;}
.top_mv h2 span.openday {font-size: 18px;}
}*/
p.top_p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 2.0;
}

p.color_p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 2.0;
}

.mda {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto 40px;
  padding: 5px;
  box-sizing: border-box;
  border: 3px solid #B1B1B1;
}

.mda p {
  text-align: center;
}

@media screen and (max-width:896px) {
  .mda p {
    font-size: 1.3rem
  }
}

.mda .mda_bd {
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
  border: 1px solid #B1B1B1;
}

.mask {
  background: url("../img/top/mv_msk.jpg");
  background-size: cover;
  position: relative;
}

.mask:after {
  content: '';
  background-color: rgba(47, 47, 47, 0.73);
  position: absolute;
  z-index: 90;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.mask h2,
.mask p {
  color: #fff;
}

.top_location_txt {
  background: #fff;
  width: 46%;
}

@media screen and (max-width:896px) {

  /*.chiba_glamping_top_bk {
  background: url("../img/top/akazawa_top_sp.jpg");
}*/
  .top_location_txt {
    padding: 0 0 60px;
    width: 100%;
  }
}

.top_corona {
  padding: 15px 0;
  background: #3E5655;
}

.top_corona h3 {
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 15px 0;
  margin: 0 auto;
}

.top_corona a {
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration-line: underline;
}

.top_news {
  padding: 30px 0 30px 8px;
  background: #F1EFE9;
  margin-top: -2px;
}

.top_news .container {
  display: flex;
}

@media screen and (max-width:896px) {
  .top_news {
    padding: 2rem 0px;
  }

  .top_news .container {
    flex-direction: column;
  }
}

.top_news h2 {
  border-right: 1px solid #808080;
  width: 165px;
  display: flex;
  align-items: center;
}

@media screen and (max-width:896px) {
  .top_news h2 {
    border-right: none;
    border-bottom: 1px solid #808080;
    padding-bottom: 3%;
    margin-bottom: 10px;
    flex-direction: column;
    width: 100%;
    font-size: 2.3rem;
  }
}

.top_news ul li {
  padding: 15px 0;
}

@media screen and (max-width:896px) {
  .top_news ul {
    height: 14rem;
  }

  .top_news ul li {
    padding: 2% 0;
    line-height: 1.8;
  }
}

.top_news ul li span.date {
  padding: 0 22px 0 30px;
}

.top_news ul li span.cate {
  color: #fff;
  background: #808080;
  padding: 4px 10px;
  margin-right: 30px;
  font-size: 1.4rem;
}

@media screen and (max-width:896px) {
  .top_news ul li span.date {
    padding: 0;
  }

  .top_news ul li span.cate {
    padding: 1% 2%;
    font-size: 1.2rem;
  }
}

.top_news ul li span.cate a {
  color: #fff;
}

.recommendation_box {
  /* background: #F1EFE9; */
  background: #ffffff;
}

.top_recommendation {
  width: 40%;
  margin: 0px auto;
  padding: 30px 0;
}

.top_recommendation a {
  width: 100%;
}

.top_recommendation a img {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width:896px) {
  .top_recommendation {
    width: 85%;
  }
}

.top_msg {
  height: 560px;
  padding: 100px 0 0 0;
  /*background: rgba(12,58,88,0.4);*/
}

@media screen and (max-width:896px) {
  .top_msg {
    height: auto;
    padding: 8% 0 0;
    background-size: cover;
  }
}

.top_msg h2 {
  text-align: center;
  font-size: 2.6rem;
  line-height: 2.1;
  padding-bottom: 20px;
  margin-bottom: 34px;
  position: relative;
  z-index: 95;
}

.top_msg h2 span.engl {
  font-size: 1.4rem;
  color: #D5D2DD;
  letter-spacing: 0.1em;
}

.top_msg h2 span.msg_subttl {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width:896px) {
  .top_msg h2 {
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 10% 1% 5%;
  }

  .top_msg h2 span {
    font-size: 1.4rem;
  }
}

.top_msg p {
  text-align: center;
  line-height: 2.2;
  position: relative;
  z-index: 95;
}

@media screen and (max-width:896px) {
  .top_msg p {
    padding: 0 2% 0rem;
  }
}

.top_location {
  padding: 80px 0 0;
  display: flex;
}

@media screen and (max-width:896px) {
  .top_location {
    flex-direction: column;
  }
}

.top_location img {
  display: inline;
  max-width: 100%;
  width: 54%;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_location img {
    width: 100%;
  }
}

.top_location .txt {
  padding: 68px 0;
}

@media screen and (max-width:896px) {
  .top_location .txt {
    padding: 20px 0 0;
    width: 100%;
  }
}

.top_location .txt h2 {
  font-size: 2.1rem;
  line-height: 1.6;
}

.top_location .txt h2 span {
  color: #D5D2DD;
  font-size: 1.8rem;
}

.top_location .txt p {
  margin-top: 40px;
  line-height: 1.7;
  padding: 0 5%;
  text-align: center;
}

.top_feature {
  background: #BECEB0;
}

.top_feature_bk {
  padding: 85px 0;
}

@media screen and (max-width:896px) {
  .top_feature_bk {
    padding: 10% 0;
  }
}

/*.top_feature p {
	line-height: 2.0;
}*/
@media screen and (max-width:896px) {
  .top_feature h2 {
    font-size: 2.4rem;
    margin: 0 0 25px;
  }
}

.top_feature h2 span {
  font-size: 1.5rem;
  color: #fff;
}

.top_box {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: row;
}

@media screen and (max-width:1024px) {
  .top_box {
    flex-direction: column;
  }
}

.top_box_re {
  flex-direction: row-reverse;
}

@media screen and (max-width:1024px) {
  .top_box_re {
    flex-direction: column;
  }
}

.feature_mainimg {
  width: 100%;
}

.feature_mainimg img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  margin: 0 auto;
}

@media screen and (max-width:1024px) {
  .feature_mainimg {
    width: 100%;
  }

  .feature_mainimg img {
    height: auto;
  }
}

.feature_txtarea {
  background: rgba(255, 255, 255, 0.95);
  height: 530px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width:1024px) {
  .feature_txtarea {
    margin: 0 auto 10px;
    height: auto;
    width: 100%;
  }
}

.textarea_p {
  padding: 5rem;
}

@media screen and (max-width:896px) {
  .textarea_p {
    padding: 2rem;
  }
}

.textarea_p h3 {
  padding-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1.3;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid #9C826A;
}

@media screen and (max-width:896px) {
  .textarea_p h3 {
    font-size: 2.1rem;
  }
}

.textarea_p h3 span.sub_title {
  font-size: 1.4rem;
}

/*.textarea_p h3:after {
	content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #ebebec, #ebebec 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #ebebec, #ebebec 2px, #fff 2px, #fff 4px);
}*/
.textarea_p h3 span.point_n {
  font-size: 4.5rem;
  font-style: italic;
  color: #27645f;
}

.spring_link p a {
  text-decoration: underline;
  line-height: 1.4;
  color: #564638;
  position: relative;
  padding-left: 15px;
}

.spring_link p a::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width:1024px) {
  .textarea_p h3 {
    padding-bottom: 20px;
  }
}

.top_room_bk {
  padding: 50px 0;
  background-color: #d3ccbd;
}

@media screen and (max-width:896px) {
  .top_room_bk {
    padding: 10% 0;
  }
}

.top_room h2 {
  margin-bottom: 40px;
}

.top_room h3 span {
  font-size: 1.5rem;
}

.top_room h4 {
  text-align: center;
  margin-bottom: 20px;
}

.top_room .container {
  box-sizing: border-box;
}

@media screen and (max-width:896px) {
  .top_room .container {
    padding: 0 0;
  }
}

ul.glam_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.glam_list li {
  width: 32%;
  margin: 0 auto 20px;
  box-sizing: border-box;
}

ul.glam_list li img {
  height: auto;
  object-fit: cover;
}

ul.glam_list li p.tprm_ex {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 15px;
  text-align: center;
}

.br_rmex {
  display: none;
}

@media screen and (max-width:500px) {
  .br_rmex {
    display: block;
  }
}

ul.glam_list li p.tprm_title {
  padding-top: 0px;
  color: #222;
  font-size: 1.8rem;
  width: 100%;
  margin: 0 auto 5px;
  text-align: center;
  border-bottom: dashed 1px #222;
}

ul.glam_list li dl {
  display: flex;
  flex-wrap: wrap;
}

ul.glam_list li dt {
  width: 30%;
  padding: 16px 0px 10px 0px;
  box-sizing: border-box;
  text-align: center;
}

ul.glam_list li dd {
  padding: 16px 0px 10px 5px;
  margin: 0;
  width: 70%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3;
}

.tprm_btn div {
  margin: 0 auto;
}

ul.glam_list li.tprm_btn p {
  border: none;
}

@media screen and (min-width:897px) {
  .tprm_btn {
    position: relative;
  }

  .tprm_btn div {
    position: absolute;
    bottom: 150px;
    right: 20%;
  }
}

@media screen and (max-width:896px) {
  ul.glam_list li {
    margin: 0 auto 12%;
    width: 48%;
  }

  ul.glam_list li dt {
    width: 28%;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
  }

  ul.glam_list li dd {
    padding: 10px 2px;
    margin: 0;
    width: 72%;
    box-sizing: border-box;
    text-align: center;
  }

  ul.glam_list li p.tprm_ex {
    font-size: 1.3rem;
  }
}

@media screen and (max-width:710px) {
  ul.glam_list li {
    margin: 0 auto 12%;
    width: 100%;
  }
}

ul.glam_list li .rm_img {
  width: 100%;
}

ul.glam_list li img {
  object-fit: cover;
  width: 100%;
}

@media screen and (min-width:897px) {
  ul.glam_list li .rm_img {
    height: 210px;
  }

  ul.glam_list li img {
    height: 210px;
  }
}

@media screen and (max-width:896px) {
  ul.glam_list li img {
    height: auto;
    max-height: 310px;
  }
}

ul.glam_list li .txt {
  background: none;
  border: 1px solid #333;
  width: 100%;
  padding: 10px;
  margin: 0 auto 0;
  box-sizing: border-box;
}

ul.glam_list li .txt .inner {
  border: 1px solid #333;
  padding: 15px 32px;
}

@media screen and (min-width:897px) {
  ul.glam_list li .txt {
    height: 190px;
  }

  ul.glam_list li .txt .inner {
    height: 135px;
  }
}

@media screen and (max-width:896px) {
  ul.glam_list li .txt .inner {
    padding: 20px 14px;
  }
}

ul.glam_list li .txt h3 {
  font-size: 2.0rem;
  text-align: center;
  margin: 30px 0 20px;
  font-weight: 500;
  line-height: 1.3;
}

.faci_link {
  text-decoration: underline;
}

/* TOP_お部屋部分　スライダーに変更 250408*/

.top_room .multiple-item li {
  width: 32%;
  margin: 0 auto 20px;
  box-sizing: border-box;
  padding: 0px 10px;
}

.top_room .multiple-item li img {
  height: auto;
  object-fit: cover;
}

.top_room .multiple-item li p.tprm_ex {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 15px;
  text-align: center;
}

.top_room .multiple-item li p.tprm_title {
  padding-top: 0px;
  color: #222;
  font-size: 1.8rem;
  width: 100%;
  margin: 0 auto 5px;
  text-align: center;
  border-bottom: dashed 1px #222;
}

.top_room .multiple-item li dl {
  display: flex;
  flex-wrap: wrap;
}

.top_room .multiple-item li dt {
  width: 45%;
  padding: 16px 0px 10px 0px;
  box-sizing: border-box;
  text-align: center;
}

.top_room .multiple-item li dd {
  padding: 16px 0px 10px 5px;
  margin: 0;
  width: 55%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width:896px) {
  .top_room .multiple-item li {
    /* margin: 0 auto 12%; */
    width: 48%;
  }

  .top_room .multiple-item li dt {
    width: 45%;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
  }

  .top_room .multiple-item li dd {
    padding: 10px 2px;
    margin: 0;
    width: 55%;
    box-sizing: border-box;
    text-align: center;
  }

  .top_room .multiple-item li p.tprm_ex {
    font-size: 1.3rem;
  }
}

@media screen and (max-width:710px) {
  .top_room .multiple-item li {
    /* margin: 0 auto 12%; */
    width: 100%;
  }
}

.top_room .multiple-item li .rm_img {
  width: 100%;
}

.top_room .multiple-item li img {
  object-fit: cover;
  width: 100%;
}

@media screen and (min-width:897px) {
  .top_room .multiple-item li .rm_img {
    height: 210px;
  }

  .top_room .multiple-item li img {
    height: 210px;
  }
}

@media screen and (max-width:896px) {
  .top_room .multiple-item li img {
    height: auto;
    max-height: 310px;
  }
}

.top_room .multiple-item li .txt {
  background: none;
  border: 1px solid #333;
  width: 100%;
  padding: 10px;
  margin: 0 auto 0;
  box-sizing: border-box;
}

.top_room .multiple-item li .txt .inner {
  border: 1px solid #333;
  padding: 15px 32px;
}

@media screen and (min-width:897px) {
  .top_room .multiple-item li .txt {
    height: 190px;
  }

  .top_room .multiple-item li .txt .inner {
    height: 135px;
  }
}

@media screen and (max-width:896px) {
  .top_room .multiple-item li .txt .inner {
    padding: 20px 14px;
  }
}

.top_room .multiple-item li .txt h3 {
  font-size: 2.0rem;
  text-align: center;
  margin: 30px 0 20px;
  font-weight: 500;
  line-height: 1.3;
}

/* TOP_お部屋部分　スライダーに変更 250408 END*/

/*充実の設備 レンタル*/
.top_rental_bk {
  padding: 80px 0 40px;
}

.top_rental_bk_w {
  padding: 80px 0 40px;
  background: #fff;
}

.top_rental ul.rental_area {
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width:897px) {
  .top_rental ul.rental_area {
    padding: 0 50px;
  }
}

.top_rental ul.rental_area>li {
  width: 33%;
  padding: 4px;
  box-sizing: border-box;
}

@media screen and (max-width:896px) {
  .top_rental ul.rental_area>li {
    width: 80%;
    padding: 1%;
  }
}

.top_rental ul.rental_area li.tag {
  display: flex;
  padding: 10px 0;
}

@media screen and (max-width:896px) {
  .top_rental ul.rental_area li.tag {
    flex-direction: column;
  }
}

.top_rental ul.rental_area img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_rental ul.rental_area img {
    height: 180px;
  }
}

.top_rental ul.rental_area h3.spot {
  background: #B5B8B7;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
}

.top_rental ul.rental_area .rental_tag {
  border: 1px solid #808080;
  border-radius: 16px;
  width: 100px;
  text-align: center;
}

.top_rental ul.rental_area .sell_tag {
  color: #fff;
  background: #425356;
  border-radius: 16px;
  width: 100px;
  text-align: center;
}

.top_rental ul.rental_area .price {
  text-indent: 20px;
}

.top_rental ul.rental_area .p_desc {
  padding: 10px;
}

@media screen and (max-width:896px) {
  .top_rental ul.rental_area .rental_tag {
    width: 100%;
  }

  .top_rental ul.rental_area .sell_tag {
    width: 100%;
  }

  .top_rental ul.rental_area .price {
    text-indent: 0;
    text-align: right;
  }

  .top_rental ul.rental_area .p_desc {
    padding: 5px;
  }
}

/* 充実の設備　スライダーに変更 250408*/
.top_rental .multiple-item li {
  padding: 0px 3px;
}

.top_rental .multiple-item li img {
  width: auto;
}

.top_rental .multiple-item h3 {
  background: #dcdfde;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  color: #333333;
}

/* 充実の設備　スライダーに変更 250408 END*/
/*ピックアップ*/
.top_pickup_bk {
  padding: 80px 0;
  background: #E2E9E9;
}

.top_pickup h2 {
  margin-bottom: 30px;
}

.top_pickup ul {
  align-items: stretch;
  /*display: flex;
    flex-wrap: wrap;*/
  justify-content: center;
  margin-bottom: 40px;
}

.top_pickup ul li {
  width: 29%;
  margin: 10px;
  display: inline-grid;
}

@media screen and (max-width:896px) {
  .top_pickup ul li {
    width: 100%;
    display: inline-grid;
  }

  .top_rental .multiple-item li img {
    height: 210px;
  }
}

.top_pickup ul li .pickup-ttl {
  background: #8EA6A6;
  width: 90%;
  padding: 5px;
  margin: -30px auto 0;
  position: relative;
  z-index: 20;
}

/*.top_pickup ul li .pickup-ttl::after {
  content: "";
  position: absolute;
  top: 3.5%;
  width: 96%;
  height: 91%;
  display: block;
  border: 1px solid #fff;
}*/
.top_pickup ul li .inner {
  z-index: 30;
  border: 1px solid #fff;
}

.top_pickup ul li a:hover {
  opacity: 1;
}

.top_pickup ul li p.pickup-title {
  font-size: 1.4rem;
  text-align: center;
  margin: 30px 0;
  font-weight: 500;
  padding: 0 10px;
}

.top_pickup ul li p.period {
  font-size: 14px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin-bottom: 0;
  padding: 0 32px 20px;
}

.top_pickup ul li a {
  color: #333;
}

.top_pickup ul li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/*アクティビティ*/
.top_activity_bk {
  padding: 80px 0;
}

@media screen and (max-width:896px) {
  .top_activity_bk {
    padding: 10% 0;
  }
}

.top_activity_bk ul li {
  margin: 10px;
}

.top_content__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_content__img img {
    height: 200px;
  }
}

.top_content__desc {
  width: 90%;
  margin: 20px auto;
  text-align: left;
  height: 80px;
}

/*インスタ*/
.top_insta {
  padding: 80px 0;
  background: #e9e9e9;
}

@media screen and (max-width:896px) {
  .top_insta {
    padding: 10% 0;
  }
}

.top_insta p {
  text-align: center;
}

.top_insta ul {
  width: 820px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
}

.insta-gallery__media {
  background: #fff !important;
}

.instagram-gallery-modal__media-container {
  background-color: #fff !important;
}

#instagram-gallery-feed-0 .swiper-container .swiper-button-prev,
#instagram-gallery-feed-0 .swiper-container .swiper-button-next {
  color: white;
}

/*周辺観光*/
.top_area {
  padding: 80px 0;
}

@media screen and (max-width:896px) {
  .top_area {
    padding: 10% 0;
  }
}

.top_area h2 {
  margin-bottom: 30px;
}

.top_area ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.top_area ul li {
  margin: 10px;
}

.top_area ul li img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_area ul {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .top_area ul li {
    margin-bottom: 60px;
  }
}

.top_area ul li h3 {
  padding: 18px 0 14px;
  text-align: center;
  margin-bottom: 6px;
  font-size: 1.8rem;
  border-bottom: 1px dotted #808080;
}

/*.top_area ul li h3.spot {
	background: #5d87b7;
  color: #fff;
}
.top_area ul li h3.shop {
	background: #5d87b7;
}*/
.top_area ul li p {
  margin: 15px 0 0;
  padding: 0 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

/*プラン*/
ul.plan_list_flex {
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
  justify-content: center;
}

ul.plan_list_flex>li {
  background: #fff;
  width: 27%;
  margin: 0 10px;
}

ul.plan_list .plan_list__in {
  width: 100%;
}

ul.plan_list li img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

ul.plan_list h3,
.top_plan_list .p_desc {
  width: 85%;
  margin: 20px auto;
  line-height: 1.6;
}

.top_plan {
  padding: 80px 0;
  background: #f2f6f9;
}

@media screen and (max-width:896px) {
  .top_plan {
    padding: 10% 0;
  }
}

.top_plan_list .p-plan_cat p {
  border: 1px solid #ccc;
  padding: 2px 16px;
  border-radius: 20px;
  background: #fff;
  width: 100px;
  text-align: center;
  margin-left: 38px;
}

@media screen and (max-width:896px) {
  ul.plan_list_flex {
    flex-direction: column;
  }

  ul.plan_list_flex>li {
    background: #fff;
    width: 100%;
    margin: 0 auto 40px;
  }

  ul.plan_list li img {
    height: 240px;
  }
}

.top_faq {
  padding: 80px 50px;
}

@media screen and (max-width:896px) {
  .top_faq {
    padding: 0 0 0;
    margin-bottom: 3%;
  }
}

.top_faq_box {
  display: flex;
}

@media screen and (max-width:896px) {
  .top_faq_box {
    flex-direction: column;
  }
}

.top_faq_box .top_textarea_p {
  display: flex;
  flex-direction: column;
  width: 50%;
  background: #d3ccbd;
  padding: 1%;
}

.top_faq_box .top_textarea_p .inner {
  border: 1px solid #fff;
  padding: 0 6% 20px;
  height: 355px;
  width: 86%;
  margin: 0 auto;
}

@media screen and (max-width:896px) {
  .top_faq_box .top_textarea_p {
    width: 98%;
    text-align: center;
  }

  .top_faq_box .top_textarea_p .inner {
    border: 1px solid #fff;
    padding: 0 0 20px;
    height: auto;
    width: 100%;
  }
}

.top_faq_box .top_faq_img {
  width: 70%;
}

@media screen and (max-width:896px) {
  .top_faq_box .top_faq_img {
    width: 100%;
  }
}

.top_faq h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 4rem;
  margin-top: 60px;
  color: #1a4340;
}

@media screen and (max-width:896px) {
  .top_faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 20px;
  }
}

.top_faq p.msg {
  text-align: left;
  margin-bottom: 40px;
  line-height: 2.0;
}

@media screen and (max-width:896px) {
  .top_faq p.msg {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}

.top_faq img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_faq img {
    height: 240px;
  }
}

.top_access {
  padding: 80px 0;
  background: #fff;
}

@media screen and (max-width:896px) {
  .top_access {
    padding: 10% 0;
  }
}

.top_access h2 {
  margin-bottom: 40px;
}

.top_access .g_map {
  height: 360px;
}

.top_access .g_map iframe {
  width: 100%;
  height: 360px;
}

@media screen and (max-width:896px) {
  .top_access .g_map {
    height: 240px;
  }

  .top_access .g_map iframe {
    height: 240px;
  }
}

.top_access ul {
  width: 94%;
  margin: 40px auto 80px;
}

@media screen and (max-width:896px) {
  .top_access ul {
    width: 100%;
  }
}

.top_access li {
  display: flex;
  border-bottom: 1px solid #ccc;
  color: #333;
  padding: 14px 0;
}

@media screen and (max-width:896px) {
  .top_access li {
    flex-direction: column;
  }
}

.top_access li h3 {
  background: #CFD5DC;
  font-size: 1.8rem;
  font-weight: 500;
  width: 26%;
  padding: 25px 15px;
  box-sizing: border-box;
}

@media screen and (max-width:896px) {
  .top_access li h3 {
    width: 100%;
    text-align: center;
  }
}

.top_access li p,
.top_access li ul {
  width: 74%;
  padding: 16px 14px;
}

.top_access li ul {
  margin: 0 auto;
}

.top_access li ul li {
  border: none;
  line-height: 1.3;
}

@media screen and (max-width:896px) {

  .top_access li p,
  .top_access li ul {
    width: 94%;
  }
}

.top_access li p span {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4;
}

.top_access p.msg {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 50px 0;
}

.top_access .checkin_box {
  width: 100%;
  margin: 60px auto 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top_access .checkin_wrapper {
  padding: 10px 12px 10px 2px;
  border: 1px solid #6C7883;
}

.top_access address {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 1em;
}

.top_access p.checkin {
  font-size: 1.9rem;
}

.top_access p.checkin a {
  font-size: 1.8rem;
  padding-right: 0.9em;
}

.top_access p.checkin_ttl {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  margin: 0 auto 25px;
  display: inline-block;
  padding: 0 30px;
}

.top_access p.checkin_ttl::before {
  content: "";
  height: 1px;
  background: #ccc;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.top_access p.checkin_ttl span {
  background: #fff;
  padding: 0 30px;
  z-index: 20;
  position: relative;
}

.top_access p.note {
  color: #f00;
}

.top_access .p_map {
  width: 1060px;
  margin: 60px auto;
}

.top_access .p_map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_access .p_map {
    width: 100%;
  }

  .top_access .p_map img {
    height: 200px;
  }

  .top_access p.checkin_ttl {
    font-size: 1.5rem;
  }

  .top_access p.note {
    text-align: center;
    margin-top: 10px;
  }

  .top_access address {
    text-align: center;
  }
}

/*map*/
.top_map {
  padding: 80px 0;
  background: #f9f9f6;
}

.top_map img {
  width: 90%;
  margin: 0 auto;
}

.top_map h2 {
  color: #000;
  font-size: 2.6rem;
  margin: 45px 0 30px;
  line-height: 1.4;
}

.c-video__frame {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(9/16*100%);
  background: #000;
}

.c-video__frame iframe {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  transition: 0.1s ease;
  transition-property: opacity, visibility;
}

.c-video__frame.is-loaded iframe {
  opacity: 1;
  visibility: visible;
}

.top_video {
  padding: 80px 0;
}

.video_wrap {
  width: 100%;
  padding-top: calc(9/16*100%);
  position: relative;
  overflow: hidden;
}

.video_wrap iframe {
  width: 100%;
  height: calc(100% + 120px);
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
}

.video_wrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#playBtn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

#playBtn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .top_video {
    padding: 40px 0;
  }
}

.fixed_bnr {
  position: relative;
  z-index: 99;
}

.fixed_bnr .fixed_sp {
  position: fixed;
  bottom: 68px;
}

.fixed_bnr .fixed_sp img {
  width: 95%;
  margin: 0 auto;
  box-shadow: 1px 1px 3px #818181;
}

.fixed_bnr .fixed_pc {
  position: fixed;
  right: 0;
  bottom: 340px;
  width: 193px;
}

.fixed_bnr .fixed_pc img {
  width: 100%;
  box-shadow: 1px 1px 3px #818181;
}

.bnr_close_pc {
  position: absolute;
  top: -19px;
  right: -17px;
  color: white;
  font-size: 50px;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.bnr_close_pc:hover {
  color: lightgrey;
}

@media screen and (max-width:896px) {
  .bnr_close_sp {
    position: absolute;
    bottom: 36px;
    right: 1%;
    color: #888888;
    font-size: 43px;
    padding: 10px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
  }

  .bnr_close_sp:hover {
    color: lightgrey;
  }
}

/* コンセプト部分の表示非表示 250409 */
.concept_readmore {
  position: relative;
  margin: 2em auto 0;
  display: block;
  color: #fff;
  border: none;
  outline: 0;
  cursor: pointer;
  background: none;
  letter-spacing: 0.1em;
  z-index: 99;
  font-size: 16px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  padding-bottom: 2rem;
}

.concept_readmore:before {
  content: "";
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.5em;
  transition: transform 0.3s;
}

.concept_readmore.on-click:before {
  transform: rotate(180deg);
}

.concept_readmore .open {
  display: block;
}

.concept_readmore.on-click .open {
  display: none;
}

.concept_readmore .close {
  display: none;
}

.concept_readmore.on-click .close {
  display: block;
}

.hide-text {
  display: none;
}

.hide-text.active {
  display: block;
}

.hide-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  /* 0.6秒でゆっくり開くアニメーション */
}

.hide-text.active {
  max-height: 1000px;
  /* コンテンツの最大高さ。十分な値に設定 */
}

/* コンセプト部分の表示非表示 250409 END */