﻿@charset "UTF-8";

/* ==========================================
  Base
========================================== */

:root {
  --color-night: #050913;
  --color-night-soft: #0a1322;
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.82);
  --color-gold: #d9c18b;
  --color-gold-dark: #bca169;
  --header-height: 108px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-white);
  background: var(--color-night);
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;
  line-height: 1.8;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

/* ==========================================
  Opening loader
========================================== */

.opening-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(24, 42, 72, 0.34),
      transparent 52%
    ),
    #030812;
  transition:
    transform 1.8s cubic-bezier(.22,.61,.36,1),
    opacity 1.6s ease,
    visibility 0s linear 1.8s;
}

.opening-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-70%);
}


.opening-loader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening-loader__icon {
  width: clamp(150px, 18vw, 260px);
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  filter:
    blur(4px)
    drop-shadow(0 0 18px rgba(129, 163, 214, 0.18))
    drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
  animation: openingIconReveal 1.6s ease-out 0.3s forwards;
  transition:
    opacity .6s ease,
    transform .6s ease,
    filter .6s ease;
}

@keyframes openingIconReveal {
  0% {
    opacity: 0;
    transform: scale(0.92);
    filter:
      blur(4px)
      drop-shadow(0 0 6px rgba(129, 163, 214, 0));
  }

  60% {
    opacity: 1;
    transform: scale(1.015);
    filter:
      blur(0)
      drop-shadow(0 0 26px rgba(129, 163, 214, 0.34))
      drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
  }

  100% {
    opacity: 0.94;
    transform: scale(1);
    filter:
      blur(0)
      drop-shadow(0 0 18px rgba(129, 163, 214, 0.18))
      drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
  }
}

.opening-loader.is-hidden .opening-loader__icon {
  opacity: 0;
  transform: scale(.95);
  filter: blur(8px);
}

/* ==========================================
  Header
========================================== */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  opacity: 0;
  transform: translateY(-24px);
  transition:
    height 0.5s ease,
    background-color 0.5s ease,
    box-shadow 0.5s ease,
    backdrop-filter 0.5s ease,
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(.22, .61, .36, 1);
}

.site-header.is-scrolled {
  height: 82px;
  background: rgba(3, 7, 14, 0.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1600px);
  height: 100%;
  margin-inline: auto;
}

.site-header__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(210px, 20vw, 330px);
  transition:
    width 0.5s ease,
    opacity 0.3s ease;
}

.site-header.is-scrolled .site-header__logo {
  width: clamp(178px, 16vw, 250px);
}

.site-header__logo img {
  width: 100%;
  height: auto;
}

.site-header__actions {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.site-header__reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  padding: 10px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 9, 19, 0.18);
  transition:
    color 0.35s ease,
    background-color 0.35s ease;
}

.site-header__reserve:hover {
  color: var(--color-night);
  background: var(--color-gold);
}

.site-header__reserve-en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.site-header__reserve-ja {
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: 0.15em;
}


/* ==========================================
  Menu button
========================================== */

.menu-button {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 142px;
  margin: 0;
  padding: 0 30px;
  border: 0;
  background: rgba(5, 9, 19, 0.18);
  cursor: pointer;
}

.menu-button__label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.menu-button__lines {
  position: relative;
  display: block;
  width: 31px;
  height: 14px;
}

.menu-button__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition:
    top 0.4s ease,
    transform 0.4s ease;
}

.menu-button__lines span:first-child {
  top: 2px;
}

.menu-button__lines span:last-child {
  top: 12px;
}

.menu-button.is-active .menu-button__lines span:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu-button.is-active .menu-button__lines span:last-child {
  top: 7px;
  transform: rotate(-45deg);
}


/* ==========================================
  Global menu
========================================== */

.global-menu {
  position: fixed;
  z-index: 900;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s linear 0.65s,
    opacity 0.5s ease;
}

.global-menu.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.global-menu__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(59, 77, 121, 0.28),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      rgba(3, 7, 15, 0.98),
      rgba(8, 17, 31, 0.97)
    );
  transform: translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}

.global-menu.is-active .global-menu__background {
  transform: translateY(0);
}

.global-menu__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 230px minmax(420px, 680px);
  align-items: center;
  justify-content: center;
  gap: clamp(70px, 9vw, 150px);
  min-height: 100%;
  padding: 150px 60px 70px;
}

.global-menu__brand {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.5s ease 0.25s,
    transform 0.5s ease 0.25s;
}

.global-menu.is-active .global-menu__brand {
  opacity: 0.7;
  transform: translateY(0);
}

.global-menu__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0 52px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-menu__list li {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.global-menu.is-active .global-menu__list li {
  opacity: 1;
  transform: translateY(0);
}

.global-menu.is-active .global-menu__list li:nth-child(1) {
  transition-delay: 0.2s;
}

.global-menu.is-active .global-menu__list li:nth-child(2) {
  transition-delay: 0.25s;
}

.global-menu.is-active .global-menu__list li:nth-child(3) {
  transition-delay: 0.3s;
}

.global-menu.is-active .global-menu__list li:nth-child(4) {
  transition-delay: 0.35s;
}

.global-menu.is-active .global-menu__list li:nth-child(5) {
  transition-delay: 0.4s;
}

.global-menu.is-active .global-menu__list li:nth-child(6) {
  transition-delay: 0.45s;
}

.global-menu__list a {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-areas:
    "number ja"
    "number en";
  align-items: center;
  min-height: 104px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.global-menu__list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.global-menu__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-menu__number {
  grid-area: number;
  align-self: start;
  padding-top: 6px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.global-menu__ja {
  grid-area: ja;
  font-size: clamp(19px, 1.7vw, 26px);
  letter-spacing: 0.14em;
}

.global-menu__en {
  grid-area: en;
  color: rgba(255, 255, 255, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.global-menu__reserve {
  position: absolute;
  right: 60px;
  bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.14em;
}


/* ==========================================
  Hero
========================================== */

.hero {
  --hero-background-wait: 100svh;

  position: relative;
  display: flow-root;
  overflow: clip;
  background: var(--color-night);
}


.hero__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.hero__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.hero__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



.background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.background-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.background-video__video--front {
  z-index: 2;
  opacity: 1;
}

.background-video__video--back {
  z-index: 1;
  opacity: 0;
}

.background-video__video.is-visible {
  opacity: 1;
}

.background-video__video.is-hidden {
  opacity: 0;
}



.hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 5, 12, 0.36) 0%,
      rgba(2, 5, 12, 0.07) 36%,
      rgba(2, 5, 12, 0.24) 100%
    ),
    radial-gradient(
      circle at center,
      transparent 20%,
      rgba(1, 3, 8, 0.28) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100% - 48px, 900px);
  min-height: 100svh;
  margin:
    0
    auto
    var(--hero-background-wait);
  padding-top: var(--header-height);
  text-align: center;
}

.hero__logo {
  width: clamp(330px, 44vw, 710px);
  filter: drop-shadow(0 5px 24px rgba(0, 0, 0, 0.46));
}

.hero__copy {
  margin: clamp(28px, 4vh, 52px) 0 0;
  font-size: clamp(20px, 2.1vw, 32px);
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.24em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.hero__buttons {
  display: flex;
  gap: 18px;
  margin-top: clamp(31px, 4vh, 48px);
}

.hero-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  min-height: 62px;
  padding: 12px 23px;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 0.16em;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}

.hero-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-white);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}

.hero-button:hover::before {
  transform: translateX(0);
}

.hero-button--primary {
  color: var(--color-night);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.hero-button--primary::before {
  background: var(--color-white);
}

.hero-button--secondary {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(3, 7, 15, 0.18);
}

.hero-button--secondary:hover {
  color: var(--color-night);
  border-color: var(--color-white);
}

.hero-button__arrow {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  top: calc(100svh - clamp(78px, 10vh, 112px));
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.hero__scroll-text {
  writing-mode: vertical-rl;
  margin-bottom: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.22em;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: clamp(56px, 8vh, 90px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--color-white);
  animation: scrollLine 2.2s ease-in-out infinite;
}


/* ==========================================
  Hero opening reveal
========================================== */

.hero__logo,
.hero__copy,
.hero__buttons,
.hero__scroll {
  opacity: 0;
}

.hero__logo {
  transform: translateY(28px) scale(.97);
  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(.22, .61, .36, 1);
}

.hero__copy {
  transform: translateY(24px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.22, .61, .36, 1);
}

.hero__buttons {
  transform: translateY(22px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.22, .61, .36, 1);
}

.hero__scroll {
  transform: translate(-50%, 18px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.22, .61, .36, 1);
}


/* ローダー終了後 */

body.is-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

body.is-ready .hero__logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .45s;
}

body.is-ready .hero__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .95s;
}

body.is-ready .hero__buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.45s;
}

body.is-ready .hero__scroll {
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 2s;
}



@keyframes scrollLine {
  0% {
    top: -70%;
  }

  70%,
  100% {
    top: 120%;
  }
}


/* ==========================================
  Concept / About
========================================== */

.concept {
  --concept-wait: 100svh;
  --concept-gallery-gap: 18px;

  position: relative;
  display: flow-root;
  overflow: clip;
  background: var(--color-night);
}


/* 固定背景 */

.concept__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.concept__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.concept__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concept__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 13, 0.88) 0%,
      rgba(2, 6, 13, 0.64) 38%,
      rgba(2, 6, 13, 0.2) 72%,
      rgba(2, 6, 13, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 6, 13, 0.18) 0%,
      rgba(2, 6, 13, 0.08) 46%,
      rgba(2, 6, 13, 0.72) 100%
    );
}


/* コンテンツ */


.concept__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  margin:
    var(--concept-wait)
    auto;
  padding:
    clamp(110px, 10vw, 160px)
    0
    clamp(90px, 8vw, 130px);
  scroll-margin-top: -40px;
}


/* 見出し */

.concept .section-intro {
  width: min(calc(100% - 14vw), 1500px);
  margin-inline: auto;
}


/* ==============================
   Concept Staff
============================== */

.concept-staff {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;

  width: min(760px, calc(100% - 80px));
  margin: 58px auto 46px;
}


/* ------------------------------
   Staff Card
------------------------------ */

.staff-card {
  position: relative;
  min-width: 0;
}

.staff-card__button {
  position: relative;

  display: grid;
  grid-template-columns: 150px 1fr 42px;
  align-items: center;

  width: 100%;
  min-height: 92px;
  padding: 0;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 7, 11, 0.72);

  color: #fff;
  text-align: left;

  cursor: pointer;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    border-color 0.4s ease,
    background-color 0.4s ease,
    transform 0.4s ease;
}

.staff-card__button:hover {
  border-color: rgba(218, 195, 137, 0.6);
  background: rgba(7, 10, 14, 0.9);
}


/* 横長人物写真 */

.staff-card__image {
  position: relative;
  display: block;

  width: 150px;
  height: 92px;

  overflow: hidden;
}

.staff-card__image::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent 55%,
      rgba(4, 7, 11, 0.85) 100%
    );

  pointer-events: none;
}

.staff-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.staff-card__button:hover .staff-card__image img {
  transform: scale(1.035);
}


/* テキスト */

.staff-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;
  padding: 12px 10px 12px 16px;
}

.staff-card__role {
  margin-bottom: 4px;

  color: #d8c28b;

  font-family: serif;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.staff-card__name {
  color: #fff;

  font-family: serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.staff-card__en {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.46);

  font-size: 9px;
  letter-spacing: 0.18em;
}


/* 矢印 */

.staff-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;

  color: #d8c28b;

  font-size: 16px;

  border-left: 1px solid rgba(255, 255, 255, 0.1);

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.staff-card__button:hover .staff-card__arrow {
  color: #fff;
  transform: translateY(-3px);
}


/* ==============================
   Staff Popover
============================== */

.staff-popover {
  position: absolute;
  z-index: 20;

  left: 50%;
  bottom: calc(100% + 16px);

  width: min(360px, 90vw);

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(10, 12, 16, 0.97),
      rgba(4, 7, 12, 0.99)
    );

  border: 1px solid rgba(218, 195, 137, 0.34);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;

  transform:
    translate(-50%, 18px)
    scale(0.985);

  transform-origin: center bottom;

  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}


/* JSで開いた状態 */

.staff-card.is-open .staff-popover {
  opacity: 1;
  visibility: visible;

  transform:
    translate(-50%, 0)
    scale(1);

  pointer-events: auto;
}


/* PC hoverでも表示 */

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

  .staff-card:hover .staff-popover {
    opacity: 1;
    visibility: visible;

    transform:
      translate(-50%, 0)
      scale(1);

    pointer-events: auto;
  }

}


/* POP画像 */

.staff-popover__image {
  position: relative;

  width: 100%;
  aspect-ratio: 4 / 3;

  overflow: hidden;
}

.staff-popover__image::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent 55%,
      rgba(4, 7, 12, 0.9) 100%
    );

  pointer-events: none;
}

.staff-popover__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 24%;
}


/* POP本文 */

.staff-popover__body {
  padding: 24px 26px 28px;
}

.staff-popover__role {
  margin: 0 0 7px;

  color: #d8c28b;

  font-family: serif;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.staff-popover__name {
  margin: 0;

  color: #fff;

  font-family: serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.staff-popover__en {
  margin: 5px 0 0;

  color: rgba(255, 255, 255, 0.42);

  font-size: 9px;
  letter-spacing: 0.2em;
}

.staff-popover__profile {
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.staff-popover__quote {
  position: relative;

  margin: 20px 0 0;
  padding: 18px 0 0;

  color: rgba(255, 255, 255, 0.9);

  font-family: serif;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.staff-popover__quote::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 42px;
  height: 1px;

  background: #d8c28b;
}


/* POP下の小さな三角 */

.staff-popover::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -7px;

  width: 12px;
  height: 12px;

  background: #05080d;

  border-right: 1px solid rgba(218, 195, 137, 0.34);
  border-bottom: 1px solid rgba(218, 195, 137, 0.34);

  transform:
    translateX(-50%)
    rotate(45deg);
}


/* ==========================================
  Loop gallery
  CONCEPT / HOSPITALITY 共通
========================================== */

.concept-gallery,
.loop-gallery {
  width: 100%;
  margin-top: clamp(32px, 4vw, 56px);
}

.concept-gallery__viewport,
.loop-gallery__viewport {
  width: 100%;
  overflow: hidden;
}

.concept-gallery__track,
.loop-gallery__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--concept-gallery-gap, var(--loop-gallery-gap, 18px));
  width: max-content;
  will-change: transform;
  animation: galleryLoop 70s linear infinite;
}

.concept-gallery__item,
.loop-gallery__item {
  position: relative;
  flex: 0 0 clamp(330px, 29vw, 470px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #05080d;
}

.concept-gallery__item::after,
.loop-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 48%,
      rgba(2, 6, 13, 0.12) 62%,
      rgba(2, 6, 13, 0.82) 100%
    );
  pointer-events: none;
}

.concept-gallery__item img,
.loop-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.4s cubic-bezier(.2, .7, .2, 1),
    filter 1.4s ease;
}

.concept-gallery__item figcaption,
.loop-gallery__item figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* PCのみ、流れている写真へ軽い変化 */
@media (hover: hover) and (pointer: fine) {
  .concept-gallery__item:hover img,
  .loop-gallery__item:hover img {
    transform: scale(1.035);
    filter: brightness(1.08);
  }
}

/* 1セット分進んだところで複製の先頭へつなぐ */
@keyframes galleryLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform:
      translateX(
        calc(
          -50% - (var(--concept-gallery-gap, var(--loop-gallery-gap, 18px)) / 2)
        )
      );
  }
}


/* セクション下部 */

.concept__scene {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  width: min(calc(100% - 14vw), 1500px);
  margin:
    clamp(54px, 6vw, 90px)
    auto
    0;
}

.concept__scene-line {
  display: block;
  width: clamp(54px, 6vw, 94px);
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.concept__scene-text {
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.24em;
}



/* ==========================================
  Hospitality
========================================== */

.hospitality {
  --hospitality-wait: 100svh;
  --loop-gallery-gap: 18px;

  position: relative;
  display: flow-root;
  overflow: clip;
  padding-inline: 7vw;
  background: var(--color-night);
}


.hospitality__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.hospitality__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.hospitality__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



.hospitality__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 13, 0.88) 0%,
      rgba(2, 6, 13, 0.66) 38%,
      rgba(2, 6, 13, 0.18) 72%,
      rgba(2, 6, 13, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 6, 13, 0.26) 0%,
      rgba(2, 6, 13, 0.08) 48%,
      rgba(2, 6, 13, 0.46) 100%
    );
}

.hospitality__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  min-height: 100svh;

  margin:
    var(--hospitality-wait)
    auto;

  padding:
    clamp(110px, 10vw, 160px)
    0
    clamp(90px, 8vw, 130px);

  scroll-margin-top: -40px;
}


/* ==========================================
  Hospitality gallery
  共通loop-galleryを全幅で使用
========================================== */

.hospitality-gallery {
  grid-column: 1 / -1;

  /* CONCEPTと同じく画面横幅いっぱいを表示域にする */
  width: 100vw;
  margin-top: clamp(32px, 4vw, 56px);
  margin-left: calc(50% - 50vw);
}


.hospitality__scene {
  position: absolute;
  right: 0;
  bottom: clamp(-90px, -7vw, -54px);
  display: flex;
  align-items: center;
  gap: 17px;
}

.hospitality__scene-line {
  display: block;
  width: clamp(54px, 6vw, 94px);
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.hospitality__scene-text {
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.24em;
}


/* ==========================================
  Rooms
========================================== */

.rooms {
  --rooms-wait: 100svh;

  position: relative;
  display: flow-root;
  overflow: clip;
  padding-inline: 6vw;
  background: var(--color-night);
}

.rooms__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.rooms__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}


.rooms__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 13, 0.54) 0%,
      rgba(2, 6, 13, 0.3) 30%,
      rgba(2, 6, 13, 0.64) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 6, 13, 0.7) 0%,
      rgba(2, 6, 13, 0.18) 48%,
      rgba(2, 6, 13, 0.48) 100%
    );
}

.rooms__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


.rooms__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  min-height: 100svh;
  margin:
    var(--rooms-wait)
    auto;
  padding:
    clamp(130px, 12vw, 190px)
    0
    clamp(110px, 10vw, 160px);
  scroll-margin-top: -50px;
}


/* 客室一覧 */

.rooms__list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.room-card {
  grid-column: span 4;
  min-width: 0;
}

.room-card--featured {
  grid-column: span 8;
}

.room-card__button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 36vw, 570px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--color-night);
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.room-card:not(.room-card--featured) .room-card__button {
  min-height: clamp(330px, 31vw, 480px);
}

.room-card__button:hover {
  border-color: rgba(217, 193, 139, 0.76);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(217, 193, 139, 0.08);
  transform: translateY(-5px);
}

.room-card__image {
  position: absolute;
  inset: 0;
  display: block;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(.22, .61, .36, 1),
    filter 0.7s ease;
}

.room-card__button:hover .room-card__image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.room-card__overlay {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(
      180deg,
      rgba(2, 5, 12, 0.08) 0%,
      rgba(2, 5, 12, 0.2) 38%,
      rgba(2, 5, 12, 0.9) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 5, 12, 0.42) 0%,
      transparent 58%
    );
  transition: background 0.55s ease;
}

.room-card__button:hover .room-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(2, 5, 12, 0.05) 0%,
      rgba(2, 5, 12, 0.16) 35%,
      rgba(2, 5, 12, 0.84) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 5, 12, 0.34) 0%,
      transparent 62%
    );
}

.room-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding:
    clamp(25px, 3vw, 46px);
}

.room-card__rank {
  color: var(--color-gold);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.room-card__name {
  margin-top: 9px;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.8);
}

.room-card__price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 13px;
}

.room-card__price-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.room-card__price-value {
  font-size: 15px;
  letter-spacing: 0.13em;
}

.room-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 230px);
  margin-top: 25px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.18em;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}

.room-card__button:hover .room-card__more {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.rooms__note {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: right;
}

.rooms__scene {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  margin-top: 32px;
}

.rooms__scene-line {
  display: block;
  width: clamp(54px, 6vw, 94px);
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.rooms__scene-text {
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.24em;
}


/* ==========================================
  Room modal
========================================== */

body.is-room-modal-open {
  overflow: hidden;
}

.room-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  place-items: center;
  transition:
    visibility 0s linear 0.55s,
    opacity 0.45s ease;
}

.room-modal.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}


.room-modal__video-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.room-modal__video-background .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.room-modal__video-background .background-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    brightness(0.58)
    saturate(0.72)
    blur(2px);
  transform: scale(1.035);
}



.room-modal__backdrop {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.room-modal__panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), 1480px);
  max-height: calc(100svh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
-webkit-backdrop-filter: none;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.room-modal.is-active .room-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.room-modal__close {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 7, 15, 0.62);
  cursor: pointer;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.room-modal__close:hover {
  color: var(--color-night);
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.room-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.room-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.room-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.room-modal__body {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(350px, 0.72fr);
  height: calc(100svh - 56px);
  max-height: calc(100svh - 56px);
  min-height: 0;
}

.room-modal__gallery {
  position: relative;
  min-width: 0;
  overflow-y: auto;
  background: transparent;
}

.room-modal__main-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}

.room-modal__main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -100px 100px -90px rgba(0, 0, 0, 0.9);
}

.room-modal__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    opacity 0.45s ease,
    transform 0.7s ease;
}

.room-modal__main-image img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.room-modal__arrow {
  position: absolute;
  z-index: 3;
  top: min(25vw, 340px);
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(3, 7, 15, 0.52);
  cursor: pointer;
  place-items: center;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.room-modal__arrow:hover {
  color: var(--color-night);
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.room-modal__arrow--prev {
  left: 22px;
}

.room-modal__arrow--next {
  right: 22px;
}

.room-modal__counter {
  position: absolute;
  z-index: 3;
  top: min(49vw, 650px);
  right: 28px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.room-modal__thumbnails {
  display: grid;
  grid-template-columns: repeat(7, minmax(78px, 1fr));
  gap: 9px;
  padding: 16px;
}

.room-modal__thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
  appearance: none;
  transition:
    opacity 0.35s ease,
    border-color 0.35s ease;
}

.room-modal__thumbnail:hover,
.room-modal__thumbnail.is-active {
  border-color: var(--color-gold);
  opacity: 1;
}

.room-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-modal__details {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  
  background:
    linear-gradient(
      90deg,
      rgba(3,7,15,0) 0%,
      rgba(3,7,15,0.10) 8%,
      rgba(3,7,15,0.34) 20%,
      rgba(3,7,15,0.62) 42%,
      rgba(3,7,15,0.86) 100%
    );
  
  padding:
    clamp(66px, 6vw, 96px)
    clamp(34px, 4vw, 62px)
    72px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color:
    rgba(217, 193, 139, 0.55)
    rgba(255, 255, 255, 0.06);
}

.room-modal__details::-webkit-scrollbar {
  width: 6px;
}

.room-modal__details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.room-modal__details::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 193, 139, 0.5);
}

.room-modal__details::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 193, 139, 0.75);
}

.room-modal__rank {
  margin: 0;
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.room-modal__title {
  margin: 12px 0 0;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.room-modal__lead {
  margin: 27px 0 0;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.9;
  letter-spacing: 0.12em;
}

.room-modal__description {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.room-modal__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 35px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.room-modal__spec {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.room-modal__spec dt,
.room-modal__spec dd {
  margin: 0;
  padding: 14px 13px;
}

.room-modal__spec dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.room-modal__spec dd {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.room-modal__facilities {
  margin-top: 34px;
}

.room-modal__subheading {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.room-modal__facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.room-modal__facility-list li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.room-modal__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.room-modal__price-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}


.room-modal__price-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.room-modal__price-value {
  font-size: 20px;
  letter-spacing: 0.12em;
}

.room-modal__reserve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  margin-top: 25px;
  padding: 14px 22px;
  border: 1px solid var(--color-gold);
  color: var(--color-night);
  background: var(--color-gold);
  font-size: 13px;
  letter-spacing: 0.15em;
  transition:
    color 0.4s ease,
    background-color 0.4s ease;
}

.room-modal__reserve:hover {
  color: var(--color-white);
  background: transparent;
}



/* ==========================================
  Cuisine
========================================== */

.cuisine {
  --cuisine-wait: 100svh;

  position: relative;
  display: flow-root;
  overflow: clip;
  padding-inline: 6vw;
  background: var(--color-night);
}


/* 固定背景 */

.cuisine__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.cuisine__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.cuisine__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cuisine__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 13, 0.54) 0%,
      rgba(2, 6, 13, 0.26) 36%,
      rgba(2, 6, 13, 0.7) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 6, 13, 0.68) 0%,
      rgba(2, 6, 13, 0.16) 48%,
      rgba(2, 6, 13, 0.5) 100%
    );
}


/* コンテンツ全体 */

.cuisine__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  min-height: 100svh;
  margin:
    var(--cuisine-wait)
    auto;
  padding:
    clamp(130px, 12vw, 190px)
    0
    clamp(110px, 10vw, 160px);
  scroll-margin-top: -40px;
}


/* セクション見出し */

/* 料理一覧 */

.cuisine__list {
  display: grid;
  gap: clamp(20px, 2vw, 32px);
}

.cuisine__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.cuisine__standard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

.cuisine-card {
  min-width: 0;
}

.cuisine-card__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(390px, 34vw, 530px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--color-night);
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.cuisine-card--featured .cuisine-card__button {
  min-height: clamp(470px, 40vw, 650px);
}

.cuisine-card__button:hover {
  border-color: rgba(217, 193, 139, 0.76);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(217, 193, 139, 0.08);
  transform: translateY(-5px);
}

.cuisine-card__image {
  position: absolute;
  inset: 0;
  display: block;
}

.cuisine-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(.22, .61, .36, 1),
    filter 0.7s ease;
}

.cuisine-card__button:hover .cuisine-card__image img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

.cuisine-card__overlay {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(
      180deg,
      rgba(2, 5, 12, 0.06) 0%,
      rgba(2, 5, 12, 0.24) 38%,
      rgba(2, 5, 12, 0.94) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 5, 12, 0.46) 0%,
      transparent 66%
    );
}

.cuisine-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25px, 3vw, 46px);
}

.cuisine-card__category {
  color: var(--color-gold);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.cuisine-card__name {
  margin-top: 9px;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.8);
}

.cuisine__standard .cuisine-card__name {
  font-size: clamp(27px, 2.6vw, 42px);
}

.cuisine-card__description {
  max-width: 440px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.09em;
}

.cuisine-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 240px);
  margin-top: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.18em;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}

.cuisine-card__button:hover .cuisine-card__more {
  color: var(--color-gold);
  border-color: var(--color-gold);
}


/* 注記・シーン名 */

.cuisine__note {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: right;
}

.cuisine__scene {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  margin-top: 32px;
}

.cuisine__scene-line {
  display: block;
  width: clamp(54px, 6vw, 94px);
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.cuisine__scene-text {
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.24em;
}


/* ==========================================
  Cuisine modal
========================================== */

body.is-cuisine-modal-open {
  overflow: hidden;
}

.cuisine-modal {
  position: fixed;
  z-index: 3100;
  inset: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  place-items: center;
  transition:
    visibility 0s linear 0.55s,
    opacity 0.45s ease;
}

.cuisine-modal.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}


/* 背景動画 */

.cuisine-modal__video-base {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #000;
  pointer-events: none;
}

.cuisine-modal__video-background {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.cuisine-modal__video-background .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cuisine-modal__video-background .background-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    brightness(0.58)
    saturate(0.76)
    blur(2px);
  transform: scale(1.035);
}

.cuisine-modal__backdrop {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}


/* モーダルパネル */

.cuisine-modal__panel {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 56px), 1480px);
  max-height: calc(100svh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.cuisine-modal.is-active .cuisine-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cuisine-modal__body {
  display: grid;
  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(370px, 0.78fr);
  height: calc(100svh - 56px);
  max-height: calc(100svh - 56px);
  min-height: 0;
}


/* 閉じるボタン */

.cuisine-modal__close {
  position: absolute;
  z-index: 6;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 7, 15, 0.62);
  cursor: pointer;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.cuisine-modal__close:hover {
  color: var(--color-night);
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.cuisine-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.cuisine-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cuisine-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* 写真ギャラリー */

.cuisine-modal__gallery {
  position: relative;
  min-width: 0;
  overflow-y: auto;
  background: transparent;
}

.cuisine-modal__main-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}

.cuisine-modal__main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 -100px 100px -90px
    rgba(0, 0, 0, 0.9);
}

.cuisine-modal__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    opacity 0.45s ease,
    transform 0.7s ease;
}

.cuisine-modal__main-image img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.cuisine-modal__arrow {
  position: absolute;
  z-index: 4;
  top: min(25vw, 340px);
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(3, 7, 15, 0.52);
  cursor: pointer;
  place-items: center;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.cuisine-modal__arrow:hover {
  color: var(--color-night);
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.cuisine-modal__arrow--prev {
  left: 22px;
}

.cuisine-modal__arrow--next {
  right: 22px;
}

.cuisine-modal__counter {
  position: absolute;
  z-index: 4;
  top: min(49vw, 650px);
  right: 28px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.cuisine-modal__thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(78px, 1fr));
  gap: 9px;
  padding: 16px;
}

.cuisine-modal__thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
  appearance: none;
  transition:
    opacity 0.35s ease,
    border-color 0.35s ease;
}

.cuisine-modal__thumbnail:hover,
.cuisine-modal__thumbnail.is-active {
  border-color: var(--color-gold);
  opacity: 1;
}

.cuisine-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 詳細欄 */

.cuisine-modal__details {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    clamp(66px, 6vw, 96px)
    clamp(34px, 4vw, 62px)
    72px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 15, 0) 0%,
      rgba(3, 7, 15, 0.12) 8%,
      rgba(3, 7, 15, 0.4) 22%,
      rgba(3, 7, 15, 0.7) 48%,
      rgba(3, 7, 15, 0.9) 100%
    );
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color:
    rgba(217, 193, 139, 0.55)
    rgba(255, 255, 255, 0.06);
}

.cuisine-modal__details::-webkit-scrollbar {
  width: 6px;
}

.cuisine-modal__details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.cuisine-modal__details::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 193, 139, 0.5);
}

.cuisine-modal__category {
  margin: 0;
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.cuisine-modal__title {
  margin: 12px 0 0;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.cuisine-modal__lead {
  margin: 27px 0 0;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.9;
  letter-spacing: 0.12em;
}

.cuisine-modal__description {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.08em;
}


/* お品書き */

.cuisine-modal__menu,
.cuisine-modal__allergy {
  margin-top: 36px;
}

.cuisine-modal__subheading {
  margin: 0;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.cuisine-modal__menu-list {
  margin: 18px 0 0;
}

.cuisine-modal__menu-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cuisine-modal__menu-item dt,
.cuisine-modal__menu-item dd {
  margin: 0;
}

.cuisine-modal__menu-item dt {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.cuisine-modal__menu-item dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}


/* アレルギー */

.cuisine-modal__allergy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cuisine-modal__allergy-list li {
  padding: 7px 11px;
  border: 1px solid rgba(217, 193, 139, 0.36);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.cuisine-modal__allergy-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.07em;
}


/* 料金 */

.cuisine-modal__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cuisine-modal__price-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.cuisine-modal__price-value {
  font-size: 20px;
  letter-spacing: 0.12em;
}

.cuisine-modal__price-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.07em;
}

.cuisine-modal__reserve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  margin-top: 25px;
  padding: 14px 22px;
  border: 1px solid var(--color-gold);
  color: var(--color-night);
  background: var(--color-gold);
  font-size: 13px;
  letter-spacing: 0.15em;
  transition:
    color 0.4s ease,
    background-color 0.4s ease;
}

.cuisine-modal__reserve:hover {
  color: var(--color-white);
  background: transparent;
}




/* ==========================================
  Temporary section
========================================== */

.temporary-section {
  display: grid;
  min-height: 100svh;
  padding: 130px 30px;
  place-items: center;
  background:
    radial-gradient(
      circle at center,
      rgba(35, 57, 93, 0.22),
      transparent 55%
    ),
    var(--color-night);
}

.temporary-section__inner {
  text-align: center;
}

.temporary-section__en {
  margin: 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
}

.temporary-section__title {
  margin: 30px 0 0;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.temporary-section__text {
  margin: 28px 0 0;
  color: var(--color-white-soft);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.anchor-section {
  min-height: 1px;
}


/* ==========================================
  Tablet
========================================== */

@media (max-width: 1024px) {

  :root {
    --header-height: 90px;
  }

  .site-header.is-scrolled {
    height: 74px;
  }

  .site-header__inner {
    width: calc(100% - 40px);
  }

  .site-header__logo {
    width: 245px;
  }

  .site-header.is-scrolled .site-header__logo {
    width: 205px;
  }

  .site-header__reserve {
    min-width: 150px;
    padding-inline: 20px;
  }

  .menu-button {
    min-width: 120px;
    padding-inline: 22px;
  }

  .global-menu__inner {
    grid-template-columns: 170px minmax(400px, 600px);
    gap: 50px;
    padding-inline: 40px;
  }

  .global-menu__reserve {
    right: 40px;
  }

  
  
    /* Concept */

  .concept-gallery__item,
  .loop-gallery__item {
    flex-basis: clamp(310px, 42vw, 430px);
  }

  .concept__scene {
    width: calc(100% - 12vw);
  }
  
  
  
  
  .hospitality {
  padding-inline: 6vw;
}



    /* Rooms */

  .rooms {
    padding-inline: 5vw;
  }

  .room-card,
  .room-card--featured {
    grid-column: span 6;
  }

  .room-card--featured {
    grid-column: span 12;
  }

  .room-card__button,
  .room-card:not(.room-card--featured) .room-card__button {
    min-height: 420px;
  }

  .room-modal__panel {
    width: calc(100% - 34px);
    max-height: calc(100svh - 34px);
  }

  .room-modal__body {
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(310px, 0.8fr);
  height: calc(100svh - 34px);
  max-height: calc(100svh - 34px);
  min-height: 0;
}

  .room-modal__thumbnails {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
  }

  .room-modal__details {
    padding-inline: 30px;
  }

  .room-modal__specs {
    grid-template-columns: 1fr;
  }
  
    /* Cuisine */

  .cuisine {
    padding-inline: 5vw;
  }


  .cuisine__featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cuisine__standard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cuisine__standard .cuisine-card:last-child {
    grid-column: 1 / -1;
  }

  .cuisine-card__button,
  .cuisine-card--featured .cuisine-card__button {
    min-height: 420px;
  }


  /* Cuisine modal */

  .cuisine-modal__panel {
    width: calc(100% - 34px);
    max-height: calc(100svh - 34px);
  }

  .cuisine-modal__body {
    grid-template-columns:
      minmax(0, 1.2fr)
      minmax(310px, 0.8fr);
    height: calc(100svh - 34px);
    max-height: calc(100svh - 34px);
    min-height: 0;
  }

  .cuisine-modal__thumbnails {
    grid-template-columns: repeat(3, minmax(70px, 1fr));
  }

  .cuisine-modal__details {
    padding-inline: 30px;
  }

  .cuisine-modal__menu-item {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }
  

  
}


/* ==========================================
  Smartphone
========================================== */

@media (max-width: 767px) {

  :root {
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .site-header__inner {
    width: calc(100% - 28px);
  }

  .site-header__logo,
  .site-header.is-scrolled .site-header__logo {
    width: 168px;
  }

  .site-header__reserve {
    display: none;
  }

  .menu-button {
    gap: 11px;
    min-width: auto;
    padding: 0 2px 0 17px;
    background: transparent;
  }

  .menu-button__label {
    font-size: 9px;
  }

  .menu-button__lines {
    width: 27px;
  }

  .global-menu__inner {
    display: block;
    overflow-y: auto;
    padding: 112px 28px 100px;
  }

  .global-menu__brand {
    width: 90px;
    margin: 0 auto 34px;
  }

  .global-menu__list {
    display: block;
  }

  .global-menu__list a {
    grid-template-columns: 34px 1fr;
    min-height: 80px;
    padding: 16px 0;
  }

  .global-menu__ja {
    font-size: 19px;
  }

  .global-menu__reserve {
    position: static;
    width: 100%;
    margin-top: 36px;
  }

  .hero {
  --hero-background-wait: 82svh;
}

  .background-video__video {
    object-position: center center;
  }

  .hero__content {
  width: calc(100% - 36px);
  min-height: 100svh;
  margin:
    0
    auto
    var(--hero-background-wait);
  padding-top: 72px;
}

  .hero__logo {
    width: min(92vw, 430px);
  }

  .hero__copy {
    margin-top: 26px;
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.9;
    letter-spacing: 0.16em;
  }

  .hero__buttons {
    flex-direction: column;
    width: min(100%, 290px);
    gap: 12px;
    margin-top: 28px;
  }

  .hero-button {
    width: 100%;
    min-height: 56px;
    font-size: 13px;
  }

  .hero__scroll-text {
    font-size: 8px;
  }

  .hero__scroll-line {
    height: 50px;
  }

  
  /* ==========================================
    Concept
  ========================================== */

  .concept {
    --concept-wait: 82svh;
    --concept-gallery-gap: 12px;
  }

  .concept .background-video__video {
    object-position: center center;
  }

  .concept__shade {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 13, 0.2) 0%,
        rgba(2, 6, 13, 0.38) 34%,
        rgba(2, 6, 13, 0.86) 72%,
        rgba(2, 6, 13, 0.97) 100%
      );
  }

  .concept__inner {
    width: 100%;
    min-height: 100svh;
    margin:
      var(--concept-wait)
      auto;
    padding:
      120px
      0
      92px;
    scroll-margin-top: -20px;
  }


  /* 流れる写真 */

  .concept-gallery,
  .loop-gallery {
    margin-top: 64px;
  }

  .concept-gallery__track,
  .loop-gallery__track {
    animation-duration: 55s;
  }

  .concept-gallery__item,
  .loop-gallery__item {
    flex-basis: min(76vw, 340px);
  }

  .concept-gallery__item figcaption,
  .loop-gallery__item figcaption {
    right: 17px;
    bottom: 15px;
    left: 17px;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 0.12em;
  }


  /* 下部英字 */

  .concept__scene {
    width: auto;
    margin:
      38px
      24px
      0;
  }

  .concept__scene-text {
    font-size: 7px;
  }
  
  
  
  .hospitality {
  --hospitality-wait: 82svh;
  --loop-gallery-gap: 12px;

  display: flow-root;
  padding-inline: 24px;
}

.hospitality .background-video__video {
  object-position: center center;
}

.hospitality__shade {
  background:
    linear-gradient(

      180deg,
      rgba(2, 6, 13, 0.18) 0%,
      rgba(2, 6, 13, 0.34) 38%,
      rgba(2, 6, 13, 0.9) 78%,
      rgba(2, 6, 13, 0.97) 100%
    );
}

.hospitality__inner {
  display: block;
  width: 100%;
  min-height: 100svh;
  margin:
    var(--hospitality-wait)
    auto;
  padding:
    120px
    0
    92px;
}


.hospitality__scene {
  position: static;
  justify-content: flex-end;
  margin-top: 36px;
}

.hospitality__scene-text {
  font-size: 7px;
}
  
  
    /* Rooms */

  .rooms {
    min-height: auto;
    padding:
      118px
      20px
      88px;
  }

  .rooms .background-video__video {
    object-position: center center;
  }

  .rooms__shade {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 13, 0.45) 0%,
        rgba(2, 6, 13, 0.72) 30%,
        rgba(2, 6, 13, 0.96) 100%
      );
  }


  .rooms__list {
    display: block;
  }

  .room-card {
    margin-top: 18px;
  }

  .room-card:first-child {
    margin-top: 0;
  }

  .room-card__button,
  .room-card:not(.room-card--featured) .room-card__button {
    min-height: 410px;
  }

  .room-card__content {
    padding: 25px 23px;
  }

  .room-card__rank {
    font-size: 9px;
  }

  .room-card__name {
    font-size: 31px;
  }

  .room-card__price-value {
    font-size: 13px;
  }

  .room-card__more {
    width: 100%;
    margin-top: 20px;
  }

  .rooms__note {
    font-size: 9px;
    text-align: left;
  }

  .rooms__scene {
    justify-content: flex-end;
    margin-top: 28px;
  }

  .rooms__scene-text {
    font-size: 7px;
  }
  
  
    /* Cuisine */

  .cuisine {
    padding-inline: 20px;
  }

  .cuisine .background-video__video {
    object-position: center center;
  }

  .cuisine__shade {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 13, 0.42) 0%,
        rgba(2, 6, 13, 0.7) 34%,
        rgba(2, 6, 13, 0.96) 100%
      );
  }

  .cuisine__inner {
    padding:
      118px
      0
      88px;
    scroll-margin-top: -20px;
  }


  .cuisine__list {
    display: block;
  }

  .cuisine__featured,
  .cuisine__standard {
    display: block;
  }

  .cuisine-card,
  .cuisine__standard .cuisine-card:last-child {
    grid-column: auto;
    margin-top: 18px;
  }


  .cuisine__featured .cuisine-card:first-child {
    margin-top: 0;
  }

  .cuisine-card__button,
  .cuisine-card--featured .cuisine-card__button {
    min-height: 410px;
  }

  .cuisine-card__button:hover {
    transform: none;
  }

  .cuisine-card__content {
    padding: 25px 23px;
  }

  .cuisine-card__category {
    font-size: 9px;
  }

  .cuisine-card__name,
  .cuisine__standard .cuisine-card__name {
    font-size: 31px;
  }

  .cuisine-card__description {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.9;
  }

  .cuisine-card__more {
    width: 100%;
    margin-top: 20px;
  }

  .cuisine__note {
    margin-top: 28px;
    font-size: 9px;
    line-height: 1.9;
    text-align: left;
  }

  .cuisine__scene {
    justify-content: flex-end;
    margin-top: 28px;
  }

  .cuisine__scene-text {
    font-size: 7px;
  }
  
  


  /* Room modal */

  .room-modal {
    align-items: end;
  }

  .room-modal__panel {
  width: 100%;
  max-height: 94svh;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

  .room-modal__body {
    display: block;
    max-height: 94svh;
    overflow-y: auto;
  }

  .room-modal__gallery {
    overflow: visible;
  }

  .room-modal__main-image {
    aspect-ratio: 4 / 3;
  }

  .room-modal__close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .room-modal__arrow {
    top: 140px;
    width: 44px;
    height: 44px;
  }

  .room-modal__arrow--prev {
    left: 12px;
  }

  .room-modal__arrow--next {
    right: 12px;
  }

  .room-modal__counter {
    position: static;
    margin: 12px 18px 0;
    text-align: right;
  }

  .room-modal__thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 13px 18px 8px;
    scrollbar-width: thin;
  }

  .room-modal__thumbnail {
    flex: 0 0 105px;
  }

  .room-modal__details {
    overflow: visible;
    padding:
      42px
      22px
      52px;
    background:
  linear-gradient(
    180deg,
    rgba(3,7,15,0) 0%,
    rgba(3,7,15,0.08) 8%,
    rgba(3,7,15,0.34) 18%,
    rgba(3,7,15,0.62) 38%,
    rgba(3,7,15,0.86) 100%
  );
  }

  .room-modal__rank {
    font-size: 9px;
  }

  .room-modal__title {
    font-size: 40px;
  }

  .room-modal__lead {
    font-size: 19px;
    line-height: 1.8;
  }

  .room-modal__description {
    font-size: 12px;
    line-height: 2;
  }

  .room-modal__specs {
    grid-template-columns: 1fr;
  }

  .room-modal__spec {
    grid-template-columns: 62px 1fr;
  }

  .room-modal__price-value {
    font-size: 17px;
  }
  
  
    /* Cuisine modal */

  .cuisine-modal {
    align-items: end;
  }

  .cuisine-modal__panel {
    width: 100%;
    max-height: 94svh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
  }

  .cuisine-modal__body {
    display: block;
    height: auto;
    max-height: 94svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .cuisine-modal__gallery {
    overflow: visible;
  }

  .cuisine-modal__main-image {
    aspect-ratio: 16 / 9;
  }

  .cuisine-modal__close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .cuisine-modal__arrow {
    top: 120px;
    width: 44px;
    height: 44px;
  }

  .cuisine-modal__arrow--prev {
    left: 12px;
  }

  .cuisine-modal__arrow--next {
    right: 12px;
  }

  .cuisine-modal__counter {
    position: static;
    margin: 12px 18px 0;
    font-size: 10px;
    text-align: right;
  }

  .cuisine-modal__thumbnails {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    padding: 13px 18px 10px;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }

  .cuisine-modal__thumbnail {
    flex: 0 0 105px;
  }

  .cuisine-modal__details {
    overflow: visible;
    padding:
      42px
      22px
      52px;
    background:
      linear-gradient(
        180deg,
        rgba(3, 7, 15, 0) 0%,
        rgba(3, 7, 15, 0.12) 7%,
        rgba(3, 7, 15, 0.4) 17%,
        rgba(3, 7, 15, 0.72) 34%,
        rgba(3, 7, 15, 0.92) 100%
      );
  }

  .cuisine-modal__category {
    font-size: 9px;
  }

  .cuisine-modal__title {
    font-size: 40px;
  }

  .cuisine-modal__lead {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.8;
  }

  .cuisine-modal__description {
    margin-top: 22px;
    font-size: 12px;
    line-height: 2;
  }

  .cuisine-modal__menu,
  .cuisine-modal__allergy {
    margin-top: 32px;
  }

  .cuisine-modal__subheading {
    font-size: 14px;
  }

  .cuisine-modal__menu-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .cuisine-modal__menu-item dt {
    font-size: 10px;
  }

  .cuisine-modal__menu-item dd {
    font-size: 11px;
    line-height: 1.8;
  }

  .cuisine-modal__allergy-list {
    gap: 7px;
  }

  .cuisine-modal__allergy-list li {
    padding: 6px 9px;
    font-size: 9px;
  }

  .cuisine-modal__allergy-note {
    font-size: 9px;
  }

  .cuisine-modal__price {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }

  .cuisine-modal__price-value {
    font-size: 18px;
  }

  .cuisine-modal__price-note {
    font-size: 9px;
  }

  .cuisine-modal__reserve {
    width: 100%;
    min-height: 60px;
    margin-top: 22px;
    padding-inline: 18px;
    font-size: 12px;
  }
  
  
}


/* ==========================================
  Reduced motion
========================================== */

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

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}


/* ==========================================
   Concept Staff Responsive
========================================== */

/* ------------------------------
   Tablet
------------------------------ */

@media (max-width: 1024px) {

  .concept-staff {
    gap: 16px;
    width: min(720px, calc(100% - 48px));
    margin: 46px auto 34px;
  }

  .staff-card__button {
    grid-template-columns: 120px 1fr 38px;
    min-height: 82px;
  }

  .staff-card__image {
    width: 120px;
    height: 82px;
  }

  .staff-card__content {
    padding: 10px 8px 10px 14px;
  }

  .staff-card__role {
    font-size: 10px;
  }

  .staff-card__name {
    font-size: 18px;
  }

  .staff-card__en {
    font-size: 8px;
  }

  .staff-popover {
    width: min(340px, calc(100vw - 48px));
  }

  .staff-popover__body {
    padding: 21px 22px 24px;
  }

  .staff-popover__name {
    font-size: 23px;
  }

}


/* ------------------------------
   Smartphone
------------------------------ */

@media (max-width: 767px) {

  .concept-staff {
    grid-template-columns: 1fr;
    gap: 12px;

    width: calc(100% - 40px);
    margin: 36px auto 28px;
  }

  .staff-card__button {
    grid-template-columns: 112px 1fr 38px;
    min-height: 78px;
  }

  .staff-card__image {
    width: 112px;
    height: 78px;
  }

  .staff-card__content {
    padding: 9px 8px 9px 13px;
  }

  .staff-card__role {
    margin-bottom: 2px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .staff-card__name {
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .staff-card__en {
    margin-top: 2px;
    font-size: 7px;
  }

  .staff-card__arrow {
    font-size: 14px;
  }


  /* POP */

  .staff-popover {
    left: 50%;
    bottom: calc(100% + 12px);

    width: min(330px, calc(100vw - 32px));
  }

  .staff-popover__image {
    aspect-ratio: 16 / 9;
  }

  .staff-popover__body {
    padding: 18px 20px 21px;
  }

  .staff-popover__role {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .staff-popover__name {
    font-size: 21px;
  }

  .staff-popover__en {
    margin-top: 3px;
    font-size: 8px;
  }

  .staff-popover__profile {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.85;
  }

  .staff-popover__quote {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 11px;
    line-height: 1.85;
  }

}


/* =========================================================
   ONSEN
========================================================= */

.onsen {
  position: relative;
  min-height: 240vh;
  color: #fff;
  background: #05070a;
  isolation: isolate;
}


/* ---------------------------------------------------------
   Background
--------------------------------------------------------- */

.onsen__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.onsen__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.onsen__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.onsen__background-sticky .background-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 背景を少し沈ませる */
.onsen__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 5, 9, 0.88) 0%,
      rgba(2, 5, 9, 0.56) 44%,
      rgba(2, 5, 9, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.72) 100%
    );
}


/* ---------------------------------------------------------
   Inner
--------------------------------------------------------- */

.onsen__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 150px 0 140px;
}


/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */


/* =========================================================
   Two bath cards
========================================================= */

.onsen__baths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 72px;
}

.onsen-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #06080b;
}

.onsen-card__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.onsen-card__image {
  position: absolute;
  inset: 0;
  display: block;
}

.onsen-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}

.onsen-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 15%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.86) 100%
    );
  transition: background 0.6s ease;
}

.onsen-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 44px;
}

.onsen-card__eyebrow {
  margin-bottom: 14px;
  color: #d8c07e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.onsen-card__name {
  margin-bottom: 18px;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.onsen-card__concept {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.onsen-card__more {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.12em;
}


/* 宵の湯は少し深く */
.onsen-card--yoi .onsen-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(3, 7, 12, 0.04) 15%,
      rgba(3, 7, 12, 0.24) 48%,
      rgba(3, 7, 12, 0.92) 100%
    );
}


/* 明けの湯はわずかに軽く */
.onsen-card--ake .onsen-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(20, 15, 8, 0.02) 15%,
      rgba(14, 10, 5, 0.18) 48%,
      rgba(7, 7, 6, 0.88) 100%
    );
}


@media (hover: hover) {

  .onsen-card__button:hover .onsen-card__image img {
    transform: scale(1.045);
    filter: brightness(1.06);
  }

  .onsen-card__button:hover .onsen-card__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 15%,
        rgba(0, 0, 0, 0.14) 44%,
        rgba(0, 0, 0, 0.82) 100%
      );
  }

}


/* =========================================================
   Relax Lounge
========================================================= */

.onsen-lounge {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 7, 10, 0.86);
  backdrop-filter: blur(10px);
}

.onsen-lounge__image {
  min-width: 0;
  overflow: hidden;
}

.onsen-lounge__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.onsen-lounge__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px;
  background:
    linear-gradient(
      135deg,
      rgba(8, 10, 14, 0.96),
      rgba(9, 12, 17, 0.8)
    );
}

.onsen-lounge__en {
  margin: 0 0 18px;
  color: #d8c07e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.onsen-lounge__title {
  margin: 0 0 26px;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.onsen-lounge__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.06em;
}


/* ---------------------------------------------------------
   Scene
--------------------------------------------------------- */

.onsen__scene {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.onsen__scene-line {
  width: 58px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
}

.onsen__scene-text {
  color: rgba(255, 255, 255, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
}


/* =========================================================
   ONSEN MODAL
========================================================= */

body.is-onsen-modal-open {
  overflow: hidden;
}

.onsen-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.onsen-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.onsen-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(7px);
}

.onsen-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1380px, 96vw);
  height: min(820px, 88vh);
  overflow: hidden;
  border: 1px solid rgba(208, 182, 116, 0.34);
  background: #05070a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.onsen-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  height: 100%;
}


/* ---------------------------------------------------------
   Modal Gallery
--------------------------------------------------------- */

.onsen-modal__gallery {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.onsen-modal__main-image {
  width: 100%;
  height: 100%;
}

.onsen-modal__main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onsen-modal__gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(0, 0, 0, 0.52) 100%
    );
}

.onsen-modal__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.onsen-modal__arrow--prev {
  left: 26px;
}

.onsen-modal__arrow--next {
  right: 26px;
}

.onsen-modal__arrow:hover {
  border-color: #d8c07e;
  background: rgba(0, 0, 0, 0.68);
}

.onsen-modal__counter {
  position: absolute;
  right: 30px;
  bottom: 96px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.onsen-modal__thumbnails {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
}

.onsen-modal__thumbnail {
  width: 92px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0.54;
  background: #000;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.onsen-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onsen-modal__thumbnail.is-active {
  border-color: #d8c07e;
  opacity: 1;
}


/* ---------------------------------------------------------
   Modal Details
--------------------------------------------------------- */

.onsen-modal__details {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  padding: 76px 54px 60px;
  background:
    linear-gradient(
      135deg,
      rgba(7, 9, 13, 0.99),
      rgba(9, 11, 15, 0.96)
    );
}

.onsen-modal__eyebrow {
  margin: 0 0 15px;
  color: #d8c07e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.onsen-modal__title {
  margin: 0 0 24px;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.onsen-modal__lead {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    serif;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.onsen-modal__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.onsen-modal__facilities {
  margin-top: 42px;
}

.onsen-modal__subheading {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.onsen-modal__facility-list {
  margin: 0;
}

.onsen-modal__facility-list > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.onsen-modal__facility-list dt {
  color: #d8c07e;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.onsen-modal__facility-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.8;
}

.onsen-modal__notice {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.onsen-modal__notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.onsen-modal__notice p + p {
  margin-top: 5px;
}


/* ---------------------------------------------------------
   Close
--------------------------------------------------------- */

.onsen-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.onsen-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: #fff;
}

.onsen-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.onsen-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* =========================================================
   ONSEN responsive
========================================================= */

@media (max-width: 1100px) {

  .onsen__inner {
    width: min(100% - 48px, 960px);
    padding-top: 130px;
  }

  .onsen-card__button {
    min-height: 500px;
  }

  .onsen-card__content {
    padding: 34px 32px;
  }

  .onsen-lounge {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .onsen-lounge__content {
    padding: 42px 34px;
  }

  .onsen-modal {
    padding: 24px;
  }

  .onsen-modal__body {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .onsen-modal__details {
    padding: 70px 38px 50px;
  }

}


@media (max-width: 820px) {

  .onsen {
    min-height: auto;
  }

  .onsen__inner {
    width: calc(100% - 40px);
    padding: 110px 0 100px;
  }


  .onsen__baths {
    gap: 16px;
  }

  .onsen-card__button {
    min-height: 430px;
  }

  .onsen-card__content {
    padding: 28px 24px;
  }

  .onsen-card__name {
    font-size: 30px;
  }

  .onsen-lounge {
    grid-template-columns: 1fr;
  }

  .onsen-lounge__image img {
    min-height: 360px;
    max-height: 430px;
  }

  .onsen-modal {
    padding: 18px;
  }

  .onsen-modal__panel {
    width: 100%;
    height: 92vh;
    overflow-y: auto;
  }

  .onsen-modal__body {
    display: block;
    height: auto;
  }

  .onsen-modal__gallery {
    height: 52vh;
  }

  .onsen-modal__details {
    height: auto;
    overflow: visible;
  }

}


@media (max-width: 600px) {

  .onsen__inner {
    width: calc(100% - 32px);
    padding: 96px 0 80px;
  }

  .onsen__heading {
    gap: 18px;
  }

  .onsen__title {
    font-size: 36px;
  }

  .onsen__lead {
    font-size: 30px;
    line-height: 1.6;
  }

  .onsen__text {
    font-size: 12px;
    line-height: 2;
  }

  .onsen__baths {
    grid-template-columns: 1fr;
  }

  .onsen-card__button {
    min-height: 460px;
  }

  .onsen-card__content {
    padding: 28px 24px 30px;
  }

  .onsen-card__name {
    font-size: 32px;
  }

  .onsen-lounge__image img {
    min-height: 260px;
  }

  .onsen-lounge__content {
    padding: 34px 24px 38px;
  }

  .onsen-lounge__title {
    font-size: 25px;
  }

  .onsen-lounge__text {
    font-size: 12px;
  }

  .onsen__scene {
    gap: 12px;
    margin-top: 30px;
  }

  .onsen__scene-line {
    width: 38px;
  }

  .onsen__scene-text {
    font-size: 8px;
    letter-spacing: 0.16em;
  }


  /* Modal */

  .onsen-modal {
    padding: 0;
  }

  .onsen-modal__panel {
    width: 100%;
    height: 100dvh;
    border: 0;
  }

  .onsen-modal__gallery {
    height: 44vh;
    min-height: 330px;
  }

  .onsen-modal__arrow {
    width: 42px;
    height: 42px;
  }

  .onsen-modal__arrow--prev {
    left: 14px;
  }

  .onsen-modal__arrow--next {
    right: 14px;
  }

  .onsen-modal__counter {
    right: 18px;
    bottom: 82px;
  }

  .onsen-modal__thumbnails {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 5px;
    overflow-x: auto;
  }

  .onsen-modal__thumbnail {
    flex: 0 0 68px;
    width: 68px;
    height: 44px;
  }

  .onsen-modal__details {
    padding: 42px 24px 60px;
  }

  .onsen-modal__title {
    font-size: 34px;
  }

  .onsen-modal__lead {
    font-size: 17px;
  }

  .onsen-modal__facility-list > div {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .onsen-modal__close {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

}

/* ======================================================================
   CANONICAL SHARED COMPONENTS
   2026-08-10
   ----------------------------------------------------------------------
   ここから下を「共通仕様の正」とする。
   各セクション／各モーダルで同じ見た目・動きを変更するときは、
   原則としてこの共通コードを修正する。
====================================================================== */

/* =========================================================
   Shared section intro
   CONCEPT / HOSPITALITY / ROOMS / CUISINE / ONSEN
========================================================= */

.section-intro {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.75fr)
    minmax(420px, 1.25fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);

  width: 100%;
  margin-bottom: clamp(64px, 7vw, 108px);
}

.section-intro__heading {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.section-intro__number {
  margin: 3px 0 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.section-intro__en {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.32em;
}

.section-intro__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.68);
}

.section-intro__message {
  max-width: 650px;
}

.section-intro__lead {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 51px);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.16em;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.72);
}

.section-intro__text {
  margin: clamp(30px, 3.5vw, 48px) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 2.3;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}


/* =========================================================
   Shared section intro - Tablet
========================================================= */

@media (max-width: 1024px) {

  .section-intro {
    grid-template-columns:
      minmax(210px, 0.72fr)
      minmax(370px, 1.28fr);

    gap: 52px;
  }

  .section-intro__text br {
    display: none;
  }

  /* タブレット時のメニュージャンプ位置を統一 */
.concept__inner,
.hospitality__inner,
.rooms__inner,
.cuisine__inner,
.onsen__inner,
.facilities__inner {
  scroll-margin-top: 0;
}

}


/* =========================================================
   Shared section intro - Smartphone
========================================================= */

@media (max-width: 767px) {

  .section-intro {
    display: block;
    width: 100%;
    margin-bottom: 46px;
  }

  .section-intro__heading {
    gap: 15px;
  }

  .section-intro__number {
    margin-top: 4px;
    font-size: 9px;
  }

  .section-intro__en {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .section-intro__title {
    font-size: clamp(29px, 9vw, 40px);
  }

  .section-intro__message {
    max-width: none;
    margin-top: 38px;
  }

  .section-intro__lead {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.65;
  }

  .section-intro__text {
    margin-top: 25px;
    font-size: 13px;
    line-height: 2.1;
  }

  .section-intro__text br {
    display: none;
  }

}

@media (max-width: 767px) {

  .concept .section-intro {
    width: auto;
    margin-right: 24px;
    margin-left: 24px;
  }

}

/* =========================================================
   Shared scroll stage
   背景 → コンテンツ → 背景 の順にスクロールさせる共通構造
========================================================= */

.section-stage {
  --section-stage-wait: 100svh;
  position: relative;
  display: flow-root;
  overflow: clip;
  background: var(--color-night);
}

.section-stage__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.section-stage__background-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.section-stage__background-sticky .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/*
  前に1画面＝背景動画だけを見せる。
  コンテンツ自身は通常スクロールで下から入り、上へ抜ける。
  後ろにも1画面を持たせることで、最後に背景動画だけが残り、
  セクション終端で背景そのものが上へ流れていく。
*/
.section-stage__content {
  margin-top: var(--section-stage-wait) !important;
  margin-bottom: var(--section-stage-wait) !important;
}

/* hospitality は既存の左右余白を維持 */
.hospitality.section-stage {
  padding-inline: 7vw;
}

/* rooms / cuisine は既存の左右余白を維持 */
.rooms.section-stage,
.cuisine.section-stage {
  padding-inline: 6vw;
}

/* onsen も他セクションと同じスクロール演出に統一 */
.onsen.section-stage {
  min-height: auto;
}


/* =========================================================
   Shared detail modal
   客室・料理・温泉モーダル共通
========================================================= */

body.is-room-modal-open,
body.is-cuisine-modal-open,
body.is-onsen-modal-open {
  overflow: hidden;
}

.detail-modal {
  position: fixed;
  z-index: 3100;
  inset: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transition:
    visibility 0s linear 0.55s,
    opacity 0.45s ease;
}

.detail-modal.is-active,
.detail-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

/* 背景動画の下地。クロスフェード中の透け防止 */
.detail-modal__video-base {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #000;
  pointer-events: none;
}

.detail-modal__video-background {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.detail-modal__video-background .background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-modal__video-background .background-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    brightness(0.58)
    saturate(0.76)
    blur(2px);
  transform: scale(1.035);
}

.detail-modal__backdrop {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.detail-modal__panel {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 56px), 1480px);
  max-height: calc(100svh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.detail-modal.is-active .detail-modal__panel,
.detail-modal.is-open .detail-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.detail-modal__body {
  display: grid;
  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(370px, 0.78fr);
  height: calc(100svh - 56px);
  max-height: calc(100svh - 56px);
  min-height: 0;
}

/* 閉じる */
.detail-modal__close {
  position: absolute;
  z-index: 6;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: #fff;
  background: rgba(3, 7, 15, 0.62);
  cursor: pointer;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.detail-modal__close:hover {
  color: var(--color-night);
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.detail-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.detail-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.detail-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 写真。画像は横幅100％、16:9を維持 */
.detail-modal__gallery {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  background: transparent;
}

.detail-modal__main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: transparent;
}

.detail-modal__main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 -100px 100px -90px rgba(0, 0, 0, 0.9);
}

.detail-modal__main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    opacity 0.45s ease,
    transform 0.7s ease;
}

.detail-modal__main-image img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

/* 前後矢印 */
.detail-modal__arrow {
  position: absolute;
  z-index: 4;
  top: min(25vw, 340px);
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  color: #fff;
  background: rgba(3, 7, 15, 0.52);
  cursor: pointer;
  place-items: center;
  transform: none;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.detail-modal__arrow:hover {
  color: var(--color-night);
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.detail-modal__arrow--prev {
  left: 22px;
}

.detail-modal__arrow--next {
  right: 22px;
}

.detail-modal__counter {
  position: absolute;
  z-index: 4;
  top: min(49vw, 650px);
  right: 28px;
  bottom: auto;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* サムネイルは画像の下に通常フローで配置 */
.detail-modal__thumbnails {
  position: static;
  display: grid;
  grid-template-columns: repeat(6, minmax(78px, 1fr));
  gap: 9px;
  padding: 16px;
}

.room-modal__thumbnail,
.cuisine-modal__thumbnail,
.onsen-modal__thumbnail {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
  opacity: 0.58;
  appearance: none;
  transition:
    opacity 0.35s ease,
    border-color 0.35s ease;
}

.room-modal__thumbnail:hover,
.room-modal__thumbnail.is-active,
.cuisine-modal__thumbnail:hover,
.cuisine-modal__thumbnail.is-active,
.onsen-modal__thumbnail:hover,
.onsen-modal__thumbnail.is-active {
  border-color: var(--color-gold);
  opacity: 1;
}

.room-modal__thumbnail img,
.cuisine-modal__thumbnail img,
.onsen-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右詳細欄 */
.detail-modal__details {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    clamp(66px, 6vw, 96px)
    clamp(34px, 4vw, 62px)
    72px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 15, 0) 0%,
      rgba(3, 7, 15, 0.12) 8%,
      rgba(3, 7, 15, 0.4) 22%,
      rgba(3, 7, 15, 0.7) 48%,
      rgba(3, 7, 15, 0.9) 100%
    );
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color:
    rgba(217, 193, 139, 0.55)
    rgba(255, 255, 255, 0.06);
}

.detail-modal__details::-webkit-scrollbar {
  width: 6px;
}

.detail-modal__details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.detail-modal__details::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 193, 139, 0.5);
}

/* =========================================================
   Shared detail modal responsive
========================================================= */

@media (max-width: 1024px) {
  .detail-modal__body {
    grid-template-columns:
      minmax(0, 1.2fr)
      minmax(330px, 0.8fr);
  }

  .detail-modal__details {
    padding:
      70px
      34px
      54px;
  }
}

@media (max-width: 767px) {
  .detail-modal {
    align-items: end;
  }

  .detail-modal__panel {
    width: 100%;
    max-height: 94svh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
  }

  .detail-modal__body {
    display: block;
    height: auto;
    max-height: 94svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .detail-modal__gallery {
    height: auto;
    overflow: visible;
  }

  .detail-modal__main-image {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .detail-modal__close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .detail-modal__arrow {
    top: 120px;
    width: 44px;
    height: 44px;
  }

  .detail-modal__arrow--prev {
    left: 12px;
  }

  .detail-modal__arrow--next {
    right: 12px;
  }

  .detail-modal__counter {
    position: static;
    margin: 12px 18px 0;
    font-size: 10px;
    text-align: right;
  }

  .detail-modal__thumbnails {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    padding: 13px 18px 10px;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }

  .room-modal__thumbnail,
  .cuisine-modal__thumbnail,
  .onsen-modal__thumbnail {
    flex: 0 0 105px;
  }

  .detail-modal__details {
    height: auto;
    overflow: visible;
    padding:
      42px
      22px
      52px;
    background:
      linear-gradient(
        180deg,
        rgba(3, 7, 15, 0) 0%,
        rgba(3, 7, 15, 0.12) 7%,
        rgba(3, 7, 15, 0.4) 17%,
        rgba(3, 7, 15, 0.72) 34%,
        rgba(3, 7, 15, 0.92) 100%
      );
  }
}

@media (prefers-reduced-motion: reduce) {
  .detail-modal,
  .detail-modal__panel,
  .detail-modal__main-image img,
  .detail-modal__arrow,
  .detail-modal__close {
    transition: none !important;
  }
}

/* =========================================================
   06 Facilities
   館内施設
========================================================= */

.facilities {
  position: relative;
}


/* ---------------------------------------------------------
   Background
--------------------------------------------------------- */

.facilities__background {
  position: absolute;
  inset: 0;
}

.facilities__background-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.facilities__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 15, 0.52) 0%,
      rgba(3, 7, 15, 0.2) 48%,
      rgba(3, 7, 15, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 7, 15, 0.18) 0%,
      rgba(3, 7, 15, 0.04) 42%,
      rgba(3, 7, 15, 0.62) 100%
    );
}


/* ---------------------------------------------------------
   Inner
--------------------------------------------------------- */

.facilities__inner {
  position: relative;
  z-index: 3;
  width: min(88%, 1500px);
  margin-right: auto;
  margin-left: auto;

  /* メニューからのジャンプ位置調整 */
  scroll-margin-top: 100px;
}


/* ---------------------------------------------------------
   Facilities grid
--------------------------------------------------------- */

.facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:
    clamp(34px, 4vw, 64px)
    clamp(22px, 2.4vw, 38px);
  margin-top: clamp(60px, 7vw, 105px);
}


/* ---------------------------------------------------------
   Facility card
--------------------------------------------------------- */

.facility-card {
  min-width: 0;
}

.facility-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #060910;
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.facility-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s cubic-bezier(.22, .61, .36, 1),
    filter 0.7s ease;
}


/* ---------------------------------------------------------
   Card text
--------------------------------------------------------- */

.facility-card__body {
  padding: 24px 3px 0;
}

.facility-card__en {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.24em;
}

.facility-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.facility-card__text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.facility-card__line {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.26);
  transition:
    background-color 0.4s ease,
    transform 0.4s ease;
  transform-origin: left center;
}


/* ---------------------------------------------------------
   Hover
--------------------------------------------------------- */

@media (hover: hover) {

  .facility-card:hover .facility-card__image {
    border-color: rgba(217, 193, 139, 0.76);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.34),
      inset 0 0 0 1px rgba(217, 193, 139, 0.08);
    transform: translateY(-5px);
  }

  .facility-card:hover .facility-card__image img {
    transform: scale(1.045);
    filter: brightness(1.05);
  }

  .facility-card:hover .facility-card__title {
    color: var(--color-gold);
  }

  .facility-card:hover .facility-card__line {
    background: var(--color-gold);
    transform: scaleX(0.82);
  }

}

.facility-card__title {
  transition: color 0.4s ease;
}


/* ---------------------------------------------------------
   Scene
--------------------------------------------------------- */

.facilities__scene {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  margin-top: clamp(54px, 6vw, 88px);
}

.facilities__scene-line {
  width: 84px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.facilities__scene-text {
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.24em;
}


/* =========================================================
   Facilities - Tablet
========================================================= */

@media (max-width: 1024px) {

  .facilities__inner {
    width: calc(100% - 64px);
  }

  .facilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 22px;
    margin-top: 58px;
  }

  .facility-card__body {
    padding-top: 20px;
  }

  .facility-card__title {
    font-size: 27px;
  }

  .facility-card__text {
    font-size: 12px;
    line-height: 1.95;
  }

  .facilities__scene {
    margin-top: 54px;
  }

}


/* =========================================================
   Facilities - Smartphone
========================================================= */

@media (max-width: 767px) {

  .facilities__inner {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .facilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 12px;
    margin-top: 46px;
  }

  .facility-card__image {
    aspect-ratio: 1 / 1;
  }

  .facility-card__body {
    padding-top: 14px;
  }

  .facility-card__en {
    margin-bottom: 8px;
    font-size: 7px;
    letter-spacing: 0.16em;
  }

  .facility-card__title {
    font-size: clamp(18px, 5.4vw, 25px);
    letter-spacing: 0.1em;
  }

  .facility-card__text {
    margin-top: 11px;
    font-size: 10px;
    line-height: 1.85;
    letter-spacing: 0.04em;
  }

  .facility-card__line {
    margin-top: 16px;
  }

  .facilities__scene {
    gap: 12px;
    margin-top: 42px;
  }

  .facilities__scene-line {
    width: 44px;
  }

  .facilities__scene-text {
    font-size: 7px;
    letter-spacing: 0.16em;
  }

}


/* =========================================================
   07 Reservation Page
========================================================= */

.page-reserve {
  background:
    linear-gradient(
      rgba(3, 7, 15, 0.76),
      rgba(3, 7, 15, 0.86)
    ),
    url("../img/reserve/reserve-bg.webp")
    center center / cover
    fixed
    no-repeat;

  background-color: var(--color-night);
}


/* =========================================================
   Reservation Hero
========================================================= */

.reserve-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reserve-hero__background {
  position: absolute;
  inset: 0;
  background: transparent;
}

.reserve-hero__background::before,
.reserve-hero__background::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    78px 42px 0 rgba(255, 255, 255, 0.32),
    164px -18px 0 rgba(255, 255, 255, 0.44),
    248px 78px 0 rgba(255, 255, 255, 0.22),
    344px 10px 0 rgba(255, 255, 255, 0.36),
    458px 92px 0 rgba(255, 255, 255, 0.18);
}

.reserve-hero__background::before {
  top: 18%;
  left: 46%;
  width: 2px;
  height: 2px;
}

.reserve-hero__background::after {
  top: 51%;
  left: 63%;
  width: 1px;
  height: 1px;
  opacity: 0.6;
  transform: scale(0.8);
}

.reserve-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 5, 12, 0.88) 0%,
      rgba(2, 5, 12, 0.54) 42%,
      rgba(2, 5, 12, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 5, 12, 0.22) 0%,
      rgba(2, 5, 12, 0.04) 45%,
      rgba(2, 5, 12, 0.7) 100%
    );
}

.reserve-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(280px, 0.78fr)
    minmax(430px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
  width: min(calc(100% - 12vw), 1500px);
  min-height: 72svh;
  margin-inline: auto;
  padding:
    calc(var(--header-height) + 60px)
    0
    80px;
}

.reserve-hero__heading {
  display: flex;
  flex-direction: column;
}

.reserve-hero__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.reserve-hero__number {
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.reserve-hero__en {
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
}

.reserve-hero__title {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.7);
}

.reserve-hero__message {
  max-width: 720px;
}

.reserve-hero__lead {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.16em;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.72);
}

.reserve-hero__text {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.25;
  letter-spacing: 0.09em;
}


/* =========================================================
   Reservation
========================================================= */

.reservation {
  position: relative;
  padding:
    clamp(90px, 10vw, 150px)
    0
    clamp(120px, 12vw, 180px);
}

.reservation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72vw, 1100px);
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(217, 193, 139, 0.42),
      transparent
    );
  transform: translateX(-50%);
}

.reservation__inner {
  width: min(calc(100% - 12vw), 1180px);
  margin-inline: auto;
}

.reservation__intro {
  margin-bottom: clamp(54px, 7vw, 90px);
  text-align: center;
}

.reservation__en {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
}

.reservation__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0.15em;
}

.reservation__note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.reservation__required-mark {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  color: var(--color-night);
  background: var(--color-gold);
  font-size: 9px;
  letter-spacing: 0.12em;
}


/* =========================================================
   Reservation Form
========================================================= */

.reservation-form {
  width: 100%;
}

.reservation-form__section {
  margin: 0;
  padding: 0;
  border: 0;
}

.reservation-form__section + .reservation-form__section {
  margin-top: clamp(72px, 8vw, 110px);
}

.reservation-form__section-title {
  width: 100%;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(217, 193, 139, 0.55);
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.reservation-form__row {
  display: grid;
  grid-template-columns:
    minmax(200px, 0.38fr)
    minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.reservation-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.reservation-form__required,
.reservation-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 3px 7px;
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.reservation-form__required {
  color: var(--color-night);
  background: var(--color-gold);
}

.reservation-form__optional {
  color: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.reservation-form__control {
  min-width: 0;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  color: #fff;
  background: rgba(3, 7, 15, 0.64);
  font: inherit;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  appearance: none;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.reservation-form textarea {
  min-height: 180px;
  resize: vertical;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.reservation-form input:hover,
.reservation-form select:hover,
.reservation-form textarea:hover {
  border-color: rgba(217, 193, 139, 0.5);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--color-gold);
  background: rgba(7, 12, 22, 0.9);
  box-shadow:
    0 0 0 1px rgba(217, 193, 139, 0.12),
    0 10px 34px rgba(0, 0, 0, 0.2);
}

.reservation-form select {
  padding-right: 48px;
  cursor: pointer;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      rgba(217, 193, 139, 0.8) 50%
    ),
    linear-gradient(
      135deg,
      rgba(217, 193, 139, 0.8) 50%,
      transparent 50%
    );
  background-position:
    calc(100% - 19px) 24px,
    calc(100% - 13px) 24px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.reservation-form select option {
  color: #fff;
  background: #07101c;
}


/* =========================================================
   Guest Count
========================================================= */

.reservation-form__guest-count {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reservation-form__guest-count label {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
}

.reservation-form__guest-count label > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.1em;
}


/* =========================================================
   Zodiac
========================================================= */

.reservation-form__row--zodiac {
  padding-top: 42px;
  padding-bottom: 48px;
}

.reservation-zodiac {
  padding:
    clamp(24px, 3vw, 38px)
    clamp(22px, 3vw, 36px);
  border: 1px solid rgba(217, 193, 139, 0.28);
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(78, 102, 154, 0.18),
      transparent 34%
    ),
    rgba(4, 8, 16, 0.56);
}

.reservation-zodiac__intro {
  position: relative;
  padding-bottom: 28px;
}

.reservation-zodiac__intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(217, 193, 139, 0.5),
      rgba(217, 193, 139, 0.08)
    );
}

.reservation-zodiac__catch {
  margin: 0;
  color: var(--color-gold);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.reservation-zodiac__text {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.07em;
}

.reservation-zodiac__note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.reservation-zodiac__guests {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 28px;
}

.reservation-zodiac__guest {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
}

.reservation-zodiac__guest-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.reservation-zodiac__select-wrap {
  position: relative;
}

.reservation-zodiac__symbol {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  color: rgba(217, 193, 139, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.reservation-zodiac__select {
  padding-left: 45px !important;
}

.reservation-zodiac__guest.is-selected .reservation-zodiac__symbol {
  color: var(--color-gold);
  transform:
    translateY(-50%)
    scale(1.14);
}


/* =========================================================
   Validation
========================================================= */

.reservation-form input.is-error,
.reservation-form select.is-error,
.reservation-form textarea.is-error {
  border-color: rgba(205, 108, 108, 0.9);
  background: rgba(54, 13, 18, 0.28);
}

.reservation-form__error {
  margin: 10px 0 0;
  color: rgba(236, 158, 158, 0.95);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}


/* =========================================================
   Demo Notice
========================================================= */

.reservation-form__demo {
  margin-top: 42px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.reservation-form__demo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.07em;
}


/* =========================================================
   Submit Button
========================================================= */

.reservation-form__submit {
  display: flex;
  justify-content: center;
  margin-top: clamp(46px, 6vw, 74px);
}

.reservation-form__submit-button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "en arrow"
    "ja arrow";
  align-items: center;
  gap: 3px 44px;
  width: min(100%, 420px);
  min-height: 92px;
  padding: 20px 28px;
  overflow: hidden;
  border: 1px solid var(--color-gold);
  color: var(--color-night);
  background: var(--color-gold);
  text-align: left;
  cursor: pointer;
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(.22, .61, .36, 1);
}

.reservation-form__submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition:
    transform 0.5s cubic-bezier(.77, 0, .18, 1);
}

.reservation-form__submit-button:hover {
  transform: translateY(-4px);
}

.reservation-form__submit-button:hover::before {
  transform: translateX(0);
}

.reservation-form__submit-button > span {
  position: relative;
  z-index: 1;
}

.reservation-form__submit-en {
  grid-area: en;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.reservation-form__submit-ja {
  grid-area: ja;
  font-size: 15px;
  letter-spacing: 0.14em;
}

.reservation-form__submit-arrow {
  grid-area: arrow;
  font-size: 21px;
}


/* =========================================================
   Send Complete
========================================================= */

.reservation-complete {
  width: min(100%, 850px);
  margin-inline: auto;
  padding:
    clamp(70px, 8vw, 110px)
    clamp(32px, 7vw, 90px);
  border: 1px solid rgba(217, 193, 139, 0.32);
  background:
    radial-gradient(
      circle at center top,
      rgba(64, 87, 130, 0.18),
      transparent 42%
    ),
    rgba(3, 7, 14, 0.62);
  text-align: center;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.3);
}

.reservation-complete[hidden] {
  display: none;
}

.reservation-complete__mark {
  color: var(--color-gold);
  font-size: 35px;
  line-height: 1;
}

.reservation-complete__en {
  margin: 22px 0 0;
  color: var(--color-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
}

.reservation-complete__title {
  margin: 25px 0 0;
  font-size: clamp(29px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.14em;
}

.reservation-complete__text {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.reservation-complete__demo {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.reservation-complete__back {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 250px);
  margin: 46px auto 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: 0.14em;
  transition:
    color 0.35s ease,
    border-color 0.35s ease;
}

.reservation-complete__back:hover {
  color: #fff;
  border-color: #fff;
}


/* =========================================================
   Reservation - Tablet
========================================================= */

@media (max-width: 1024px) {

  .reserve-hero {
    min-height: 64svh;
  }

  .reserve-hero__inner {
    grid-template-columns:
      minmax(210px, 0.72fr)
      minmax(360px, 1.28fr);
    gap: 48px;
    width: calc(100% - 64px);
    min-height: 64svh;
    padding:
      calc(var(--header-height) + 48px)
      0
      70px;
  }

  .reserve-hero__title {
    font-size: 48px;
  }

  .reserve-hero__lead {
    font-size: 35px;
  }

  .reservation__inner {
    width: calc(100% - 64px);
  }

  .reservation-form__row {
    grid-template-columns:
      minmax(170px, 0.34fr)
      minmax(0, 1fr);
    gap: 34px;
  }

  .reservation-zodiac__guests {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   Reservation - Smartphone
========================================================= */

@media (max-width: 767px) {

  .reserve-hero {
    min-height: auto;
  }

  .reserve-hero__inner {
    display: block;
    width: auto;
    min-height: auto;
    margin-right: 20px;
    margin-left: 20px;
    padding:
      calc(var(--header-height) + 65px)
      0
      76px;
  }

  .reserve-hero__label {
    gap: 14px;
    margin-bottom: 12px;
  }

  .reserve-hero__number {
    font-size: 9px;
  }

  .reserve-hero__en {
    font-size: 8px;
  }

  .reserve-hero__title {
    font-size: clamp(32px, 10vw, 43px);
  }

  .reserve-hero__message {
    margin-top: 48px;
  }

  .reserve-hero__lead {
    font-size: clamp(26px, 7.7vw, 34px);
    line-height: 1.7;
  }

  .reserve-hero__text {
    margin-top: 28px;
    font-size: 13px;
    line-height: 2.1;
  }

  .reserve-hero__text br {
    display: none;
  }

  .reservation {
    padding:
      80px
      0
      110px;
  }

  .reservation__inner {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .reservation__intro {
    margin-bottom: 54px;
  }

  .reservation__title {
    font-size: 32px;
  }

  .reservation-form__section + .reservation-form__section {
    margin-top: 72px;
  }

  .reservation-form__section-title {
    padding-bottom: 18px;
    font-size: 22px;
  }

  .reservation-form__row {
    display: block;
    padding: 28px 0;
  }

  .reservation-form__label {
    padding-top: 0;
    padding-bottom: 15px;
    font-size: 13px;
  }

  .reservation-form input,
  .reservation-form select,
  .reservation-form textarea {
    min-height: 52px;
    font-size: 13px;
  }

  .reservation-form__guest-count {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reservation-form__guest-count label {
    grid-template-columns: 62px 1fr;
  }

  .reservation-form__row--zodiac {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .reservation-zodiac {
    padding: 24px 18px;
  }

  .reservation-zodiac__catch {
    font-size: 18px;
  }

  .reservation-zodiac__guests {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .reservation-zodiac__guest {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }

  .reservation-zodiac__guest-label {
    font-size: 10px;
  }

  .reservation-form__demo {
    margin-top: 32px;
    padding: 18px;
  }

  .reservation-form__submit {
    margin-top: 42px;
  }

  .reservation-form__submit-button {
    min-height: 82px;
    padding: 16px 20px;
    gap: 3px 20px;
  }

  .reservation-form__submit-ja {
    font-size: 14px;
  }

  .reservation-complete {
    padding:
      62px
      22px;
  }

  .reservation-complete__title {
    font-size: 28px;
  }

  .reservation-complete__text {
    font-size: 12px;
  }

  .reservation-complete__text br {
    display: none;
  }

}

/* =========================================================
   Reservation - Check-in Date
========================================================= */

.reservation-date {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.reservation-date__display {
  display: flex;
  align-items: center;
  width: 180px;
  min-height: 54px;
  padding: 14px 44px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(3, 7, 15, 0.64);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* 本物のdate inputは値保持専用。
   クリック判定は親の .reservation-date に任せる */
.page-reserve #checkinDate {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* カレンダーアイコン */
.reservation-date::after {
  content: "▣";
  position: absolute;
  top: 50%;
  left: 150px;
  color: rgba(217, 193, 139, 0.7);
  font-size: 11px;
  transform: translateY(-50%);
  pointer-events: none;
}

.reservation-date__weekday {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}


/* Smartphone */

@media (max-width: 767px) {

  .reservation-date__display {
    width: 170px;
    min-height: 52px;
    font-size: 13px;
  }

  .page-reserve #checkinDate {
    width: 170px;
    height: 52px;
  }

  .reservation-date::after {
    left: 141px;
  }

  .reservation-date__weekday {
    font-size: 13px;
  }

}

/* ==========================================
  Footer
========================================== */

.site-footer {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 120px 6vw 36px;
  color: var(--color-white);
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(129, 163, 214, 0.08),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #03070e 0%,
      #02050a 100%
    );
}


/* 上段
------------------------------------------ */

.site-footer__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-bottom: 80px;

  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* ブランド */

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: inline-block;
  width: clamp(190px, 19vw, 280px);
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__copy {
  margin-top: 38px;

  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.16em;
}


/* ナビゲーション */

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: 52px;
}

.site-footer__nav a {
  position: relative;

  display: flex;
  align-items: baseline;
  gap: 16px;

  padding: 17px 0;

  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.12em;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  transition:
    color 0.35s ease,
    padding-left 0.35s ease,
    border-color 0.35s ease;
}

.site-footer__nav a > span {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.site-footer__nav a::after {
  content: "→";

  position: absolute;
  top: 50%;
  right: 2px;

  font-size: 13px;
  opacity: 0;

  transform: translate(-8px, -50%);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

@media (hover: hover) {

  .site-footer__nav a:hover {
    padding-left: 8px;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .site-footer__nav a:hover::after {
    opacity: 0.65;
    transform: translate(0, -50%);
  }

}


/* 予約 */

.site-footer__nav .site-footer__reserve {
  color: var(--color-gold);
}

.site-footer__nav .site-footer__reserve::after {
  opacity: 0.65;
  transform: translate(0, -50%);
}


/* 下段
------------------------------------------ */

.site-footer__bottom {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-top: 32px;

  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "info legal"
    "copyright copyright";
  gap: 24px 50px;
}

.site-footer__info {
  grid-area: info;

  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.site-footer__legal {
  grid-area: legal;

  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  letter-spacing: 0.08em;

  transition: color 0.3s ease;
}

@media (hover: hover) {

  .site-footer__legal a:hover {
    color: rgba(255, 255, 255, 0.9);
  }

}

.site-footer__copyright {
  grid-area: copyright;

  padding-top: 22px;

  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-align: right;
}


/* ==========================================
  Footer / Tablet
========================================== */

@media (max-width: 1024px) {

  .site-footer {
    padding: 100px 6vw 32px;
  }

  .site-footer__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    padding-bottom: 64px;
  }

  .site-footer__nav {
    column-gap: 32px;
  }

  .site-footer__nav a {
    gap: 12px;
    font-size: 14px;
  }

}


/* ==========================================
  Footer / SP
========================================== */

@media (max-width: 767px) {

.site-footer {
  padding:
    64px
    24px
    calc(22px + env(safe-area-inset-bottom));
}

  .site-footer__inner {
    display: block;
    padding-bottom: 48px;
  }

.site-footer__brand {
  align-items: center;
  margin-bottom: 42px;
  text-align: center;
}

  .site-footer__logo {
    width: min(220px, 68vw);
  }

  .site-footer__copy {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.14em;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

.site-footer__nav a {
  min-height: 50px;
  padding: 14px 4px;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

  .site-footer__nav a::after {
    right: 4px;
  }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  gap: 18px;
}

  .site-footer__info {
    font-size: 10px;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .site-footer__legal a {
    font-size: 10px;
  }

.site-footer__copyright {
  padding-top: 12px;
  font-size: 8px;
  text-align: left;
}

}