@charset "UTF-8";
/* top layout */
/* 全体の設定
---------------------------------------------------------------------------*/
/* 基本設定
---------------------------------------------------------------------------*/
/* responsive */
/* サイズ */
/* flexbox */
/* フォント */
/* regular: 400, medium: 500, semibold: 600, bold: 700 */
/* medium: 500, bold: 700, black: 900 */
/* regular: 400, medium: 500, semibold: 600, bold: 700 */
/* regular: 400 */
/* 色 */
/* グラデ背景色 */
/* 中央揃え */
/* objectfit */
/* ホバーアクション */
/* 角丸 */
/* ボタン */
/* ボタンの中のspan */
/* フォントサイズ */
/* 余白 */
/* 縦書き */
/* 内径 */
/* ------------------------------------------------------------------------*/
/* レイアウト
---------------------------------------------------------------------------*/
/* mv
---------------------------------------------------------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.mv .swiper-slide {
  height: 100%;
}
.mv #topSlider {
  width: 100%;
  height: 100svh;
  position: relative;
  margin: 0;
  padding: 0;
}
.mv #topSlider .slider-center {
  width: calc(100% - 400px);
  height: calc(100svh - 128px);
  position: absolute;
  top: 64px;
  left: 200px;
  right: 200px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .mv #topSlider .slider-center {
    width: calc(100% - 30.76923vw);
    height: calc(100svh - 9.84615vw);
    top: 4.9230769231vw;
    left: 15.3846153846vw;
    right: 15.3846153846vw;
  }
}
@media screen and (max-width: 480px) {
  .mv #topSlider .slider-center {
    width: calc(100% - 20.53333vw);
    height: calc(100% - 30.6vw - 10vw);
    left: auto;
    right: 0;
    top: 30.6666666667vw;
  }
}
.mv #topSlider .swiper {
  width: 100%;
  height: 100%;
}
.mv #topSlider .swiper-slide {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.mv #topSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  /*animation: zoomOut 8s ease-out forwards;*/
}
.mv #topSlider .swiper-slide-active {
  opacity: 1;
}
.mv #topSlider .swiper-slide-active img {
  /*animation: zoomOut 8s ease-out forwards;*/
}
.mv .scroll {
  display: block;
  position: absolute;
  left: 30px;
  bottom: 94px;
  width: 1px;
  height: 287px;
}
@media screen and (max-width: 1300px) {
  .mv .scroll {
    height: 22.0769230769vw;
    left: 2.3076923077vw;
    bottom: 7.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .mv .scroll {
    height: 61.3333333333vw;
    left: 10.2666666667vw;
    bottom: 22.2666666667vw;
  }
}
.mv .scroll::before {
  position: absolute;
  content: "";
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #999999;
  bottom: 0;
  height: 100%;
  margin: auto;
  right: 0;
  width: 1px;
}
.mv .scroll::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 40px;
  background-image: url(../img/top/mv-scroll.png);
  left: -3px;
  bottom: -60px;
}
@media screen and (max-width: 1300px) {
  .mv .scroll::after {
    width: 0.9230769231vw;
    height: 3.0769230769vw;
    left: -0.2307692308vw;
    bottom: -4.6153846154vw;
  }
}
@media screen and (max-width: 480px) {
  .mv .scroll::after {
    width: 2.6666666667vw;
    height: 8.8vw;
    left: -0.8vw;
    bottom: -12.9333333333vw;
  }
}
.mv .swiper-pagination {
  width: auto !important;
  left: 30px;
  bottom: 18px;
}
@media screen and (max-width: 1300px) {
  .mv .swiper-pagination {
    left: 2.3076923077vw;
    bottom: 1.3846153846vw;
  }
}
.mv .swiper-pagination .swiper-pagination-bullet {
  margin: 0 3px;
  border-radius: 0;
  width: 48px;
  height: 5px;
  background-color: #ffffff;
  opacity: 0.5;
}
@media screen and (max-width: 1300px) {
  .mv .swiper-pagination .swiper-pagination-bullet {
    width: 3.6923076923vw;
    height: 0.3846153846vw;
    margin: 0 0.2307692308vw;
  }
}
.mv .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000000;
  opacity: 1;
}

/* スライダーのアニメーション */
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大状態から開始 */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 通常サイズに */
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大状態から開始 */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 通常サイズに */
  }
}
/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/* concept
---------------------------------------------------------------------------*/
.concept {
  position: relative;
  height: 100svh;
  overflow: hidden;
  padding: 160px 0 40px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1300px) {
  .concept {
    padding: 12.3076923077vw 0 3.0769230769vw;
    margin-bottom: 15.3846153846vw;
  }
}
@media screen and (max-width: 1024px) {
  .concept {
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .concept {
    padding: 27vw 0 21.3333333333vw;
    height: auto;
    margin-bottom: 0;
  }
}
.concept-wrap {
  position: relative;
  width: 1280px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .concept-wrap {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 1024px) {
  .concept-wrap {
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .concept-wrap {
    width: 87.2vw;
  }
}
.concept-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 640px;
  height: 60%; /* 初期値：60% */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* ← 中央配置の鍵 */
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .concept-img {
    width: 49.2307692308vw;
  }
}
@media screen and (max-width: 1024px) {
  .concept-img {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 83.0769230769vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .concept-img {
    width: 87.2vw;
    height: 113.8666666667vw;
  }
}
.concept-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* ズームイン初期値 */
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (max-width: 1024px) {
  .concept-img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.concept-ttl {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 195px;
}
@media screen and (max-width: 1300px) {
  .concept-ttl {
    top: 9.2307692308vw;
    gap: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .concept-ttl {
    width: 81.8666666667vw;
    margin: 0 auto;
    gap: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.concept-ttl::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 126px;
  height: 126px;
  background-image: url(../img/top/concept-cross.png);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1300px) {
  .concept-ttl::after {
    width: 9.6923076923vw;
    height: 9.6923076923vw;
  }
}
@media screen and (max-width: 480px) {
  .concept-ttl::after {
    width: 24.5333333333vw;
    height: 24.5333333333vw;
    top: 25%;
  }
}
.concept-ttl-left {
  text-align: right;
}
@media screen and (max-width: 480px) {
  .concept-ttl-left {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .concept-ttl-right {
    text-align: right;
  }
  .concept-ttl-right .cross-ja {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.concept-ttl p {
  white-space: nowrap;
}
.concept-ttl p.cross-ja {
  margin-bottom: 38px;
}
@media screen and (max-width: 1300px) {
  .concept-ttl p.cross-ja {
    margin-bottom: 2.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .concept-ttl p.cross-ja {
    margin-bottom: 5.0666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .concept-ttl p.cross-ja {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 16vw;
    margin-bottom: 9vw;
  }
}
.concept-ttl p.cross-en {
  color: #ffffff;
}

/* intro
---------------------------------------------------------------------------*/
.intro {
  position: relative;
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .intro {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .intro {
    width: 87.2vw;
  }
}
.intro {
  padding-bottom: 358px;
}
@media screen and (max-width: 1300px) {
  .intro {
    padding-bottom: 27.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .intro {
    padding-bottom: 47.7333333333vw;
  }
}
.intro {
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .intro {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .intro {
    margin-bottom: 32vw;
  }
}
@media screen and (max-width: 480px) {
  .intro {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1300px) {
  .intro .desc-large {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .intro .desc-large {
    width: 100%;
  }
}
.intro-img01 {
  position: absolute;
  width: 540px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .intro-img01 {
    width: 41.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .intro-img01 {
    position: relative;
    top: auto;
    right: auto;
    width: 82.1333333333vw;
    margin: 20vw -6.4vw 16vw auto;
  }
}
.intro-img02 {
  position: absolute;
  width: 248px;
  top: 308px;
  left: 372px;
}
@media screen and (max-width: 1300px) {
  .intro-img02 {
    width: 19.0769230769vw;
    top: 23.6923076923vw;
    left: 18.615385vw;
  }
}
@media screen and (max-width: 480px) {
  .intro-img02 {
    position: relative;
    top: auto;
    left: auto;
    width: 43.7333333333vw;
  }
}

/* stay
---------------------------------------------------------------------------*/
.stay {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .stay {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .stay {
    width: 87.2vw;
  }
}
.stay {
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .stay {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .stay {
    margin-bottom: 32vw;
  }
}
.stay-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 283px;
}
@media screen and (max-width: 1300px) {
  .stay-hd {
    padding-bottom: 21.7692307692vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd {
    padding-bottom: 37.7333333333vw;
  }
}
.stay-hd {
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .stay-hd {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd {
    margin-bottom: 32vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 0;
    margin-bottom: 21.3333333333vw;
  }
}
.stay-hd-left {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .stay-hd-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
}
.stay-hd-right {
  position: relative;
  width: 546px;
}
@media screen and (max-width: 1300px) {
  .stay-hd-right {
    width: 37vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd-right {
    width: 100vw;
    margin-left: -6.4vw;
    margin-right: -6.4vw;
  }
}
.stay-hd-img01 {
  margin-bottom: 120px;
}
@media screen and (max-width: 1300px) {
  .stay-hd-img01 {
    margin-bottom: 9.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd-img01 {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd-img01 {
    margin-top: 21.3333333333vw;
  }
}
.stay-hd-img02 {
  position: absolute;
  width: 906px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .stay-hd-img02 {
    width: 69.6923076923vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-hd-img02 {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    margin-bottom: 20vw;
  }
}
.stay-detail {
  width: 960px;
}
@media screen and (max-width: 1300px) {
  .stay-detail {
    width: 73.8461538462vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-detail {
    width: 100%;
  }
}
.stay-detail-img {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .stay-detail-img {
    margin-bottom: 3.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-detail-img {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-detail-img {
    margin-bottom: 3.2vw;
  }
  .stay-detail-img img {
    width: 100%;
    height: 69.3333333333vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover; object-position: center;";
  }
}
.stay-detail-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.stay-detail-name .name {
  font-size: 20px;
}
@media screen and (max-width: 1300px) {
  .stay-detail-name .name {
    font-size: 1.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-detail-name .name {
    font-size: 4.5333333333vw;
  }
}
.stay-detail-name .name {
  margin-right: 46px;
}
@media screen and (max-width: 1300px) {
  .stay-detail-name .name {
    margin-right: 3.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-detail-name .name {
    font-size: 4.2666666667vw;
    margin-right: 9.6vw;
  }
}
.stay-detail.boku {
  margin-bottom: 120px;
}
@media screen and (max-width: 1300px) {
  .stay-detail.boku {
    margin-bottom: 9.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-detail.boku {
    margin-bottom: 16vw;
  }
}
.stay-detail.nan {
  margin: 0 0 0 auto;
}
.stay-detail.nan .stay-detail-name {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .stay-detail.nan .stay-detail-name {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.stay-tx {
  padding-left: 270px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1300px) {
  .stay-tx {
    margin-bottom: 9.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-tx {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 1300px) {
  .stay-tx {
    padding-left: 20.7692307692vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-tx {
    padding-left: 0;
  }
}
.stay-tx .btn-more {
  margin-top: 46px;
}
@media screen and (max-width: 1300px) {
  .stay-tx .btn-more {
    margin-top: 3.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .stay-tx .btn-more {
    margin-top: 6.1333333333vw;
  }
}

/* facilities
---------------------------------------------------------------------------*/
.facilities {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .facilities {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities {
    width: 87.2vw;
  }
}
.facilities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 480px;
}
@media screen and (max-width: 1300px) {
  .facilities {
    margin-bottom: 36.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities {
    margin-bottom: 64vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 32vw;
  }
}
.facilities-tx {
  width: 360px;
}
@media screen and (max-width: 1300px) {
  .facilities-tx {
    width: 27.6923076923vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities-tx {
    width: 100%;
    margin-bottom: 21.3333333333vw;
  }
}
.facilities-tx .desc {
  margin-top: 108px;
}
@media screen and (max-width: 1300px) {
  .facilities-tx .desc {
    margin-top: 8.3076923077vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities-tx .desc {
    margin-top: 16vw;
  }
}
.facilities-tx .btn-more {
  margin-top: 46px;
}
@media screen and (max-width: 1300px) {
  .facilities-tx .btn-more {
    margin-top: 3.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities-tx .btn-more {
    margin-top: 6.1333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities-tx .btn-more {
    margin-top: 13.3333333333vw;
  }
}
.facilities-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 804px;
}
@media screen and (max-width: 1300px) {
  .facilities-img {
    width: 61.8461538462vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities-img {
    width: 100vw;
    margin-left: -6.4vw;
    margin-right: -6.4vw;
  }
}
.facilities-img li {
  width: 370px;
}
@media screen and (max-width: 1300px) {
  .facilities-img li {
    width: 28.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .facilities-img li {
    width: 49.3333333333vw;
  }
}

/* location
---------------------------------------------------------------------------*/
.location {
  position: relative;
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .location {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .location {
    margin-bottom: 32vw;
  }
}
.location {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .location {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .location {
    width: 87.2vw;
  }
}
.location-map {
  position: absolute;
  width: 1452px;
  top: -1098px;
  right: -731px;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  .location-map {
    width: 111.6923076923vw;
    top: -84.4615384615vw;
    right: -56.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .location-map {
    width: 232.2666666667vw;
    top: -88vw;
    right: auto;
    left: 0;
  }
}
.location-img {
  /* 1080 */
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .location-img {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .location-img {
    width: 87.2vw;
  }
}
.location-img {
  margin-top: 120px;
}
@media screen and (max-width: 1300px) {
  .location-img {
    margin-top: 9.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .location-img {
    margin-top: 16vw;
  }
}
@media screen and (max-width: 480px) {
  .location-img {
    width: 100vw;
    margin-left: -6.4vw;
    margin-right: -6.4vw;
    margin-top: 92vw;
  }
}
.location .btn-wrap-center {
  margin-top: 64px;
}
@media screen and (max-width: 1300px) {
  .location .btn-wrap-center {
    margin-top: 4.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .location .btn-wrap-center {
    margin-top: 8.5333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .location .btn-wrap-center {
    margin-top: 16vw;
  }
}

/* sightseeing
---------------------------------------------------------------------------*/
.sightseeing {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .sightseeing {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing {
    width: 87.2vw;
  }
}
.sightseeing {
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .sightseeing {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing {
    margin-bottom: 32vw;
  }
}
.sightseeing-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 1300px) {
  .sightseeing-ttl {
    margin-bottom: 9.2307692308vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-ttl {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-ttl {
    display: block;
  }
}
@media screen and (min-width: 481px) {
  .sightseeing-ttl .hdl-ja {
    margin-top: 0;
  }
}
.sightseeing-sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media screen and (max-width: 1300px) {
  .sightseeing-sliders {
    margin-bottom: 4.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-sliders {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-sliders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16vw;
    width: 100vw;
    margin-left: -6.4vw;
    margin-right: -6.4vw;
    margin-bottom: 16vw;
  }
}
.sightseeing-sliders-item {
  width: 616px;
}
@media screen and (max-width: 1300px) {
  .sightseeing-sliders-item {
    width: 47%;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-sliders-item {
    width: 93.3333333333vw;
  }
  .sightseeing-sliders-item:nth-of-type(2) {
    margin: 0 0 0 auto;
    text-align: right;
  }
}
.sightseeing-sliders-item .btn-more {
  width: 100%;
  margin-top: 36px;
}
@media screen and (max-width: 1300px) {
  .sightseeing-sliders-item .btn-more {
    margin-top: 2.7692307692vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-sliders-item .btn-more {
    margin-top: 4.8vw;
  }
}
@media screen and (max-width: 480px) {
  .sightseeing-sliders-item .btn-more {
    width: auto;
    margin: 3.3333333333vw 6.4vw 0;
  }
}

/* enjoy
---------------------------------------------------------------------------*/
.enjoy {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .enjoy {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy {
    width: 87.2vw;
  }
}
.enjoy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .enjoy {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy {
    margin-bottom: 32vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.enjoy-tx {
  width: 260px;
}
@media screen and (max-width: 1300px) {
  .enjoy-tx {
    width: 20vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy-tx {
    width: 100%;
    margin-bottom: 18.6666666667vw;
  }
}
.enjoy-img {
  width: 804px;
}
@media screen and (max-width: 1300px) {
  .enjoy-img {
    width: 61.8461538462vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy-img {
    width: 93.6vw;
    margin-right: -6.4vw;
    margin-left: 0;
  }
}
.enjoy .btn-more {
  margin-top: 64px;
}
@media screen and (max-width: 1300px) {
  .enjoy .btn-more {
    margin-top: 4.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy .btn-more {
    margin-top: 8.5333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .enjoy .btn-more {
    margin-top: 16vw;
  }
}

/* plan
---------------------------------------------------------------------------*/
.plan {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .plan {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .plan {
    width: 87.2vw;
  }
}
.plan {
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .plan {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .plan {
    margin-bottom: 32vw;
  }
}
.plan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc((100% - 1128px) / 3);
  margin-top: 64px;
}
@media screen and (max-width: 1300px) {
  .plan-list {
    margin-top: 4.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-list {
    margin-top: 8.5333333333vw;
  }
}
.plan-list {
  margin-bottom: 138px;
}
@media screen and (max-width: 1300px) {
  .plan-list {
    margin-bottom: 10.6153846154vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-list {
    margin-bottom: 18.4vw;
  }
}
@media screen and (max-width: 1300px) {
  .plan-list {
    gap: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-list {
    width: 100vw;
    gap: 0;
    margin: 13.3333333333vw -6.4vw 5.3333333333vw;
  }
}
.plan-list li {
  width: 282px;
}
@media screen and (max-width: 1300px) {
  .plan-list li {
    width: 22%;
  }
}
@media screen and (max-width: 480px) {
  .plan-list li {
    width: 79.4666666667vw;
  }
  .plan-list li.swiper-slide-active a::before {
    opacity: 1;
  }
}
.plan-list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .plan-list li a {
    padding: 6.1333333333vw;
  }
}
.plan-list li a::before {
  position: absolute;
  content: "";
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #ecedef;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  .plan-list li a::before {
    width: calc(100% + 2.15384vw);
    height: calc(100% + 2.15384vw);
  }
}
@media screen and (max-width: 480px) {
  .plan-list li a::before {
    width: 74.4vw;
    height: calc(100% + 6.9333333vw);
  }
}
.plan-list li a .desc {
  padding: 26px 0 12px;
}
@media screen and (max-width: 1300px) {
  .plan-list li a .desc {
    padding: 2vw 0 0.9230769231vw;
  }
}
@media (hover: hover) {
  .plan-list li a:hover {
    opacity: 1;
    cursor: pointer;
  }
  .plan-list li a:hover::before {
    opacity: 1;
  }
  .plan-list li a:hover .plan-list-img::before, .plan-list li a:hover .plan-list-img::after {
    opacity: 1;
  }
  .plan-list li a:hover .plan-list-img > div::before {
    opacity: 1;
  }
}
.plan-list-img {
  position: relative;
}
.plan-list-img::before, .plan-list-img::after {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
.plan-list-img::before {
  position: absolute;
  content: "RESERVATION";
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  font-size: 14px;
}
@media screen and (max-width: 1300px) {
  .plan-list-img::before {
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .plan-list-img::before {
    font-size: 3.1733333333vw;
  }
}
.plan-list-img::before {
  top: 85px;
  color: #ffffff;
  z-index: 50;
}
.plan-list-img::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/cmn/btn-more-gray.png);
  top: 120px;
  width: 26px;
  height: 26px;
  z-index: 50;
}
@media screen and (max-width: 1300px) {
  .plan-list-img::after {
    width: 2vw;
    height: 2vw;
    top: 9.2307692308vw;
  }
}
.plan-list-img > div {
  position: relative;
}
.plan-list-img > div::before {
  position: absolute;
  content: "";
  background-color: rgba(51, 51, 51, 0.54);
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  opacity: 0;
}
.plan .btn-reser {
  width: 496px;
  height: 80px;
}
@media screen and (max-width: 1300px) {
  .plan .btn-reser {
    width: 38.1538461538vw;
    height: 6.1538461538vw;
  }
}
@media screen and (max-width: 480px) {
  .plan .btn-reser {
    margin-top: 16vw;
    width: 87.2vw;
    height: 18.4vw;
  }
}
@media screen and (max-width: 480px) {
  .plan .swiper-pagination-bullets {
    text-align: center;
  }
  .plan .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2.6666666667vw;
    width: 3.0666666667vw;
    height: 3.0666666667vw;
    border: 3px solid #e4e4e4;
    background-color: #ffffff;
    opacity: 1;
  }
  .plan .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 4px solid #b4a69a;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/* instagram
---------------------------------------------------------------------------*/
.instagram {
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .instagram {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram {
    width: 87.2vw;
  }
}
.instagram {
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .instagram {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram {
    margin-bottom: 32vw;
  }
}
.instagram-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 76px;
}
@media screen and (max-width: 1300px) {
  .instagram-ttl {
    margin-bottom: 5.8461538462vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-ttl {
    margin-bottom: 10.1333333333vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-ttl {
    display: block;
    margin-bottom: 16vw;
  }
}
.instagram-ttl .ttl-en {
  position: relative;
  padding-left: 46px;
}
@media screen and (max-width: 1300px) {
  .instagram-ttl .ttl-en {
    padding-left: 3.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-ttl .ttl-en {
    padding-left: 11.7333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}
.instagram-ttl .ttl-en::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  background-image: url(../img/cmn/icn-instagram.png);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1300px) {
  .instagram-ttl .ttl-en::before {
    width: 1.5384615385vw;
    height: 1.5384615385vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-ttl .ttl-en::before {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.instagram-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1300px) {
  .instagram-list {
    margin-bottom: 4.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-list {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (max-width: 1300px) {
  .instagram-list {
    gap: 0.5769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.0666666667vw 0.8vw;
    margin-bottom: 16vw;
  }
}
.instagram-list li {
  width: 350px;
}
@media screen and (max-width: 1300px) {
  .instagram-list li {
    width: 26.9230769231vw;
  }
}
@media screen and (max-width: 480px) {
  .instagram-list li {
    width: 28.5333333333vw;
  }
  .instagram-list li.view-sp a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .instagram-list li.view-sp a img {
    width: 6.1333333333vw;
  }
}

/* para
---------------------------------------------------------------------------*/
.para {
  position: relative;
  /* 1280 */
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .para {
    width: 83.0769230769vw;
  }
}
@media screen and (max-width: 480px) {
  .para {
    width: 87.2vw;
  }
}
.para {
  height: 760px;
  clip-path: border-box;
  margin-bottom: 240px;
}
@media screen and (max-width: 1300px) {
  .para {
    margin-bottom: 18.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .para {
    margin-bottom: 32vw;
  }
}
.para {
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .para {
    height: 58.4615384615vw;
  }
}
@media screen and (max-width: 480px) {
  .para {
    height: 104vw;
  }
}
.para-bg {
  position: fixed;
  inset: 0;
  background-image: url(../img/top/para.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

/* cross
---------------------------------------------------------------------------*/
.cross {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  gap: 195px;
  margin-bottom: 268px;
}
@media screen and (max-width: 1300px) {
  .cross {
    margin-bottom: 20.6153846154vw;
  }
}
@media screen and (max-width: 480px) {
  .cross {
    margin-bottom: 35.7333333333vw;
  }
}
@media screen and (max-width: 1300px) {
  .cross {
    top: 9.2307692308vw;
    gap: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .cross {
    display: block;
    width: 87.2vw;
    margin: 0 auto 32vw;
  }
}
.cross::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 126px;
  height: 126px;
  background-image: url(../img/top/concept-cross.png);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1300px) {
  .cross::after {
    width: 9.6923076923vw;
    height: 9.6923076923vw;
  }
}
@media screen and (max-width: 480px) {
  .cross::after {
    width: 26.4vw;
    height: 26.4vw;
  }
}
.cross-left {
  text-align: right;
}
@media screen and (max-width: 480px) {
  .cross-left {
    text-align: left;
    margin-bottom: 18.6666666667vw;
  }
}
@media screen and (max-width: 480px) {
  .cross-right {
    text-align: right;
  }
}
.cross p {
  white-space: nowrap;
}