/* KYABEL v6 / SITE 103 — components.css
   header / drawer / breadcrumb / button / card / table / accordion /
   tabs / modal / lightbox / form / footer / cta-bar / room card / gallery */

/* ============ レイアウト基礎 ============ */
.container {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--w-pad);
}

.container--narrow { max-width: var(--w-narrow); }

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -200px;
  z-index: 1200;
  background: var(--c-accent);
  color: #1D1C1A;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r);
  font-weight: 700;
  text-decoration: none;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* ============ ヘッダー（暗い標準ヘッダー） ============ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(23, 22, 21, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-line);
}

.hdr__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: var(--h-header);
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--w-pad);
}

.hdr__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex: none;
  min-height: var(--h-tap);
  text-decoration: none;
  line-height: 1.25;
}
.hdr__brand-name {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  white-space: nowrap;
}
.hdr__brand-sub {
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
  letter-spacing: var(--ls-label);
  white-space: nowrap;
}

.hdr__nav { margin-inline: auto; }
.hdr__nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hdr__nav a {
  display: flex;
  align-items: center;
  min-height: var(--h-tap);
  padding: 0 2px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--c-ink-soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.hdr__nav a:hover { color: var(--c-ink); border-bottom-color: var(--c-brown); }
.hdr__nav a[aria-current="page"] {
  color: var(--c-accent-tx);
  border-bottom-color: var(--c-accent);
  font-weight: 700;
}

.hdr__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: none;
  margin-left: auto;
}

.hdr__tel {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  min-height: var(--h-tap);
  justify-content: center;
  padding: 2px 4px;
  white-space: nowrap;
}
.hdr__tel-label {
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
  letter-spacing: var(--ls-label);
}
.hdr__tel-num {
  font-family: var(--f-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-accent-tx);
  line-height: 1.25;
}

.hdr__toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--h-tap);
  min-width: var(--h-tap);
  padding: 0 var(--sp-3);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  background: var(--c-surface);
  color: var(--c-ink);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: var(--ls-label);
}
.hdr__toggle-bars {
  display: grid;
  gap: 4px;
  width: 20px;
}
.hdr__toggle-bars span {
  display: block;
  height: 2px;
  background: var(--c-ink);
}

/* インラインアイコンの既定サイズ。viewBox だけのSVGが伸びるのを防ぐ。 */
.btn svg,
.textlink svg,
.status__tel svg,
.cta-bar a svg { width: 20px; height: 20px; flex: none; }
.ftr__tel svg { width: 24px; height: 24px; flex: none; }

/* ============ ボタン ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 10px 22px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary { background: var(--c-accent); color: #1D1C1A; }
.btn--primary:hover { background: var(--c-accent-tx); }

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink-soft);
}
.btn--ghost:hover { background: var(--c-surface-alt); border-color: var(--c-ink); }

.btn--line {
  background: transparent;
  color: var(--c-brown-tx);
  border-color: var(--c-brown);
}
.btn--line:hover { background: var(--c-brown-wash); }

.btn--sm { min-height: var(--h-tap); padding: 8px 16px; font-size: var(--fs-small); }
.btn--block { display: flex; width: 100%; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--h-tap);
  color: var(--c-accent-tx);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.textlink:hover { color: var(--c-ink); }
.textlink::after { content: "→"; font-weight: 400; }

/* ============ ドロワー ============ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr min(360px, 88vw);
}
.drawer[hidden] { display: none; }

.drawer__scrim {
  background: rgba(10, 9, 8, 0.6);
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.drawer__panel {
  background: var(--c-bg-deep);
  border-left: 1px solid var(--c-line);
  overflow-y: auto;
  padding: var(--sp-4) var(--sp-5) calc(var(--sp-8) + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-line);
}
.drawer__title {
  font-family: var(--f-serif);
  font-size: 1.125rem;
  font-weight: 700;
}
.drawer__close {
  min-width: var(--h-tap);
  min-height: var(--h-tap);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--c-ink);
}

.drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 var(--sp-2);
  border-bottom: 1px solid var(--c-line-soft);
  font-size: var(--fs-body);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.drawer__nav a[aria-current="page"] {
  color: var(--c-accent-tx);
  font-weight: 700;
}
.drawer__nav a[aria-current="page"]::before {
  content: "";
  width: 4px;
  height: 20px;
  background: var(--c-accent);
  margin-right: var(--sp-2);
}

.drawer__info {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
}
.drawer__info dl { display: grid; grid-template-columns: 5em 1fr; gap: 4px var(--sp-2); }
.drawer__info dt { color: var(--c-ink-soft); }
.drawer__info dd { color: var(--c-ink); }

/* ============ パンくず ============ */
.crumbs {
  background: var(--c-bg-deep);
  border-bottom: 1px solid var(--c-line);
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  max-width: var(--w-container);
  margin-inline: auto;
  padding: var(--sp-2) var(--w-pad);
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
}
.crumbs li { display: flex; align-items: center; gap: var(--sp-2); }
.crumbs li + li::before { content: "／"; color: var(--c-line); }
.crumbs a {
  display: inline-flex;
  align-items: center;
  min-height: var(--h-tap);
  padding-inline: 2px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.crumbs [aria-current="page"] { color: var(--c-ink); font-weight: 700; }

/* ============ セクション ============ */
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-7); }
.section--alt { background: var(--c-bg-deep); }
.section--surface { background: var(--c-surface); }

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-line);
}
.section__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  color: var(--c-accent-tx);
  margin-bottom: 2px;
}
.section__title { font-size: var(--fs-h2); }
.section__lead {
  max-width: 62ch;
  margin-top: var(--sp-3);
  color: var(--c-ink-soft);
  font-size: var(--fs-lead);
}

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

.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--c-bg-deep);
  min-width: 0;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--wide { aspect-ratio: 16 / 9; }
.card__media--photo { aspect-ratio: 4 / 3; }

.card__body { padding: var(--sp-4); display: grid; gap: var(--sp-2); }

.grid { display: grid; gap: var(--sp-4); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid > * { min-width: 0; }

/* 人物カード */
.person__name {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}
.person__kana { font-size: var(--fs-small); color: var(--c-ink-soft); }
.person__role {
  display: inline-block;
  align-self: start;
  padding: 3px 10px;
  border-radius: var(--r);
  background: var(--c-accent-wash);
  color: var(--c-accent-tx);
  font-size: var(--fs-small);
  font-weight: 700;
}
.person__shift {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  font-size: var(--fs-body);
  border-top: 1px dashed var(--c-line);
  padding-top: var(--sp-2);
}
.person__shift dt { font-size: var(--fs-small); color: var(--c-ink-soft); flex: none; }
.person__shift dd { font-weight: 700; }
.person__shift dd.is-off { font-weight: 500; color: var(--c-ink-soft); }

.taglist { display: flex; flex-wrap: wrap; gap: 6px; }
.taglist li {
  font-size: var(--fs-small);
  color: var(--c-brown-tx);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 2px 8px;
  background: var(--c-brown-wash);
}

/* ============ 表 ============ */
.table-wrap { overflow-x: auto; }

.table {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
}
.table th,
.table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-line-soft);
  text-align: left;
  font-size: var(--fs-body);
  line-height: var(--lh-tight);
  vertical-align: top;
}
.table tr:last-child th,
.table tr:last-child td { border-bottom: 0; }
.table th {
  width: 30%;
  background: var(--c-surface-alt);
  font-weight: 700;
  white-space: nowrap;
}
.table td .note { display: block; margin-top: 4px; font-size: var(--fs-small); color: var(--c-ink-soft); }

.price-value {
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--c-accent-tx);
  white-space: nowrap;
}

/* ============ アコーディオン ============ */
.acc { display: grid; gap: var(--sp-3); }

.acc__item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
}

.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  min-height: 56px;
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-ink);
}
.acc__btn:hover { background: var(--c-surface-alt); }
.acc__btn .acc__mark {
  flex: none;
  width: 24px;
  height: 24px;
  border: 1px solid var(--c-brown);
  border-radius: var(--r);
  position: relative;
  color: var(--c-accent-tx);
}
.acc__btn .acc__mark::before,
.acc__btn .acc__mark::after {
  content: "";
  position: absolute;
  inset: 50% 5px auto 5px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.acc__btn .acc__mark::after {
  inset: 5px auto 5px 50%;
  width: 2px;
  height: auto;
  transform: translateX(-50%);
  transition: opacity var(--t-fast) var(--ease);
}
.acc__btn[aria-expanded="true"] .acc__mark::after { opacity: 0; }

.acc__panel {
  padding: 0 var(--sp-4) var(--sp-4);
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  gap: var(--sp-3);
  color: var(--c-ink-soft);
}
.acc__panel > *:first-child { margin-top: var(--sp-4); }

/* ============ タブ ============ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.tab {
  min-height: var(--h-tap);
  padding: 8px 18px;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  background: var(--c-surface);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--c-ink-soft);
  white-space: nowrap;
}
.tab:hover { background: var(--c-surface-alt); color: var(--c-ink); }
.tab[aria-selected="true"],
.tab[aria-pressed="true"] {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #1D1C1A;
}

/* ============ モーダル ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: var(--sp-4);
}
.modal[hidden] { display: none; }

.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.65);
  border: 0;
  width: 100%;
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(86vh, 860px);
  overflow-y: auto;
  background: var(--c-bg-deep);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-4);
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}
.modal__title { font-size: var(--fs-h3); }
.modal__close {
  flex: none;
  min-width: var(--h-tap);
  min-height: var(--h-tap);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--c-ink);
}

/* ============ ライトボックス ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(6, 5, 5, 0.96);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: var(--sp-4);
  gap: var(--sp-3);
}
.lightbox[hidden] { display: none; }

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  color: #F0E8DA;
}
.lightbox__count { font-size: var(--fs-small); letter-spacing: var(--ls-label); }
.lightbox__close,
.lightbox__nav {
  min-width: var(--h-tap);
  min-height: var(--h-tap);
  padding: 0 var(--sp-3);
  border: 1px solid rgba(240, 232, 218, 0.5);
  border-radius: var(--r);
  color: #F0E8DA;
  font-size: var(--fs-body);
  font-weight: 700;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(240, 232, 218, 0.14); }

.lightbox__stage {
  display: grid;
  place-items: center;
  min-height: 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: var(--r);
}

.lightbox__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  color: #F0E8DA;
}
.lightbox__caption { font-size: var(--fs-body); max-width: 60ch; }
.lightbox__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); font-size: var(--fs-small); color: var(--c-ink-soft); margin-top: 4px; }
.lightbox__meta span { border: 1px solid rgba(240, 232, 218, 0.35); border-radius: var(--r); padding: 2px 8px; }
.lightbox__ctrl { display: flex; gap: var(--sp-2); }

/* ============ フォーム ============ */
.form { display: grid; gap: var(--sp-5); }

.field { display: grid; gap: var(--sp-2); }

.field__label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-body);
  font-weight: 700;
}
.field__req {
  font-size: var(--fs-small);
  background: var(--c-accent);
  color: #1D1C1A;
  border-radius: var(--r);
  padding: 1px 8px;
  font-weight: 700;
}
.field__opt {
  font-size: var(--fs-small);
  background: var(--c-surface-alt);
  color: var(--c-ink-soft);
  border-radius: var(--r);
  padding: 1px 8px;
  font-weight: 700;
}
.field__hint { font-size: var(--fs-small); color: var(--c-ink-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--c-surface);
  color: var(--c-ink);
  border: 1px solid var(--c-ink-soft);
  border-radius: var(--r);
  font-size: var(--fs-body);
  line-height: 1.6;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #8A8071; }

.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea {
  border-color: var(--c-warn);
  border-width: 2px;
  background: #2E211C;
}

.field__error {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--c-warn);
}
.field__error::before { content: "!"; flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--c-warn); color: #1D1C1A; font-size: var(--fs-small); line-height: 20px; text-align: center; }
.field__error[hidden] { display: none; }

.form__summary {
  /* 固定CTA・kyabel-promoバナーが送信ボタンに重なりタップを奪う実測不具合の対処。
     focus()時のスクロール到達に画面下端の安全余白を持たせる（102-snack-recruit-focusと同一対処）。 */
  scroll-margin-bottom: 190px;
  border: 2px solid var(--c-warn);
  border-radius: var(--r);
  background: #2E211C;
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}
.form__summary[hidden] { display: none; }
.form__summary h3 { font-size: var(--fs-h4); color: var(--c-warn); }
.form__summary ul { display: grid; gap: 4px; }
.form__summary a { color: var(--c-warn); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.form__confirm {
  /* 固定CTA・kyabel-promoバナーが送信ボタンに重なりタップを奪う実測不具合の対処。
     focus()時のスクロール到達に画面下端の安全余白を持たせる（102-snack-recruit-focusと同一対処）。 */
  scroll-margin-bottom: 190px;
  border: 1px solid var(--c-brown);
  border-radius: var(--r);
  background: var(--c-brown-wash);
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-3);
}
.form__confirm[hidden] { display: none; }
.form__confirm dl { display: grid; gap: var(--sp-2); }
.form__confirm div { display: grid; grid-template-columns: 8em 1fr; gap: var(--sp-3); }
.form__confirm dt { font-size: var(--fs-small); color: var(--c-ink-soft); font-weight: 700; }
.form__confirm dd { white-space: pre-wrap; }

.form__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.form__demo {
  border: 1px dashed var(--c-line);
  border-radius: var(--r);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
  background: var(--c-surface-alt);
}

/* ============ 注記・状態 ============ */
.notes { display: grid; gap: var(--sp-2); }
.notes li {
  position: relative;
  padding-left: 1.2em;
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
  line-height: 1.7;
}
.notes li::before { content: "※"; position: absolute; left: 0; }

.callout {
  border-left: 4px solid var(--c-accent);
  background: var(--c-accent-wash);
  border-radius: var(--r);
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}
.callout h3 { font-size: var(--fs-h4); }

.empty {
  border: 1px dashed var(--c-line);
  border-radius: var(--r);
  padding: var(--sp-5);
  text-align: center;
  color: var(--c-ink-soft);
  background: var(--c-surface-alt);
}

.alert {
  border: 2px solid var(--c-warn);
  background: #2E211C;
  border-radius: var(--r);
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.alert[hidden] { display: none; }
.alert h2, .alert h3 { font-size: var(--fs-h4); color: var(--c-warn); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--r);
  font-size: var(--fs-small);
  font-weight: 700;
  border: 1px solid currentColor;
}
.badge--open { color: var(--c-ok); background: #223022; }
.badge--closed { color: var(--c-warn); background: #2E211C; }
.badge--cat { color: var(--c-brown-tx); background: var(--c-brown-wash); border-color: var(--c-line); }

/* 予約可否バッジ（席種ごと） */
.badge--rsv-free { color: var(--c-ok); background: #1F2C22; }
.badge--rsv-recommend { color: var(--c-accent-tx); background: var(--c-accent-wash); }
.badge--rsv-required { color: var(--c-warn); background: #2E211C; }

/* JS無効時のフォールバック（唯一の静的な店舗情報） */
.nojs {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: var(--sp-4);
  margin: var(--sp-5) auto;
  max-width: var(--w-container);
  display: grid;
  gap: var(--sp-2);
}
.nojs dl { display: grid; grid-template-columns: 7em 1fr; gap: 4px var(--sp-3); }
.nojs dt { color: var(--c-ink-soft); font-size: var(--fs-small); }

/* ============ フッター ============ */
.ftr {
  background: #131211;
  color: #EFE6D6;
  margin-top: var(--sp-8);
  padding-block: var(--sp-7) var(--sp-6);
  border-top: 1px solid var(--c-line);
}
.ftr a { color: #EFE6D6; }

.ftr__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(240, 232, 218, 0.16);
}
.ftr__brand-name { font-family: var(--f-serif); font-size: 1.375rem; font-weight: 700; }
.ftr__brand-sub { font-size: var(--fs-small); color: #B9AC94; letter-spacing: var(--ls-label); margin-top: 2px; }
.ftr__info { display: grid; gap: 6px; margin-top: var(--sp-4); font-size: var(--fs-body); }
.ftr__info dl { display: grid; grid-template-columns: 6em 1fr; gap: 4px var(--sp-3); }
.ftr__info dt { color: #B9AC94; font-size: var(--fs-small); }
.ftr__tel {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--h-tap);
  font-family: var(--f-serif);
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--c-accent-tx);
}

.ftr__nav-title { font-size: var(--fs-body); font-weight: 700; margin-bottom: var(--sp-2); letter-spacing: var(--ls-label); color: var(--c-accent-tx); }
.ftr__nav a {
  display: flex;
  align-items: center;
  min-height: var(--h-tap);
  font-size: var(--fs-body);
  text-decoration: none;
  white-space: nowrap;
}
.ftr__nav a:hover { text-decoration: underline; text-underline-offset: 3px; }

.ftr__notices {
  display: grid;
  gap: var(--sp-2);
  padding-top: var(--sp-5);
  font-size: var(--fs-small);
  color: #C7B99F;
  line-height: 1.75;
}
.ftr__notices li { position: relative; padding-left: 1.2em; }
.ftr__notices li::before { content: "※"; position: absolute; left: 0; }

.ftr__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: var(--fs-small);
  color: #B9AC94;
}
.ftr__demo {
  border: 1px solid rgba(240, 232, 218, 0.3);
  border-radius: var(--r);
  padding: 6px 12px;
  font-weight: 700;
}

/* ============ モバイル固定CTA ============ */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 880;
  display: none;
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
  padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
  gap: var(--sp-2);
}
.cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: var(--h-ctabar);
  border-radius: var(--r);
  border: 1px solid var(--c-line);
  font-size: var(--fs-small);
  font-weight: 700;
  text-decoration: none;
  padding: 4px 6px;
  color: var(--c-ink);
}
.cta-bar a svg { width: 20px; height: 20px; }
.cta-bar .cta-bar__primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #1D1C1A;
  flex: 1.6;
  font-size: var(--fs-body);
}
.cta-bar .cta-bar__sub { flex: 1; background: var(--c-surface); color: var(--c-ink); }

/* ============ 席種カード（SEAT GUIDE） ============ */
.seat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
.seat-grid > * { min-width: 0; }

.seat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-fast) var(--ease);
}
.seat-card:hover { border-color: var(--c-accent); }
.seat-card[aria-current="true"] { border-color: var(--c-accent); box-shadow: 0 0 0 1px var(--c-accent); }
.seat-card__media { aspect-ratio: 4 / 3; min-width: 0; background: var(--c-bg-deep); }
.seat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.seat-card__body { padding: var(--sp-4); display: grid; gap: var(--sp-2); align-content: start; }
.seat-card__name { font-family: var(--f-serif); font-size: var(--fs-h3); font-weight: 700; }
.seat-card__facts { display: grid; grid-template-columns: 6em 1fr; gap: 4px var(--sp-2); font-size: var(--fs-small); }
.seat-card__facts dt { color: var(--c-ink-soft); }
.seat-card__facts dd { color: var(--c-ink); font-weight: 700; }
.seat-card__note { font-size: var(--fs-small); color: var(--c-ink-soft); line-height: 1.7; }

/* ============ GALLERY（ギャラリー） ============ */
.gal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-4); }
.gal > * { min-width: 0; }
.gal__item {
  display: grid;
  gap: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  text-align: left;
  padding: 0;
}
.gal__item:hover { border-color: var(--c-accent); }
.gal__media { aspect-ratio: 4 / 3; background: var(--c-bg-deep); min-width: 0; }
.gal__media img { width: 100%; height: 100%; object-fit: cover; }
.gal__cap { padding: var(--sp-3) var(--sp-4); display: grid; gap: 4px; }
.gal__cat { font-size: var(--fs-small); font-weight: 700; color: var(--c-accent-tx); letter-spacing: var(--ls-label); }
.gal__text { font-size: var(--fs-small); color: var(--c-ink-soft); line-height: 1.7; }
.gal__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.gal__meta span {
  font-size: var(--fs-small);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 1px 8px;
  color: var(--c-ink-soft);
  background: var(--c-surface-alt);
}

/* ============ ACCESS ============ */
.access { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-6); align-items: start; }
.access__map { aspect-ratio: 16 / 9; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; background: var(--c-bg-deep); min-width: 0; }
.access__map img { width: 100%; height: 100%; object-fit: cover; }
.access__mapnote { font-size: var(--fs-small); color: var(--c-ink-soft); margin-top: var(--sp-2); }
.walk { display: grid; gap: var(--sp-3); counter-reset: walk; }
.walk li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: start;
  font-size: var(--fs-body);
}
.walk li::before {
  counter-increment: walk;
  content: counter(walk);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-accent-wash);
  border: 1px solid var(--c-accent);
  color: var(--c-accent-tx);
  font-weight: 700;
  font-size: var(--fs-small);
}

/* ============ RECRUIT ============ */
.role { display: grid; gap: var(--sp-4); }
.role__head { display: grid; gap: var(--sp-2); }
.role__name { font-family: var(--f-serif); font-size: var(--fs-h3); font-weight: 700; }
.role__wage {
  font-family: var(--f-serif);
  font-size: var(--fs-price);
  font-weight: 700;
  color: var(--c-accent-tx);
}
.role__duties { display: grid; gap: var(--sp-2); }
.role__duties li { position: relative; padding-left: 1.4em; }
.role__duties li::before { content: "・"; position: absolute; left: 0; color: var(--c-accent-tx); font-weight: 700; }

.day { display: grid; gap: 0; }
.day__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--c-line-soft);
}
.day__time { font-family: var(--f-serif); font-weight: 700; color: var(--c-accent-tx); }

/* 人物詳細（モーダル内） */
.person-detail__media {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-bg-deep);
}
.person-detail__media img { width: 100%; height: 100%; object-fit: cover; }

.detail-dl {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--c-line);
  padding-top: var(--sp-3);
}
.detail-dl dt { font-size: var(--fs-small); color: var(--c-ink-soft); font-weight: 700; }
.detail-dl dd { font-weight: 700; }

/* ============ 汎用 ============ */
.stack { display: grid; gap: var(--sp-4); }
.stack--lg { gap: var(--sp-6); }
.prose { display: grid; gap: var(--sp-4); max-width: 68ch; }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--sp-4); }
.prose ul { display: grid; gap: var(--sp-2); }
.prose ul li { position: relative; padding-left: 1.4em; }
.prose ul li::before { content: "・"; position: absolute; left: 0; }

.cta-block {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-accent);
  border-radius: var(--r);
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
  justify-items: start;
}
.cta-block__title { font-size: var(--fs-h3); }
.cta-block__row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ============ モーション（fade-up 1種のみ） ============ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .skip-link { transition: none; }
  * { scroll-behavior: auto !important; }
}
