/* =========================================================================
 * 大連スナック 公式サイト スタイルシート
 * 配色・質感は Claude Design のデザインを踏襲
 * ======================================================================= */

:root {
  --bg: #0D0D0D;
  --bg-alt: #101010;
  --bg-strip: #0F0F0F;
  --panel: #1A1A1A;
  --panel-hover: #1E1D1A;
  --gold: #C8A96A;
  --gold-light: #E6D2A6;
  --gold-grad: linear-gradient(135deg, #E2C88E, #C8A96A 55%, #AE8D4E);
  --text: #FFFFFF;
  --text-soft: #EDEDED;
  --text-mid: #BFBFBF;
  --text-dim: #A8A8A8;
  --text-faint: #9C9C9C;
  --text-mute: #8C8C8C;
  --line: rgba(255, 255, 255, .07);
  --line-gold: rgba(200, 169, 106, .42);
  --radius: 16px;
  --serif-en: 'Playfair Display', Georgia, serif;
  --serif-ja: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
section[id] { scroll-margin-top: 92px; }
::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2A2A2A; border-radius: 8px; }

@keyframes kb { 0% { transform: scale(1.04); } 100% { transform: scale(1.16); } }
@keyframes fl {
  0% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(9px); opacity: .35; }
  100% { transform: translateY(0); opacity: .9; }
}

/* ---- 共通レイアウト ---------------------------------------------------- */

.page { position: relative; width: 100%; background: var(--bg); overflow: hidden; }
.container { max-width: 1240px; margin: 0 auto; }

.section { position: relative; padding: clamp(76px, 11vw, 150px) clamp(20px, 5vw, 64px); }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.eyebrow--center { justify-content: center; }
.eyebrow__line { width: 44px; height: 1px; background: rgba(200, 169, 106, .8); }
.eyebrow--center .eyebrow__line { width: 36px; background: rgba(200, 169, 106, .6); }
.eyebrow__label {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: .42em;
  color: var(--gold);
}

.heading {
  margin: 0;
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.5;
  letter-spacing: .05em;
  text-wrap: pretty;
}

.section-lead {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 2.1;
  font-weight: 300;
}

.section-head { margin-bottom: clamp(38px, 5vw, 60px); }
.section-head--center { text-align: center; margin-bottom: clamp(40px, 6vw, 66px); }
.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 58px);
}
.section-head--split .side-note {
  margin: 0;
  max-width: 420px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 2.1;
  font-weight: 300;
}

.section-note {
  margin: 22px 0 0;
  font-size: 12px;
  color: #7A7A7A;
  letter-spacing: .08em;
  line-height: 2;
}

/* ---- ボタン ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 0;
  font-size: 14px;
  letter-spacing: .1em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}
.btn--lg { min-height: 60px; padding: 0 clamp(24px, 4vw, 40px); font-size: 15px; }
.btn--gold {
  background: var(--gold-grad);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 10px 34px rgba(200, 169, 106, .20);
}
.btn--gold:hover {
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 16px 52px rgba(200, 169, 106, .48);
}
.btn--ghost {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .20);
  color: var(--text);
  font-weight: 500;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(200, 169, 106, .6);
  color: var(--text);
  transform: translateY(-3px);
}
.btn--outline-gold {
  background: transparent;
  border: 1px solid rgba(200, 169, 106, .45);
  color: var(--gold-light);
}
.btn--outline-gold:hover { background: rgba(200, 169, 106, .12); color: var(--gold-light); }

.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--bg); }
.dot--gold { background: var(--gold); }

/* ---- ヘッダー ---------------------------------------------------------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 3.5vw, 48px);
  background: rgba(13, 13, 13, .45);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .4s ease, border-color .4s ease;
}
.header.is-scrolled {
  background: rgba(13, 13, 13, .88);
  border-bottom-color: rgba(200, 169, 106, .18);
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__en {
  font-family: var(--serif-en);
  font-size: clamp(18px, 2.4vw, 23px);
  letter-spacing: .16em;
  color: var(--text);
  line-height: 1;
}
.brand__divider {
  width: 1px; height: 20px;
  background: linear-gradient(180deg, transparent, rgba(200, 169, 106, .85), transparent);
}
.brand__ja {
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--text-mid);
  line-height: 1;
  padding-top: 2px;
}

.gnav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.gnav__link {
  font-size: 12.5px;
  letter-spacing: .16em;
  color: var(--text-soft);
  transition: color .3s ease;
}
.gnav__link:hover { color: var(--gold); }
.gnav__tel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  margin-left: 6px;
  border-radius: 14px;
  background: var(--gold-grad);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.gnav__tel:hover { color: var(--bg); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200, 169, 106, .45); }
.gnav__tel .dot { width: 6px; height: 6px; }

.header__mobile { display: none; align-items: center; gap: 10px; }
.header__tel-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(200, 169, 106, .45);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .06em;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: #fff; transition: transform .3s ease; }

@media (max-width: 980px) {
  .gnav { display: none; }
  .header__mobile { display: flex; }
}

/* ---- モバイルメニュー -------------------------------------------------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__close-row { display: flex; justify-content: flex-end; }
.mobile-nav__close {
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mobile-nav__links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 17px;
  letter-spacing: .1em;
}
.mobile-nav__links a i {
  font-style: normal;
  font-family: var(--serif-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .2em;
}
.mobile-nav__cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 24px; }
.mobile-nav__hours {
  margin: 6px 0 2px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--text-mute);
}

/* ---- ヒーロー ---------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; top: -10%; left: 0; right: 0; bottom: -10%; will-change: transform; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kb 26s ease-in-out infinite alternate;
}
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,.82) 0%, rgba(13,13,13,.30) 34%, rgba(13,13,13,.72) 74%, #0D0D0D 100%); }
.hero__glow { position: absolute; inset: 0; background: radial-gradient(120% 70% at 50% 100%, rgba(200,169,106,.10) 0%, transparent 60%); }
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 64px) clamp(110px, 13vh, 140px);
}
.hero__place { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero__place-line { width: clamp(28px, 5vw, 56px); height: 1px; background: rgba(200, 169, 106, .8); }
.hero__place-label { font-family: var(--serif-en); font-size: 11px; letter-spacing: .42em; color: var(--gold); }
.hero__en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(20px, 3.2vw, 34px);
  color: rgba(255, 255, 255, .72);
  margin: 0 0 14px;
  letter-spacing: .04em;
}
.hero__title {
  margin: 0;
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: clamp(30px, 6.2vw, 66px);
  line-height: 1.42;
  letter-spacing: .04em;
  text-wrap: pretty;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}
.hero__lead {
  max-width: 540px;
  margin: 26px 0 0;
  color: #D6D6D6;
  font-size: clamp(13.5px, 1.6vw, 16px);
  line-height: 2.1;
  font-weight: 300;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(30px, 5vh, 46px); }
.hero__access-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 24px;
  color: var(--text-mid);
  font-size: 13.5px;
  letter-spacing: .14em;
  transition: color .3s ease;
}
.hero__access-link:hover { color: var(--gold); }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-label { font-family: var(--serif-en); font-size: 9px; letter-spacing: .34em; color: rgba(255,255,255,.45); }
.hero__scroll-line {
  display: block;
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(200,169,106,.9), transparent);
  animation: fl 2.6s ease-in-out infinite;
}

/* ---- 基本情報ストリップ ------------------------------------------------ */

.info-strip {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: var(--bg-strip);
}
.info-strip__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.info-strip__cell { padding: 26px 0 26px clamp(0px, 2vw, 28px); border-right: 1px solid rgba(255, 255, 255, .06); }
.info-strip__cell:first-child { padding-left: 0; }
.info-strip__cell:last-child { border-right: 0; }
.info-strip__label {
  margin: 0 0 7px;
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
}
.info-strip__value { margin: 0; font-size: 15px; letter-spacing: .06em; color: var(--text-soft); }
.info-strip__value a { color: var(--text-soft); }
.info-strip__value a:hover { color: var(--gold); }
.info-strip__small { font-size: 11px; color: var(--text-mid); }

/* ---- カード類 ---------------------------------------------------------- */

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(64px, 9vw, 110px);
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  transition: border-color .4s ease, background .4s ease;
}
.feature-card:hover { border-color: var(--line-gold); background: var(--panel-hover); }
.feature-card h3 { margin: 0 0 12px; font-size: 16.5px; font-weight: 500; letter-spacing: .08em; }
.feature-card p { margin: 0; color: var(--text-dim); font-size: 13.5px; line-height: 2; font-weight: 300; }

.icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, .45);
  margin-bottom: 22px;
}
.icon-ring i { font-style: normal; display: block; }
.i-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.i-circle { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--gold); }
.i-diamond { width: 12px; height: 12px; background: var(--gold); transform: rotate(45deg); }
.i-bar { width: 6px; height: 16px; border-radius: 3px; background: var(--gold); }
.i-square { width: 16px; height: 16px; border: 1px solid var(--gold); border-radius: 4px; }
.i-pair { display: flex; gap: 3px; }
.i-pair b { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.i-pair b + b { background: rgba(200, 169, 106, .5); }
.i-trio { display: flex; gap: 2px; }
.i-trio b { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---- ABOUT ------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-grid .heading { margin-bottom: 28px; line-height: 1.6; }
.about-copy p {
  margin: 0 0 20px;
  color: var(--text-mid);
  font-size: clamp(13.5px, 1.5vw, 15.5px);
  line-height: 2.25;
  font-weight: 300;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-visual { position: relative; }
.about-visual__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.about-visual__frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: brightness(.48) contrast(1.08) saturate(.85); }
.about-visual__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(13,13,13,.55) 100%); pointer-events: none; }
.about-visual__badge {
  position: absolute;
  right: -6px; bottom: -22px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: rgba(26, 26, 26, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 169, 106, .28);
}
.about-visual__badge-en { margin: 0; font-family: var(--serif-en); font-size: 11px; letter-spacing: .28em; color: var(--gold); }
.about-visual__badge-ja { margin: 6px 0 0; font-size: 13px; color: var(--text-soft); letter-spacing: .06em; }

/* ---- ギャラリー --------------------------------------------------------- */

.section--gallery { background: linear-gradient(180deg, #0D0D0D 0%, #101010 50%, #0D0D0D 100%); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s ease;
  filter: brightness(.48) contrast(1.08) saturate(.85);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.6) contrast(1.05) saturate(.9); }
.gallery-item__caption {
  position: absolute;
  left: 18px; bottom: 16px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* ---- 画像プレースホルダー（画像未配置でも崩れない） --------------------- */

.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #141414;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(200, 169, 106, .14) 0%, transparent 60%),
    linear-gradient(160deg, #191817 0%, #121212 60%, #161512 100%);
}
.ph::after {
  content: attr(data-ph-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 12px;
  letter-spacing: .12em;
  color: #6E6E6E;
  white-space: pre-line;
}
.ph > img { position: relative; z-index: 1; }
.ph.is-broken > img { display: none; }

/* 画像が読み込めない場合も枠の高さを維持する */
.gallery-item.ph { aspect-ratio: 1 / 1; }
.cast-card__photo.ph { aspect-ratio: 3 / 4; }
.about-visual__frame.ph { aspect-ratio: 16 / 10; }
.recruit-photo.ph { aspect-ratio: 16 / 10; }

/* ---- 料金 --------------------------------------------------------------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.price-card {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 40px);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .4s ease;
  overflow: hidden;
}
.price-card:hover { border-color: rgba(200, 169, 106, .34); }
.price-card--featured {
  background: linear-gradient(160deg, #1F1C15 0%, #1A1A1A 60%);
  border-color: var(--line-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
.price-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(200, 169, 106, .14);
  border: 1px solid rgba(200, 169, 106, .4);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--gold-light);
}
.price-card__label { margin: 0 0 6px; font-family: var(--serif-en); font-size: 11px; letter-spacing: .3em; color: var(--gold); }
.price-card__title { margin: 0 0 22px; font-size: 19px; font-weight: 500; letter-spacing: .06em; line-height: 1.6; }
.price-card__price {
  margin: 0;
  font-family: var(--serif-ja);
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.4;
  color: var(--gold-light);
  letter-spacing: .04em;
}
.price-card__note { margin: 10px 0 24px; font-size: 12.5px; color: var(--text-faint); letter-spacing: .06em; line-height: 1.9; }
.price-card__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}
.price-card__points p {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  color: #D8D8D8;
  font-weight: 300;
}
.price-card__points i {
  flex: none;
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.price-card__price small { font-size: 14px; color: var(--text-mid); font-family: var(--sans); margin-left: 4px; }
.price-card--featured .price-card__price {
  font-family: var(--serif-en);
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
}

/* ---- ボトルキープ・メニュー --------------------------------------------- */

.menu-grid {
  margin-top: clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.menu-card {
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 40px);
  background: var(--panel);
  border: 1px solid var(--line);
}
.menu-card__label {
  margin: 0 0 26px;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold);
}
.menu-card__sections { display: flex; flex-direction: column; gap: 26px; }
.menu-card__title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 169, 106, .28);
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--gold-light);
}
.menu-card__title--ja { font-family: var(--serif-ja); }
.menu-card__row {
  margin: 0 0 9px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  color: #D8D8D8;
  font-weight: 300;
  line-height: 1.9;
}
.menu-card__row:last-child { margin-bottom: 0; }
.menu-card__row .price { color: var(--text-mid); white-space: nowrap; }

.price-photos {
  margin-top: clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  align-items: stretch;
}
.price-photo {
  position: relative;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
  transition: border-color .4s ease;
}
.price-photo:hover { border-color: rgba(200, 169, 106, .5); }
.price-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; }
.price-photo--contain img { object-fit: contain; background: var(--bg); }
.price-photo__bar {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, .92));
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--text-soft);
}
.price-photo__bar b { color: var(--gold); font-weight: 400; }
.price-photo.ph { aspect-ratio: auto; }

/* ---- サービス ----------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-cell {
  background: var(--bg-strip);
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
  transition: background .4s ease;
}
.service-cell:hover { background: #171613; }
.service-cell .icon-ring { width: 40px; height: 40px; margin-bottom: 20px; border-color: rgba(200, 169, 106, .4); }
.service-cell h3 { margin: 0 0 10px; font-size: 15px; font-weight: 500; letter-spacing: .08em; }
.service-cell p { margin: 0; color: #909090; font-size: 12.5px; line-height: 1.95; font-weight: 300; }

/* ---- キャスト ----------------------------------------------------------- */

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.cast-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .4s ease, transform .5s var(--ease);
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}
.cast-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.cast-card__photo { position: relative; overflow: hidden; border-radius: 0; }
.cast-card__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; }
.cast-card__photo.ph { min-height: 0; }
.cast-card__photo.ph::after { font-size: 12px; }
.cast-card__role {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(13, 13, 13, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 169, 106, .4);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--gold-light);
}
.cast-card__body { padding: 22px; }
.cast-card__en { margin: 0 0 4px; font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .28em; color: var(--gold); }
.cast-card__name { margin: 0 0 12px; font-size: 19px; font-weight: 500; letter-spacing: .1em; }
.cast-card__comment { margin: 0; color: var(--text-faint); font-size: 12.5px; line-height: 1.95; font-weight: 300; }

/* ---- お知らせ ----------------------------------------------------------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.news-card {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 34px);
  transition: border-color .4s ease, transform .5s var(--ease);
}
.news-card:hover { border-color: rgba(200, 169, 106, .4); transform: translateY(-4px); }
.news-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.news-card__tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: #D8D8D8;
}
.news-card__tag--gold {
  background: rgba(200, 169, 106, .13);
  border-color: rgba(200, 169, 106, .34);
  color: var(--gold-light);
}
.news-card__date { font-family: var(--serif-en); font-size: 12px; letter-spacing: .1em; color: #7A7A7A; }
.news-card__title { margin: 0 0 14px; font-size: 17px; font-weight: 500; letter-spacing: .06em; line-height: 1.7; }
.news-card__body { margin: 0; color: var(--text-faint); font-size: 13px; line-height: 2; font-weight: 300; }

/* ---- 初めての方へ -------------------------------------------------------- */

.point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  margin-bottom: clamp(44px, 6vw, 72px);
}
.point-card {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 32px);
}
.point-card__num { margin: 0 0 14px; font-family: var(--serif-en); font-size: 11px; letter-spacing: .26em; color: var(--gold); }
.point-card h3 { margin: 0 0 10px; font-size: 15.5px; font-weight: 500; letter-spacing: .06em; }
.point-card p { margin: 0; color: var(--text-faint); font-size: 12.5px; line-height: 2; font-weight: 300; }

.first-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.sub-heading {
  margin: 0 0 26px;
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .08em;
}

.steps { display: flex; flex-direction: column; }
.step {
  position: relative;
  margin-left: 13px;
  padding-left: 26px;
  padding-bottom: 26px;
  border-left: 1px solid rgba(200, 169, 106, .26);
}
.step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: -6.5px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.step__title { margin: 0 0 6px; font-size: 14.5px; font-weight: 500; letter-spacing: .06em; }
.step__text { margin: 0; color: #909090; font-size: 12.5px; line-height: 2; font-weight: 300; }

/* ---- FAQ ----------------------------------------------------------------- */

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .4s ease;
}
.faq-item.is-open { border-color: rgba(200, 169, 106, .35); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: .05em;
  text-align: left;
  cursor: pointer;
}
.faq-item__mark {
  flex: none;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  transition: transform .4s var(--ease);
}
.faq-item.is-open .faq-item__mark { transform: rotate(135deg); }
.faq-item__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height .5s var(--ease), opacity .4s ease, padding .4s ease;
}
.faq-item.is-open .faq-item__a { opacity: 1; padding-bottom: 24px; }
.faq-item__a p { margin: 0; color: var(--text-faint); font-size: 13px; line-height: 2.1; font-weight: 300; }

/* ---- アクセス ------------------------------------------------------------ */

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}
.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  min-height: 340px;
  background: var(--panel);
}
.access-map iframe {
  width: 100%; height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(.35) contrast(1.05) brightness(.85);
}
.access-info {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
}
.access-rows { display: flex; flex-direction: column; gap: 22px; }
.access-row { display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: start; }
.access-row__label {
  font-family: var(--serif-en);
  font-size: 10.5px;
  letter-spacing: .24em;
  color: var(--gold);
  padding-top: 4px;
}
.access-row__value { font-size: 14px; line-height: 1.9; color: #D8D8D8; font-weight: 300; }
.access-row__value a { font-size: 15px; letter-spacing: .06em; color: var(--text-soft); }
.access-row__value a:hover { color: var(--gold); }
.access-row__sub { color: #909090; font-size: 12.5px; }
.access-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
}
.access-actions .btn { padding: 0 12px; font-size: 13.5px; }

/* ---- 求人 ----------------------------------------------------------------- */

.section--recruit { overflow: hidden; }
.section--recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 80% 0%, rgba(200, 169, 106, .10) 0%, transparent 62%);
}
.recruit-panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 169, 106, .30);
  background: linear-gradient(160deg, #1C1A15 0%, #161616 55%);
  padding: clamp(30px, 5vw, 72px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.recruit-copy .heading { margin-bottom: 22px; line-height: 1.55; font-size: clamp(24px, 3.4vw, 40px); }
.recruit-copy > p {
  margin: 0 0 28px;
  color: var(--text-mid);
  font-size: 13.5px;
  line-height: 2.2;
  font-weight: 300;
}
.recruit-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.recruit-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(200, 169, 106, .12);
  border: 1px solid rgba(200, 169, 106, .3);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--gold-light);
}
.recruit-photo { margin-top: 28px; border-radius: var(--radius); overflow: hidden; }
.recruit-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 25%; }
.recruit-rows { display: flex; flex-direction: column; margin-bottom: 30px; }
.recruit-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.recruit-row:last-child { border-bottom: 0; }
.recruit-row__label { font-size: 12px; letter-spacing: .14em; color: var(--gold); }
.recruit-row__value { font-size: 14px; line-height: 1.9; color: var(--text-soft); font-weight: 300; }
.recruit-row__note { font-size: 12px; color: #909090; }
.recruit-cta { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.recruit-cta--single { grid-template-columns: minmax(200px, 320px); }
.recruit-note { margin: 16px 0 0; font-size: 11.5px; color: var(--text-mute); letter-spacing: .06em; line-height: 1.9; }

/* ---- 口コミ ---------------------------------------------------------------- */

.review-score { display: flex; align-items: center; gap: 16px; }
.review-score__num { font-family: var(--serif-en); font-size: 40px; line-height: 1; color: var(--gold-light); }
.review-score__stars { margin: 0 0 4px; font-size: 14px; letter-spacing: .24em; color: var(--gold); }
.review-score__count { margin: 0; font-size: 11.5px; color: var(--text-mute); letter-spacing: .08em; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.review-card {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 34px);
}
.review-card__stars { margin: 0 0 16px; font-size: 13px; letter-spacing: .22em; color: var(--gold); }
.review-card__text { margin: 0 0 22px; color: #D8D8D8; font-size: 13.5px; line-height: 2.1; font-weight: 300; }
.review-card__author { margin: 0; font-size: 12px; color: var(--text-mute); letter-spacing: .08em; }
.review-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 3vw, 34px); }
.review-disclaimer { margin: 18px 0 0; font-size: 11.5px; color: #6E6E6E; letter-spacing: .06em; }

/* ---- 予約CTA ---------------------------------------------------------------- */

.cta {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 64px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35) saturate(.9); }
.cta__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,.86), rgba(13,13,13,.94)); }
.cta__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.cta__en {
  margin: 0 0 20px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(17px, 2.4vw, 24px);
  color: rgba(255, 255, 255, .62);
}
.cta__title {
  margin: 0 0 24px;
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.6;
  letter-spacing: .05em;
  text-wrap: pretty;
}
.cta__lead { margin: 0 0 36px; color: var(--text-mid); font-size: 13.5px; line-height: 2.1; font-weight: 300; }
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---- フッター ---------------------------------------------------------------- */

.footer {
  position: relative;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 64px) 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer__brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer__brand-en { font-family: var(--serif-en); font-size: 24px; letter-spacing: .16em; color: var(--text); line-height: 1; }
.footer__brand-divider { width: 1px; height: 20px; background: rgba(200, 169, 106, .6); }
.footer__brand-ja { font-size: 11px; letter-spacing: .3em; color: var(--text-mid); }
.footer__desc { margin: 0; color: var(--text-mute); font-size: 12.5px; line-height: 2.1; font-weight: 300; }
.footer__label { margin: 0 0 18px; font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .28em; color: var(--gold); }
.footer__info p { margin: 0 0 10px; color: var(--text-mid); font-size: 12.5px; line-height: 1.9; font-weight: 300; }
.footer__info p:last-child { margin-bottom: 0; }
.footer__menu { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.footer__menu a { font-size: 12.5px; color: var(--text-mid); }
.footer__menu a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact .btn { min-height: 48px; border-radius: 14px; font-size: 13px; }
.footer__contact .btn--gold { font-size: 13.5px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0 clamp(28px, 4vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.footer__bottom p { margin: 0; font-size: 11px; letter-spacing: .1em; color: #6E6E6E; }
.footer__spacer { height: 88px; }

/* ---- 固定フッターナビ --------------------------------------------------------- */

.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 65;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bottom-nav--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 480px;
  margin: 0 auto;
  padding: 10px clamp(10px, 3vw, 18px) calc(10px + env(safe-area-inset-bottom));
  background: rgba(13, 13, 13, .72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, .09);
}
.bottom-nav a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  border-radius: 14px;
  font-size: 13px;
  letter-spacing: .08em;
}
.bottom-nav a small { font-size: 9.5px; font-weight: 400; letter-spacing: .1em; }
.bottom-nav__tel { background: var(--gold-grad); color: var(--bg); font-weight: 700; }
.bottom-nav__tel:hover { color: var(--bg); }
.bottom-nav__tel small { opacity: .75; }
.bottom-nav__sub {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--text);
}
.bottom-nav__sub:hover { color: var(--text); border-color: rgba(200, 169, 106, .55); }
.bottom-nav__sub small { color: var(--text-faint); }

/* ---- ページトップへ戻る -------------------------------------------------------- */

.to-top {
  position: fixed;
  right: clamp(12px, 2.5vw, 24px);
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 66;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, .45);
  background: rgba(13, 13, 13, .78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease, background .3s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: rgba(200, 169, 106, .16); }

/* ---- ライトボックス ------------------------------------------------------------ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(6, 6, 6, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .7);
}
.lightbox__caption { margin: 0; font-size: 12.5px; letter-spacing: .12em; color: var(--text-mid); }
.lightbox__close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 48px; height: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* ---- スクロールフェードイン ----------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .06s; }
.js .reveal[data-delay="2"] { transition-delay: .1s; }

/* ---- アクセシビリティ／モーション設定 -------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg img { animation: none; }
  .hero__scroll-line { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01s !important; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---- スマホ微調整 ---------------------------------------------------------------- */

@media (max-width: 480px) {
  .access-row { grid-template-columns: 76px 1fr; }
  .recruit-row { grid-template-columns: 84px 1fr; }
  .about-grid, .access-grid, .first-columns, .recruit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__access-link { min-height: 48px; }
}
