/* =========================================================
   KYABEL — SITE 30 / Host Urban Gold Group
   都市の夜 × ゴールドライン × 組織の信頼感 / センターメイン型・グループ
   メイン幅 720px。可読性最低基準（design-guide）を全面適用。
   ========================================================= */

:root {
  --black: #101012;
  --grey: #2c2c30;
  --navy: #16213a;
  --gold: #c8a45c;
  --white: #f4f2ee;
  --muted: #b6b0a4;
  --surface: #17171b;
  --surface-2: #1c1c22;
  --line: #34343b;
  --accent: #c8a45c;      /* JSで店舗ごとに差し替え */
  --accent-deep: #9c8047;

  --main-width: 720px;
  --rail-width: 284px;
  --radius: 0px;          /* 都市サイン風・直線基調 */
  --font-display: "Red Hat Display", "Arial", "Helvetica Neue", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cta-h: 54px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

/* PC専用：中央コンテンツの左右に豪華な店内を見せるSIDE LUXE */
@media (min-width: 1280px) {
  body {
    background-color: #09090b;
    background-image:
      linear-gradient(90deg, rgba(7,7,9,0.18) 0%, rgba(7,7,9,0.62) 24%, rgba(7,7,9,0.96) 38%, rgba(7,7,9,0.96) 62%, rgba(7,7,9,0.62) 76%, rgba(7,7,9,0.18) 100%),
      url("../images/site/side-luxe.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
  }
  .site-shell {
    max-width: 1200px;
    background: rgba(11, 11, 14, 0.92);
    box-shadow: 0 0 72px rgba(0,0,0,0.9);
  }
  .header,
  .footer {
    background-color: rgba(12,12,15,0.96);
  }
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p, dl, dd, ul { margin: 0; }
ul { list-style: none; padding: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.en { font-family: var(--font-display); letter-spacing: 0.14em; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: #10100f; padding: 10px 16px; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---- プレースホルダー ---- */
.ph {
  position: relative; margin: 0; overflow: hidden; background: var(--navy);
  display: block; width: 100%;
}
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph[data-ratio="21x9"] { aspect-ratio: 21 / 9; }
.ph[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.ph[data-ratio="3x2"]  { aspect-ratio: 3 / 2; }
.ph[data-ratio="3x4"]  { aspect-ratio: 3 / 4; }
.ph[data-ratio="1x1"]  { aspect-ratio: 1 / 1; }
.ph__label {
  position: absolute; right: 12px; bottom: 10px; z-index: 1;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.12em;
  color: var(--accent); opacity: 0; pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.ph.is-broken > img { display: none; }
.ph.is-broken { background: linear-gradient(150deg, var(--black), var(--navy)); }
.ph.is-broken .ph__label { opacity: 0.9; }

/* =======================================================
   ヘッダー（全幅・スティッキー） / ドロワー
   ======================================================= */
.header {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px clamp(14px, 3vw, 28px);
  padding-top: calc(12px + env(safe-area-inset-top));
  background: rgba(16, 16, 18, 0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__brand { display: flex; align-items: baseline; gap: 10px; }
.header__logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: 0.16em; color: var(--white); }
.header__group { font-size: 12px; letter-spacing: 0.2em; color: var(--accent); font-family: var(--font-display); }
.header__right { display: flex; align-items: center; gap: 8px; }
.header__store-btn {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 14px;
  background: transparent; color: var(--white); border: 1px solid var(--accent);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
}
.header__store-btn .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.header__store-btn b { color: var(--accent); font-weight: 700; }
.header__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; background: transparent; border: 1px solid var(--line); color: var(--white);
}
.header__toggle span, .header__toggle span::before, .header__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; position: relative;
}
.header__toggle span::before { position: absolute; top: -6px; }
.header__toggle span::after { position: absolute; top: 6px; }
.header__nav { display: none; }

/* ドロワー */
.drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.drawer[aria-hidden="false"] { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(8,8,10,0.7); opacity: 0; transition: opacity 0.3s; }
.drawer[aria-hidden="false"] .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--surface); border-left: 1px solid var(--accent);
  padding: 24px 22px calc(24px + env(safe-area-inset-bottom));
  transform: translateX(100%); transition: transform 0.32s var(--ease);
  overflow-y: auto; display: flex; flex-direction: column; gap: 20px;
}
.drawer[aria-hidden="false"] .drawer__panel { transform: none; }
.drawer__title { font-family: var(--font-display); letter-spacing: 0.16em; color: var(--accent); font-size: 13px; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex; align-items: baseline; gap: 12px; min-height: 52px; padding: 8px 4px;
  border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 500;
}
.drawer__nav a small { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.drawer__sns { display: flex; gap: 10px; }
.drawer__sns a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-family: var(--font-display); font-size: 13px; }

/* =======================================================
   センターメイン型シェル
   ======================================================= */
.site-shell {
  display: grid;
  grid-template-columns:
    minmax(0, var(--rail-width))
    minmax(0, var(--main-width))
    minmax(0, var(--rail-width));
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(14px, 2vw, 24px);
}

.site-rail { position: sticky; top: 74px; align-self: start; max-height: calc(100svh - 90px); overflow: hidden; }
.rail-inner { display: flex; flex-direction: column; gap: 20px; padding: 22px 0; }

/* 左レール */
.rail--left .rail-block { border-top: 1px solid var(--line); padding-top: 16px; }
.rail__heading { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 12px; }
.area-nav { display: flex; flex-direction: column; gap: 8px; }
.area-nav__btn {
  display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
  min-height: 50px; padding: 8px 12px; text-align: left;
  background: var(--surface); border: 1px solid var(--line); color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.area-nav__btn:hover { border-color: var(--accent); }
.area-nav__btn[aria-pressed="true"] { border-color: var(--accent); background: var(--surface-2); box-shadow: inset 3px 0 0 var(--accent); }
.area-nav__en { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.12em; color: var(--accent); }
.area-nav__ja { font-size: 15px; font-weight: 600; }
.creed-list { display: flex; flex-direction: column; gap: 14px; }
.creed__title { font-size: 15px; font-weight: 700; color: var(--white); }
.creed__title::before { content: "—"; color: var(--accent); margin-right: 6px; }
.creed__body { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* 右レール */
.rail--right .rail-inner { gap: 16px; }
#rail-store { background: var(--surface); border: 1px solid var(--line); padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.rail__eyebrow { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.rail__store-en { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.16em; color: var(--accent); }
.rail__store-name { font-size: 20px; font-weight: 700; line-height: 1.3; }
.rail__info { display: flex; flex-direction: column; gap: 6px; }
.rail__info div { display: flex; gap: 10px; font-size: 14px; }
.rail__info dt { color: var(--muted); min-width: 40px; }
.rail__info dd { color: var(--white); margin: 0; }
.rail__first { border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); padding: 12px 0; }
.rail__first-label { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.rail__first-price { font-size: 22px; font-weight: 800; color: var(--accent); font-family: var(--font-display); }
.rail__first-inc { font-size: 14px; color: var(--muted); }
.rail__recruit { display: inline-block; min-height: 44px; line-height: 44px; text-align: center; font-size: 14px; color: var(--accent); border-bottom: 1px solid var(--accent); align-self: flex-start; }

/* =======================================================
   ボタン
   ======================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; font-size: 15px; font-weight: 700; letter-spacing: 0.03em;
  border: 1px solid var(--accent); color: var(--white); background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: rgba(200, 164, 92, 0.14); }
.btn--solid { background: var(--accent); color: #14110b; border-color: var(--accent); }
.btn--solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--white); }
.btn--block { width: 100%; }

/* =======================================================
   中央メイン
   ======================================================= */
.site-main { min-width: 0; width: 100%; }
.main-flow { display: flex; flex-direction: column; }
.section { padding: clamp(40px, 6vw, 68px) 0; border-top: 1px solid var(--line); }
.section:first-child { border-top: 0; }
.section__head { margin-bottom: 26px; }
.section__en { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em; color: var(--accent); }
.section__ja { font-size: clamp(22px, 4vw, 28px); font-weight: 700; letter-spacing: 0.02em; margin-top: 6px; }
.section__lead { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 60ch; }

/* order: GROUP1 AREA2 SHOP3 HOST4 FIRST5 NEWS6 RECRUIT7 RESERVE8 */
#sec-hero { order: 1; } #sec-area { order: 2; } #sec-shop { order: 3; }
#sec-host { order: 4; } #sec-first { order: 5; } #sec-news { order: 6; }
#sec-recruit { order: 7; } #sec-reserve { order: 8; } #sec-faq { order: 9; }

/* ---- HERO (GROUP) ---- */
.hero { position: relative; padding: clamp(36px, 6vw, 64px) 0 clamp(28px, 4vw, 44px); }
.hero__ph { position: relative; margin-bottom: 24px; }
.hero__ph .ph { aspect-ratio: 21 / 9; border: 1px solid var(--line); }
.hero__ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,16,18,0) 40%, rgba(16,16,18,0.72) 100%);
  pointer-events: none;
}
.hero__group-en { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.22em; color: var(--accent); }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 6.4vw, 52px); line-height: 1.18; letter-spacing: 0.01em;
  margin: 10px 0 14px;
}
.hero__title .accent { color: var(--accent); }
.hero__lead { font-size: 16px; color: var(--white); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero__meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; color: var(--muted); }
.hero__meta span::before { content: "●"; color: var(--accent); font-size: 8px; vertical-align: middle; margin-right: 6px; }

/* ---- AREA（マップ風 ⇔ リスト） ---- */
.area-toggle { display: inline-flex; border: 1px solid var(--line); margin-bottom: 20px; }
.area-toggle__btn { min-height: 44px; padding: 0 18px; background: transparent; color: var(--muted); font-size: 13px; font-weight: 600; font-family: var(--font-display); letter-spacing: 0.08em; }
.area-toggle__btn[aria-pressed="true"] { background: var(--accent); color: #14110b; }
#area-view[data-view="map"] #area-list { display: none; }
#area-view[data-view="list"] #area-map { display: none; }
.map-wrap {
  position: relative; aspect-ratio: 16 / 10; width: 100%;
  background: radial-gradient(120% 90% at 70% 30%, #172443 0%, #101012 70%);
  border: 1px solid var(--line); overflow: hidden;
}
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-lines line { stroke: var(--accent); stroke-width: 0.4; opacity: 0.4; }
.map-node {
  position: absolute; transform: translate(-50%, -50%); background: transparent; border: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 6px; min-width: 44px; min-height: 44px;
}
.map-node__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 2px solid var(--accent); transition: transform 0.2s, background 0.2s; }
.map-node__label { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.map-node:hover .map-node__dot { transform: scale(1.2); }
.map-node[aria-pressed="true"] .map-node__dot { background: var(--accent); box-shadow: 0 0 0 6px rgba(200,164,92,0.2); transform: scale(1.25); }
.map-node[aria-pressed="true"] .map-node__label { color: var(--accent); }
.map-hint { margin-top: 12px; font-size: 14px; color: var(--muted); }
.area-list { display: flex; flex-direction: column; gap: 10px; }
.area-row {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 14px;
  min-height: 64px; padding: 12px 16px; text-align: left;
  background: var(--surface); border: 1px solid var(--line); color: var(--white);
}
.area-row:hover { border-color: var(--accent); }
.area-row[aria-pressed="true"] { border-color: var(--accent); box-shadow: inset 3px 0 0 var(--accent); }
.area-row__en { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.1em; color: var(--accent); }
.area-row__name { font-size: 16px; font-weight: 700; display: block; }
.area-row__meta { font-size: 14px; color: var(--muted); }
.area-row__first { font-size: 15px; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* ---- SHOP ---- */
.shop { display: grid; gap: 22px; }
.shop__media .ph { border: 1px solid var(--line); }
.tag-store { display: inline-block; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.12em; color: #14110b; background: var(--accent); padding: 2px 8px; margin-right: 10px; }
.shop__area { font-size: 14px; color: var(--muted); }
.shop__name { font-size: clamp(22px, 4vw, 27px); font-weight: 700; margin: 8px 0 10px; }
.shop__concept { font-size: 16px; color: var(--white); margin-bottom: 18px; }
.shop__info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-bottom: 20px; }
.shop__info div { display: flex; flex-direction: column; gap: 2px; }
.shop__info dt { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.shop__info dd { font-size: 15px; margin: 0; }
.shop__info a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.shop__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- HOST ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.chip {
  min-height: 44px; padding: 0 16px; background: var(--surface); color: var(--white);
  border: 1px solid var(--line); font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}
.chip:hover { border-color: var(--accent); }
.chip[aria-pressed="true"], .chip[aria-selected="true"] { background: var(--accent); color: #14110b; border-color: var(--accent); }
.count-note { font-size: 14px; color: var(--muted); margin: 6px 0 18px; }
.host-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.host { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.host__media { position: relative; }
.host__media .ph { aspect-ratio: 3 / 4; }
.host__store { position: absolute; left: 10px; top: 10px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; color: #14110b; background: var(--accent); padding: 2px 8px; z-index: 2; }
.host__badges { position: absolute; right: 8px; bottom: 8px; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; z-index: 2; }
.badge { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em; padding: 3px 8px; background: rgba(16,16,18,0.82); color: var(--accent); border: 1px solid var(--accent); }
.badge--new { color: #14110b; background: var(--accent); border-color: var(--accent); }
.badge--pick { color: var(--white); background: rgba(22,33,58,0.9); border-color: var(--navy); }
.host__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.host__name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 0.04em; display: flex; align-items: baseline; gap: 8px; }
.host__ja { font-size: 14px; color: var(--muted); font-family: var(--font-body); letter-spacing: 0; }
.host__store-ja { font-size: 14px; color: var(--accent); }
.host__catch { font-size: 15px; color: var(--white); }
.host__time { font-size: 14px; color: var(--white); font-weight: 600; }
.host__tags { font-size: 14px; color: var(--muted); }

/* ---- FIRST（初回料金 + 比較） ---- */
.first { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.first__lead { background: var(--surface); border: 1px solid var(--accent); padding: 22px; }
.first__store { font-size: 15px; color: var(--muted); }
.first__big { display: flex; align-items: baseline; gap: 12px; margin: 8px 0; }
.first__min { font-family: var(--font-display); font-size: 18px; color: var(--white); }
.first__amt { font-family: var(--font-display); font-size: clamp(34px, 7vw, 46px); font-weight: 800; color: var(--accent); line-height: 1; }
.first__inc { font-size: 16px; }
.first__note { font-size: 14px; color: var(--muted); margin-top: 6px; }
.first__id { font-size: 14px; color: var(--muted); margin-top: 12px; border-top: 1px dashed var(--line); padding-top: 12px; }
.first__compare-title { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 12px; }
.first-cards { display: flex; flex-direction: column; gap: 10px; }
.first-card {
  display: grid; grid-template-columns: 90px auto 1fr; align-items: center; gap: 10px;
  min-height: 56px; padding: 10px 14px; text-align: left;
  background: var(--surface); border: 1px solid var(--line); color: var(--white);
}
.first-card:hover { border-color: var(--accent); }
.first-card.is-current { border-color: var(--accent); box-shadow: inset 3px 0 0 var(--accent); background: var(--surface-2); }
.first-card__area { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.08em; color: var(--accent); }
.first-card__price { font-size: 17px; font-weight: 800; font-family: var(--font-display); }
.first-card__meta { font-size: 14px; color: var(--muted); text-align: right; }
.first__hint { font-size: 14px; color: var(--muted); margin-top: 12px; }

/* ---- NEWS ---- */
.news { display: flex; flex-direction: column; }
.news__row { display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.news__row:first-child { border-top: 0; }
.news__date { font-family: var(--font-display); font-size: 14px; color: var(--muted); letter-spacing: 0.05em; }
.news__meta { display: flex; gap: 8px; margin-bottom: 4px; }
.news__cat { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em; color: #14110b; background: var(--accent); padding: 1px 8px; }
.news__scope { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 1px 8px; }
.news__title { font-size: 16px; font-weight: 700; }
.news__excerpt { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ---- RECRUIT ---- */
.rec-scope { display: flex; gap: 8px; margin-bottom: 14px; }
.rec-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.rec-track-lead { font-size: 15px; color: var(--white); margin-bottom: 14px; }
.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rec-sub { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.rec-list__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.rec-list__name { color: var(--muted); }
.rec-benefits { display: flex; flex-wrap: wrap; gap: 8px; }
.rec-benefits li { font-size: 14px; padding: 6px 12px; border: 1px solid var(--line); background: var(--surface); }
.rec-store-note { font-size: 14px; color: var(--white); background: var(--surface); border-left: 3px solid var(--accent); padding: 12px 14px; margin-top: 16px; }
.rec-conditions { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.rec-conditions li { font-size: 14px; color: var(--muted); }
.rec-conditions li::before { content: "／"; color: var(--accent); margin-right: 6px; }
.rec-trial { font-size: 15px; color: var(--white); background: var(--surface-2); padding: 14px 16px; }

/* ---- アコーディオン ---- */
.acc { border-bottom: 1px solid var(--line); }
.acc__heading { margin: 0; }
.acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 56px; padding: 14px 4px; background: transparent; color: var(--white); font-size: 16px; font-weight: 600; text-align: left; }
.acc__icon { position: relative; width: 16px; height: 16px; flex: none; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--accent); }
.acc__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc__icon::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform 0.25s; }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__panel { padding: 0 4px 16px; font-size: 15px; color: var(--muted); }

/* ---- RESERVE フォーム ---- */
.reserve-wrap { background: var(--surface); border: 1px solid var(--line); padding: clamp(20px, 4vw, 32px); }
.reserve-target { color: var(--accent); font-weight: 700; }
.form__row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__label { font-size: 14px; font-weight: 600; color: var(--white); }
.form__label .req { font-size: 12px; color: #14110b; background: var(--accent); padding: 1px 6px; margin-left: 8px; font-family: var(--font-display); letter-spacing: 0.06em; }
.form__row input, .form__row select, .form__row textarea {
  width: 100%; min-height: 48px; padding: 10px 12px; font-size: 16px; font-family: inherit;
  background: var(--black); color: var(--white); border: 1px solid var(--line);
}
.form__row textarea { min-height: 96px; resize: vertical; }
.form__row input:focus, .form__row select:focus, .form__row textarea:focus { border-color: var(--accent); outline: none; }
.form__check { flex-direction: row; align-items: center; gap: 10px; }
.form__check input { width: 22px; height: 22px; min-height: 22px; }
.form__actions { margin-top: 8px; }
.form__privacy { font-size: 14px; color: var(--muted); margin-top: 10px; }
.confirm__list { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 20px; }
.confirm__row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.confirm__row dt { color: var(--muted); }
.confirm__row dd { margin: 0; }
.confirm__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.empty-note { color: var(--muted); font-size: 15px; padding: 16px 0; }

/* =======================================================
   固定ボトムCTA（モバイル）
   ======================================================= */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  gap: 10px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(16,16,18,0.94); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; min-height: var(--cta-h); }
.mobile-cta__store { flex: none; }

/* ---- ページトップ ---- */
.page-top {
  position: fixed; right: 16px; bottom: 16px; z-index: 70; width: 48px; height: 48px;
  background: var(--surface); border: 1px solid var(--accent); color: var(--accent);
  opacity: 0; pointer-events: none; transition: opacity 0.3s; font-family: var(--font-display);
}
.page-top.is-show { opacity: 1; pointer-events: auto; }

/* ---- モーダル ---- */
.modal { position: fixed; inset: 0; z-index: 160; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,8,10,0.74); }
.modal__panel { position: relative; background: var(--surface); border: 1px solid var(--accent); max-width: 440px; width: 100%; padding: 26px 24px; }
.modal__title { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.05em; margin-bottom: 12px; color: var(--accent); }
.modal__body { font-size: 15px; color: var(--white); margin-bottom: 20px; }
.modal__close { min-height: 46px; padding: 0 20px; background: var(--accent); color: #14110b; border: 0; font-weight: 700; }

/* ---- 店舗ボトムシート ---- */
.sheet { position: fixed; inset: 0; z-index: 155; visibility: hidden; }
.sheet[aria-hidden="false"] { visibility: visible; }
.sheet__backdrop { position: absolute; inset: 0; background: rgba(8,8,10,0.7); opacity: 0; transition: opacity 0.3s; }
.sheet[aria-hidden="false"] .sheet__backdrop { opacity: 1; }
.sheet__panel {
  position: absolute; left: 0; right: 0; bottom: 0; background: var(--surface);
  border-top: 1px solid var(--accent); padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
  transform: translateY(100%); transition: transform 0.32s var(--ease); max-height: 84svh; overflow-y: auto;
}
.sheet[aria-hidden="false"] .sheet__panel { transform: none; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sheet__title { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; color: var(--accent); }
.sheet__close { min-height: 44px; min-width: 44px; background: transparent; border: 1px solid var(--line); color: var(--white); }
.sheet__list { display: flex; flex-direction: column; gap: 10px; }
.sheet__item { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 12px; min-height: 60px; padding: 12px 14px; text-align: left; background: var(--black); border: 1px solid var(--line); color: var(--white); }
.sheet__item.is-current { border-color: var(--accent); box-shadow: inset 3px 0 0 var(--accent); }
.sheet__area { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.08em; color: var(--accent); }
.sheet__name { font-size: 16px; font-weight: 700; }
.sheet__first { font-size: 13px; color: var(--muted); white-space: nowrap; }

/* ---- フッター ---- */
.footer { border-top: 1px solid var(--line); margin-top: 20px; padding: 40px clamp(14px, 3vw, 28px) calc(40px + env(safe-area-inset-bottom)); }
.footer__inner { max-width: 1120px; margin: 0 auto; display: grid; gap: 24px; }
.footer__brand { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0.14em; }
.footer__group { font-size: 13px; letter-spacing: 0.16em; color: var(--accent); font-family: var(--font-display); }
.footer__stores { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.footer__store { font-size: 14px; }
.footer__store b { display: block; font-size: 15px; color: var(--white); }
.footer__store span { color: var(--muted); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; }
.footer__nav a { color: var(--muted); }
.footer__nav a:hover { color: var(--accent); }
.footer__sns { display: flex; gap: 10px; }
.footer__sns a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-family: var(--font-display); font-size: 13px; }
.footer__demo { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 18px; line-height: 1.7; }
.footer__copy { font-size: 13px; color: var(--muted); }

/* =======================================================
   レスポンシブ（3段階変化）
   ======================================================= */

/* 1280px以上: 両レール表示（既定） */

/* 1024–1279px: レール1本（右のみ）。左レールはドロワー/中央のAREAで代替 */
@media (max-width: 1279px) {
  .site-shell {
    grid-template-columns: minmax(0, var(--main-width)) minmax(0, var(--rail-width));
    max-width: 1080px;
  }
  .rail--left { display: none; }
}

/* 768–1023px: レール非表示・中央単独（最大760px）。固定CTA表示 */
@media (max-width: 1023px) {
  .site-shell { grid-template-columns: minmax(0, 760px); max-width: 760px; }
  .rail--right { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: calc(var(--cta-h) + 20px + env(safe-area-inset-bottom)); }
  .page-top { bottom: calc(var(--cta-h) + 24px + env(safe-area-inset-bottom)); }
}

/* タブレット中央: そのまま単一カラム。ナビはドロワー */

/* 767px以下: 完全1カラム・モバイル最優先 */
@media (max-width: 767px) {
  .site-shell { padding: 0 14px; }
  .header__store-btn b { display: none; }
  /* モバイル並び替え: SHOPの直後に FIRST（初回料金をFV付近へ）。HOSTを後ろへ */
  #sec-first { order: 4; }
  #sec-host { order: 5; }
  .host-grid { grid-template-columns: 1fr; }
  .host { flex-direction: row; }
  .host__media { width: 42%; flex: none; }
  .host__media .ph { aspect-ratio: 3 / 4; height: 100%; }
  .shop__info { grid-template-columns: 1fr; }
  .first { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .first-card { grid-template-columns: 72px auto 1fr; }
  .news__row { grid-template-columns: 1fr; gap: 6px; }
  .area-row { grid-template-columns: 64px 1fr; }
  .area-row__first { grid-column: 2; text-align: left; }
  .confirm__row { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 400px) {
  .host { flex-direction: column; }
  .host__media { width: 100%; }
  .header__logo { font-size: 18px; }
}

/* リビール */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .drawer__panel, .sheet__panel { transition: none; }
}

/* =======================================================
   下層ページ共通
   ======================================================= */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 14px; color: var(--muted); padding: 16px 0 4px; }
.crumbs a { color: var(--accent); }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: var(--line); }
.crumbs [aria-current="page"] { color: var(--white); }
.page-head { padding: 12px 0 26px; }
.page-head__en { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.2em; color: var(--accent); }
.page-head__h1 { font-size: clamp(26px, 5vw, 36px); font-weight: 800; font-family: var(--font-display); letter-spacing: 0.02em; margin-top: 6px; }
.page-head__lead { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 62ch; }
.subsec { margin-top: 34px; }
.subsec__title { font-size: clamp(20px, 3.6vw, 24px); font-weight: 700; margin-bottom: 16px; padding-top: 24px; border-top: 1px solid var(--line); }

/* CAST 詳細 */
.detail { display: grid; grid-template-columns: 0.85fr 1fr; gap: 26px; align-items: start; }
.detail__media { position: relative; border: 1px solid var(--line); cursor: zoom-in; }
.detail__media .ph { aspect-ratio: 3 / 4; }
.detail__store { font-size: 14px; color: var(--accent); }
.detail__name { font-family: var(--font-display); font-size: clamp(28px, 6vw, 40px); font-weight: 800; letter-spacing: 0.03em; display: flex; align-items: baseline; gap: 12px; margin: 6px 0 10px; }
.detail__ja { font-size: 16px; color: var(--muted); font-family: var(--font-body); letter-spacing: 0; }
.detail__catch { font-size: 17px; color: var(--white); margin-bottom: 18px; }
.detail__profile { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.detail__profile div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; font-size: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.detail__profile dt { color: var(--muted); }
.detail__profile dd { margin: 0; }
.detail__sched { display: flex; flex-wrap: wrap; gap: 6px; }
.day-chip { font-size: 14px; padding: 4px 10px; border: 1px solid var(--line); color: var(--white); }
.day-chip.is-today { background: var(--accent); color: #14110b; border-color: var(--accent); font-weight: 700; }
.detail__comment { font-size: 16px; margin-bottom: 14px; }
.detail__sns { display: flex; gap: 10px; margin: 14px 0; }
.detail__sns a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-family: var(--font-display); font-size: 14px; color: var(--accent); }
.detail__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.detail-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; border-top: 1px solid var(--line); padding-top: 20px; }
.detail-nav__link { display: flex; flex-direction: column; min-height: 48px; justify-content: center; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.06em; color: var(--accent); }
.detail-nav__link small { font-family: var(--font-body); font-size: 14px; color: var(--white); letter-spacing: 0; }
.detail-nav__link:last-child { text-align: right; }

/* SCHEDULE */
.sched-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 20px; -webkit-overflow-scrolling: touch; }
.sched-tab { flex: none; display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 60px; min-height: 60px; padding: 8px 6px; background: var(--surface); border: 1px solid var(--line); color: var(--white); }
.sched-tab[aria-selected="true"] { background: var(--accent); color: #14110b; border-color: var(--accent); }
.sched-tab__dow { font-size: 13px; }
.sched-tab__dow.sun { color: var(--dusty, #d08a6c); }
.sched-tab[aria-selected="true"] .sched-tab__dow.sun { color: #6a1e10; }
.sched-tab__num { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.sched-head { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.sched-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sched-card { display: flex; gap: 14px; align-items: center; background: var(--surface); border: 1px solid var(--line); padding: 10px; }
.sched-card:hover { border-color: var(--accent); }
.sched-card__ph { width: 76px; flex: none; }
.sched-card__ph .ph { aspect-ratio: 3 / 4; }
.sched-card__name { font-family: var(--font-display); font-size: 16px; font-weight: 700; display: flex; align-items: baseline; gap: 8px; }
.sched-card__name span { font-size: 13px; color: var(--muted); font-family: var(--font-body); }
.sched-card__time { font-size: 15px; color: var(--accent); font-weight: 600; }
.closed-note { text-align: center; padding: 40px 20px; border: 1px dashed var(--line); }
.closed-note .en { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.2em; color: var(--accent); display: block; margin-bottom: 8px; }
.closed-note p { color: var(--muted); font-size: 15px; }

/* SYSTEM */
.sys-block { margin-bottom: 26px; }
.sys-block__head { display: flex; flex-direction: column; margin-bottom: 12px; }
.sys-block__head .en { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; color: var(--accent); }
.sys-block__head span:last-child { font-size: 18px; font-weight: 700; }
.sys-table { width: 100%; border-collapse: collapse; }
.sys-table th, .sys-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 16px; }
.sys-table th { font-weight: 600; }
.sys-table td { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--accent); white-space: nowrap; }
.sys-sub { display: block; font-size: 14px; color: var(--muted); font-weight: 400; }
.sys-cardlist { display: none; flex-direction: column; gap: 10px; }
.sys-card { background: var(--surface); border: 1px solid var(--line); padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sys-card__name { font-size: 16px; font-weight: 600; }
.sys-card__sub { font-size: 14px; color: var(--muted); }
.sys-card__price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.sys-note { font-size: 14px; color: var(--muted); margin-top: 8px; }
.sys-summary { display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: 15px; margin-bottom: 10px; }
.sys-inline { display: flex; flex-wrap: wrap; gap: 8px; }
.sys-inline li { font-size: 14px; padding: 6px 12px; border: 1px solid var(--line); }
.sys-notes { display: flex; flex-direction: column; gap: 8px; }
.sys-notes li { font-size: 15px; color: var(--muted); padding-left: 16px; position: relative; }
.sys-notes li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ARTICLE */
.article__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; font-family: var(--font-display); font-size: 14px; color: var(--muted); }
.article__title { font-size: clamp(24px, 5vw, 32px); font-weight: 800; line-height: 1.35; margin-bottom: 18px; }
.article__photo { border: 1px solid var(--line); margin-bottom: 20px; }
.article__photo .ph { aspect-ratio: 3 / 2; }
.article__body { font-size: 16px; line-height: 1.85; }
.article__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; border-top: 1px solid var(--line); padding-top: 20px; font-size: 15px; }
.article__nav a { color: var(--accent); min-height: 44px; display: inline-flex; align-items: center; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.gallery-item { position: relative; padding: 0; background: transparent; border: 1px solid var(--line); overflow: hidden; }
.gallery-item .ph { transition: transform 0.5s var(--ease); }
.gallery-item:hover .ph, .gallery-item:focus-visible .ph { transform: scale(1.05); }
.gallery-item__cat { position: absolute; left: 8px; bottom: 8px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; color: #14110b; background: var(--accent); padding: 2px 8px; }

/* LIGHTBOX */
.lb { position: fixed; inset: 0; z-index: 170; display: none; align-items: center; justify-content: center; padding: 24px; }
.lb.is-open { display: flex; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(6,6,8,0.9); }
.lb__stage { position: relative; max-width: 900px; width: 100%; }
.lb__figure { margin: 0; }
.lb__ph .ph { max-height: 78vh; border: 1px solid var(--accent); }
.lb__cap { text-align: center; font-size: 14px; color: var(--muted); margin-top: 10px; }
.lb__close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 48px; height: 48px; background: var(--surface); border: 1px solid var(--accent); color: var(--accent); font-size: 22px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; background: var(--surface); border: 1px solid var(--accent); color: var(--accent); font-size: 24px; }
.lb__nav--prev { left: 8px; }
.lb__nav--next { right: 8px; }

/* ACCESS */
.access { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.access__media .ph { border: 1px solid var(--line); }
.access__info { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 18px; }
.access__info div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; font-size: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.access__info dt { color: var(--muted); }
.access__info dd { margin: 0; }
.access__info a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.access__map { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 90% at 70% 30%, #172443 0%, #101012 70%); border: 1px solid var(--line); margin-bottom: 14px; }
.access__map span { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.14em; color: var(--accent); }
.access__note { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* SHOPS / SHOP DETAIL */
.shops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.shopcard { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); }
.shopcard:hover { border-color: var(--accent); }
.shopcard__media { position: relative; }
.shopcard__media .host__store { position: absolute; left: 10px; top: 10px; }
.shopcard__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.shopcard__name { font-size: 20px; font-weight: 700; }
.shopcard__concept { font-size: 15px; color: var(--muted); }
.shopcard__meta { font-size: 14px; color: var(--white); }
.shopcard__first { font-size: 16px; font-weight: 700; color: var(--accent); font-family: var(--font-display); }
.sd-hero { position: relative; border: 1px solid var(--line); margin-bottom: 18px; }
.sd-hero .host__store { position: absolute; left: 12px; top: 12px; }
.sd-name { font-size: clamp(26px, 5vw, 34px); font-weight: 800; font-family: var(--font-display); margin: 6px 0 12px; }
.sd-first { background: var(--surface); border: 1px solid var(--accent); padding: 16px 18px; margin: 18px 0; }
.sd-first__label { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.14em; color: var(--muted); }
.sd-first__price { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--accent); }
.sd-first__inc { font-size: 14px; color: var(--muted); }
.sd-sub { font-size: 20px; font-weight: 700; margin: 30px 0 16px; padding-top: 20px; border-top: 1px solid var(--line); }

/* STEP（来店の流れ・応募フロー） */
.steps { display: flex; flex-direction: column; gap: 12px; }
.step { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: 16px 18px; }
.step__no { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.step__title { font-size: 17px; font-weight: 700; margin: 4px 0 6px; }
.step__body { font-size: 15px; color: var(--muted); }

/* RECRUIT list */
.rec-list__val { color: var(--white); text-align: right; }

/* PRIVACY / 長文 */
.prose { max-width: 66ch; }
.prose h2 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.prose p { font-size: 16px; margin-bottom: 14px; color: var(--white); }
.prose ul.dashed { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.prose ul.dashed li { font-size: 15px; color: var(--muted); padding-left: 16px; position: relative; }
.prose ul.dashed li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.demo-box { background: var(--surface); border: 1px solid var(--accent); padding: 16px 18px; font-size: 15px; margin: 18px 0; }

@media (max-width: 767px) {
  .detail { grid-template-columns: 1fr; }
  .access { grid-template-columns: 1fr; }
  .shops-grid { grid-template-columns: 1fr; }
  .sched-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .sys-table { display: none; }
  .sys-cardlist { display: flex; }
  .detail__profile div { grid-template-columns: 80px 1fr; }
}
