/* ============================================================
   Bar Hyde (仮称) — 完全会員制・紹介制 LP  v3
   トーン: 静謐・艶・余白。墨黒 × シャンパンゴールド × 赤ネオンの一点光
   書体: 和文 Shippori Mincho に統一 / 欧文 Cormorant Garamond
   ============================================================ */

:root {
  --ink: #070708;
  --coal: #0d0d10;
  --coal-2: #131318;
  --hair: rgba(244, 239, 230, .22);
  --hair-dim: rgba(237, 232, 223, .08);
  --gold: #f4efe6;
  --gold-dim: #a89f92;
  --text: #d8d1c2;
  --text-dim: #9b9486;
  --text-faint: #7e7769;
  --neon: #ff3b30;
  --neon-soft: rgba(255, 59, 48, .5);
  --serif-jp: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* スクロールはJS(Lenis / scrollIntoView)で制御する。
   CSSのsmoothはLenisの毎フレームscrollToと競合しホイールを殺すため使わない */
html { scroll-behavior: auto; overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .08em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.gate-locked { overflow: hidden; }

/* フィルムグレイン */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: .45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
.wrap-narrow { max-width: 760px; }
.center { text-align: center; }

.sp { display: none; }

.fine {
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.8;
  letter-spacing: .05em;
}

/* JS有効時、演出前の初期状態(GSAPが引き継ぐ) */
html.js:not(.reduced) [data-reveal] { opacity: 0; }
html.js:not(.reduced) .line > span { transform: translateY(112%); display: inline-block; }
.line { display: block; overflow: hidden; padding-bottom: .1em; }
.line > span { display: inline-block; will-change: transform; }
html.js:not(.reduced) .clip { clip-path: inset(0 0 100% 0); }
.clip { overflow: hidden; }
.clip img { will-change: transform; }
/* 一文字分割(JSが .ch を生成) */
[data-chars] .ch { display: inline-block; will-change: transform, opacity; }
html.js:not(.reduced) [data-chars]:not(.chars-ready) { opacity: 0; }

/* ============ ボタン(二重罫線+シーン光) ============ */
.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .3em;
  text-indent: .3em;
  text-align: center;
  padding: 19px 46px;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: color .5s var(--ease), border-color .5s var(--ease),
              box-shadow .5s var(--ease);
}
/* 内側のもう一本の罫線 */
.btn::before {
  content: "";
  position: absolute; inset: 4px;
  border: 1px solid rgba(244, 239, 230, .14);
  pointer-events: none;
  transition: border-color .5s, inset .5s var(--ease);
}
/* 掠めていく光 */
.btn::after {
  content: "";
  position: absolute; top: -20%; bottom: -20%;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 250, 240, .2) 50%, transparent);
  transform: skewX(-18deg) translateX(0);
  pointer-events: none;
  transition: none;
}
.btn:hover { border-color: var(--gold); color: #fff; }
.btn:hover::before { border-color: rgba(244, 239, 230, .4); }
.btn:hover::after { transition: transform .9s var(--ease); transform: skewX(-18deg) translateX(400%); }

.btn-neon {
  border-color: rgba(244, 239, 230, .5);
  color: #f7f2e9;
  background: linear-gradient(to bottom, rgba(244,239,230,.07), rgba(244,239,230,.02));
}
.btn-neon::after { animation: btnSheen 4.6s var(--ease) infinite; }
@keyframes btnSheen {
  0%, 62% { transform: skewX(-18deg) translateX(0); }
  86%, 100% { transform: skewX(-18deg) translateX(400%); }
}
.btn-neon:hover {
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.45), 0 0 30px rgba(244,239,230,.2), inset 0 0 22px rgba(244,239,230,.08);
  text-shadow: 0 0 12px rgba(244,239,230,.55);
}
.btn-ghost { border-color: var(--hair-dim); color: var(--text-dim); }
.btn-ghost:hover { border-color: var(--gold); color: var(--text); }
.btn-sm { padding: 13px 24px; font-size: 12px; }
.btn-sm::before { inset: 3px; }

/* ============ カスタムカーソル ============ */
.cursor { display: none; }
@media (pointer: fine) {
  html.js:not(.reduced) .cursor {
    display: block;
    position: fixed; top: 0; left: 0;
    z-index: 99;
    pointer-events: none;
  }
  html.js:not(.reduced) .cursor .cursor-dot {
    position: absolute; top: -3px; left: -3px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }
  html.js:not(.reduced) .cursor .cursor-ring {
    position: absolute; top: -19px; left: -19px;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(244, 239, 230, .45);
    transition: transform .45s var(--ease), border-color .45s, background-color .45s;
  }
  html.js:not(.reduced) .cursor.is-link .cursor-ring {
    transform: scale(1.7);
    border-color: rgba(255, 59, 48, .55);
    background: rgba(255, 59, 48, .05);
  }
}

/* ============ 入場ギミック(Hを描く) ============ */
.gate {
  position: fixed; inset: 0;
  z-index: 95;
  overflow: hidden;
  background: #050506;
  perspective: 1400px;
  perspective-origin: 50% 46%;
}
.gate-door {
  position: absolute; top: 0; bottom: 0;
  width: 50.5%;
  background-color: #0a0a0c;
  background-image: url("../media/gate-door.jpg");
  background-size: 201% 100%;
  background-repeat: no-repeat;
  backface-visibility: visible;
  will-change: transform, filter;
}
@media (orientation: portrait) {
  .gate-door { background-image: url("../media/gate-door-portrait.jpg"); }
}
/* 上下を静かに沈めて文字を読ませる */
.gate-door::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,6,.6), rgba(5,5,6,.08) 34%, rgba(5,5,6,.12) 62%, rgba(5,5,6,.72));
}
.gate-door-l {
  left: 0;
  background-position: left center;
  box-shadow: inset -34px 0 50px -22px rgba(0,0,0,.7);
}
.gate-door-r {
  right: 0;
  background-position: right center;
  box-shadow: inset 34px 0 50px -22px rgba(0,0,0,.7);
}
.gate-mark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 230, .55);
  animation: markPulse 3.2s ease-in-out infinite;
}
.gate-mark::after {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 230, .16);
}
@keyframes markPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, .3); opacity: .7; }
  50% { box-shadow: 0 0 18px 3px rgba(255, 59, 48, .35); opacity: 1; }
}
.gate-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  /* タッチをスクロール・ズームに奪わせない(モバイルで描けない問題の根本対策) */
  touch-action: none;
}
.gate-ui {
  position: absolute;
  left: 0; right: 0;
  top: clamp(48px, 10svh, 110px);
  text-align: center;
  pointer-events: none;
}
.gate-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 17px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 10px;
}
.gate-jp { font-size: 13px; color: var(--text-dim); letter-spacing: .18em; }
.gate-hint {
  position: absolute;
  left: 50%; bottom: clamp(32px, 7svh, 64px);
  transform: translateX(-50%);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--text-faint);
  opacity: .7;
}
.gate.is-open { pointer-events: none; }

/* ============ ヘッダー ============ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; gap: 40px;
  padding: 20px clamp(20px, 3vw, 40px);
  transform: translateY(-100%);
  transition: transform .7s var(--ease), background-color .7s;
}
.site-head.is-shown { transform: translateY(0); }
.site-head.is-solid {
  background: rgba(7, 7, 8, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hair-dim);
}
.head-brand {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: .42em;
}
.head-nav { display: flex; gap: 32px; margin-left: auto; }
.head-nav a {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--text-dim);
  transition: color .4s;
}
.head-nav a:hover { color: var(--gold); }

/* ヘッダー右: 入会申込(PCのみ)+メニューボタン(タブレット以下) */
.head-apply {
  white-space: nowrap;
  margin-left: 6px;
  font-size: 12px;
  letter-spacing: .22em;
  text-indent: .22em;
  padding: 11px 22px;
  border: 1px solid rgba(244, 239, 230, .45);
  color: #f7f2e9;
  background: linear-gradient(to bottom, rgba(244,239,230,.08), rgba(244,239,230,.02));
  transition: box-shadow .4s, color .4s, border-color .4s, opacity .5s var(--ease);
}
.head-apply:hover { color: #fff; border-color: var(--gold); box-shadow: 0 0 20px rgba(244,239,230,.22); }
.head-apply.is-hidden { opacity: 0; pointer-events: none; }

.menu-btn {
  position: relative;
  display: none;
  width: 46px; height: 44px;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 3px; right: 3px;
  height: 1px;
  background: var(--text);
  transition: transform .5s var(--ease), background-color .4s;
}
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { bottom: 17px; }
.menu-btn.is-open span { background: var(--gold); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 1023px) {
  .head-nav { display: none; }
  .head-apply { display: none; }
  .menu-btn { display: block; }
}

/* ============ 全画面メニュー ============ */
.menu {
  position: fixed; inset: 0;
  z-index: 49;
  display: grid;
  place-items: center;
  padding: 100px clamp(32px, 10vw, 90px) 56px;
  background: rgba(5, 5, 6, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease), visibility 0s linear .7s;
}
.menu.is-open { opacity: 1; visibility: visible; transition: opacity .7s var(--ease); }
.menu-inner { width: min(100%, 440px); }
.menu-list { list-style: none; display: grid; gap: clamp(14px, 2.8svh, 22px); }
.menu-list li {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.menu.is-open .menu-list li { opacity: 1; transform: none; }
.menu.is-open .menu-list li:nth-child(1) { transition-delay: .1s; }
.menu.is-open .menu-list li:nth-child(2) { transition-delay: .17s; }
.menu.is-open .menu-list li:nth-child(3) { transition-delay: .24s; }
.menu.is-open .menu-list li:nth-child(4) { transition-delay: .31s; }
.menu.is-open .menu-list li:nth-child(5) { transition-delay: .38s; }
.menu.is-open .menu-list li:nth-child(6) { transition-delay: .45s; }
.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.menu-list a i {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(255,59,48,.4);
}
.menu-list a em {
  position: relative;
  font-family: var(--serif-en);
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(20px, 3.1svh, 26px);
  letter-spacing: .14em;
  line-height: 1.25;
  transition: color .4s;
}
.menu-list a em::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right .6s var(--ease);
}
.menu-list a:hover em { color: var(--gold); }
.menu-list a:hover em::after { right: 0; }
.menu-list a span {
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--text-faint);
}
.menu-foot {
  margin-top: clamp(30px, 6svh, 52px);
  text-align: center;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11.5px;
  letter-spacing: .3em;
  color: var(--text-faint);
}
body.menu-open { overflow: hidden; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-poster, .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-video { opacity: 0; transition: opacity 2s ease; }
.hero-video.is-playing { opacity: 1; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 50% 96%, rgba(7,7,8,.82) 20%, rgba(7,7,8,.25) 60%, rgba(7,7,8,0) 100%),
    linear-gradient(to bottom, rgba(7,7,8,.62), rgba(7,7,8,.06) 32%, rgba(7,7,8,.12) 58%, rgba(7,7,8,.94) 90%, var(--ink) 100%);
}

/* 上部中央の一行(全デバイス共通) */
.hero-topline {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 24px);
  left: 0; right: 0;
  text-align: center;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--text-faint);
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 110px clamp(24px, 5vw, 64px) clamp(64px, 10svh, 120px);
  text-shadow: 0 1px 24px rgba(7, 7, 8, .9), 0 1px 8px rgba(7, 7, 8, .65);
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: clamp(18px, 3svh, 30px);
}
.hero-eyebrow span {
  display: block;
  width: clamp(32px, 6vw, 72px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hair));
}
.hero-eyebrow span:last-child { transform: scaleX(-1); }

.hero-title { display: block; }
.ht-en {
  display: block;
  white-space: nowrap;
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(84px, 17vw, 190px);
  line-height: .95;
  letter-spacing: .22em;
  text-indent: .22em;
  color: var(--text);
  margin-bottom: clamp(12px, 2svh, 22px);
}
.ht-jp {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--text);
  margin-bottom: clamp(10px, 1.6svh, 16px);
}
.hero-lead {
  font-family: var(--serif-en);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: .14em;
  color: var(--text-dim);
  margin-bottom: clamp(26px, 4.5svh, 44px);
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 18px;
}
.hero-note { font-size: 11px; color: var(--text-faint); letter-spacing: .1em; }

.scroll-cue {
  position: absolute;
  right: clamp(24px, 5vw, 64px); bottom: 40px;
  z-index: 3;
  display: none;
}
@media (min-width: 961px) { .scroll-cue { display: block; } }
.scroll-cue em {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.scroll-cue span {
  display: block;
  width: 1px; height: 60px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: cueDrop 2.6s var(--ease) infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* 英字アクセントの赤ネオングロー */
.hero-eyebrow, .hero-en,
.sec-num em,
.drink-en, .band-en, .scenes-en, .j-cap-en, .j-label em,
.plan-name-en, .gate-en,
.statement .line.em > span {
  text-shadow:
    0 0 6px rgba(255, 255, 255, .4),
    0 0 18px rgba(255, 59, 48, .65),
    0 0 46px rgba(255, 59, 48, .36);
}

/* ヒーローの「HYDE」: ひときわ強い赤ネオンの光彩 */
.ht-en {
  text-shadow:
    0 0 10px rgba(255, 255, 255, .4),
    0 0 30px rgba(255, 59, 48, .68),
    0 0 80px rgba(255, 59, 48, .4),
    0 2px 30px rgba(7, 7, 8, .6);
}

/* ============ セクション共通 ============ */
.sec { position: relative; padding: clamp(120px, 16vw, 220px) 0; overflow-x: clip; }

.sec-head { margin-bottom: clamp(28px, 4vw, 44px); }
.sec-head.is-center { text-align: center; }
.sec-num {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--serif-en);
}
.sec-head.is-center .sec-num, .sec-num.is-center { justify-content: center; }
.sec-num i {
  font-style: normal;
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(255,59,48,.45);
}
.sec-num em {
  font-style: normal;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .38em;
  color: var(--gold);
}
.sec-num::after {
  content: "";
  flex: 0 0 auto;
  width: 64px;
  height: 1px;
  align-self: center;
  background: var(--hair);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) .3s;
}
.sec-head.is-in .sec-num::after { transform: scaleX(1); }
html.reduced .sec-num::after, html:not(.js) .sec-num::after { transform: scaleX(1); }
.sec-head.is-center .sec-num::after { display: none; }

/* 欧文主導のセクション見出し(大文字×イタリックの対比) */
.statement {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.14;
  letter-spacing: .015em;
  margin-bottom: clamp(56px, 8vw, 110px);
}
.statement .line > span { white-space: nowrap; }
.statement .line:not(.em) > span {
  text-transform: uppercase;
  letter-spacing: .07em;
}
.statement .line.em > span {
  font-style: italic;
  font-weight: 300;
  color: #fff;
  padding-left: .5em;
}
.statement-jp {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(12.5px, 1.3vw, 14px);
  letter-spacing: .32em;
  line-height: 1.9;
  color: var(--text-dim);
  margin-top: clamp(20px, 2.6vw, 32px);
}
.statement.is-center { text-align: center; }
.statement.is-center .line.em > span { padding-left: 0; }
.sec-lead {
  margin-top: -24px;
  margin-bottom: clamp(48px, 6vw, 80px);
  color: var(--text-dim);
  font-size: 13.5px;
}
.sec-lead.is-center { text-align: center; }

/* 欧文の気配(サイドの回転ラベル) */
.sec-side {
  position: absolute;
  top: clamp(120px, 16vw, 220px);
  right: clamp(8px, 2.2vw, 32px);
  writing-mode: vertical-rl;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .42em;
  color: var(--text-faint);
  opacity: .8;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 960px) { .sec-side { display: none; } }

/* 空気の光(オーブ) */
.orb {
  position: absolute;
  width: clamp(320px, 40vw, 560px);
  height: clamp(320px, 40vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 239, 230, .09), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.orb-red { background: radial-gradient(circle, rgba(255, 59, 48, .06), transparent 66%); }
.orb-sm { width: clamp(220px, 26vw, 380px); height: clamp(220px, 26vw, 380px); }

/* 全ページに漂う金粉(Three.js) */
.site-dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .8;
}

/* スクロール進捗ライン */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 70;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* 巨大ゴースト・タイポグラフィ */
.ghost {
  position: absolute;
  top: clamp(40px, 6vw, 90px);
  left: clamp(-20px, -1vw, 0px);
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(110px, 17vw, 250px);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 230, .13);
  text-stroke: 1px rgba(244, 239, 230, .13);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.plans .ghost { left: auto; right: clamp(-10px, 1vw, 40px); }
.sec .wrap { position: relative; z-index: 2; }

/* ============ Philosophy ============ */
.philosophy { background: var(--ink); }
.phi-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.phi-media { position: relative; padding-bottom: 120px; }
.phi-media .clip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; scale: 1.12; }
.phi-media-sub {
  position: absolute;
  right: -10%; bottom: 0;
  width: 56%;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.phi-media-sub img { aspect-ratio: 16 / 11; }
.phi-copy p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 2.2;
  letter-spacing: .1em;
}
.phi-copy p:first-child { color: var(--text); }
.phi-copy p + p { margin-top: 1.7em; }

/* ============ Journey ============ */
.journey { position: relative; background: var(--ink); }
.j-stage { position: relative; height: 100vh; height: 100svh; overflow: hidden; }
.j-scene { position: absolute; inset: 0; opacity: 0; visibility: hidden; }
.j-scene.is-active { opacity: 1; visibility: visible; }
.j-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.j-scene::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,8,.88), rgba(7,7,8,.15) 45%, rgba(7,7,8,.35));
}
.j-cap {
  position: absolute;
  left: clamp(24px, 6vw, 90px);
  bottom: clamp(56px, 11svh, 120px);
  z-index: 2;
  max-width: 640px;
}
.j-cap-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 17px;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 16px;
}
.j-cap h3 {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.7;
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.j-cap-sub { color: var(--text-dim); font-size: 13px; letter-spacing: .14em; }

.j-meta {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(48px, 9svh, 100px);
  z-index: 3;
  text-align: right;
}
.j-label {
  display: flex; justify-content: flex-end; align-items: baseline; gap: 14px;
  font-family: var(--serif-en);
  margin-bottom: 26px;
}
.j-label i { font-style: normal; font-size: 14px; color: var(--neon); text-shadow: 0 0 12px rgba(255,59,48,.45); }
.j-label em { font-style: italic; font-size: 16px; letter-spacing: .22em; color: var(--gold); }
.j-index { list-style: none; display: grid; gap: 14px; }
.j-index li {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--text-faint);
  transition: color .5s;
  position: relative;
  padding-right: 26px;
}
.j-index li::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--hair-dim);
  transition: background-color .5s, width .5s var(--ease);
}
.j-index li.is-active { color: var(--gold); }
.j-index li.is-active::after { background: var(--gold); width: 24px; }

.journey.static .j-stage { height: auto; overflow: visible; }
.journey.static .j-scene {
  position: relative; inset: auto;
  opacity: 1; visibility: visible;
  height: 72vh; min-height: 480px;
}
.journey.static .j-meta { display: none; }

/* ============ Drinks ============ */
.drinks { background: var(--ink); padding-bottom: 0; }
.drink-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(90px, 12vw, 160px);
}
.drink-row.is-flip .drink-media { order: 2; }
.drink-row.is-flip .drink-copy { order: 1; padding-left: clamp(0px, 4vw, 60px); }
.drink-media .clip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; scale: 1.1; }
.drink-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: .06em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
}
.drink-copy h3 {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.75;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.drink-copy > p:last-child { color: var(--text-dim); font-size: 13.5px; max-width: 30em; }

.drinks-band { position: relative; height: clamp(380px, 58vh, 620px); overflow: hidden; }
.drinks-band .band-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .62;
}
.drinks-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--ink), rgba(7,7,8,.12) 35%, rgba(7,7,8,.12) 65%, var(--ink));
}
.drinks-band blockquote {
  position: absolute; inset: 0;
  display: grid; place-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 clamp(22px, 6vw, 64px);
  text-shadow: 0 1px 20px rgba(7,7,8,.85);
}
.band-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: clamp(.14em, 1.2vw, .3em);
  color: var(--gold);
  margin-bottom: 16px;
}
.drinks-band blockquote p:last-child {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(16px, 2.6vw, 28px);
  letter-spacing: clamp(.08em, 1vw, .22em);
  line-height: 1.9;
}

/* ============ Scenes ============ */
.scenes { position: relative; background: var(--ink); }
.scenes-swiper { height: clamp(420px, 74vh, 720px); }
.scenes-swiper .swiper-slide { overflow: hidden; }
.scenes-swiper img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .88;
  will-change: transform;
}
.scenes-swiper .swiper-slide-active img {
  animation: sceneZoom 6.6s ease-out forwards;
}
@keyframes sceneZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}
.scenes::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--ink), transparent 18%, transparent 82%, var(--ink));
  z-index: 2;
}
.scenes-meta {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vh, 48px);
  z-index: 3;
  display: flex; align-items: baseline; gap: 22px;
}
.scenes-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  letter-spacing: .26em;
  color: var(--gold);
}
.scenes-frac {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--text-dim);
}
.scenes-frac .swiper-pagination-current { color: var(--text); }

/* ============ Membership ============ */
.system { background: var(--coal); }
.system::before, .system::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--hair-dim);
}
.system::before { top: 0; }
.system::after { bottom: 0; }

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.rules { list-style: none; counter-reset: rule; }
.rules li {
  counter-increment: rule;
  position: relative;
  padding: 34px 0 34px 76px;
  border-bottom: 1px solid var(--hair-dim);
}
.rules li:first-child { border-top: 1px solid var(--hair-dim); }
.rules li::before {
  content: "0" counter(rule);
  position: absolute; left: 0; top: 38px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.rules b {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.rules span { font-size: 13px; color: var(--text-dim); }

.first-visit { position: sticky; top: 110px; }
.fv-media { margin-bottom: 36px; }
.fv-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; scale: 1.1; }
.first-visit h3 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .16em;
  margin-bottom: 26px;
}
.steps { list-style: none; display: grid; gap: 0; }
.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--hair-dim);
}
.steps li:first-child { border-top: 1px solid var(--hair-dim); }
.steps li i {
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 25px;
  color: var(--gold);
  text-align: center;
}
.steps b { font-weight: 600; font-size: 14px; letter-spacing: .1em; }
.steps span { font-size: 12.5px; color: var(--text-dim); }
.first-visit .sp { display: none; }

.fine { margin-top: 18px; }

/* ============ Plans(罫線区切りのオープンレイアウト) ============ */
.plans { background: var(--ink); }
.plans-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.plans-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .1;
}
.plans-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--ink), rgba(7,7,8,.4) 30%, rgba(7,7,8,.4) 70%, var(--ink));
}
.plan-grid {
  border-top: 1px solid var(--hair-dim);
}
/* バーのメニュー表のような一行レイアウト */
.plan-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(200px, 280px) 1fr 230px;
  grid-template-areas:
    "emblem name-en feats price"
    "emblem name-jp feats btn";
  column-gap: clamp(24px, 3.4vw, 56px);
  row-gap: 14px;
  align-items: center;
  background: transparent;
  padding: clamp(36px, 4vw, 54px) clamp(6px, 1vw, 18px);
  border-bottom: 1px solid var(--hair-dim);
  transition: background-color .7s var(--ease);
}
/* ホバーで上辺に金の線が走る */
.plan-card::after {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease);
}
.plan-card:hover { background: linear-gradient(to right, rgba(244,239,230,.035), transparent 75%); }
.plan-card:hover::after { transform: scaleX(1); }
.plan-card.is-top::before {
  content: "Signature";
  position: absolute;
  top: 16px;
  right: clamp(6px, 1vw, 18px);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--gold);
}

.plan-emblem {
  grid-area: emblem;
  display: block;
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  outline: 1px solid var(--hair);
  outline-offset: 4px;
}
.plan-emblem img { width: 100%; height: 100%; object-fit: cover; }

.plan-name-en {
  grid-area: name-en;
  align-self: end;
  font-family: var(--serif-en);
  text-transform: uppercase;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: .3em;
  color: var(--text);
}
.plan-name {
  grid-area: name-jp;
  align-self: start;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--text-dim);
}
.plan-price {
  grid-area: price;
  display: flex; align-items: baseline; justify-content: flex-end; gap: 12px;
  align-self: end;
}
.plan-price b {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(38px, 3vw, 48px);
  letter-spacing: .01em;
  line-height: 1;
}
.plan-price span { font-size: 11px; color: var(--text-faint); letter-spacing: .1em; }

.plan-feats {
  grid-area: feats;
  list-style: none;
}
.plan-feats li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.plan-feats li::before {
  content: "";
  position: absolute; left: 0; top: 1.05em;
  width: 12px; height: 1px;
  background: var(--gold-dim);
}
.plan-feats em { font-style: normal; font-size: 10.5px; color: var(--text-faint); }
.btn-plan {
  grid-area: btn;
  justify-self: end;
  align-self: start;
  width: auto;
  padding: 13px 30px;
  font-size: 12px;
}

.plan-notes { margin: 36px 0 clamp(60px, 8vw, 96px); font-size: 11.5px; color: var(--text-faint); line-height: 1.9; }

.plan-corp {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  column-gap: clamp(24px, 3.4vw, 56px);
  align-items: center;
  border-top: 1px solid var(--hair-dim);
  border-bottom: 1px solid var(--hair-dim);
  background: transparent;
  padding: clamp(36px, 4vw, 54px) clamp(6px, 1vw, 18px);
}
.plan-corp .plan-emblem { grid-area: auto; grid-column: 1; grid-row: 1; width: 64px; height: 64px; }
.plan-corp .corp-body { grid-column: 2; grid-row: 1; }
.plan-corp > .btn { grid-column: 3; grid-row: 1; }
.plan-corp .plan-name-en {
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: .26em;
  color: var(--text);
}
.plan-corp .plan-name { margin: 6px 0 12px; }
.plan-corp p:not(.plan-name-en) {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 44em;
}
.plan-corp .btn { white-space: nowrap; }
@media (max-width: 1023px) {
  .plan-corp {
    grid-template-columns: 56px 1fr;
    row-gap: 16px;
    padding: 32px 0 36px;
  }
  .plan-corp .plan-emblem { grid-column: 1; grid-row: 1; width: 52px; height: 52px; align-self: start; }
  .plan-corp .corp-body { grid-column: 2; grid-row: 1; }
  .plan-corp > .btn { grid-column: 2; grid-row: 2; justify-self: start; }
}

/* プランスライダー(タブレット・スマホ): 中央揃えの会員証カード */
.plan-slider-meta { display: none; }
.plan-slider { position: relative; }
.plan-slider.is-slider .plan-grid {
  display: flex;
  align-items: stretch;
  border-top: 0;
  border-bottom: 0;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}
/* 中央揃えカードの共通デザイン(タブレットのスライド/スマホの縦積み) */
.plan-slider.is-cards .plan-card {
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 8px 10px 0;
  border: 0;
  background: transparent;
}
.plan-slider.is-cards .plan-card + .plan-card { border: 0; }
.plan-slider.is-cards .plan-card::after { display: none; }
/* スライダー時のみ: 横並び+中央スライドの強調 */
.plan-slider.is-slider .plan-card {
  flex-shrink: 0;
  width: min(52vw, 400px);
  transition: opacity .6s var(--ease), scale .6s var(--ease);
  scale: .93;
  opacity: .3;
}
.plan-slider.is-slider .plan-card.swiper-slide-active { scale: 1; opacity: 1; }
.plan-slider.is-cards .plan-card > * { align-self: center; }
.plan-slider.is-cards .btn-plan { align-self: stretch; justify-self: auto; }
.plan-slider.is-cards .plan-emblem { margin: 0 auto 22px; width: 62px; height: 62px; }
.plan-slider.is-cards .plan-name {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 16px;
}
.plan-slider.is-cards .plan-name::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 26px; height: 1px;
  background: var(--gold-dim);
}
.plan-slider.is-cards .plan-price { justify-content: center; padding-bottom: 20px; }
.plan-slider.is-cards .plan-card.is-top::before {
  position: static;
  display: block;
  order: -1;
  margin-bottom: 10px;
}
.plan-slider.is-cards .plan-feats {
  min-height: 150px;
  text-align: left;
  margin: 0 auto 26px;
  width: min(100%, 300px);
  padding-top: 20px;
  border-top: 1px solid var(--hair-dim);
  flex: 1;
}
.plan-slider.is-cards .plan-name-en { font-size: 14px; letter-spacing: .42em; color: var(--gold); }
.plan-slider.is-cards .plan-name { margin: 10px 0 0; padding-bottom: 16px; }
.plan-slider.is-cards .plan-price b { font-size: 46px; }
.plan-slider.is-cards .btn-plan { width: 100%; max-width: 320px; padding: 17px 30px; }

/* スマホ: スライダーではなく縦積み */
@media (max-width: 640px) {
  .plan-slider.is-cards:not(.is-slider) .plan-grid { display: block; }
  .plan-slider.is-cards:not(.is-slider) .plan-card {
    width: 100%;
    padding: 44px 8px 48px;
    border-bottom: 1px solid var(--hair-dim);
  }
  .plan-slider.is-cards:not(.is-slider) .plan-feats { min-height: 0; }
}
.plan-slider.is-slider .plan-slider-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 26px;
}
.plan-frac {
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--text-dim);
}
.plan-frac .swiper-pagination-current { color: var(--gold); }
.plan-swipe-hint {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--text-faint);
  animation: swipeHint 2.8s ease-in-out infinite;
}
@keyframes swipeHint {
  0%, 100% { opacity: .45; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-8px); }
}

/* ============ Apply ============ */
.apply {
  padding-top: clamp(72px, 9vw, 130px);
  background:
    linear-gradient(to bottom, var(--ink), rgba(7,7,8,.92) 20%, rgba(7,7,8,.94)),
    url("../media/bg-payment.jpg") center / cover no-repeat;
}

.apply-form { display: grid; gap: clamp(48px, 6vw, 72px); margin-top: -10px; }

.f-block { border: 0; }
.f-block legend {
  display: flex; align-items: baseline; gap: 22px;
  width: 100%;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--text-dim);
  padding-bottom: 18px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--hair);
}
.f-block legend i {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  color: var(--gold);
  opacity: .9;
}

.plan-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan-opt { position: relative; cursor: pointer; }
.plan-opt input { position: absolute; opacity: 0; pointer-events: none; }
.plan-opt .opt-body {
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--hair-dim);
  transition: border-color .4s, background-color .4s, box-shadow .4s;
}
.plan-opt b {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: .12em;
}
.plan-opt i { font-style: normal; font-size: 11.5px; color: var(--text-faint); letter-spacing: .08em; }
.plan-opt input:checked + .opt-body {
  border-color: var(--gold);
  background: rgba(244,239,230,.05);
}
.plan-opt input:focus-visible + .opt-body { outline: 1px solid var(--gold); outline-offset: 3px; }

.f-row { margin-top: 28px; }
.f-row label {
  display: block;
  font-size: 12.5px;
  letter-spacing: .16em;
  margin-bottom: 6px;
  color: var(--text-dim);
}
.f-row label em {
  font-style: normal;
  font-size: 10px;
  color: var(--neon);
  border: 1px solid rgba(255,59,48,.45);
  padding: 1px 8px;
  margin-left: 10px;
  letter-spacing: .12em;
}
.f-row input[type="text"],
.f-row input[type="email"],
.f-row input[type="tel"] {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hair-dim);
  color: var(--text);
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: .06em;
  padding: 12px 2px;
  transition: border-color .4s;
  border-radius: 0;
}
.f-row input::placeholder { color: #4d4841; }
.f-row input:focus { outline: none; border-bottom-color: var(--gold); }
.f-row input.is-invalid { border-bottom-color: rgba(255,59,48,.7); }

.code-row { display: flex; gap: 14px; align-items: flex-end; }
.code-row input { flex: 1; }
.code-row .btn { white-space: nowrap; }

.agree { cursor: pointer; }
.agree input { cursor: pointer; }

.f-err { font-size: 12px; color: #ff7a72; margin-top: 8px; }
.f-err:empty { margin-top: 0; }
.f-msg { font-size: 12px; margin-top: 10px; }
.f-msg.ok { color: #a9cfa9; }
.f-msg.ng { color: #ff7a72; }
.form-error { text-align: center; font-size: 13px; }

.price-summary {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: transparent;
  padding: clamp(28px, 3vw, 40px) 4px;
}
.price-summary dl { display: grid; gap: 12px; }
.price-summary dl > div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
}
.price-summary dt { font-size: 12.5px; letter-spacing: .16em; color: var(--text-dim); }
.price-summary dd { font-size: 15px; letter-spacing: .06em; }
.sum-discount dd { color: #a9cfa9; }
.sum-first { padding-top: 16px; border-top: 1px solid var(--hair-dim); }
.sum-first dd {
  font-family: var(--serif-en);
  font-size: 32px;
  color: var(--text);
}
.price-summary .sp { display: none; }

.fine { margin-top: 20px; }

.btn-submit { position: relative; padding: 21px 40px; font-size: 14px; }
.btn-submit .processing { display: none; }
.btn-submit.is-busy { pointer-events: none; opacity: .65; }
.btn-submit.is-busy .label { display: none; }
.btn-submit.is-busy .processing { display: inline; }

/* ============ Success ============ */
.success { background: var(--ink); }
.success-card {
  text-align: center;
  border: 1px solid var(--hair);
  background: var(--coal);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 56px);
}
.success-card h2 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .16em;
  margin: 16px 0 22px;
}
.success-lead { font-size: 13.5px; color: var(--text-dim); margin-bottom: 44px; }
.success-detail {
  max-width: 440px;
  margin: 0 auto 44px;
  border-top: 1px solid var(--hair-dim);
}
.success-detail > div {
  display: flex; justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--hair-dim);
}
.success-detail dt { font-size: 12.5px; color: var(--text-dim); letter-spacing: .14em; }
.success-detail dd { font-size: 14px; letter-spacing: .06em; }
.btn-line {
  border-color: rgba(76, 217, 100, .5);
  color: #c9f2d0;
  margin-bottom: 48px;
}
.btn-line:hover { box-shadow: 0 0 24px rgba(76,217,100,.18); color: #fff; border-color: #4cd964; }
.steps-line { text-align: left; max-width: 520px; margin: 0 auto 28px; }

/* ============ Footer ============ */
.site-foot {
  position: relative;
  background:
    linear-gradient(to bottom, var(--ink), rgba(7,7,8,.85)),
    url("../media/bg-footer.jpg") center / cover no-repeat;
  border-top: 1px solid var(--hair-dim);
  padding: clamp(80px, 10vw, 130px) 0 56px;
  text-align: center;
}
.foot-brand {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: .42em;
  text-indent: .42em;
  margin-bottom: 14px;
}
.foot-tag {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: .22em;
  color: var(--text-faint);
  margin-bottom: 52px;
}
.foot-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 38px;
  margin-bottom: 40px;
}
.foot-nav a {
  display: inline-block;
  padding: 11px 2px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--text-dim);
  transition: color .4s;
}
.foot-nav a:hover { color: var(--gold); }
.foot-legal { font-size: 11px; color: var(--text-faint); line-height: 2; margin-bottom: 30px; }
.foot-copy {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: .16em;
}


/* ============ ダイアログ ============ */
.doc-dialog {
  background: var(--coal);
  color: var(--text);
  border: 1px solid var(--hair);
  max-width: 480px;
  width: calc(100% - 48px);
  padding: 44px 40px;
  letter-spacing: .06em;
  line-height: 2.1;
  font-family: var(--serif-jp);
}
.doc-dialog::backdrop { background: rgba(0,0,0,.75); backdrop-filter: blur(4px); }
.doc-dialog h2 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .18em;
  margin-bottom: 16px;
}
.doc-dialog p { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }

/* ============ レスポンシブ ============ */
@media (max-width: 1180px) {
  .ghost { font-size: clamp(100px, 15vw, 200px); }
}

@media (max-width: 1023px) {
  .plan-slider:not(.is-cards) .plan-card {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "emblem name-en"
      "emblem name-jp"
      "feats feats"
      "price price"
      "btn btn";
  }
  .plan-slider:not(.is-cards) .plan-price { justify-content: flex-start; }
  .plan-slider:not(.is-cards) .btn-plan { justify-self: start; }
}

@media (max-width: 1024px) {
  .j-cap { bottom: 190px; max-width: 80vw; }
  .j-meta { bottom: 96px; }
  .j-label { display: none; }
  .j-index { display: flex; gap: 18px; }
  .j-index li { padding-right: 0; padding-top: 10px; }
  .j-index li::after { right: auto; left: 0; top: 0; width: 100%; height: 1px; }
}



@media (max-width: 960px) {
  .head-nav { display: none; }
  .hero-shade {
    background:
      radial-gradient(120% 62% at 50% 100%, rgba(7,7,8,.9) 28%, rgba(7,7,8,.42) 68%, rgba(7,7,8,.1) 100%),
      linear-gradient(to bottom, rgba(7,7,8,.6), rgba(7,7,8,.3) 30%, rgba(7,7,8,.5) 56%, rgba(7,7,8,.96) 86%, var(--ink) 100%);
  }
  .phi-grid, .system-grid { grid-template-columns: 1fr; gap: 64px; }
  .phi-media { order: 2; }
  .phi-copy { order: 1; }
  .first-visit { position: static; }
  .drink-row { grid-template-columns: 1fr; gap: 34px; margin-bottom: 90px; }
  .drink-row.is-flip .drink-media { order: 1; }
  .drink-row.is-flip .drink-copy { order: 2; padding-left: 0; }
  .plan-corp { grid-template-columns: 1fr; text-align: left; }
  .plan-corp .btn { justify-self: start; }
  .ghost { opacity: .8; }
}

@media (max-width: 640px) {
  body { font-size: 13.5px; }
  .phi-copy p { font-size: 14px; }
  .sec-lead { font-size: 13px; }
  .drink-copy h3 { font-size: 20.5px; }
  .drink-copy > p:last-child { font-size: 13px; }
  .j-cap h3 { font-size: 25px; }
  .j-cap-sub { font-size: 12.5px; }
  .rules b { font-size: 16px; }
  .rules span { font-size: 12.5px; }
  .first-visit h3 { font-size: 18px; }
  .steps b { font-size: 13.5px; }
  .f-block legend { font-size: 13.5px; }
  .plan-opt b { font-size: 18px; }
  .price-summary dd { font-size: 14.5px; }
  .sum-first dd { font-size: 30px; }
  .success-card h2 { font-size: 21px; }
  .success-lead { font-size: 13px; }
  .drinks-band blockquote p:last-child { font-size: 15.5px; }
  .plan-price b { font-size: 43px; }
  .hero-inner { padding-top: 90px; padding-bottom: clamp(48px, 8svh, 90px); }
  .ht-en { font-size: clamp(52px, 18vw, 72px); letter-spacing: .18em; text-indent: .18em; }
  .ht-jp { font-size: 15px; letter-spacing: .3em; text-indent: .3em; }
  .hero-eyebrow { font-size: 11px; letter-spacing: .16em; gap: 10px; padding: 0 14px; }
  .hero-eyebrow span { width: 18px; flex: 0 0 18px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; padding: 16px 20px; }
  .gate-jp { padding: 0 24px; }
  .j-cap { left: 22px; right: 22px; bottom: 178px; max-width: none; }
  .j-meta { right: 22px; bottom: 88px; }
  .sp { display: inline; }
  .head-apply { padding: 9px 14px; font-size: 11px; letter-spacing: .14em; text-indent: .14em; }
  .menu-btn span { left: 8px; right: 8px; }
  .menu-list a { flex-wrap: wrap; row-gap: 2px; }
  .menu-list a em { font-size: clamp(22px, 7vw, 28px); }
  .menu-list a span { flex-basis: 100%; padding-left: 36px; }
  .statement { font-size: clamp(23px, 7.3vw, 31px); }
  .statement .line.em > span { padding-left: .3em; }
  .statement-jp { letter-spacing: .18em; font-size: 11.5px; }
  .plan-select { grid-template-columns: 1fr; }
  .code-row { flex-direction: column; align-items: stretch; }
  .phi-media { padding-bottom: 80px; }
  .phi-media-sub { right: 0; }
  .scenes-swiper { height: 60vh; }
  .ghost { font-size: clamp(88px, 26vw, 130px); top: 24px; }
}

/* ============ モーション低減 ============ */
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1 !important; }
  html.js .line > span { transform: none !important; }
  html.js .clip { clip-path: none !important; }
  html.js [data-chars] { opacity: 1 !important; }
  .clip img { scale: 1 !important; }
  .scroll-cue span, .gate-mark, .scenes-swiper .swiper-slide-active img { animation: none !important; }
  .hero-video, .site-dust, .band-video, .plans-bg video { display: none; }
  .drinks-band {
    background: url("../media/photo-cigar-whisky.jpg") center / cover no-repeat;
  }
  * { transition-duration: .01ms !important; }
}
