/* CSS Document */




/* ==================================================
   TOP OPENING
================================================== */

.top-opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: #0f0f0f;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 1.8s ease,
    visibility 1.8s ease;
}

.top-opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.top-opening.is-finished {
  display: none;
}

.top-opening__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}


/* ==================================================
   TOP OPENING SCENE
================================================== */

.top-opening__scene {
  position: relative;
  width: clamp(220px, 30vw, 430px);
  height: clamp(220px, 30vw, 430px);
}


/* ==================================================
   TOP OPENING WAVE
================================================== */

.top-opening__wave {
  position: absolute;
  right: 0;
  bottom: 12%;
  left: -12%;
  z-index: 4;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: topOpeningWaveAppear 0.7s ease forwards;
  will-change: opacity, transform;
}

.top-opening__wave-move {
  animation: topOpeningWaveMove 2.8s ease-in-out infinite 0.7s;
  will-change: transform;
}

.top-opening__wave img {
  display: block;
  width: 100%;
  height: auto;
}


/* ==================================================
   TOP OPENING SHIP
================================================== */

.top-opening__ship {
  position: absolute;
  right: 0;
  bottom: 15%;
  left: 0;
  z-index: 2;
  width: 76%;
  margin: 0 auto;
  opacity: 0;
  transform:
    translate3d(0, 18px, 0)
    scale(0.94)
    rotate(-1deg);
  transform-origin: 50% 82%;
  animation: topOpeningShipAppear 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.8s;
  will-change: opacity, transform;
}

.top-opening__ship-float {
  transform-origin: 50% 82%;
  animation: topOpeningShipFloat 4.2s ease-in-out infinite;
  will-change: transform;
}

.top-opening__ship img {
  display: block;
  width: 100%;
  height: auto;
}


/* ==================================================
   TOP OPENING ANIMATION
================================================== */

@keyframes topOpeningWaveAppear {

  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

}

@keyframes topOpeningWaveMove {

  0%,
  100% {
    transform: translate3d(-8px, 0, 0);
  }

  50% {
    transform: translate3d(8px, 0, 0);
  }

}

@keyframes topOpeningShipAppear {

  from {
    opacity: 0;
    transform:
      translate3d(0, 18px, 0)
      scale(0.94)
      rotate(-1deg);
  }

  to {
    opacity: 1;
    transform:
      translate3d(0, 0, 0)
      scale(1)
      rotate(0deg);
  }

}

@keyframes topOpeningShipFloat {

  0% {
    transform:
      translate3d(-2px, 2px, 0)
      rotate(-0.9deg);
  }

  25% {
    transform:
      translate3d(1px, -2px, 0)
      rotate(0.7deg);
  }

  50% {
    transform:
      translate3d(3px, -3px, 0)
      rotate(1.1deg);
  }

  75% {
    transform:
      translate3d(0, 1px, 0)
      rotate(-0.4deg);
  }

  100% {
    transform:
      translate3d(-2px, 2px, 0)
      rotate(-0.9deg);
  }

}


/* ==================================================
   TOP OPENING SCROLL LOCK
================================================== */

html.is-opening,
body.is-opening {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-opening {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
}


/* ==================================================
   TOP OPENING SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .top-opening__scene {
    width: clamp(220px, 72vw, 330px);
    height: clamp(220px, 72vw, 330px);
  }

  .top-opening__ship {
    width: 78%;
    bottom: 16%;
  }

  .top-opening__wave {
    bottom: 7%;
	  left:0%;
  }

  @keyframes topOpeningWaveMove {

    0%,
    100% {
      transform: translate3d(-6px, 0, 0);
    }

    50% {
      transform: translate3d(6px, 0, 0);
    }

  }

  @keyframes topOpeningShipFloat {

    0%,
    100% {
      transform:
        translate3d(-4px, 3px, 0)
        rotate(-1.6deg);
    }

    50% {
      transform:
        translate3d(4px, -4px, 0)
        rotate(1.6deg);
    }

  }

}


/* ==================================================
   TOP OPENING REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  .top-opening {
    transition-duration: 0.4s;
  }

  .top-opening__wave,
  .top-opening__ship {
    opacity: 1;
    animation: none !important;
    transform: none !important;
  }

  .top-opening__wave-move,
  .top-opening__ship-float {
    animation: none !important;
    transform: none !important;
  }

}

/* ==================================================
   TOP PAGE
================================================== */

/*#top-page {
  overflow: hidden;
  color: #fff;
  background-color: #0f0f0f;
}*/
#top-page {
  overflow-x: clip;
  overflow-y: visible;
  color: #fff;
  background-color: #0f0f0f;
}
#top-page *,
#top-page *::before,
#top-page *::after {
  box-sizing: border-box;
}

#top-page img {
  display: block;
  width: 100%;
  height: auto;
}

#top-page figure {
  margin: 0;
}

#top-page a {
  color: inherit;
}


/* ==================================================
   TOP HERO
================================================== */

.top-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background-color: #0f0f0f;
}


/* ==================================================
   HERO 3-COLUMN SLIDERS
================================================== */

.top-hero__sliders {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-hero-slider {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.top-hero-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.8s ease,
    transform 7s linear;
  will-change: opacity, transform;
}

.top-hero-slider__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.top-hero-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 個別のトリミング調整 */

.top-hero-slider:nth-child(1) img {
  object-position: center;
}

.top-hero-slider:nth-child(2) img {
  object-position: center;
}

.top-hero-slider:nth-child(3) img {
  object-position: center;
}


/* ==================================================
   HERO CATCH COPY
================================================== */

.top-hero__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(64vw, 760px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.peek-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.peek-item {
  position: relative;
  display: block;
  width: fit-content;
  height: 92px;
  margin: 0 0 25px;
  padding-right: 42px;
  overflow: hidden;
}

.peek-item:last-child {
  margin-bottom: 0;
}


/* 白いライン */

.peek-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}


/* 文字 */

.peek-item span {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-family:
    YuMincho,
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
  transform: translateY(100%);
}


/* HERO開始後のアニメーション */

.top-hero.is-ready .peek-item::before {
  animation: topHeroLineGrow 0.7s ease forwards;
}

.top-hero.is-ready .peek-item span {
  animation:
    topHeroTextPeek 0.7s cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


/* 1段目 */

.top-hero.is-ready .peek-item:nth-child(1)::before {
  animation-delay: 0.2s;
}

.top-hero.is-ready .peek-item:nth-child(1) span {
  animation-delay: 0.9s;
}


/* 2段目 */

.top-hero.is-ready .peek-item:nth-child(2)::before {
  animation-delay: 0.55s;
}

.top-hero.is-ready .peek-item:nth-child(2) span {
  animation-delay: 1.25s;
}


/* 3段目 */

.top-hero.is-ready .peek-item:nth-child(3)::before {
  animation-delay: 0.9s;
}

.top-hero.is-ready .peek-item:nth-child(3) span {
  animation-delay: 1.6s;
}


@keyframes topHeroLineGrow {

  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }

}


@keyframes topHeroTextPeek {

  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }

}


/* ==================================================
   SCROLL GUIDE
================================================== */

.top-hero__scroll {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 3;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  opacity: 0.8;
}

.top-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  margin: 10px auto 0;
  background-color: rgba(255, 255, 255, 0.85);
  transform-origin: top;
  animation: topHeroScrollLine 1.8s ease-in-out infinite;
}

@keyframes topHeroScrollLine {

  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }

}


/* ==================================================
   HERO TABLET
================================================== */

@media screen and (max-width: 1024px) {

  .top-hero {
    min-height: 650px;
  }

  .top-hero__catch {
    width: min(72vw, 680px);
  }

  .peek-item {
    height: 78px;
    margin-bottom: 20px;
    padding-right: 32px;
  }

  .peek-item span {
    font-size: clamp(42px, 6vw, 66px);
  }

}


/* ==================================================
   HERO SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .top-hero {
    height: 100svh;
    min-height: 0;
  }

  .top-hero__sliders {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 92%;
  }

  .top-hero-slider {
    height: 100%;
  }
#top-page img {
  display: block;
  width: 100%;
  height: 100%;
}
  .top-hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 各画像の見え方調整 */
  .top-hero-slider:nth-child(1) img {
    object-position: center;
  }

  .top-hero-slider:nth-child(2) img {
    object-position: center;
  }

  .top-hero-slider:nth-child(3) img {
    object-position: center;
  }

  /* 全体に少し暗幕 */
  .top-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.34);
    pointer-events: none;
  }

  .top-hero__catch {
    top: 46%;
    left: 50%;
    z-index: 3;
    width: 88vw;
    transform: translate(-50%, -50%);
  }

  .peek-lines {
    /*align-items: center;*/
  }

  .peek-item {
    height: 58px;
    margin-bottom: 14px;
    padding-right: 0;
  }

  .peek-item::before {
    height: 1px;
  }

  .peek-item span {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.45;
    text-align: center;
    text-shadow:
      0 3px 8px rgba(0, 0, 0, 0.75),
      0 10px 24px rgba(0, 0, 0, 0.45);
  }

  .top-hero__scroll {
    right: 14px;
    bottom: 82px;
    left: auto;
  }

}


/* ==================================================
   HERO REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  .top-hero-slider__slide {
    transition: none;
    transform: none;
  }

  .top-hero-slider__slide.is-active {
    transform: none;
  }

  .peek-item::before {
    transform: scaleX(1);
  }

  .peek-item span {
    transform: translateY(0);
  }

  .top-hero.is-ready .peek-item::before,
  .top-hero.is-ready .peek-item span,
  .top-hero__scroll::after {
    animation: none;
  }

}


/* ==================================================
   COMMON
================================================== */

.top-section {
  position: relative;
  padding: 120px 0;
}

.top-section__inner {
  width: min(calc(100% - 100px), 1380px);
  margin: 0 auto;
}

.top-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 72px;
  padding: 18px 65px;
  border-radius: 999px;
  color: #fff;
  background-color: #ed4b0b;
  font-family: var(--mincho);
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.top-button:hover {
  opacity: 0.88;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}


/* ==================================================
   INTRO
================================================== */

.top-intro {
  padding: 72px 0 85px;
}

.top-intro__inner {
  width: min(calc(100% - 60px), 900px);
  margin: 0 auto;
}

.top-intro__content {
  font-family: var(--mincho);
  text-align: center;
}

.top-intro__title {
	font-size: 24px;
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
	
}

.top-intro__text {
  margin: 12px 0 0;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.top-intro__button {
  margin-top: 48px;
}


/* ==================================================
   SPA / GOURMET / OCEAN VIEW
   SCROLL FEATURE
================================================== */

/*
 * 各セクション全体のスクロール距離
 *
 * 100dvh：画像表示領域
 * 残り：約180dvh：文字上昇・キャラクター表示・停止時間
 */
.top-feature {
  position: relative;
  width: 100%;
  height: 340vh;
  min-height: 0;
  overflow: visible;
  isolation: isolate;

  /*
   * JavaScriptから更新される値
   */
  --feature-content-opacity: 0;
  --feature-content-y: 55vh;

  --feature-character-opacity: 0;
  --feature-character-y: 18px;
  --feature-character-scale: 0.65;
}


/*
 * 画面内に固定される表示領域
 */
.top-feature__link {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  color: #fff;
  background-color: #0f0f0f;
  text-decoration: none;
}


/* ==================================================
   FEATURE IMAGE
================================================== */

.top-feature__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-feature__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
}


/* ==================================================
   FEATURE OVERLAY
================================================== */

.top-feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.52) 28%,
      rgba(0, 0, 0, 0.18) 57%,
      rgba(0, 0, 0, 0) 82%
    );
}


/*
 * 料理は画像の明暗に合わせて少し濃くする
 */
.top-feature--gourmet .top-feature__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.56) 30%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0) 84%
    );
}


/*
 * オーシャンビューも左側の文字可読性を確保
 */
.top-feature--ocean-view .top-feature__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 32%,
      rgba(0, 0, 0, 0.2) 62%,
      rgba(0, 0, 0, 0) 86%
    );
}


/* ==================================================
   FEATURE CONTENT
================================================== */

.top-feature__content {
  position: absolute;
  top: 50%;
  left: 5.5%;
  z-index: 2;
  width: min(46%, 660px);
  font-family: var(--mincho);
  opacity: var(--feature-content-opacity);
  transform:
    translate3d(
      0,
      calc(-50% + var(--feature-content-y)),
      0
    );
  pointer-events: none;
  will-change: transform, opacity;
}


/*
 * 見出し
 */
.top-feature__heading {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.top-feature__title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.25);
}


/*
 * キャラクター
 */
.top-feature__character {
  width: 100px;
  flex: 0 0 auto;
  opacity: var(--feature-character-opacity);
  transform:
    translate3d(
      0,
      var(--feature-character-y),
      0
    )
    scale(var(--feature-character-scale));
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.top-feature__character img {
  display: block;
  width: 100%;
  height: auto;
}


/*
 * 本文
 */
.top-feature__text {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 2.15;
  letter-spacing: 0.05em;
  text-shadow:
    0 2px 7px rgba(0, 0, 0, 0.72),
    0 7px 18px rgba(0, 0, 0, 0.3);
}


/* ==================================================
   FEATURE HOVER
================================================== */

@media (hover: hover) and (pointer: fine) {

  .top-feature__visual img {
    transition: filter 0.45s ease;
  }

  .top-feature__link:hover .top-feature__visual img {
    filter: brightness(1.04);
  }

}


/* ==================================================
   FEATURE TABLET
================================================== */

@media screen and (max-width: 1024px) {

  .top-feature {
    height: 320vh;
  }

  .top-feature__content {
    left: 5%;
    width: min(56%, 600px);
  }

  .top-feature__heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .top-feature__character {
    width: 86px;
  }

  .top-feature__text {
    font-size: 17px;
    line-height: 2;
  }

}


/* ==================================================
   FEATURE SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .top-feature {
    height: 320svh;
    height: 320dvh;
    --feature-content-y: 42vh;
  }

  .top-feature__link {
    height: 100svh;
    height: 100dvh;
  }

  .top-feature__visual img {
    object-position: center;
  }

  .top-feature__overlay,
  .top-feature--gourmet .top-feature__overlay,
  .top-feature--ocean-view .top-feature__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.66) 28%,
        rgba(0, 0, 0, 0.28) 58%,
        rgba(0, 0, 0, 0.04) 82%,
        rgba(0, 0, 0, 0) 100%
      );
  }

  .top-feature__content {
    top: auto;
    bottom: 8%;
    left: 7%;
    width: 86%;
    transform:
      translate3d(
        0,
        var(--feature-content-y),
        0
      );
  }

  .top-feature__heading {
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 18px;
  }

  .top-feature__title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1;
    letter-spacing: 0.12em;
  }

  .top-feature__character {
    width: 66px;
  }

  .top-feature__text {
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.95;
    letter-spacing: 0.035em;
  }

  .top-feature__text br {
    display: none;
  }

}


/* ==================================================
   FEATURE SMALL SMARTPHONE
================================================== */

@media screen and (max-width: 430px) {

  .top-feature {
    height: 310svh;
    height: 310dvh;
  }

  .top-feature__content {
    bottom: 30%;
    left: 6%;
    width: 88%;
  }

  .top-feature__heading {
    gap: 12px;
    margin-bottom: 15px;
  }

  .top-feature__title {
    font-size: 29px;
  }

  .top-feature__character {
    width: 58px;
  }

  .top-feature__text {
    font-size: 13px;
    line-height: 1.85;
  }

}


/* ==================================================
   FEATURE REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  .top-feature {
    height: 100vh;
    height: 100dvh;

    --feature-content-opacity: 1;
    --feature-content-y: 0px;

    --feature-character-opacity: 1;
    --feature-character-y: 0px;
    --feature-character-scale: 1;
  }

  .top-feature__link {
    position: relative;
    top: auto;
  }

  .top-feature__content,
  .top-feature__character,
  .top-feature__visual img {
    will-change: auto;
  }

}

/* ==================================================
   SECTION HEADING
================================================== */

.top-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 65px;
  font-family: var(--mincho);
}

.top-section-heading__icon {
  width: 92px;
  flex: 0 0 auto;
}

.top-section-heading__title {
  margin: 0;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.top-section-heading--stay {
  gap: 40px;
}

.top-section-heading__character {
  width: 84px;
  flex: 0 0 auto;
}


/* ==================================================
   NEWS
================================================== */

.top-news {
  position: relative;
  z-index: 10;
  background-color: #0f0f0f;
  padding-top: 105px;
  padding-bottom: 130px;
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.top-news__item {
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.top-news__link {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
  min-height: 150px;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
}

.top-news__link:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.top-news__item--featured .top-news__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 35px;
  text-align: center;
}

.top-news__thumbnail {
  height: 124px;
  overflow: hidden;
}

.top-news__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-news__title {
  margin: 0;
  padding: 20px 45px;
  font-family: var(--mincho);
  font-size: clamp(19px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.top-news__item--featured .top-news__title {
  padding: 0;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 600;
}

.top-news__empty {
  margin: 0;
  font-family: var(--mincho);
  text-align: center;
}

.top-news__button {
  margin-top: 60px;
  text-align: center;
}


/* ==================================================
   GROUP MENU
================================================== */

.top-group-menu {
  padding-top: 120px;
  padding-bottom: 140px;
}

.top-group-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.top-group-menu-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  min-height: 330px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.top-group-menu-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.top-group-menu-card__content {
  padding: 35px;
  font-family: var(--mincho);
  text-align: center;
}

.top-group-menu-card__title {
  margin: 0;
  font-size: clamp(27px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.top-group-menu-card__subtitle {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.6;
}

.top-group-menu-card__image {
  height: 300px;
  overflow: hidden;
}

.top-group-menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-group-menu__contact {
  margin-top: 50px;
  font-family: var(--mincho);
  text-align: center;
}

.top-group-menu__contact-text {
  margin: 0;
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.top-group-menu__tel {
  display: inline-block;
  margin-top: 5px;
  color: #fff600 !important;
  font-family: Arial, sans-serif;
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}


/* ==================================================
   STAY PLANS
================================================== */

.top-stay-plans {
  padding-top: 115px;
  padding-bottom: 145px;
}

.top-stay-plans__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.top-stay-plan-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: 250px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.top-stay-plan-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.top-stay-plan-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  font-family: var(--mincho);
}

.top-stay-plan-card__lead {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.top-stay-plan-card__title {
  margin: 20px 0 0;
  font-size: clamp(28px, 2.6vw, 41px);
  font-weight: 400;
  line-height: 1.2;
 /* letter-spacing: 0.07em;*/
  text-align: center;
	font-feature-settings: "palt";
}

.top-stay-plan-card__text {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.top-stay-plan-card__image {
  min-height: 220px;
  overflow: hidden;
}

.top-stay-plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-stay-plans__button {
  margin-top: 75px;
  text-align: center;
}


/* ==================================================
   LARGE LINKS
================================================== */

.top-large-links {
  position: relative;
}

.top-large-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.top-link-panel {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.top-link-panel__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.top-link-panel__image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  will-change: transform;
}

.top-link-panel.is-visible .top-link-panel__image {
  transform: scale(1.1);
}

.top-link-panel:hover .top-link-panel__image {
  transform: scale(1.1);
}

.top-link-panel.is-visible:hover .top-link-panel__image {
  transform: scale(1.2);
  filter: brightness(0.84);
}

.top-link-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.38),
      rgba(0, 0, 0, 0.08)
    );
  transition: background-color 0.35s ease;
}

.top-link-panel:hover .top-link-panel__overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.top-link-panel__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(78%, 500px);
  font-family: var(--mincho);
  text-align: center;
  transform: translate(-50%, -50%);
}

.top-link-panel__title {
  margin: 0 0 24px;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

.top-link-panel__text {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 2;
  letter-spacing: 0.05em;
}


/* ==================================================
   ACCESS
================================================== */

.top-access {
  padding: 120px 0;
}

.top-access__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(calc(100% - 100px), 1380px);
  margin: 0 auto;
}

.top-access__visual {
  position: relative;
  display: block;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.top-access__image {
  position: absolute;
  inset: 0;
}

.top-access__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-access__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 74, 126, 0.23);
}

.top-access__content {
  position: absolute;
  top: 50%;
  left: 58%;
  z-index: 3;
  width: 55%;
  font-family: var(--mincho);
  text-align: center;
  transform: translate(-50%, -50%);
}

.top-access__title {
  margin: 0 0 25px;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.top-access__text {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 2;
  letter-spacing: 0.04em;
}

.top-access__boat-move {
  position: absolute;
  top: 12%;
  left: 10%;
  z-index: 2;
  width: 130px;
  animation: top-access-boat-move 7s ease-in-out infinite alternate;
  will-change: transform;
}

.top-access__boat-bob {
  animation: top-access-boat-bob 2.2s ease-in-out infinite;
  transform-origin: 50% 70%;
}

.top-access__boat-bob img {
  width: 100%;
  height: auto;
}

@keyframes top-access-boat-move {
  0% {
    transform: translateX(-15px);
  }

  100% {
    transform: translateX(65px);
  }
}

@keyframes top-access-boat-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-9px) rotate(1.5deg);
  }
}

.top-access__map {
  min-height: 650px;
}

.top-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
}


/* ==================================================
   SAFETY
================================================== */

.top-safety {
  padding: 80px 0 100px;
}

.top-safety__inner {
  width: min(calc(100% - 100px), 1380px);
  margin: 0 auto;
}

.top-safety__link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: center;
  min-height: 150px;
  padding: 20px 40px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.top-safety__link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.top-safety__icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-safety__icons img {
  width: auto;
  max-width: 100%;
  max-height: 105px;
}

.top-safety__content {
  padding: 0 35px;
  font-family: var(--mincho);
  text-align: center;
}

.top-safety__title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 37px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.top-safety__text {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}


/* ==================================================
   MOVIE SLIDER
================================================== */

.top-movie {
  padding: 80px 0 120px;
}

.top-movie__inner {
  width: min(calc(100% - 100px), 1380px);
  margin: 0 auto;
}

.top-movie-slider {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 74px;
}

.top-movie-slider__viewport {
  position: relative;
  overflow: hidden;
}

.top-movie-slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.top-movie-slider__slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.top-movie-slider__slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.top-movie-slider__video {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  object-fit: contain;
}


/* 左右ボタン */

.top-movie-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 58px;
  padding: 0;
  border: 0;
  color: #fff;
  background-color: rgba(80, 80, 80, 0.72);
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.top-movie-slider__arrow:hover {
  background-color: rgba(237, 75, 11, 0.9);
}

.top-movie-slider__arrow--prev {
  left: 0;
}

.top-movie-slider__arrow--next {
  right: 0;
}


/* ドット */

.top-movie-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 25px;
}

.top-movie-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.top-movie-slider__dot.is-active {
  background-color: #fff;
  transform: scale(1.25);
}


/* ==================================================
   MOVIE SP
================================================== */

@media screen and (max-width: 767px) {

  .top-movie {
    padding: 55px 0 80px;
  }

  .top-movie__inner {
    width: calc(100% - 20px);
  }

  .top-movie-slider {
    padding: 0 34px;
  }

  .top-movie-slider__arrow {
    width: 28px;
    height: 46px;
    font-size: 14px;
  }

  .top-movie-slider__dots {
    margin-top: 18px;
  }

  .top-movie-slider__dot {
    width: 8px;
    height: 8px;
  }

}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1024px) {

  .top-section__inner,
  .top-access__inner,
  .top-safety__inner,
  .top-movie__inner {
    width: calc(100% - 60px);
  }


  .top-news__link {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .top-group-menu-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .top-stay-plan-card {
    grid-template-columns: 0.9fr 1.1fr;
  }


  .top-access__content {
    left: 55%;
    width: 68%;
  }

  .top-access__boat-move {
    width: 165px;
  }

  .top-safety__link {
    grid-template-columns: 160px minmax(0, 1fr) 160px;
  }

}


/* ==================================================
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .top-hero {
    min-height: 100svh;
  }

  .top-section {
    padding: 75px 0;
  }

  .top-section__inner,
  .top-access__inner,
  .top-safety__inner,
  .top-movie__inner {
    width: calc(100% - 30px);
  }

  .top-button {
    min-width: 0;
    width: min(100%, 340px);
    min-height: 54px;
    padding: 14px 30px;
    font-size: 17px;
  }


  /* INTRO */

  .top-intro {
    padding: 50px 0 60px;
	  background-color: #0f0f0f;
  }

  .top-intro__inner {
    width: calc(100% - 40px);
  }

  .top-intro__title {
    font-size: 23px;
    line-height: 1.7;
	  font-feature-settings: "palt";
  }

  .top-intro__text {
    margin-top: 8px;
    font-size: 15px;
  }

  .top-intro__button {
    margin-top: 35px;
  }



  /* HEADINGS */

  .top-section-heading {
    gap: 18px;
    margin-bottom: 42px;
  }

  .top-section-heading__icon {
    width: 66px;
  }

  .top-section-heading__title {
    font-size: 25px;
    letter-spacing: 0.08em;
  }

  .top-section-heading--stay {
    gap: 16px;
  }

  .top-section-heading__character {
    width: 56px;
  }


  /* NEWS */

  .top-news {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .top-news__list {
    gap: 14px;
  }

  .top-news__link {
    grid-template-columns: 125px minmax(0, 1fr);
    min-height: 95px;
    padding: 7px;
  }

  .top-news__thumbnail {
    height: 80px;
  }

  .top-news__title {
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .top-news__item--featured .top-news__link {
    min-height: 120px;
    padding: 25px 18px;
  }

  .top-news__item--featured .top-news__title {
    font-size: 17px;
  }

  .top-news__button {
    margin-top: 42px;
  }


  /* GROUP MENU */

  .top-group-menu__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-group-menu-card {
    grid-template-columns: 0.78fr 1.22fr;
    min-height: 180px;
    padding: 8px;
  }

  .top-group-menu-card__content {
    padding: 18px 10px;
  }

  .top-group-menu-card__title {
    font-size: 22px;
  }

  .top-group-menu-card__subtitle {
    font-size: 13px;
  }

  .top-group-menu-card__image {
    height: 165px;
  }

  .top-group-menu__contact {
    margin-top: 38px;
  }

  .top-group-menu__contact-text {
    font-size: 17px;
  }

  .top-group-menu__tel {
    font-size: 39px;
  }


  /* STAY PLANS */

  .top-stay-plans__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-stay-plan-card {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 180px;
    padding: 7px;
  }

  .top-stay-plan-card__content {
    padding: 15px;
  }

  .top-stay-plan-card__lead {
    font-size: 14px;
  }

  .top-stay-plan-card__title {
    margin-top: 12px;
    font-size: 23px;
  }

  .top-stay-plan-card__text {
    margin-top: 12px;
    font-size: 11px;
  }

  .top-stay-plan-card__image {
    min-height: 165px;
  }

  .top-stay-plans__button {
    margin-top: 48px;
  }


  /* LARGE LINKS */

  .top-large-links__grid {
    grid-template-columns: 1fr;
  }

  .top-link-panel {
    aspect-ratio: 4 / 3;
  }

  .top-link-panel__content {
    width: 84%;
  }

  .top-link-panel__title {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .top-link-panel__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .top-link-panel.is-visible .top-link-panel__image {
    transform: scale(1.1);
  }


  /* ACCESS */

  .top-access {
    padding: 75px 0;
  }

  .top-access__inner {
    grid-template-columns: 1fr;
  }

  .top-access__visual,
  .top-access__map,
  .top-access__map iframe {
    min-height: 470px;
  }

  .top-access__content {
    left: 57%;
    width: 72%;
  }

  .top-access__title {
    font-size: 29px;
  }

  .top-access__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .top-access__boat-move {
    top: 22%;
    left: 6%;
    width: 120px;
  }


  /* SAFETY */

  .top-safety {
    padding: 55px 0 75px;
  }

  .top-safety__link {
    grid-template-columns: 65px minmax(0, 1fr) 65px;
    min-height: 100px;
    padding: 15px 10px;
  }

  .top-safety__content {
    padding: 0 8px;
  }

  .top-safety__title {
    font-size: 16px;
    line-height: 1.55;
  }

  .top-safety__text {
    margin-top: 5px;
    font-size: 10px;
  }

  .top-safety__icons img {
    max-height: 60px;
  }


  /* MOVIE */

  .top-movie {
    min-height: 280px;
    padding: 45px 0 75px;
  }

  .top-movie__inner {
    min-height: 200px;
  }

}


/* ==================================================
   VERY SMALL SMARTPHONE
================================================== */

@media screen and (max-width: 390px) {

  .top-feature__text {
    font-size: 13px;
  }

  .top-news__link {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .top-news__thumbnail {
    height: 72px;
  }

  .top-group-menu-card,
  .top-stay-plan-card {
    grid-template-columns: 1fr;
  }

  .top-group-menu-card__content,
  .top-stay-plan-card__content {
    min-height: 130px;
  }

  .top-group-menu-card__image,
  .top-stay-plan-card__image {
    height: 210px;
  }

  .top-access__content {
    left: 50%;
    width: 82%;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  .top-feature__content,
  .top-feature__character,
  .top-link-panel__image,
  .top-access__boat-move,
  .top-access__boat-bob {
    animation: none !important;
    transition: none !important;
  }

  .top-feature__content {
    opacity: 1;
    transform: translateY(-50%);
  }

  .top-feature__character {
    opacity: 1;
    transform: none;
  }

  .top-link-panel__image,
  .top-link-panel.is-visible .top-link-panel__image,
  .top-link-panel:hover .top-link-panel__image,
  .top-link-panel.is-visible:hover .top-link-panel__image {
    transform: none;
  }

}

/*newscss*/

.news-page {
  color: #fff;
  padding: 220px 20px 140px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif!important;
}
.news-page h2{
 	
}
.news-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.news-header {
  text-align: center;
  margin-bottom: 70px;
}

.news-header h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.18em;
}

.news-list {
  display: grid;
  gap: 34px;
}

.news-item {
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.news-item-link {
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: center;
  gap: 80px;
  min-height: 170px;
  padding: 24px;
  color: #fff;
  text-decoration: none;
}

.news-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5.4;
  object-fit: cover;
  object-position: center;
}

.news-text h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.06em;
	font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif!important;
}

.news-empty {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 70px;
}

.news-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  padding: 0 40px;
  border-radius: 999px;
  background: #e94712;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.news-pagination-prev:empty,
.news-pagination-next:empty {
  display: none;
}



@media (max-width: 768px) {
  .news-page {
    padding: 130px 20px 90px;
  }

  .news-header {
    margin-bottom: 45px;
  }

  .news-header h1 {
    font-size: 32px;
  }

  .news-list {
    gap: 24px;
  }

  .news-item-link {
    display: block;
    min-height: auto;
    padding: 16px;
  }

  .news-thumb {
    margin-bottom: 18px;
  }

  .news-thumb img {
    aspect-ratio: 16 / 7;
  }

  .news-text h2 {
    font-size: 18px;
    line-height: 1.8;
  }

  .news-pagination {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 45px;
  }

  .news-pagination a {
    min-width: 160px;
    min-height: 46px;
    font-size: 16px;
  }
}


/* ==================================================
   FEATURE SECTION OVERLAP
   次の画像を下からかぶせる
================================================== */

/*
 * アニメーション時間と、
 * 次の画像がせり上がる時間を含めた高さ
 */
.top-feature {
  height: 360vh;
}


/*
 * 2枚目以降を1画面分だけ前へ重ねる
 *
 * これにより、前の画像が固定されたまま
 * 次の画像が画面下から上へかぶさる
 */
/*.top-feature + .top-feature {
  margin-top: -100vh;
}*/


/*
 * 後にあるセクションほど手前に表示
 */
.top-feature--spa {
  z-index: 1;
}

.top-feature--gourmet {
  z-index: 2;
}

.top-feature--ocean-view {
  z-index: 3;
}


/*
 * sticky表示部分
 */
.top-feature__link {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
}


/* ==================================================
   FEATURE FIXED-LIKE TRANSITION
   次セクションが下からかぶる演出
================================================== */

.top-feature {
  z-index: 1;
  background-color: #0f0f0f;
}

/* 2枚目以降のFEATUREを前のFEATUREに重ねる */
.top-feature + .top-feature {
  margin-top: -100dvh;
}

/* 重なり順 */
#top-spa {
  z-index: 1;
}

#top-gourmet {
  z-index: 2;
}

#top-ocean-view {
  z-index: 3;
}


/*newsを上からかぶせる*/
#top-news {
  position: relative;
  z-index: 4;
  margin-top: -100dvh;
  background-color: #0f0f0f;
	padding-bottom: 32vh;
}


/* ==================================================
   Smartphone layout
   スマートフォン　レイアウト調整
================================================== */

@media (max-width: 768px){
	
.top-feature__visual img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
}
.top-stay-plan-card__lead {
text-align: center;
}	
	
.top-stay-plan-card__text {
text-align: center;
}

	
.top-opening__ship {

    left: 9%;

}
	
}

/* ==================================================
   TOP SP STACKING FIX
   OCEAN VIEWチラ見え・宴会カードborder欠け対策
================================================== */

@media screen and (max-width: 767px) {

  #top-group-menu,
  #top-stay-plans,
  #top-large-links,
  #top-access,
  #top-safety,
  #top-movie {
    position: relative;
    z-index: 5;
    background-color: #0f0f0f;
  }

  .top-group-menu {
    overflow: hidden;
  }

  .top-group-menu-card {
    position: relative;
    z-index: 1;
    background-color: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: hidden;
  }

  .top-group-menu-card__content,
  .top-group-menu-card__image {
    position: relative;
    z-index: 1;
  }

}
