/* ============================================================
   Leathers Day 2026 LP（PC）
   /features/leathersday2026/
   トーン：冷たいコンクリートグレーを地色に、黒ブロックを全幅で交互に差し込む
           （HERO写真の「塗料が飛んだ工房の床」と地続きの無彩色。暖色は入れない）
   黒ブロック：Message / Web Pre-Sale / Photo Booth / Related ＝ .sec--dark
   ※NH.com 標準の白背景ガイドラインからは意図的に外している（イベント特設のため）
============================================================ */

#main {
  --paper: #d7d6d4;       /* 地色＝コンクリートグレー */
  --panel: rgba(255, 255, 255, 0.42); /* 明部に置く囲みパネル */
  --black: #0e0e0e;       /* 黒ブロック */
  --card: #101010;        /* 商品カード（黒ベタ） */
  --card-on-dark: #191919;/* 黒ブロック上の商品カード */
  --ink: #1b1b1b;         /* 明部の本文 */
  --ink-sub: #5c5e5f;     /* 明部のサブテキスト */
  --line: rgba(0, 0, 0, 0.26);        /* 明部の罫線 */
  --ink-d: #ececec;       /* 暗部の本文 */
  --ink-sub-d: rgba(255, 255, 255, 0.62);
  --line-d: rgba(255, 255, 255, 0.2); /* 暗部の罫線 */
  --ld-red: #660000;      /* 公式メインカラー（arkb-ld-main-color） */
  --ld-red-lit: #a52a2a;  /* 暗部で赤文字を使うとき */
  --mars-brown: #812e00;  /* common.css marsBrown */
  --smoked-brown: #624d4f;/* common.css smokedBrown */
  --wine: #6e1f2a;        /* ワインレッド（商品色。--ld-red とは別物） */
  --mexican-brown: #a8481c; /* メキシカンブラウン＝新色 */
  /* タイプスケールは leathersday2025 準拠（本文 16→20px 可変・行間1.85） */
  --fs-base: clamp(16px, calc(15.243px + 0.216vw), 20px);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-base);
  line-height: 1.85;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

#main .serif {
  font-family: "EB Garamond", "游明朝", YuMincho,
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",
    "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
}

/* 背景がセクションごとに切り替わるので、間隔は margin ではなく padding で取る */
#main section { padding: 120px 0; }
#main #hero { padding: 0; }

#main .sec--dark {
  background: var(--black);
  color: var(--ink-d);
}

#main .content-area {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1100px;
}
#main .content-area.narrow { max-width: 760px; }

#main a { color: inherit; }

/* ============================================================
   セクション見出し（全セクション共通・左寄せ）
   赤い縦罫＋英字を大きく字間詰め、和文サブを下に
============================================================ */
#main .sec-head {
  margin-bottom: 64px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
#main .sec--dark .sec-head { border-bottom-color: var(--line-d); }

#main .sec-head h2 {
  position: relative;
  padding-left: 28px;
  font-size: 4.6rem;
  font-weight: normal;
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #0b0b0b;
}
#main .sec--dark .sec-head h2 { color: #fff; }
#main .sec-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.14em;
  width: 6px;
  background: var(--ld-red);
}
#main .sec-sub {
  margin-top: 12px;
  padding-left: 28px;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  color: var(--ink-sub);
}
#main .sec--dark .sec-sub { color: var(--ink-sub-d); }

#main h3 {
  font-size: 2.8rem;
  font-weight: normal;
  letter-spacing: 0.05rem;
  color: #0b0b0b;
}
#main .sec--dark h3 { color: #fff; }

#main .lead {
  text-align: center;
  line-height: 1.95;
  letter-spacing: 0.05rem;
}
#main .lead + .lead { margin-top: 36px; }

#main .note {
  font-size: 1.4rem;
  color: var(--ink-sub);
  letter-spacing: 0.1rem;
}
#main .sec--dark .note { color: var(--ink-sub-d); }

/* --- 写真プレースホルダー（撮影後 img に差し替え） --- */
#main .photo-placeholder {
  background: #c6c5c3;
  border: 1px dashed rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-sub);
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 1.9;
  padding: 0 20px;
}
/* 黒ベタの上に載るプレースホルダーは暗色に */
#main .item-card .photo-placeholder,
#main .sec--dark .photo-placeholder {
  background: #1c1c1c;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--ink-sub-d);
}

/* ============================================================
   LDボタン（イベントCTA専用。商品CTAは nh-button を使う）
   公式の赤塗り「▶」ボタンの翻案
============================================================ */
#main .ld-button {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 446px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--ld-red);
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
  transition: opacity 300ms ease;
}
#main .ld-button::before {
  content: "\25B6";
  font-size: 1.1rem;
}
#main .ld-button:hover { opacity: 0.78; }
#main .ld-button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* ============================================================
   1. HERO（全幅フルブリードの写真にタイトルを重ねる。スライドは使わない）
   写真の右上＝塗料が飛んだ明るい床。可読性のため右から弱い黒グラデーションを重ねる
============================================================ */
#hero .hero-media {
  position: relative;
  width: 100%;
  height: clamp(560px, 82vh, 860px);
  overflow: hidden;
}
#hero .hero-media picture,
#hero .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  display: block;
}
#hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.52) 32%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 40%);
}
#hero .hero-text {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(32px, 6vw, 104px);
  transform: translateY(-50%);
  max-width: 48%;
  padding-top: 26px;
  text-align: right;
  color: #fff;
}
#hero .hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 2px;
  background: var(--ld-red);
}
#hero h1 {
  font-size: clamp(4.2rem, 4.6vw, 6.4rem);
  font-weight: normal;
  text-align: right;
  letter-spacing: 0.25rem;
  line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
#hero .hero-date {
  margin-top: 26px;
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
#hero .hero-venue {
  margin-top: 14px;
  font-size: 1.5rem;
  line-height: 1.85;
  letter-spacing: 0.15rem;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   2. Message＝看板（黒地に打ち付けたコンクリート板）
   太い黒枠／上辺の赤帯／四隅のビス（radial-gradient で描画）
============================================================ */
#about .signboard {
  max-width: 900px;
  margin: 0 auto;
  background: #cfcdc9;
  border: 8px solid #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}
#about .signboard-label {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 32px;
  background: var(--ld-red);
  color: #fff;
}
#about .signboard-en {
  font-size: 3.6rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
#about .signboard-jp {
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  color: rgba(255, 255, 255, 0.82);
}
#about .signboard-body {
  padding: 56px 64px 60px;
  color: #111;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  /* 四隅のビス */
  background-image:
    radial-gradient(circle closest-side, #6f6d69 96%, transparent 100%),
    radial-gradient(circle closest-side, #6f6d69 96%, transparent 100%),
    radial-gradient(circle closest-side, #6f6d69 96%, transparent 100%),
    radial-gradient(circle closest-side, #6f6d69 96%, transparent 100%);
  background-size: 12px 12px, 12px 12px, 12px 12px, 12px 12px;
  background-position:
    left 18px top 18px,
    right 18px top 18px,
    left 18px bottom 18px,
    right 18px bottom 18px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
#about .signboard-body p {
  text-align: center;
  line-height: 1.95;
  letter-spacing: 0.05em;
}
#about .signboard-body p + p { margin-top: 32px; }

/* ============================================================
   ページ内ナビ（5カテゴリ・HERO から続けて黒地）
============================================================ */
#page-nav {
  padding: 0;
  background: var(--black);
  color: var(--ink-d);
}
#page-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 25px;
}
#page-nav li { flex: 1; max-width: 240px; }
#page-nav a {
  display: block;
  padding: 16px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
  text-align: center;
  white-space: nowrap;
  color: var(--ink-d);
  text-decoration: none;
  transition: background-color 400ms ease, border-color 300ms ease;
}
#page-nav a:hover {
  background-color: var(--ld-red);
  border-color: var(--ld-red);
  color: #fff;
}

/* ============================================================
   商品カード（先行販売・会場販売で共通／黒ベタで押す）
============================================================ */
#main .item-list {
  display: grid;
  gap: 40px 28px;
  margin-top: 48px;
}
#main .item-list--1 { grid-template-columns: minmax(0, 360px); justify-content: center; }
#main .item-list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; margin-inline: auto; }
#main .item-list--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

#main .item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 28px;
  background: var(--card);
  color: var(--ink-d);
  text-align: center;
}
#main .sec--dark .item-card {
  background: var(--card-on-dark);
  border: 1px solid var(--line-d);
}
#main .item-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  margin-bottom: 24px;
}
#main .item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .item-code {
  font-size: 2.2rem;
  letter-spacing: 0.12rem;
  color: #fff;
}
#main .item-name {
  margin-top: 10px;
  font-size: 1.5rem;
  color: var(--ink-sub-d);
}
#main .item-price {
  margin-top: 16px;
  padding-top: 16px;
  width: 100%;
  border-top: 1px solid var(--line-d);
  font-size: 2.6rem;
  letter-spacing: 0.05rem;
  color: #fff;
}
#main .item-tax {
  font-size: 1.4rem;
  color: var(--ink-sub-d);
}

#main .swatch {
  display: inline-block;
  width: 28px;
  height: 12px;
  margin-left: 12px;
  vertical-align: middle;
}
#main .swatch--mars { background: var(--mars-brown); }
#main .swatch--smoked { background: var(--smoked-brown); }
#main .swatch--wine { background: var(--wine); }
#main .swatch--mexican { background: var(--mexican-brown); }

/* ============================================================
   4. 先行販売アイテム（黒ブロック）
============================================================ */
#web-first .web-first-status {
  margin-top: 40px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  color: var(--ink-d);
}
#web-first .note { text-align: center; }

/* ============================================================
   5. 会場販売アイテム（コンクリート地／特別仕様①②＋定番の3ブロック）
============================================================ */
#limited .limited-group {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 48px 64px;
  background: var(--panel);
  border: 1px solid var(--line);
}
#limited .limited-group + .limited-group { margin-top: 56px; }
#limited .limited-label {
  font-size: 1.7rem;
  font-style: italic;
  letter-spacing: 0.25rem;
  text-align: center;
  color: var(--ld-red);
}
#limited h3 {
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}
#limited .limited-lead {
  margin-top: 28px;
  font-size: 1.8rem;
  line-height: 1.95;
  letter-spacing: 0.05rem;
  text-align: center;
}
/* --------------------------------------------------------
   ロゴ入り3色の写真切替（JavaScript不使用）
   ラジオを視覚的に隠し、カラー名のラベルを押して :checked で写真を差し替える
-------------------------------------------------------- */
#limited .swap-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
#limited .swap-stage {
  position: relative;
  max-width: 760px;
  margin: 40px auto 0;
  aspect-ratio: 1200 / 1084;   /* 集合写真の比率。寄りカットは左右がわずかに切れる */
  background: var(--card);
  overflow: hidden;
}
#limited .swap-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}
#ld-color-all:checked ~ .swap-stage .shot-all,
#ld-color-mars:checked ~ .swap-stage .shot-mars,
#ld-color-wine:checked ~ .swap-stage .shot-wine,
#ld-color-mex:checked ~ .swap-stage .shot-mex {
  opacity: 1;
}
#limited .item-card label {
  display: block;
  cursor: pointer;
}
#limited .item-list--3 .item-card {
  transition: background-color 250ms ease, box-shadow 250ms ease;
}
#limited .item-list--3 .item-card:hover {
  background: #1c1c1c;
}
/* 選択中のカラーを赤い枠で示す */
#ld-color-mars:checked ~ .item-list .card-mars,
#ld-color-wine:checked ~ .item-list .card-wine,
#ld-color-mex:checked ~ .item-list .card-mex {
  background: #1c1c1c;
  box-shadow: inset 0 0 0 2px rgba(165, 42, 42, 0.95);
}
/* キーボード操作時のフォーカス表示 */
#ld-color-mars:focus-visible ~ .item-list .card-mars,
#ld-color-wine:focus-visible ~ .item-list .card-wine,
#ld-color-mex:focus-visible ~ .item-list .card-mex,
#ld-color-all:focus-visible ~ .swap-reset label {
  outline: 2px solid var(--ld-red-lit);
  outline-offset: 2px;
}
#limited .swap-reset {
  margin-top: 18px;
  text-align: center;
  font-size: 1.4rem;
}
#limited .swap-reset label {
  cursor: pointer;
  color: var(--ink-sub);
  text-decoration: underline;
  text-underline-offset: 4px;
}
#ld-color-all:checked ~ .swap-reset {
  visibility: hidden;   /* 3色を表示中は不要。高さは残して行送りを揺らさない */
}
@media (prefers-reduced-motion: reduce) {
  #limited .swap-shot,
  #limited .item-list--3 .item-card { transition: none; }
}
#limited .item-name {
  margin-top: 0;
  font-size: 2rem;
  letter-spacing: 0.03rem;
  white-space: nowrap;   /* 「メキシカンブラウン」＋スウォッチを1行に収める */
  color: #fff;
}
/* 5a＝集合写真1枚に集約したので、カードはカラー名とスウォッチだけの帯にする */
#limited .item-list--3 {
  max-width: 760px;       /* 上の集合写真と幅をそろえる */
  margin-inline: auto;
  gap: 16px;
  margin-top: 24px;
}
#limited .item-list--3 .item-card {
  padding: 18px 12px;
}
#limited .limited-price {
  margin-top: 28px;
  font-size: 2.6rem;
  letter-spacing: 0.05rem;
  text-align: center;
}
#limited .limited-tax {
  margin-left: 4px;
  font-size: 1.4rem;
  color: var(--ink-sub);
}
#limited .limited-note {
  margin-top: 32px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--ink-sub);
  text-align: center;
}
#limited .limited-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================================
   6. フォトブース（黒ブロック）
============================================================ */
#booth .booth-block {
  display: flex;
  align-items: center;
  gap: 56px;
}
#booth .booth-photo {
  width: 52%;
  flex-shrink: 0;
}

/* --------------------------------------------------------
   額装：黒鉄の板に写真を落とし込み、四隅をボルトで留める。
   説明写真1枚とギャラリー6枚に同じものをかける。
   枠は padding の内側に描くので要素幅は広がらない＝横スクロールしない。
-------------------------------------------------------- */
#booth .booth-photo,
#booth .booth-photos li {
  box-sizing: border-box;
  position: relative;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg,
      #292929 0%, #111 28%, #383838 50%, #121212 72%, #292929 100%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(0, 0, 0, 0.9);
}
/* 四隅のボルト（画像は使わず radial-gradient で描く） */
#booth .booth-photo::before,
#booth .booth-photos li::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 7px 7px,
      #080808 0 2px, rgba(255, 255, 255, 0.42) 2.5px 3.5px, #151515 4px 5px, transparent 5.5px),
    radial-gradient(circle at calc(100% - 7px) 7px,
      #080808 0 2px, rgba(255, 255, 255, 0.42) 2.5px 3.5px, #151515 4px 5px, transparent 5.5px),
    radial-gradient(circle at 7px calc(100% - 7px),
      #080808 0 2px, rgba(255, 255, 255, 0.42) 2.5px 3.5px, #151515 4px 5px, transparent 5.5px),
    radial-gradient(circle at calc(100% - 7px) calc(100% - 7px),
      #080808 0 2px, rgba(255, 255, 255, 0.42) 2.5px 3.5px, #151515 4px 5px, transparent 5.5px);
}
/* 枠の内側にまわす赤い罫 */
#booth .booth-photo::after,
#booth .booth-photos li::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(165, 42, 42, 0.78);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
#booth .booth-photo img,
#booth .booth-photos li img {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.9);
}
#booth .booth-photo img { height: auto; }
#booth .booth-text { flex: 1; }
#booth .booth-text h3 { margin-bottom: 24px; line-height: 1.5; }
#booth .booth-text p { font-size: 1.8rem; line-height: 1.95; letter-spacing: 0.05rem; }
#booth .booth-text p + p { margin-top: 24px; }


#booth .booth-gallery {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line-d);
}
#booth .booth-gallery-label {
  font-size: 2.2rem;
  letter-spacing: 0.34rem;
  text-align: center;
  color: var(--ld-red-lit);
}
#booth .booth-gallery h3 {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 3.6rem;   /* 通常のh3(2.8rem)より一段大きく＝ギャラリーの見出しとして立てる */
  text-align: center;
  line-height: 1.5;
}
#booth .booth-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}
#booth .booth-photos li {
  min-width: 0;
  aspect-ratio: 1 / 1;   /* 額装しても写真は1:1のまま */
  list-style: none;
}
#booth .booth-photos li img {
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   7. イベント概要（コンクリート地）
============================================================ */
#event .event-list dt {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: var(--ink-sub);
}
#event .event-list dd {
  padding: 20px 0 40px;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.05rem;
  color: #0b0b0b;
}
#event .event-list dd:last-child { padding-bottom: 0; }
#event .event-list aside {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.85;
  color: var(--ink-sub);
}
#event .event-list a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================================
   ボタン（本サイト [nh-button] 準拠。明部／暗部で反転）
============================================================ */
#main .button { margin-top: 40px; text-align: center; }
#main .nh-button {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 446px;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.42);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-style: italic;
  font-size: 1.9rem;
  letter-spacing: 0.1rem;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 600ms cubic-bezier(0.19, 1, 0.22, 1), border-color 300ms ease;
}
#main .nh-button:after {
  content: "";
  right: 5px;
  bottom: 5px;
  border-left: 12px solid transparent;
  border-bottom: 12px solid rgba(0, 0, 0, 0.42);
  position: absolute;
}
#main .nh-button:hover { background-color: rgba(0, 0, 0, 0.07); border-color: #000; }
#main .nh-button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* 暗部（黒ブロック・黒カード内）は白抜きに反転 */
#main .sec--dark .nh-button,
#main .item-card .nh-button {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}
#main .sec--dark .nh-button:after,
#main .item-card .nh-button:after { border-bottom-color: rgba(255, 255, 255, 0.34); }
#main .sec--dark .nh-button:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

#main .nh-button--disabled {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.38);
  cursor: default;
  pointer-events: none;
}
#main .nh-button--disabled:after { border-bottom-color: rgba(255, 255, 255, 0.18); }

/* ============================================================
   3. スペシャルインタビューバナー（コンクリート地）
============================================================ */
/* 帯バナーを本文幅いっぱいに1枚。タイトル文字は画像内にある */
#interview .interview-banner {
  display: block;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: opacity 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
#interview .interview-banner:hover { opacity: 0.82; }
#interview .interview-banner img {
  display: block;
  width: 100%;
  height: auto;
}
#interview .interview-body {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#interview .interview-lead {
  font-size: 1.7rem;
  line-height: 1.9;
  max-width: 760px;
}
#interview .nh-button {
  margin-top: 28px;
  margin-left: 0;
  max-width: 240px;
  height: 52px;
}

/* ============================================================
   8. 関連コンテンツ（黒ブロック・2025の3枠構成を踏襲）
============================================================ */
#related .related-links {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
#related .related-card {
  display: flex;
  background: var(--card-on-dark);
  border: 1px solid var(--line-d);
  text-decoration: none;
  color: var(--ink-d);
  transition: background-color 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
#related .related-card:hover { background-color: #232323; }
#related .related-card--main {
  flex: 1;
  flex-direction: column;
}
#related .related-card--main .related-photo img {
  width: 100%;
  height: auto;
  display: block;
}
#related .related-sub-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
#related .related-card--sub .related-photo {
  width: 180px;
  flex-shrink: 0;
}
#related .related-card--sub .related-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#related .related-body {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#related .related-title {
  display: block;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.05rem;
  color: #fff;
}
#related .related-sub {
  display: block;
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--ink-sub-d);
}
#related .nh-button {
  margin-top: 24px;
  margin-left: 0;
  max-width: 220px;
  height: 50px;
  font-size: 1.6rem;
}

/* ============================================================
   fade
============================================================ */
#main .fade { opacity: 0; transition: opacity 900ms ease; }
#main .fade.in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  #main .fade { opacity: 1; transition: none; }
  #main .nh-button,
  #main .ld-button,
  #main #page-nav a,
  #main #interview .interview-banner,
  #main #related .related-card { transition: none; }
}
