/* *****************************************************************
   下層ページ固有CSS
   - 元デモHTMLの各ページ <style> から抽出
   - トップページ（index.html）と重複するセレクタは除外済み
   ***************************************************************** */


/* ===== SHARED: 下層ページ共通コンポーネント ===== */

/* ----- ナビ：現在ページハイライト ----- */
.gnav a:hover::after, .gnav a.is-current::after { width: 100%; }
.gnav a.is-current { color: var(--red); }
.drawer__nav a.is-current { color: var(--red); }

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb { border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumb__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-3);
  overflow-x: auto; white-space: nowrap;
}
.breadcrumb__inner a { color: var(--ink-3); }
.breadcrumb__inner a:hover { color: var(--red); }
.breadcrumb__sep { color: var(--line-2); }
.breadcrumb__current { color: var(--ink); }

/* ----- Bleed Band プレースホルダ ----- */
.bleed-band--placeholder .bleed-band__img {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, var(--ink) 0%, #2a2426 100%);
}
.bleed-band--placeholder .bleed-band__overlay { display: none; }
.bleed-band--placeholder .bleed-band__text { color: #fff; }

/* =========================================================
   Vision：ミッション・ビジョン・バリュー（3カード）
   ========================================================= */
.vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.vision__item {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: relative;
}
.vision__item::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 2px;
  background: var(--red);
}
.vision__label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600;
  color: var(--red); letter-spacing: .18em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.vision__title {
  font-size: 22px; font-weight: 700;
  color: var(--ink); line-height: 1.5;
  margin-bottom: 20px;
}
.vision__desc {
  font-size: 14px; line-height: 2;
  color: var(--ink-2);
}

/* =========================================================
   Message：代表メッセージ
   ========================================================= */
.message { background: var(--bg-alt); }
.message__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
  max-width: 820px;
}
.message__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  border: 1px solid var(--line);
}
.message__visual img { width: 100%; height: 100%; object-fit: cover; }
.message__visual--placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, var(--ink) 0%, #2a2426 100%);
}
.message__visual--placeholder i { width: 36px; height: 36px; color: rgba(255,255,255,.55); }
.message__visual--placeholder span {
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: .2em;
  font-weight: 600; text-transform: uppercase;
}
.message__visual--placeholder small {
  font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: .1em;
}
.message__body h3 {
  font-size: 28px; font-weight: 700;
  color: var(--ink); line-height: 1.5;
  margin-bottom: 28px;
}
.message__body p {
  font-size: 15px; line-height: 2.1;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.message__sign {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}
.message__sign strong {
  display: block;
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* =========================================================
   History：沿革（縦タイムライン）
   ========================================================= */
.history__wrap { position: relative; }
.history__line {
  position: absolute;
  top: 12px; bottom: 12px;
  left: 116px;
  width: 1px;
  background: var(--line);
}
.history__item {
  display: grid;
  grid-template-columns: 120px 24px 1fr;
  gap: 32px;
  padding: 20px 0;
  align-items: start;
  position: relative;
}
.history__year {
  font-family: var(--font-en);
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1.4;
}
.history__year small {
  display: block;
  font-size: 11px; font-weight: 500;
  color: var(--ink-3); letter-spacing: .1em;
  margin-top: 2px;
}
.history__dot {
  position: relative;
  width: 13px; height: 13px;
  margin-top: 8px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  z-index: 1;
  justify-self: center;
}
.history__body {
  padding: 4px 0;
}
.history__title {
  font-size: 16px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
  line-height: 1.6;
}
.history__desc {
  font-size: 14px; line-height: 1.9;
  color: var(--ink-2);
}
/* 特別マイルストーン（創業・転換点） */
.history__item--milestone .history__dot {
  width: 17px; height: 17px;
  background: var(--red);
  border-color: var(--red);
  margin-top: 6px;
}
.history__item--milestone .history__title { color: var(--red); }

/* =========================================================
   Company Table：会社概要詳細表
   ========================================================= */
.company-table {
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.company-table tr { border-bottom: 1px solid var(--line); }
.company-table tr:last-child { border-bottom: none; }
.company-table th {
  padding: 22px 24px;
  width: 220px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-3); letter-spacing: .08em;
  text-align: left; vertical-align: top;
  background: var(--bg-alt);
  border-right: 1px solid var(--line);
}
.company-table td {
  padding: 22px 28px;
  font-size: 14px; color: var(--ink);
  line-height: 1.9; vertical-align: top;
}
.company-table td small {
  display: block;
  color: var(--ink-3);
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: .04em;
}
.company-table td a {
  color: var(--red); text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   Access：アクセス・地図・所在地
   ========================================================= */
.access__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.access__map {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.02) 0 12px, transparent 12px 24px),
    var(--bg-alt);
}
.access__map i { width: 42px; height: 42px; color: var(--red); }
.access__map-label {
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: .2em;
  font-weight: 600; color: var(--ink-3);
  text-transform: uppercase;
}
.access__map-link {
  font-size: 13px; color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 8px 20px;
  background: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s ease;
}
.access__map-link:hover {
  border-color: var(--red);
  color: var(--red);
}
.access__map-link i { width: 14px; height: 14px; color: currentColor; }
.access__info { display: flex; flex-direction: column; gap: 28px; }
.access__info h3 {
  font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.access__info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 16px;
  font-size: 13px;
  line-height: 1.8;
}
.access__info dt { color: var(--ink-3); letter-spacing: .05em; }
.access__info dd { color: var(--ink); }
.access__info address { font-style: normal; font-size: 14px; color: var(--ink); line-height: 1.9; }

/* =========================================================
   CTA Block：最終導線
   ========================================================= */
/* CTA帯：画像レス・赤系グラデ＋ストライプ＋光のオーブで構成 */
.cta-block {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, var(--red) 0%, #A00A1C 60%, #7A0715 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* 斜めストライプ（テクスチャ） */
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    transparent 0 28px,
    rgba(255,255,255,.045) 28px 29px);
  pointer-events: none; z-index: 0;
}
/* 右下の光のオーブ */
.cta-block::after {
  content: "";
  position: absolute;
  right: -160px; bottom: -200px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none; z-index: 0;
}
.cta-block__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
.cta-block__label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.9); letter-spacing: .24em;
  margin-bottom: 16px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-block__label::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px;
  background: rgba(255,255,255,.65);
}
.cta-block__title {
  font-size: 32px; font-weight: 700;
  line-height: 1.45; color: #fff;
  margin-bottom: 16px; letter-spacing: .02em;
}
.cta-block__text {
  font-size: 14px; line-height: 2;
  color: rgba(255,255,255,.88); max-width: 560px;
}
.cta-block__buttons {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 280px;
}
.cta-block .btn--primary {
  background: #fff; color: var(--ink);
  border-color: #fff;
}
.cta-block .btn--primary:hover {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.cta-block .btn--outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.cta-block .btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff; color: #fff;
}


/* ===== PAGE HERO VARIANTS ===== */

/* =========================================================
   Page Hero（下層ページ専用・TOPと差別化：単列／左に赤バー／EN透かし）
   ========================================================= */
.phero {
  position: relative;
  padding: 88px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
/* 左端の赤い縦ライン */
.phero::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, #A00A1C 100%);
  z-index: 1;
}
/* 右側のEN透かし（data-en属性を背景ワードマークとして描画） */
.phero::after {
  content: attr(data-en);
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 180px; font-weight: 800;
  color: rgba(195, 13, 35, .045);
  letter-spacing: -.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.phero .container { position: relative; z-index: 2; max-width: 960px; }
.phero__label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: .28em; color: var(--red);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.phero__label::before { content: ""; width: 32px; height: 1px; background: var(--red); }
.phero__title {
  font-size: clamp(32px, 4vw, 44px); font-weight: 900;
  line-height: 1.3; color: var(--ink); letter-spacing: -.01em;
  max-width: 820px;
}
.phero__title em { color: var(--red); font-style: normal; }
.phero__title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: var(--ink-3); letter-spacing: .14em;
  margin-top: 14px;
}
.phero__lead {
  margin-top: 24px;
  font-size: 15px; line-height: 2;
  color: var(--ink-2); max-width: 720px;
}

/* phero 追加：更新日メタ情報 */
.phero__meta { margin-top: 20px; display: flex; gap: 24px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }
.phero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.phero__meta i { width: 14px; height: 14px; color: var(--ink-3); }

/* =========================================================
   Page Hero - Variation A | Stagger Lines（下層ヒーロー差別化プロトA準拠）
   ========================================================= */
.v-a {
  padding: 140px 0 120px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.v-a .label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.v-a .label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-a h1 {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 900px;
}
.v-a h1 em { color: var(--red); font-style: normal; }
.v-a .en {
  display: block;
  font-family: var(--font-en);
  font-size: 15px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .08em;
  margin-top: 14px;
}
.v-a .lead {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-top: 28px;
}
.v-a .line { display: block; overflow: hidden; }
.v-a .line > span {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform .9s cubic-bezier(.22, 1, .36, 1),
    opacity .9s cubic-bezier(.22, 1, .36, 1);
}
.v-a.is-visible .line:nth-child(1) > span { transition-delay: .00s; transform: none; opacity: 1; }
.v-a.is-visible .line:nth-child(2) > span { transition-delay: .08s; transform: none; opacity: 1; }
.v-a.is-visible .line:nth-child(3) > span { transition-delay: .16s; transform: none; opacity: 1; }
.v-a .en, .v-a .lead { opacity: 0; transform: translateY(12px); }
.v-a.is-visible .en,
.v-a.is-visible .lead {
  opacity: 1;
  transform: none;
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .35s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .35s;
}

/* =========================================================
   Page Hero - Variation B | Masked Reveal（下層ヒーロー差別化プロトB準拠）
   ========================================================= */
.v-b {
  padding: 160px 0 140px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.v-b .container { position: relative; z-index: 2; }
.v-b .label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 30px;
}
.v-b .label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-b h1 {
  font-family: var(--font-en);
  font-size: clamp(72px, 11vw, 168px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ink);
  position: relative;
  overflow: visible;
  margin: 0;
}
.v-b h1 .sub {
  display: block;
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
  letter-spacing: -.01em;
  line-height: 1.45;
}
.v-b h1 .sub em { color: var(--red); font-style: normal; }
.v-b .mask {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: top;
  transform: scaleY(1);
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
  z-index: 3;
  pointer-events: none;
}
.v-b.is-visible .mask { transform: scaleY(0); }
.v-b .lead {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  margin-top: 40px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) .9s,
    transform .8s cubic-bezier(.22, 1, .36, 1) .9s;
}
.v-b.is-visible .lead { opacity: 1; transform: none; }

/* =========================================================
   Page Hero - Variation C | Editorial Stack（下層ヒーロー差別化プロトC準拠）
   ========================================================= */
.v-c {
  padding: 140px 0 120px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.v-c .label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1) .0s;
}
.v-c .label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-c h1 {
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--ink);
  max-width: 920px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .55s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .55s;
  margin: 0;
}
.v-c h1 em { color: var(--red); font-style: normal; }
.v-c h1 .en {
  display: block;
  font-family: var(--font-en);
  font-size: 14px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .12em;
  margin-top: 16px;
}
.v-c .meta {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.v-c .meta > div {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1) .85s,
    transform .7s cubic-bezier(.22, 1, .36, 1) .85s;
}
.v-c .meta > div:nth-child(2) { transition-delay: 1.0s; }
.v-c .meta > div:nth-child(3) { transition-delay: 1.15s; }
.v-c .meta .k {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.v-c .meta .v {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.v-c .lead {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  margin-top: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) 1.3s,
    transform .8s cubic-bezier(.22, 1, .36, 1) 1.3s;
}
.v-c.is-visible .label { opacity: 1; }
.v-c.is-visible h1 { opacity: 1; transform: none; }
.v-c.is-visible .meta > div { opacity: 1; transform: none; }
.v-c.is-visible .lead { opacity: 1; transform: none; }

/* =========================================================
   Page Hero - Variation D | Badge Splash（recruit.html）
   ========================================================= */
/* Page Hero - Variation D | Badge Hero（下層ヒーロー差別化プロトD準拠・2行REC/RUIT） */
.v-d {
  padding: 140px 0 120px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.v-d .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
}
.v-d .badge {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(96px, 13vw, 184px);
  line-height: .88;
  color: var(--ink);
  letter-spacing: -.05em;
  position: relative;
}
.v-d .badge .dot {
  display: inline-block;
  width: .15em; height: .15em;
  background: var(--red);
  border-radius: 50%;
  margin-left: .08em;
  vertical-align: baseline;
  transform: scale(0);
  opacity: 0;
  transition:
    transform .6s cubic-bezier(.22, 1, .36, 1) .8s,
    opacity .6s cubic-bezier(.22, 1, .36, 1) .8s;
}
.v-d .badge .ch {
  display: inline-block;
  transform: scale(.7) translateY(30px);
  opacity: 0;
  transition:
    transform .7s cubic-bezier(.22, 1, .36, 1),
    opacity .7s cubic-bezier(.22, 1, .36, 1);
}
.v-d.is-visible .badge .ch { transform: none; opacity: 1; }
.v-d.is-visible .badge .ch:nth-child(1) { transition-delay: .05s; }
.v-d.is-visible .badge .ch:nth-child(2) { transition-delay: .12s; }
.v-d.is-visible .badge .ch:nth-child(3) { transition-delay: .19s; }
.v-d.is-visible .badge .ch:nth-child(5) { transition-delay: .33s; } /* R after <br> */
.v-d.is-visible .badge .ch:nth-child(6) { transition-delay: .40s; } /* U */
.v-d.is-visible .badge .ch:nth-child(7) { transition-delay: .47s; } /* I */
.v-d.is-visible .badge .ch:nth-child(8) { transition-delay: .54s; } /* T */
.v-d.is-visible .badge .dot { transform: scale(1); opacity: 1; }
.v-d .copy {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) .7s,
    transform .8s cubic-bezier(.22, 1, .36, 1) .7s;
}
.v-d.is-visible .copy { opacity: 1; transform: none; }
.v-d .copy .sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.v-d .copy .sub::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-d .copy h1 {
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.28;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 20px;
}
.v-d .copy h1 em { color: var(--red); font-style: normal; }
.v-d .copy h1 .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .12em;
  margin-top: 14px;
}
.v-d .copy .lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
}

/* =========================================================
   Page Hero - Variation E | Split + Parallax（下層ヒーロー差別化プロトE準拠）
   ========================================================= */
.v-e {
  padding: 100px 0 120px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.v-e .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}
.v-e .kv {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--red) 0%, #A00A1C 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s cubic-bezier(.22, 1, .36, 1),
    transform 1.3s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 24px 60px -20px rgba(195,13,35,.35);
}
.v-e .kv::before {
  content: "PORTFOLIO";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.2vw, 72px);
  letter-spacing: -.02em;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.v-e .kv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.18));
  pointer-events: none;
}
.v-e .kv .cap {
  position: absolute;
  left: 20px; bottom: 20px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
.v-e.is-visible .kv { opacity: 1; transform: none; }
.v-e .copy {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .3s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .3s;
}
.v-e.is-visible .copy { opacity: 1; transform: none; }
.v-e .copy .label {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.v-e .copy .label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-e .copy h1 {
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.v-e .copy h1 em { color: var(--red); font-style: normal; }
.v-e .copy h1 .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .12em;
  margin-top: 14px;
}
.v-e .copy .lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
  max-width: 540px;
}

/* =========================================================
   Page Hero - Variation F | Marquee Banner（下層ヒーロー差別化プロトF準拠）
   ========================================================= */
.v-f {
  padding: 70px 0 110px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--ink);
}
.v-f .top-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  opacity: .6;
  margin: 0 var(--gutter) 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 40px;
}
.v-f .top-label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,.5);
}
.v-f .marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: v-f-marquee 28s linear infinite;
  will-change: transform;
}
.v-f .marquee span {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(72px, 11vw, 152px);
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.v-f .marquee span::after {
  content: "●";
  display: inline-block;
  color: var(--red);
  font-size: .45em;
  vertical-align: middle;
  margin-left: 60px;
}
@keyframes v-f-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.v-f .copy {
  padding: 80px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.v-f .copy .sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.v-f .copy .sub::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red);
}
.v-f .copy h1 {
  font-weight: 900;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .2s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .2s;
}
.v-f .copy h1 em { color: #fff; font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 6px; }
.v-f .copy h1 .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
  margin-top: 14px;
}
.v-f .copy .lead {
  font-size: 15px;
  line-height: 1.95;
  color: #d4d4d4;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .4s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .4s;
}
.v-f.is-visible .copy h1,
.v-f.is-visible .copy .lead { opacity: 1; transform: none; }

/* ライセンスページ：コピー右のYvonneサイン（黒インク→白反転） */
.v-f .copy { position: relative; }
.v-f .copy .copy-sign {
  position: absolute;
  right: 40px;
  bottom: -6px;
  width: clamp(180px, 20vw, 300px);
  height: auto;
  filter: invert(1);
  opacity: 0;
  transform: translateY(20px) rotate(-3deg);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .6s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .6s;
  pointer-events: none;
}
.v-f.is-visible .copy .copy-sign { opacity: .92; transform: rotate(-3deg); }


/* ===== BUSINESS（事業内容） ===== */

/* =========================================================
   Biz Index：3事業のサマリーナビ
   ========================================================= */
.biz-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.biz-index__item {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: background-color .25s ease;
  position: relative;
}
.biz-index__item:last-child { border-right: none; }
.biz-index__item:hover { background: var(--bg-alt); }
.biz-index__num {
  font-family: var(--font-en);
  font-size: 42px; font-weight: 700;
  color: var(--red); letter-spacing: .04em;
  line-height: 1;
}
.biz-index__en {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; color: var(--ink-3);
  text-transform: uppercase;
}
.biz-index__title {
  font-size: 19px; font-weight: 700;
  color: var(--ink); line-height: 1.5;
  margin-top: 4px;
}
.biz-index__desc {
  font-size: 13px; line-height: 1.9;
  color: var(--ink-2); margin-bottom: 8px;
}
.biz-index__link {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; color: var(--red);
  text-transform: uppercase;
  margin-top: auto;
}
.biz-index__link i { width: 14px; height: 14px; }
.biz-index__item:hover .biz-index__link { gap: 12px; }

/* =========================================================
   Biz Detail：事業詳細セクション（Brand / IP / Wholesale）
   ========================================================= */
.biz-detail { scroll-margin-top: 80px; }
.biz-detail + .biz-detail { border-top: 1px solid var(--line); }
.biz-detail__head {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.biz-detail__num {
  font-family: var(--font-en);
  font-size: 13px; font-weight: 600;
  letter-spacing: .22em; color: var(--red);
  text-transform: uppercase;
}
.biz-detail__num strong {
  display: block;
  font-size: 56px; font-weight: 700;
  color: var(--ink); letter-spacing: .02em;
  line-height: 1; margin-top: 8px;
}
.biz-detail__title {
  font-size: 34px; font-weight: 700;
  line-height: 1.45; color: var(--ink);
  letter-spacing: .02em;
}
.biz-detail__title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: var(--ink-3); letter-spacing: .14em;
  margin-top: 10px;
}
.biz-detail__head .btn { min-height: 44px; font-size: 13px; }

/* 2カラム：Visual（左）× 本文＋特徴（右）*/
.biz-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.biz-detail__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
}
.biz-detail__visual img { width: 100%; height: 100%; object-fit: cover; }
.biz-detail__visual--placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, var(--ink) 0%, #2a2426 100%);
}
.biz-detail__visual--placeholder i { width: 40px; height: 40px; color: rgba(255,255,255,.6); }
.biz-detail__visual--placeholder span {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.biz-detail__visual--placeholder small {
  font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .1em;
}
.biz-detail__visual-caption {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-en);
  font-size: 11px; letter-spacing: .18em;
  color: #fff;
  background: rgba(26,26,26,.72);
  padding: 6px 12px; text-transform: uppercase;
}
.biz-detail__lead {
  font-size: 16px; line-height: 2;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.biz-detail__lead strong { color: var(--ink); font-weight: 700; }

/* 特徴リスト */
.biz-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.biz-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.biz-feature:last-child { border-bottom: 1px solid var(--line); }
.biz-feature__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-tint);
  color: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.biz-feature__icon i { width: 20px; height: 20px; stroke-width: 1.8; }
.biz-feature__body h4 {
  font-size: 15px; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
  line-height: 1.5;
}
.biz-feature__body p {
  font-size: 13px; line-height: 1.9;
  color: var(--ink-2);
}

/* カテゴリタグ */
.biz-tags {
  display: flex; flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 36px;
}
.biz-tags__label {
  width: 100%;
  font-family: var(--font-en);
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.biz-tag {
  display: inline-flex; align-items: center;
  gap: 6px; padding: 6px 14px;
  font-size: 12px; color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  letter-spacing: .04em;
}
.biz-tag i { width: 12px; height: 12px; color: var(--red); }

/* 事業単位のCTAセット */
.biz-cta {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* 左右反転（偶数番目） */
.biz-detail--reverse .biz-detail__body { grid-template-columns: 1fr 1fr; }
.biz-detail--reverse .biz-detail__visual { order: 2; }
.biz-detail--reverse .biz-detail__content { order: 1; }

/* =========================================================
   Flow：取引フロー（共通）
   ========================================================= */
.flow { background: var(--bg-alt); }
.flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
}
.flow__step {
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.flow__step:last-child { border-right: none; }
.flow__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 16px; height: 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.flow__step:last-child::after { display: none; }
.flow__step-num {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; color: var(--red);
  text-transform: uppercase;
}
.flow__step-num strong {
  display: block;
  font-size: 28px; font-weight: 700;
  color: var(--ink); letter-spacing: .02em;
  line-height: 1; margin-top: 4px;
}
.flow__step-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.flow__step-icon i { width: 28px; height: 28px; stroke-width: 1.5; }
.flow__step h4 {
  font-size: 15px; font-weight: 700;
  color: var(--ink); line-height: 1.5;
}
.flow__step p {
  font-size: 12px; line-height: 1.85;
  color: var(--ink-2);
}
.flow__note {
  margin-top: 24px;
  font-size: 12px; color: var(--ink-3);
  padding: 16px 20px;
  border-left: 2px solid var(--red);
  background: #fff;
}
.flow__note strong { color: var(--ink); font-weight: 700; }


/* ===== NEWS（ニュース一覧・詳細） ===== */

/* =========================================================
   News Layout：一覧（左）× サイドバー（右）
   ========================================================= */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 72px;
  align-items: start;
}

/* =========================================================
   Category Filter（カテゴリタブ）
   ========================================================= */
.cat-filter {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.cat-filter__item {
  display: inline-flex; align-items: center;
  gap: 8px; padding: 10px 18px;
  font-size: 13px; color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  letter-spacing: .02em;
  transition: all .2s ease;
}
.cat-filter__item:hover { border-color: var(--ink); color: var(--ink); }
.cat-filter__item.is-current {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.cat-filter__item .count {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .08em;
}
.cat-filter__item.is-current .count { color: rgba(255,255,255,.6); }

/* =========================================================
   News List：ニュースカード一覧
   ========================================================= */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid;
  grid-template-columns: 1fr; /* サムネ廃止に伴い1カラム */
  gap: 8px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background-color .2s ease;
}
.news-item:first-child { padding-top: 0; }
.news-item__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
}
.news-item__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-item:hover .news-item__thumb img { transform: scale(1.04); }
.news-item__thumb--placeholder {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; color: rgba(255,255,255,.7);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, var(--ink) 0%, #2a2426 100%);
}
.news-item__thumb--placeholder i { width: 20px; height: 20px; color: rgba(255,255,255,.55); }
.news-item__body { padding: 4px 0; display: flex; flex-direction: column; gap: 10px; }
.news-item__meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.news-item__date {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 500;
  color: var(--ink-3); letter-spacing: .06em;
}

/* --- News Category Badge --- */
.news-cat {
  display: inline-flex; align-items: center;
  padding: 4px 14px;
  font-family: var(--font-en);
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: var(--ink);
}
.news-cat--license, .news-cat--collaboration { background: var(--red); }
.news-cat--release, .news-cat--お知らせ { background: #2B7AC9; }
.news-cat--event { background: #E08B1A; }
.news-cat--media, .news-cat--メディア掲載 { background: #5B6B73; }
.news-cat--コラボレーション { background: var(--red); }

.news-item__title {
  font-size: 18px; font-weight: 700;
  color: var(--ink); line-height: 1.55;
  letter-spacing: .02em;
  transition: color .2s ease;
}
.news-item__title a { color: inherit; }
.news-item:hover .news-item__title { color: var(--red); }
.news-item__excerpt {
  font-size: 13px; line-height: 1.9;
  color: var(--ink-2);
}
.news-item__more {
  margin-top: 6px;
  display: inline-flex; align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; color: var(--red);
  text-transform: uppercase;
}
.news-item__more i { width: 12px; height: 12px; transition: transform .2s ease; }
.news-item:hover .news-item__more i { transform: translateX(3px); }

/* =========================================================
   Pagination（WP the_posts_pagination 出力に対応）
   ========================================================= */
.pagination .nav-links {
  display: flex; justify-content: center;
  align-items: center; gap: 4px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: #fff;
  letter-spacing: .04em;
  transition: all .2s ease;
}
.pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.pagination .page-numbers.current {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.pagination .page-numbers.dots { border: none; color: var(--ink-3); }
.pagination .page-numbers i { width: 14px; height: 14px; }

/* =========================================================
   Sidebar（ニュース右カラム）
   ========================================================= */
.news-side { position: sticky; top: 100px; }
.side-block + .side-block { margin-top: 40px; }
.side-block__title {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; color: var(--ink);
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.side-block__title::before {
  content: ""; width: 16px; height: 2px; background: var(--red);
}
.side-block__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.side-block__list li { margin: 0; padding: 0; }
.side-block__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  font-size: 13px; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  letter-spacing: .02em;
  transition: color .2s ease;
}
.side-block__list a:hover { color: var(--red); }
.side-block__list a span {
  font-family: var(--font-en);
  font-size: 11px; color: var(--ink-3);
  letter-spacing: .06em;
}

/* --- Side CTA --- */
.side-cta {
  margin-top: 40px;
  padding: 24px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  text-align: center;
}
.side-cta__text {
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: 16px;
  line-height: 1.6;
}

/* =========================================================
   phero--compact（記事詳細ヒーロー）
   ========================================================= */
.phero--compact { padding: 56px 0 40px; }
.phero--compact::after { display: none; } /* 記事詳細のNEWS透かしはパンくずと重なるため非表示 */
.phero--compact .breadcrumb {
  border: none; background: none; margin: 0;
}
.phero--compact .breadcrumb__inner,
.phero--compact .breadcrumb {
  padding: 0; max-width: none;
}

/* =========================================================
   News Article（記事詳細）
   ========================================================= */
.news-article__header {
  margin-bottom: 40px;
}
.news-article__meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.news-article__date {
  font-family: var(--font-en);
  font-size: 13px; font-weight: 500;
  color: var(--ink-3); letter-spacing: .06em;
}
.news-article__title {
  font-size: 28px; font-weight: 700;
  line-height: 1.55; color: var(--ink);
  letter-spacing: .02em;
}
.news-article__hero {
  margin-bottom: 40px;
}
.news-article__hero img {
  width: 100%; height: auto;
  border: 1px solid var(--line);
}

/* --- Article Body (prose) --- */
.news-article__body.prose {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}
.news-article__body.prose p { margin-bottom: 24px; }
.news-article__body.prose strong { font-weight: 700; color: var(--ink); }
.news-article__body.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.news-article__body.prose a:hover { opacity: .7; }
.news-article__body.prose h2 {
  font-size: 22px; font-weight: 700;
  color: var(--ink); line-height: 1.55;
  margin: 48px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.news-article__body.prose h3 {
  font-size: 18px; font-weight: 700;
  color: var(--ink); line-height: 1.6;
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--red);
}
.news-article__body.prose ul,
.news-article__body.prose ol { margin: 0 0 24px; padding-left: 0; list-style: none; }
.news-article__body.prose li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 16px; line-height: 1.9;
  border-bottom: 1px dashed var(--line);
}
.news-article__body.prose ul li::before {
  content: "";
  position: absolute; left: 8px; top: 18px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.news-article__body.prose blockquote {
  position: relative;
  margin: 40px 0;
  padding: 28px 36px 28px 52px;
  background: var(--bg-alt);
  font-size: 16px; line-height: 1.95;
  color: var(--ink);
  border-left: 3px solid var(--red);
}
.news-article__body.prose blockquote::before {
  content: "\201C";
  position: absolute;
  left: 16px; top: 8px;
  font-family: var(--font-en);
  font-size: 48px; font-weight: 700;
  color: var(--red); line-height: 1;
}
.news-article__body.prose img {
  max-width: 100%; height: auto;
  border: 1px solid var(--line);
}
.news-article__body.prose figure { margin: 36px 0; }
.news-article__body.prose figcaption {
  margin-top: 10px;
  font-size: 12px; color: var(--ink-3);
  line-height: 1.6;
}

/* --- Article Pager（前後記事ナビ） --- */
.news-article__pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.pager__item {
  display: block;
  padding: 22px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: all .2s ease;
}
.pager__item:hover { border-color: var(--ink); background: #fff; }
.pager__item--next { text-align: right; }
.pager__label {
  font-family: var(--font-en);
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.pager__item--next .pager__label { justify-content: flex-end; }
.pager__label i { width: 12px; height: 12px; }
.pager__title {
  font-size: 14px; font-weight: 700;
  color: var(--ink); line-height: 1.5;
  display: block;
}

/* --- Back to List --- */
.news-article__back {
  text-align: center;
  margin-top: 40px;
}


