/* SITE 82 CABARET STANDARD DARK — components
   header / drawer / breadcrumb / button / card / table / tabs / chips / accordion
   modal / lightbox / form / footer / mobile CTA */

/* ============ base ============ */
body {
  background: var(--c-ink);
  color: var(--c-ivory);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: 400;
  padding-bottom: 0;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: var(--lh-heading);
}

p { max-width: 74ch; }

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

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

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -200px;
  z-index: 200;
  background: var(--c-gold);
  color: #16130C;
  padding: 12px 18px;
  border-radius: var(--r-m);
  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 head ============ */
.eyebrow {
  display: block;
  font-family: var(--f-serif);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.section {
  padding-block: var(--section-y);
  border-top: 1px solid var(--c-line);
}
.section--alt { background: var(--c-ink-2); }
.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.section__title {
  font-family: var(--f-serif);
  font-size: var(--fs-h2);
  letter-spacing: 0.02em;
}
.section__lead {
  color: var(--c-muted);
  font-size: var(--fs-body);
  margin-top: var(--sp-2);
}

/* ============ header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(16, 16, 18, 0.94);
  border-bottom: 1px solid var(--c-line);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
/* トップのヒーロー上のみ透明→スクロールで濃色 */
body[data-page="index"] .header {
  background: transparent;
  border-bottom-color: transparent;
}
body[data-page="index"] .header.is-solid {
  background: rgba(16, 16, 18, 0.96);
  border-bottom-color: var(--c-line);
}
@supports (backdrop-filter: blur(8px)) {
  .header { backdrop-filter: blur(10px); }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 10px var(--gutter);
}

.header__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  flex: none;
  min-height: 44px;
  padding: 4px 0;
}
.header__brand-name {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--c-ivory);
}
.header__brand-sub {
  font-size: var(--fs-note);
  letter-spacing: 0.14em;
  color: var(--c-gold);
}
.header__brand[aria-current="page"] .header__brand-name { color: var(--c-gold-soft); }

.header__nav { margin-inline-start: auto; }
.header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  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);
  text-decoration: none;
  color: var(--c-ivory);
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.header__nav a:hover { color: var(--c-gold-soft); border-bottom-color: var(--c-gold-soft); }
.header__nav a[aria-current="page"] {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

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

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m);
  color: var(--c-ivory);
}
.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; }

/* ============ drawer ============ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 8, 0.72);
  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(84vw, 360px);
  z-index: calc(var(--z-drawer) + 1);
  background: var(--c-ink-2);
  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));
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--c-line);
}
.drawer__title {
  font-family: var(--f-serif);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
.drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m);
  background: transparent;
  color: var(--c-ivory);
  font-size: 1.25rem;
  line-height: 1;
}
.drawer__nav { padding: var(--sp-3) var(--sp-5); }
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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-gold); }
.drawer__nav a .en {
  font-family: var(--f-serif);
  font-size: var(--fs-note);
  letter-spacing: 0.16em;
  color: var(--c-muted);
}
.drawer__foot {
  padding: var(--sp-5);
  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 22px;
  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-gold);
  color: #14110A;
}
.btn--primary:hover { background: var(--c-gold-soft); }
.btn--wine {
  background: var(--c-wine);
  color: var(--c-ivory);
  border-color: rgba(242, 238, 230, 0.2);
}
.btn--wine:hover { background: var(--c-wine-deep); }
.btn--ghost {
  background: transparent;
  color: var(--c-ivory);
  border-color: var(--c-line-strong);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold-soft); }
.btn--sm { min-height: 44px; padding: 10px 16px; font-size: var(--fs-label); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

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

/* ============ breadcrumb ============ */
.breadcrumb {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-ink-2);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 2px 0;
  font-size: var(--fs-note);
  color: var(--c-muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "/"; color: var(--c-line-strong); }
.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-gold-soft); }
.breadcrumb [aria-current="page"] { color: var(--c-ivory); }

/* ============ page head ============ */
.page-head {
  padding-block: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--c-line);
}
.page-head__title {
  font-family: var(--f-serif);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
}
.page-head__lead {
  margin-top: var(--sp-4);
  color: var(--c-muted);
  font-size: var(--fs-body-lg);
}

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

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

/* person card */
.person {
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-l);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.person:hover { border-color: var(--c-gold); }
.person__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--c-ink-2);
}
.person__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-s);
  background: var(--c-wine);
  color: var(--c-ivory);
  font-size: var(--fs-note);
  font-weight: 700;
  border: 1px solid rgba(242, 238, 230, 0.24);
}
.person__badge--new { background: var(--c-gold); color: #14110A; border-color: transparent; }
.person__body {
  padding: var(--sp-4);
  display: grid;
  gap: 6px;
}
.person__name {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}
.person__role {
  font-size: var(--fs-note);
  color: var(--c-gold);
}
.person__time {
  font-size: var(--fs-body);
  color: var(--c-ivory);
}
.person__time span { color: var(--c-muted); }
.person__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.tag {
  font-size: var(--fs-note);
  color: var(--c-muted);
  border: 1px solid var(--c-line);
  border-radius: var(--r-s);
  padding: 3px 8px;
  line-height: 1.4;
}

/* ============ tabs ============ */
.tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.tabs__btn {
  flex: none;
  min-height: 48px;
  padding: 10px 18px;
  background: transparent;
  color: var(--c-ivory);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m);
  font-size: var(--fs-label);
  font-weight: 600;
  white-space: nowrap;
}
.tabs__btn[aria-selected="true"] {
  background: var(--c-gold);
  color: #14110A;
  border-color: var(--c-gold);
}
.tabs__btn[aria-selected="true"]::before { content: "● "; font-size: 0.7em; vertical-align: 0.15em; }

/* filter chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.chip {
  min-height: 44px;
  padding: 8px 16px;
  border-radius: var(--r-m);
  border: 1px solid var(--c-line-strong);
  background: transparent;
  color: var(--c-ivory);
  font-size: var(--fs-label);
}
.chip[aria-pressed="true"] {
  background: var(--c-wine);
  border-color: var(--c-gold);
  color: var(--c-ivory);
}
.chip[aria-pressed="true"]::before { content: "✓ "; }

/* ============ table / price ============ */
.table-wrap { overflow-x: auto; }
.table {
  min-width: 480px;
  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: 14px var(--sp-4);
  text-align: left;
  line-height: var(--lh-dense);
  vertical-align: top;
}
.table thead th {
  background: var(--c-surface-2);
  font-weight: 600;
  color: var(--c-ivory);
  border-bottom-color: var(--c-line-strong);
}
.table td.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ============ accordion ============ */
.acc { border-top: 1px solid var(--c-line); }
.acc__item { border-bottom: 1px solid var(--c-line); }
.acc__btn {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 14px 4px;
  background: transparent;
  border: 0;
  color: var(--c-ivory);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  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-gold);
  border-radius: 50%;
  color: var(--c-gold);
  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-5); }
.acc__panel > * + * { margin-top: var(--sp-4); }

/* ============ notice ============ */
.notice {
  border: 1px solid var(--c-line-strong);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--r-m);
  background: var(--c-surface);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-note);
  color: var(--c-muted);
  line-height: 1.7;
}
.notice strong { color: var(--c-ivory); }
.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: var(--z-modal);
  display: grid;
  place-items: end center;
  padding: 0;
  background: rgba(6, 6, 8, 0.74);
}
@media (min-width: 768px) {
  .modal { place-items: center; padding: var(--sp-5); }
}
.modal__dialog {
  width: min(640px, 100%);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  background: var(--c-ink-2);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-l) var(--r-l) 0 0;
  padding: var(--sp-5) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--sp-6));
  box-shadow: var(--sh-2);
}
@media (min-width: 768px) {
  .modal__dialog { border-radius: var(--r-l); padding-bottom: var(--sp-6); }
}
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.modal__title {
  font-family: var(--f-serif);
  font-size: var(--fs-h3);
}
.modal__close {
  flex: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m);
  background: transparent;
  color: var(--c-ivory);
  font-size: 1.25rem;
  line-height: 1;
}
.modal__body > * + * { margin-top: var(--sp-4); }
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.modal__actions .btn { flex: 1 1 200px; }

/* ============ lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(6, 6, 8, 0.94);
  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-m);
}
.lightbox__caption {
  text-align: center;
  font-size: var(--fs-body);
  color: var(--c-ivory);
  padding-top: var(--sp-2);
}
.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-m);
  background: transparent;
  color: var(--c-ivory);
  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: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.field__req {
  font-size: var(--fs-note);
  background: var(--c-wine);
  color: var(--c-ivory);
  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); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-m);
  color: var(--c-ivory);
  font-size: var(--fs-body);
}
.field textarea { min-height: 140px; line-height: 1.7; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #8C877E; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { border-color: var(--c-gold); }
.field.is-error input,
.field.is-error select,
.field.is-error textarea { border-color: var(--c-alert); }
.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; }

.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: 3px;
  flex: none;
  accent-color: var(--c-gold);
}

.form__summary {
  border: 1px solid var(--c-alert);
  border-radius: var(--r-m);
  background: rgba(230, 166, 166, 0.09);
  padding: var(--sp-4);
  font-size: var(--fs-body);
}
.form__summary ul { margin: var(--sp-2) 0 0; padding-left: 1.2em; }
.form__summary a { color: var(--c-ivory); }

.form__review {
  border: 1px solid var(--c-gold);
  border-radius: var(--r-m);
  background: var(--c-surface);
  padding: var(--sp-4) var(--sp-5);
}
.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); word-break: break-word; }

/* ============ footer ============ */
.footer {
  border-top: 1px solid var(--c-line);
  background: #0C0C0E;
  padding-block: var(--sp-7) var(--sp-6);
  margin-top: var(--section-y);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-6);
}
.footer__brand-name {
  font-family: var(--f-serif);
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}
.footer__brand-sub {
  font-size: var(--fs-note);
  letter-spacing: 0.14em;
  color: var(--c-gold);
  margin-top: 4px;
}
.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.08em;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
}
.footer__info { font-size: var(--fs-note); color: var(--c-muted); line-height: 1.8; }
.footer__info a { color: var(--c-ivory); text-decoration: underline; }
.footer__info dt { color: var(--c-muted); }
.footer__nav { display: grid; gap: 2px; }
.footer__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--fs-note);
  color: var(--c-muted);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--c-gold-soft); 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 ============ */
.cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-cta);
  background: rgba(16, 16, 18, 0.97);
  border-top: 1px solid var(--c-line-strong);
  /* MASTER §6「高さ48〜56px」。safe-area は下 padding へ加算するのみで、
     バー本体の高さ（罫線1px + padding上下 + タップ領域48px = 55px）は変えない。 */
  padding: var(--cta-pad) var(--sp-3) calc(env(safe-area-inset-bottom, 0px) + var(--cta-pad));
}
.cta-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 6px;
}
.cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* タップ領域は 44px 下限を満たす 48px */
  min-height: var(--cta-tap);
  border-radius: var(--r-m);
  border: 1px solid var(--c-line-strong);
  text-decoration: none;
  font-size: var(--fs-note);
  font-weight: 600;
  line-height: 1.2;
  padding: 2px 4px;
}
.cta-bar a .en {
  font-family: var(--f-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.1;
  color: var(--c-muted);
}
.cta-bar a.is-primary {
  background: var(--c-gold);
  color: #14110A;
  border-color: var(--c-gold);
  font-size: var(--fs-body);
}
.cta-bar a.is-primary .en { color: #453714; }

/* ============ motion ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  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 12px; }
.person__tags a.tag:hover { border-color: var(--c-gold); color: var(--c-gold-soft); }
/* 行内リンクを44pxにしても行間が跳ねないよう、行の基準は本文行間のまま保つ */
.footer__info a,
.info-list__row dd a,
.checkline a,
.prose a { margin-block: -10px; vertical-align: middle; }
