/* SITE 95 CABARET MOBILE SCHEDULE — components
   header / drawer / breadcrumb / button / card / tabs / chips / table
   accordion / modal / bottom sheet / lightbox / form / footer / mobile CTA

   このファイルは 390px を基準（＝メディアクエリなしの状態）として書く。
   PC向けの拡張は responsive.css の min-width クエリだけで行い、
   情報の順序とカードの構造はモバイルのものをそのまま使う。 */

/* ============ base ============ */
body {
  background: var(--c-bg);
  color: var(--c-ink-2);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 400;
  /* 固定CTAの下に本文末が隠れないようにする（PCでは responsive.css で解除） */
  padding-bottom: calc(var(--cta-h) + env(safe-area-inset-bottom, 0px) + 16px);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--c-ink);
}

p { max-width: 72ch; }

a { text-underline-offset: 0.2em; }

:focus-visible {
  outline: 2px solid var(--c-accent-text);
  outline-offset: 2px;
  border-radius: var(--r-s);
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -200px;
  z-index: 200;
  background: var(--c-accent);
  color: var(--c-on-accent);
  padding: 12px 18px;
  border-radius: var(--r-s);
  font-weight: 700;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ============ eyebrow / section ============ */
.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  color: var(--c-accent-text);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--c-bg-2); }
.section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.section__title { font-size: var(--fs-h2); letter-spacing: 0.01em; }
.section__lead {
  color: var(--c-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-dense);
}

/* ============ header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 6px var(--gutter);
  min-height: var(--header-h);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex: none;
  min-height: 44px;
  min-width: 0;
}
.header__mark { flex: none; width: 26px; height: 26px; }
.header__brand-text { display: grid; gap: 1px; min-width: 0; }
.header__brand-name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  white-space: nowrap;
}
.header__brand-sub {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--c-accent-text);
  white-space: nowrap;
}
.header__brand[aria-current="page"] .header__brand-name { color: var(--c-accent-text); }

/* PCナビは 1024px 以上でのみ表示する（responsive.css） */
.header__nav { display: none; margin-inline-start: auto; min-width: 0; }
.header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.1vw, 15px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-nav);
  white-space: nowrap;
  text-decoration: none;
  color: var(--c-ink-2);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.header__nav a:hover { color: var(--c-accent-text); border-bottom-color: var(--c-accent); }
.header__nav a[aria-current="page"] { color: var(--c-accent-text); border-bottom-color: var(--c-accent); font-weight: 700; }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: none;
  margin-inline-start: auto;
}

.header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  color: var(--c-ink);
}
.header__burger span {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.header__burger span::before,
.header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.header__burger span::before { top: -6px; }
.header__burger span::after { top: 6px; }

/* ヘッダー内の営業状態。狭い幅では出さず、ヒーローの営業状態バッジに任せる
   （同じ内容が本文側に必ずあるため、消しても情報は失われない） */
.header__status {
  display: none;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 4px;
  font-size: var(--fs-note);
  color: var(--c-muted);
  white-space: nowrap;
}

/* ============ drawer ============ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.66);
  z-index: var(--z-drawer);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 340px);
  z-index: calc(var(--z-drawer) + 1);
  background: var(--c-surface);
  border-left: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + var(--sp-6));
  box-shadow: var(--sh-2);
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-line);
}
.drawer__title { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; }
.drawer__close,
.sheet__close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--c-ink);
  font-size: 1.25rem;
  line-height: 1;
}
.drawer__nav { padding: var(--sp-2) var(--sp-4); }
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 52px;
  padding: 4px 0;
  font-size: var(--fs-body);
  text-decoration: none;
  border-bottom: 1px solid var(--c-line);
}
.drawer__nav a[aria-current="page"] { color: var(--c-accent-text); font-weight: 700; }
.drawer__nav a .en {
  font-size: var(--fs-note);
  letter-spacing: 0.12em;
  color: var(--c-muted);
}
.drawer__foot {
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-3);
}
.drawer__info {
  font-size: var(--fs-note);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--r-m);
  border: 1px solid transparent;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--primary { background: var(--c-accent); color: var(--c-on-accent); border-color: var(--c-accent); }
.btn--primary:hover { background: #E0728C; border-color: #E0728C; }
.btn--outline { background: transparent; color: var(--c-ink); border-color: var(--c-line-strong); }
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent-text); }
.btn--ghost { background: transparent; color: var(--c-muted); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-line-strong); color: var(--c-ink); }
.btn--line { background: var(--c-surface-2); color: var(--c-ink); border-color: var(--c-line-strong); }
.btn--line:hover { border-color: var(--c-ok); color: var(--c-ok); }
.btn--sm { min-height: 44px; padding: 10px 14px; font-size: var(--fs-label); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-accent-text);
  text-decoration: underline;
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { color: var(--c-ink); }

/* ============ breadcrumb ============ */
.breadcrumb {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-2);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-note);
  color: var(--c-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: "/"; color: var(--c-grey); }
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 2px;
  text-decoration: underline;
  color: var(--c-muted);
}
.breadcrumb a:hover { color: var(--c-accent-text); }
.breadcrumb [aria-current="page"] { color: var(--c-ink); }

/* ============ page head ============ */
.page-head {
  padding-block: clamp(24px, 3.6vw, 44px);
  border-bottom: 1px solid var(--c-line);
}
.page-head__title {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
}
.page-head__lead {
  margin-top: var(--sp-3);
  color: var(--c-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-dense);
}

/* ============ card / grid ============ */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-m);
  overflow: hidden;
}

/* 390pxでは1列。列数の追加は responsive.css の min-width クエリのみで行う。 */
.grid { display: grid; gap: var(--sp-3); grid-template-columns: minmax(0, 1fr); }
.grid--people { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ============ tag ============ */
.tag {
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: var(--r-s);
  padding: 2px 8px;
  line-height: 1.5;
}
.tag--accent { border-color: var(--c-accent); color: var(--c-accent-text); background: var(--c-accent-tint); }
.tag--ok { border-color: var(--c-ok); color: var(--c-ok); background: transparent; }
.tag--muted { color: var(--c-muted); }

/* ============ tabs（日付タブ・カテゴリタブ共通） ============ */
.tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.tabs__btn {
  flex: none;
  min-height: 48px;
  padding: 8px 14px;
  background: var(--c-surface);
  color: var(--c-ink-2);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m);
  font-size: var(--fs-label);
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
}
.tabs__btn[aria-selected="true"] {
  background: var(--c-accent);
  color: var(--c-on-accent);
  border-color: var(--c-accent);
}
.tabs__btn[aria-selected="true"]::before { content: "● "; font-size: 0.7em; vertical-align: 0.15em; }

/* 日付タブは2段組みの情報（曜日＋日付＋人数）を持つ */
.daytab {
  display: grid;
  gap: 1px;
  text-align: center;
  min-width: 76px;
  line-height: 1.3;
}
.daytab__dow { font-size: var(--fs-note); font-weight: 600; }
.daytab__date {
  font-size: 1.0625rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.daytab__count { font-size: var(--fs-note); }
.tabs__btn[aria-selected="false"] .daytab__count { color: var(--c-muted); }

/* ============ chips ============ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 13px;
  border-radius: var(--r-s);
  border: 1px solid var(--c-line-strong);
  background: transparent;
  color: var(--c-ink-2);
  font-size: var(--fs-label);
  text-decoration: none;
}
.chip:hover { border-color: var(--c-accent); color: var(--c-accent-text); }
.chip[aria-pressed="true"] {
  background: var(--c-accent-tint);
  border-color: var(--c-accent);
  color: var(--c-accent-text);
  font-weight: 700;
}
.chip[aria-pressed="true"]::before { content: "✓ "; }
.chip[disabled] { opacity: 0.45; cursor: not-allowed; }
.chip__sub { font-size: var(--fs-note); color: var(--c-muted); }

/* ============ table ============ */
.table-wrap { overflow-x: auto; }
.table { min-width: 460px; font-size: var(--fs-body); }
.table caption {
  text-align: left;
  font-size: var(--fs-note);
  color: var(--c-muted);
  padding-bottom: var(--sp-2);
}
.table th,
.table td {
  border-bottom: 1px solid var(--c-line);
  padding: 13px var(--sp-3);
  text-align: left;
  line-height: var(--lh-dense);
  vertical-align: top;
}
.table thead th {
  background: var(--c-surface-2);
  font-weight: 700;
  color: var(--c-ink);
  border-bottom-color: var(--c-line-strong);
}
.table td.num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* 表のカード化（390px基準のため既定でカード、PCで表へ戻す） */
.table-wrap--cardable .table { min-width: 0; }
.table-wrap--cardable .table thead { display: none; }
.table-wrap--cardable .table tr {
  display: grid;
  gap: 4px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-s);
  padding: var(--sp-3);
  background: var(--c-surface);
}
.table-wrap--cardable .table tbody tr + tr { margin-top: var(--sp-3); }
.table-wrap--cardable .table td {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: var(--sp-3);
  border: 0;
  padding: 3px 0;
  text-align: left;
}
.table-wrap--cardable .table td.num { text-align: left; }
.table-wrap--cardable .table td::before {
  content: attr(data-th);
  font-size: var(--fs-note);
  font-weight: 700;
  color: var(--c-muted);
}

/* ============ accordion ============ */
.acc { border-top: 1px solid var(--c-line); }
.acc__item { border-bottom: 1px solid var(--c-line); }
.acc__btn {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 13px 4px;
  background: transparent;
  border: 0;
  color: var(--c-ink);
  font-size: var(--fs-body);
  font-weight: 700;
  text-align: left;
  line-height: var(--lh-heading);
}
.acc__btn .mark {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-s);
  color: var(--c-accent-text);
  font-size: 1rem;
  line-height: 1;
}
.acc__btn[aria-expanded="true"] .mark::before { content: "−"; }
.acc__btn[aria-expanded="false"] .mark::before { content: "＋"; font-size: 0.75rem; }
.acc__panel { padding: 0 4px var(--sp-4); }
.acc__panel > * + * { margin-top: var(--sp-3); }

/* ============ notice ============ */
.notice {
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-s);
  background: var(--c-surface);
  padding: var(--sp-4);
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  line-height: 1.7;
}
.notice strong { color: var(--c-ink); display: block; margin-bottom: 4px; }
.notice ul { margin: var(--sp-2) 0 0; padding-left: 1.2em; }
.notice li + li { margin-top: 4px; }

/* ============ modal ============ */
/* モーダルは予約シートより必ず上に出す（シートの中から開くことがあるため） */
.modal {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) + 20);
  display: grid;
  place-items: end center;
  background: rgba(6, 10, 18, 0.7);
}
.modal__dialog {
  width: 100%;
  max-height: min(88svh, 760px);
  overflow-y: auto;
  background: var(--c-surface);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m) var(--r-m) 0 0;
  padding: var(--sp-5) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--sp-6));
  box-shadow: var(--sh-2);
}
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.modal__title { font-size: var(--fs-h3); }
.modal__close {
  flex: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--c-ink);
  font-size: 1.25rem;
  line-height: 1;
}
.modal__body > * + * { margin-top: var(--sp-4); }
.modal__actions {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

/* ============ bottom sheet（予約シート） ============ */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(6, 10, 18, 0.7);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.sheet-backdrop.is-open { opacity: 1; }
.sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: calc(var(--z-modal) + 1);
  max-height: 92svh;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line-strong);
  border-radius: var(--r-m) var(--r-m) 0 0;
  box-shadow: var(--sh-2);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
}
.sheet.is-open { transform: translateY(0); }
.sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-line);
}
.sheet__title { font-size: var(--fs-h4); font-weight: 700; color: var(--c-ink); }
.sheet__body {
  overflow-y: auto;
  padding: var(--sp-4);
  -webkit-overflow-scrolling: touch;
}
.sheet__foot {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4) calc(env(safe-area-inset-bottom, 0px) + var(--sp-3));
  border-top: 1px solid var(--c-line);
  background: var(--c-surface);
}

/* ============ lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) + 30);
  background: rgba(8, 12, 20, 0.96);
  color: var(--c-ink);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--sp-3) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--sp-4));
}
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.lightbox__count { font-size: var(--fs-note); color: var(--c-muted); }
.lightbox__stage {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: var(--sp-3) 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--r-s);
}
.lightbox__caption {
  text-align: center;
  font-size: var(--fs-body);
  padding-top: var(--sp-2);
  max-width: none;
}
.lightbox__nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
}
.lightbox__nav button {
  min-width: 56px;
  min-height: 48px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  background: transparent;
  color: var(--c-ink);
  font-size: var(--fs-body);
}

/* ============ form ============ */
.form { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: 6px; }
.field__label {
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.field__req {
  font-size: var(--fs-note);
  background: var(--c-accent);
  color: var(--c-on-accent);
  border-radius: var(--r-s);
  padding: 2px 8px;
  font-weight: 700;
}
.field__opt {
  font-size: var(--fs-note);
  border: 1px solid var(--c-line-strong);
  color: var(--c-muted);
  border-radius: var(--r-s);
  padding: 2px 8px;
}
.field__hint { font-size: var(--fs-note); color: var(--c-muted); line-height: 1.6; }
.field input,
.field select,
.field textarea,
.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-s);
  color: var(--c-ink);
  font-size: var(--fs-body);
}
.field textarea { min-height: 120px; line-height: 1.7; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder,
.input::placeholder { color: var(--c-muted); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.input:focus-visible { border-color: var(--c-accent); }
.field.is-error input,
.field.is-error select,
.field.is-error textarea { border-color: var(--c-alert); background: #2C1E26; }
.field__error {
  font-size: var(--fs-note);
  color: var(--c-alert);
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.6;
}
.field__error::before { content: "！"; font-weight: 700; }
.field__error:empty { display: none; }
.field input:disabled,
.field select:disabled,
.field textarea:disabled { opacity: 0.75; }

.checkline {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  min-height: 44px;
  font-size: var(--fs-body);
}
.checkline input {
  width: 24px; height: 24px;
  min-height: 24px;
  margin-top: 4px;
  flex: none;
  accent-color: var(--c-accent);
}

.form__summary {
  border: 1px solid var(--c-alert);
  border-radius: var(--r-s);
  background: #2C1E26;
  padding: var(--sp-4);
  font-size: var(--fs-body);
  color: var(--c-ink);
}
.form__summary ul { margin: var(--sp-2) 0 0; padding-left: 1.2em; }
.form__summary a { color: var(--c-alert); }

.form__review {
  border: 1px solid var(--c-accent);
  border-radius: var(--r-s);
  background: var(--c-accent-tint);
  padding: var(--sp-4);
}
.form__review dl { display: grid; gap: var(--sp-3); margin: var(--sp-3) 0 0; }
.form__review dt { font-size: var(--fs-note); color: var(--c-muted); }
.form__review dd { margin: 2px 0 0; font-size: var(--fs-body); color: var(--c-ink); word-break: break-word; }
.form__actions { display: grid; gap: var(--sp-3); }

/* ============ footer ============ */
.footer {
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-2);
  padding-block: var(--sp-6);
  margin-top: var(--section-y);
}
.footer__grid { display: grid; gap: var(--sp-5); }
.footer__brand-name { font-size: 1.1875rem; font-weight: 700; letter-spacing: 0.03em; color: var(--c-ink); }
.footer__brand-sub {
  font-size: var(--fs-note);
  letter-spacing: 0.1em;
  color: var(--c-accent-text);
  margin-top: 2px;
}
.footer__desc { margin-top: var(--sp-3); font-size: var(--fs-note); color: var(--c-muted); }
.footer h2 {
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  color: var(--c-accent-text);
  margin-bottom: var(--sp-2);
}
.footer__info { font-size: var(--fs-note); color: var(--c-ink-2); line-height: 1.8; }
.footer__info a { color: var(--c-accent-text); text-decoration: underline; }
.footer__info dt { color: var(--c-muted); }
.footer__nav { display: grid; }
.footer__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--fs-note);
  color: var(--c-ink-2);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--c-accent-text); text-decoration: underline; }
.footer__colophon {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-line);
  font-size: var(--fs-note);
  color: var(--c-muted);
  line-height: 1.8;
}
.footer__colophon p + p { margin-top: 6px; }
.footer__legal { display: grid; gap: 4px; margin-top: var(--sp-3); }

/* ============ mobile fixed CTA ============
   MASTER §6「高さ48〜56px」。safe-area は下 padding へ加算するだけで、
   バー本体（罫線1px + padding上下3px + タップ領域48px = 55px）は変えない。
   予約の項目は、出勤カードの予約ボタンとまったく同じ語（予約する）を使う。 */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-cta);
  background: var(--c-bg);
  border-top: 1px solid var(--c-line-strong);
  padding: var(--cta-pad) var(--sp-2) calc(env(safe-area-inset-bottom, 0px) + var(--cta-pad));
}
.cta-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 6px;
  max-width: var(--container);
  margin-inline: auto;
}
.cta-bar a,
.cta-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--cta-tap);
  border-radius: var(--r-s);
  border: 1px solid var(--c-line-strong);
  background: transparent;
  text-decoration: none;
  color: var(--c-ink);
  font-size: var(--fs-note);
  font-weight: 700;
  line-height: 1.2;
  padding: 2px 4px;
}
.cta-bar .en {
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.1;
  font-weight: 600;
  color: var(--c-muted);
}
.cta-bar .is-primary {
  background: var(--c-accent);
  color: var(--c-on-accent);
  border-color: var(--c-accent);
}
.cta-bar .is-primary .en { color: #4A2231; }

/* ============ motion（1種類のみ） ============ */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

body.is-locked { overflow: hidden; }

/* ============ 単独リンクのタップ領域（44px）をまとめて確保する ============ */
a[data-tel-link],
a.tag,
.checkline a,
.info-list__row dd a,
.footer__info a,
.prose a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
a.tag { padding: 4px 10px; text-decoration: none; }
a.tag:hover { border-color: var(--c-accent); color: var(--c-accent-text); }
/* 行内リンクを44pxにしても行送りが跳ねないよう、行の基準は本文行間のまま保つ */
.footer__info a,
.info-list__row dd a,
.checkline a,
.prose a { margin-block: -10px; vertical-align: middle; }
