@charset "utf-8";
/* =========================================================================
   全国障害年金相談支援センター — ランディングページ
   style.css : 依存なしの単一スタイルシート（読みやすい一般的なCSS）
   ========================================================================= */

/* ---- デザイントークン ---- */
:root {
  /* メインカラー */
  --pink: #e75685;
  --pink-deep: #d23c6c;
  --pink-soft: #fbdde8;
  /* 差し色（水彩のあしらい） */
  --yellow: #f4c067;
  --green: #8bc28d;
  --green-deep: #5fa86a;
  --sky: #79c3d6;
  --coral: #f5946b;
  /* アクセントカラー（teal） ※ syougai_styles-article.css が使用 */
  --accent: #e75685;
  --accent-deep: #d23c6c;
  --accent-soft: #fbdde8;
  --accent-ink: #480a28;
  --warn: #c75d4f;
  /* 背景・文字 */
  --bg: #fdf8f0;
  --bg-soft: #f7efe1;
  --bg-gray: #f5f0e8;
  --cream: #fdf8f0;
  --cream-2: #f7efe1;
  --cream-3: #f1e6d3;
  --card: #ffffff;
  --ink: #23201c;
  --ink-2: #312d28;
  --ink-3: #58524a;
  --line: #ece1cf;
  --line-2: #f1e9da;
  /* 書体 */
  --serif: "YakuHanJP","Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --sans: "YakuHanJP","Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --num: "Quicksand", "Zen Kaku Gothic New", sans-serif;
  /* レイアウト */
  --container: 1240px;
  --container-mid: 1080px;
  --container-narrow: 920px;
  --pad-x: clamp(20px, 4vw, 56px);
  --r: 22px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 30px;
  --r-xl: 40px;
}

/* ---- リセット / ベース ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; touch-action: manipulation; }
::selection { background: var(--pink-soft); color: var(--pink-deep); }

/* ---- 共通レイアウト ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.container-mid { max-width: var(--container-mid); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.text-pink{color:var(--pink);}

/* ---- 画像プレースホルダ（実画像に差し替えてください） ---- */
.ph {
  position: relative;
  overflow: hidden;
}
.ph--shadow {
  background: #f0ede8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph--shadow .ph-shadow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph--shadow .ph-shadow-wrap svg {
  width: 80px;
  height: auto;
  display: block;
}

/* ---- スクロール表示アニメーション ---- */
.reveal, .reveal-up, .reveal-scale {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0ms);
}
.reveal { transform: translateY(28px); }
.reveal-up { transform: translateY(56px); }
.reveal-scale { transform: scale(.94); }
.reveal.in, .reveal-up.in, .reveal-scale.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* ---- 水彩ブロブ（装飾） ---- */
.blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5; pointer-events: none; z-index: 0; }
.blob.pink { background: var(--pink); }
.blob.yellow { background: var(--yellow); }
.blob.green { background: var(--green); }
.blob.sky { background: var(--sky); }
.blob.coral { background: var(--coral); }

/* =========================================================================
   ナビゲーション
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  pointer-events: none;
}
.nav > *, .nav a, .nav button { pointer-events: auto; }
.nav.scrolled {
  background: rgba(253, 248, 240, .9);
  backdrop-filter: blur(16px) saturate(1.2);
  padding: 14px var(--pad-x);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; width: 140px; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--pink); color: #fff; font-family: var(--num);
  font-weight: 700; font-size: 14px; border-radius: 14px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .ja { font-size: 10.5px; color: var(--ink-3); font-weight: 500; letter-spacing: .06em; }
.brand-text .en { font-family: var(--num); font-size: 15px; font-weight: 700; letter-spacing: .02em; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-tel { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; padding-right: 16px; border-right: 1px solid var(--line); }
.nav-tel .label { font-size: 12px;letter-spacing: .1em; }
.nav-tel .num { font-family: var(--num); font-weight: 700; font-size: 22px; }
.nav-cta {
  background: var(--pink); color: #fff; padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 8px; transition: background .25s, transform .25s;
  pointer-events: auto;
}
.nav-cta:hover { background: var(--pink-deep); transform: translateY(-2px); }
.hamburger {
  position: relative; width: 56px; height: 56px; background: var(--pink); border-radius: 18px;
  display: grid; place-items: center; transition: background .25s, transform .3s; flex-shrink: 0;
  pointer-events: auto;
}
.hamburger:hover, .hamburger.open { background: var(--pink-deep); }
.hamburger.open { transform: rotate(90deg); }
.hamburger .bars { position: relative; width: 22px; height: 14px; }
.hamburger .bars span { position: absolute; left: 0; width: 100%; height: 1.5px; background: #fff; transition: transform .3s, opacity .2s, top .3s; }
.hamburger .bars span:nth-child(1) { top: 0; }
.hamburger .bars span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 70%; }
.hamburger .bars span:nth-child(3) { top: 100%; transform: translateY(-100%); }
.hamburger.open .bars span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.open .bars span:nth-child(2) { opacity: 0; }
.hamburger.open .bars span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }
@media (max-width: 720px) {
  .nav-tel { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 11px; }
  .brand-text .ja { display: none; }
}

/* ---- メニューオーバーレイ ---- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 99; background: var(--cream); color: var(--ink);
  display: grid; grid-template-columns: 1.4fr 1fr;
  height: 100vh; height: 100dvh;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-overlay::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(231, 86, 133, .22), transparent 46%),
    radial-gradient(circle at 16% 84%, rgba(121, 195, 214, .24), transparent 44%),
    radial-gradient(circle at 60% 70%, rgba(244, 192, 103, .2), transparent 40%);
}
.menu-left {
  position: relative; z-index: 1; padding: 140px clamp(40px, 6vw, 96px) 80px; display: flex; flex-direction: column;
  height: 100vh; height: 100dvh; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.menu-eyebrow { font-family: var(--num); font-size: 11px; letter-spacing: .26em; color: var(--pink); font-weight: 700; margin-bottom: 28px; display: inline-flex; align-items: center; gap: 14px; }
.menu-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--pink); }
.menu-list { display: flex; flex-direction: column; gap: 6px; }
.menu-link {
  font-family: var(--serif); font-size: clamp(24px, 2.2vw, 32px); font-weight: 700; line-height: 1.4; color: var(--ink);
  display: flex; align-items: baseline; gap: 22px; padding: 8px 0;
  opacity: 0; transform: translateX(-26px);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .5s ease, color .2s;
  cursor: pointer;
}
.menu-overlay.open .menu-link { opacity: 1; transform: translateX(0); }
.menu-overlay.open .menu-link:nth-child(1) { transition-delay: .10s; }
.menu-overlay.open .menu-link:nth-child(2) { transition-delay: .16s; }
.menu-overlay.open .menu-link:nth-child(3) { transition-delay: .22s; }
.menu-overlay.open .menu-link:nth-child(4) { transition-delay: .28s; }
.menu-overlay.open .menu-link:nth-child(5) { transition-delay: .34s; }
.menu-overlay.open .menu-link:nth-child(6) { transition-delay: .40s; }
.menu-overlay.open .menu-link:nth-child(7) { transition-delay: .46s; }
.menu-overlay.open .menu-link:nth-child(8) { transition-delay: .52s; }
.menu-link:hover { color: var(--pink); transform: translateX(12px); }
.menu-link .num { font-family: var(--num); font-size: 12px; letter-spacing: .18em; color: var(--pink); font-weight: 700; min-width: 32px; }
.menu-link .en { font-family: var(--num); font-size: 12px; letter-spacing: .18em; color: var(--ink-3); font-weight: 500; text-transform: uppercase; }
.menu-right {
  position: relative; z-index: 1; padding: 140px clamp(32px, 4vw, 64px) 80px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  height: 100vh; height: 100dvh; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.menu-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; }
.menu-card h5 { margin: 0 0 18px; font-family: var(--num); font-size: 13px; letter-spacing: .18em; font-weight: 700; color: var(--pink); }
.menu-card .tel-num { font-family: var(--num); font-size: 30px; font-weight: 700; display: block; margin-bottom: 6px; }
.menu-card .tel-hours { font-size: 11.5px; color: var(--ink-3); display: block; margin-bottom: 22px; }
.menu-card .btn-line { display: flex; align-items: center; justify-content: space-between; background: var(--pink); color: #fff; padding: 16px 22px; font-size: 14px; font-weight: 700; border-radius: 999px; transition: background .25s, color .25s; }
.menu-card .btn-line:hover { background: #fff; color: var(--pink-deep); }
.menu-card .btn-line + .btn-line { margin-top: 10px; background: transparent; border: 1px solid var(--line); color: var(--ink); }
.menu-card .btn-line + .btn-line:hover { background: var(--cream-2); color: var(--pink-deep); }
.menu-foot { font-size: 11.5px; color: var(--ink-3); display: flex; flex-direction: column; gap: 6px; }
.menu-foot strong { color: var(--ink); font-weight: 700; }
@media (max-width: 900px) {
  .menu-overlay { grid-template-columns: 1fr; }
  .menu-right { display: none; }
  .menu-left { padding: 110px var(--pad-x) 40px; }
}

/* 画面が低いノートPC等でもメニュー全項目が収まる/スクロールできるように調整 */
@media (max-height: 760px) {
  .menu-left, .menu-right { padding-top: 96px; padding-bottom: 40px; }
  .menu-eyebrow { margin-bottom: 16px; }
  .menu-list { gap: 0; }
  .menu-link { font-size: clamp(18px, 2vw, 24px); padding: 6px 0; }
  .menu-card { padding: 22px 20px; }
  .menu-card .tel-num { font-size: 24px; margin-bottom: 2px; }
  .menu-card .tel-hours { margin-bottom: 14px; }
}
@media (max-height: 620px) {
  .menu-left, .menu-right { padding-top: 72px; padding-bottom: 28px; }
  .menu-link { font-size: clamp(15px, 1.8vw, 19px); padding: 4px 0; }
  .menu-foot { display: none; }
}

/* =========================================================================
   セクション共通
   ========================================================================= */
.section { padding: clamp(74px, 9vw, 122px) 0; position: relative; overflow: hidden; }
.section.warm { background: var(--cream-2); }
.section > .container, .section > .container-mid { position: relative; z-index: 1; }

.lead-en {
  font-family: var(--num); font-size: 13px; letter-spacing: .14em; font-weight: 700;
  color: var(--pink); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.lead-en::before { content: "✦"; color: var(--yellow); }
.sec-h {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700; line-height: 1.55; margin: 16px 0 0; color: var(--ink); text-wrap: balance; margin-bottom: clamp(26px, 3.4vw, 42px);
}
.sec-h .em { color: var(--pink); }
.sec-sub { margin: 18px 0 0; max-width: 660px; font-size: 16px; line-height: 2.05; color: var(--ink-2); text-wrap: pretty; }
.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { text-align: center; }
.sec-head.center .lead-en { justify-content: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }

.sec-h2 {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700; line-height: 1.55; margin: 16px 0 0; color: var(--ink); text-wrap: balance; margin-bottom: clamp(26px, 3.4vw, 42px);
  background-color: #F7EFE1; padding: 1rem; border-radius: 20px;
}

/* =========================================================================
   ヒーロー
   ========================================================================= */

.hero-top {
  position: relative; overflow: hidden; padding: 100px 0 clamp(64px, 8vw, 108px);
  background:
    radial-gradient(82% 70% at 90% 2%, rgba(244, 192, 103, .36), transparent 50%),
    radial-gradient(70% 64% at 4% 98%, rgba(121, 195, 214, .32), transparent 48%),
    radial-gradient(60% 50% at 70% 100%, rgba(231, 86, 133, .22), transparent 46%),
    var(--cream);
}

.hero {
  position: relative; overflow: hidden; padding: 100px 0 0;
  background:var(--cream);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero-bottom{padding-bottom: clamp(64px, 8vw, 108px)}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.crumb { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; margin-bottom: 28px; font-family: var(--num); font-size: 12px; letter-spacing: .08em; font-weight: 600; color: var(--ink-3); }
.crumb a:hover { color: var(--pink); }
.crumb .sep { color: var(--line); }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--pink-soft); color: var(--pink-deep);
  font-size: 13px; font-weight: 700; padding: 9px 18px 9px 13px; border-radius: 999px; margin-bottom: 24px;
  box-shadow: 0 12px 26px -18px rgba(210, 60, 108, .6);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(139, 194, 141, .28); }

.hero-catch { font-family: var(--serif); font-size: clamp(38px, 5.8vw, 72px); font-weight: 700; line-height: 1.3; color: var(--ink); margin: 0; }
.hero-catch .em { color: var(--pink); position: relative; }
.hero-sub { margin: 24px 0 0; font-family: var(--serif); font-size: clamp(17px, 1.8vw, 21px); font-weight: 500; line-height: 1.7; color: var(--ink); }
.hero-sub .mk { color: var(--pink-deep); font-weight: 700; }
.hero-body { margin: 20px 0 0; font-size: 15.5px; line-height: 1.7; color: var(--ink); max-width: 540px; }
.hero-body strong { color: var(--ink); font-weight: 700; }
.hero-note-box { margin: 24px 0 0; padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 560px; box-shadow: 0 16px 30px -26px rgba(70, 61, 52, .4); }
.hero-note-box strong { color: var(--pink-deep); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: inherit; gap: 14px; margin: 28px 0 0; }
.hero-note { margin: 16px 2px 0; font-size: 12.5px; color: var(--ink-3); }

/* ボタン */
.btn { display: inline-flex; align-items: center; gap: 11px; padding: 18px 30px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: transform .25s, box-shadow .25s, background .25s; }
.btn .ic { font-size: 18px; line-height: 1; }
.btn small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; opacity: .85; margin-bottom: 2px; }
.btn .stk { text-align: left; line-height: 1.18; }
.btn-pink { background: var(--pink); color: #fff; box-shadow: 0 16px 34px -12px rgba(231, 86, 133, .7); }
.btn-pink:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: 0 22px 42px -14px rgba(231, 86, 133, .8); }
.btn-line { background: #06c755; color: #fff; box-shadow: 0 16px 34px -14px rgba(6, 199, 85, .5); }
.btn-line:hover { background: #05b54d; transform: translateY(-2px); }

/* ヒーロー画像 */
.hero-figure { position: relative; }
.hero-frame { position: relative; z-index: 1; aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 40px 80px -38px rgba(70, 61, 52, .45); }
.hero-frame .ph { width: 100%; height: 100%; }
.stat-card { position: absolute; left: -22px; bottom: 26px; z-index: 2; background: #fff; border-radius: 24px; padding: 20px 26px; box-shadow: 0 30px 60px -26px rgba(70, 61, 52, .5); border: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 2px; min-width: 200px; }
.stat-card .lbl { font-size: 11.5px; font-weight: 700; color: var(--ink-3); }
.stat-card .val { font-family: var(--num); font-weight: 700; color: var(--ink); line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.stat-card .val b { font-size: 50px; color: var(--pink); }
.stat-card .val span { font-size: 18px; }
.stat-card .cap { font-size: 11px; color: var(--ink-3); margin-top: 6px; }
@media (max-width: 460px) { .stat-card { left: 12px; right: 12px; bottom: 14px; min-width: 0; } }

/* =========================================================================
   思い込み解除
   ========================================================================= */
.myth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: clamp(36px, 5vw, 58px); }
@media (max-width: 880px) { .myth-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .myth-grid { grid-template-columns: 1fr; } }
.myth { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: 22px 22px 22px 6px; padding: 26px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.myth:hover { transform: translateY(-4px) rotate(-.6deg); border-color: var(--pink-soft); box-shadow: 0 24px 44px -32px rgba(70, 61, 52, .4); }
.myth .q { font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--pink-soft); font-weight: 900; display: block; margin-bottom: 8px; }
.myth p { margin: 0; font-size: 15.5px; font-weight: 700; line-height: 1.7; color: var(--ink); }
.myth .x { position: absolute; top: 20px; right: 20px; width: 26px; height: 26px; border-radius: 50%; background: var(--cream-2); color: var(--ink-3); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.myth-reveal { background: #fff; border: 1.5px solid var(--pink-soft); border-radius: var(--r-xl); padding: clamp(34px, 4.5vw, 56px); position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; box-shadow: 0 30px 60px -42px rgba(231, 86, 133, .55); }
.myth-reveal::before { content: ""; position: absolute; right: -50px; top: -50px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(244, 192, 103, .45), transparent 70%); }
.myth-reveal > * { position: relative; z-index: 1; }
.myth-reveal h3 { font-family: var(--serif); margin: 0 0 14px; font-size: clamp(21px, 2.5vw, 31px); font-weight: 700; line-height: 1.5; }
.myth-reveal h3 .em { color: var(--pink); }
.myth-reveal p { margin: 0; font-size: 14.5px; line-height: 2; color: var(--ink-2); max-width: 620px; }
.myth-reveal p strong { color: var(--ink); font-weight: 700; }
.myth-reveal .badge { flex-shrink: 0; text-align: center; background: var(--pink); color: #fff; border-radius: 26px; padding: 24px 28px; box-shadow: 0 18px 36px -14px rgba(231, 86, 133, .7); }
.myth-reveal .badge b { font-family: var(--num); font-size: 40px; font-weight: 700; display: block; line-height: 1; }
.myth-reveal .badge span { font-size: 12px; opacity: .92; }
@media (max-width: 760px) { .myth-reveal { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================================
   受給された方の声（流れるカード）
   ========================================================================= */
.voices { padding: clamp(64px, 8vw, 104px) 0; overflow: hidden; position: relative; background:  radial-gradient(60% 80% at 88% 90%, rgba(231, 86, 133, .24), transparent 55%), var(--cream-3); }
.voices .sec-head { padding: 0 var(--pad-x); position: relative; z-index: 1; }
.voices-l { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.voices-r { flex-shrink: 0; }
.voices-r img { width: 200px; height: auto; display: block; }
@media (max-width: 720px) {
  .voices-r img { width: 80px; }
}
.voice-track { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; position: relative; z-index: 1; }
.voice-row { display: flex; gap: 16px; width: max-content; will-change: transform; }
.voice-row.r1 { animation: marqueeL 420s linear infinite; }
.voice-row.r2 { animation: marqueeR 440s linear infinite; }
@media (hover: hover) { .voice-track:hover .voice-row { animation-play-state: paused; } }
@keyframes marqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.voice { flex-shrink: 0; width: 348px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px 24px; box-shadow: 0 18px 34px -28px rgba(70, 61, 52, .4); border-top: 4px solid var(--pink); position: relative; transition: box-shadow .2s; }
.voice:nth-child(3n+2) { border-top-color: var(--sky); }
.voice:nth-child(3n+3) { border-top-color: var(--green); }
.voice:hover { z-index: 10; box-shadow: 0 28px 52px -20px rgba(70, 61, 52, .5); }
.voice .vq { font-family: var(--serif); font-size: 15px; line-height: 1.8; color: var(--ink); font-weight: 500; margin: 0 0 14px; }
.voice .vq .hl { color: var(--pink-deep); font-weight: 700; }
.voice .vm { display: flex; align-items: center; gap: 10px; font-size: 11.5px; color: var(--ink-3); }
.voice .vm .av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--yellow)); display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; font-family: var(--serif); }

/* =========================================================================
   声：写真左・コメント右
   ========================================================================= */
.vc-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vc-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  box-shadow: 0 10px 28px -18px rgba(70, 61, 52, .2);
  transition: transform .3s, box-shadow .3s;
}
.vc-item:nth-child(3n+2) { border-left-color: var(--sky); }
.vc-item:nth-child(3n+3) { border-left-color: var(--green); }
.vc-item:nth-child(3n+4) { border-left-color: var(--coral); }
.vc-item:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -24px rgba(70, 61, 52, .32); }
.vc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  width: 140px;
}
.vc-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--cream-3) 100%);
}
.vc-avatar .ph { width: 100%; height: 100%; }
.vc-body { flex: 1; min-width: 0; }
.vc-text {
  font-family: var(--serif);
  font-size: 15.5px; line-height: 1.95;
  color: var(--ink); margin: 0;
  font-style: normal;
}
.vc-meta {
  font-size: 11.5px; font-weight: 700; color: var(--ink-3);
  text-align: center; line-height: 1.65; font-style: normal;
}
@media (max-width: 640px) {
  .vc-list { margin-top: 40px; }
  .vc-item { flex-direction: column; gap: 0; padding: 24px 20px; }
  .vc-left { flex-direction: column; align-items: center; width: 100%; gap: 8px; margin-bottom: 20px; }
  .vc-avatar { width: 64px; height: 64px; }
  .vc-text { font-size: 14px; }
}

/* =========================================================================
   対応傷病カテゴリ
   ========================================================================= */
.cond-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .cond-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cond-grid { grid-template-columns: 1fr; } }
.cond { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 26px 24px; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; gap: 10px; min-height: 156px; }
.cond:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -32px rgba(70, 61, 52, .38); }
.cond .ci { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; font-family: var(--num); font-size: 14px; font-weight: 700; color: #fff; }
.cond:nth-child(5n+1) .ci { background: var(--pink); }
.cond:nth-child(5n+2) .ci { background: var(--sky); }
.cond:nth-child(5n+3) .ci { background: var(--green); }
.cond:nth-child(5n+4) .ci { background: var(--yellow); }
.cond:nth-child(5n+5) .ci { background: var(--coral); }
.cond h4 { font-family: var(--serif); margin: 0; font-size: 16.5px; font-weight: 700; line-height: 1.5; }
.cond p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--ink-3); }
.cond-foot { margin-top: clamp(34px, 4vw, 52px); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; background: #fff; border: 1.5px dashed var(--pink-soft); border-radius: var(--r); padding: 24px 28px; text-align: center; }
.cond-foot.solid { border-style: solid; }
.cond-foot p { margin: 0; font-family: var(--serif); font-size: 14.5px; color: var(--ink-2); font-weight: 700; }
.link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--pink-deep); transition: gap .25s; }
.link:hover { gap: 16px; }
.link .ar { width: 20px; height: 20px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-size: 11px; }

/* =========================================================================
   受給事例
   ========================================================================= */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; } }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.case:hover { transform: translateY(-6px); box-shadow: 0 30px 54px -32px rgba(70, 61, 52, .4); }
.case .cimg { position: relative; aspect-ratio: 16/10; }
.case .cimg .ph { width: 100%; height: 100%; }
.case .ctags { position: absolute; left: 14px; bottom: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.case .ctag { background: rgba(255, 255, 255, .95); backdrop-filter: blur(4px); color: var(--ink); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.case .cbody { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.case .cq { font-family: var(--serif); font-size: 18.5px; font-weight: 700; line-height: 1.6; margin: 0 0 14px; }
.case .cdesc { margin: 0 0 22px; font-size: 16px; line-height: 1.9; color: var(--ink-2); flex: 1; }
.case .cresult { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; background: var(--pink-soft); color: var(--pink-deep); font-family: var(--serif); font-size: 13px; font-weight: 700; padding: 10px 16px; border-radius: 999px; }
.case .cresult .ck { width: 18px; height: 18px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-size: 11px; }

/* =========================================================================
   選ばれる理由
   ========================================================================= */
.reasons { display: flex; flex-direction: column; gap: 18px; }
.reason { display: grid; grid-template-columns: 96px 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 3.4vw, 40px) clamp(26px, 3.4vw, 44px); transition: box-shadow .3s; }
.reason:hover { box-shadow: 0 26px 50px -38px rgba(70, 61, 52, .4); }
.reason .rn { font-family: var(--num); font-size: clamp(46px, 5vw, 66px); font-weight: 700; line-height: .9; color: var(--pink); }
.reason:nth-child(2) .rn { color: var(--sky); }
.reason:nth-child(3) .rn { color: var(--green); }
.reason:nth-child(4) .rn { color: var(--yellow); }
.reason:nth-child(5) .rn { color: var(--coral); }
.reason .rn span { display: block; font-size: 11px; letter-spacing: .18em; color: var(--ink-3); font-weight: 700; margin-top: 8px; }
.reason h4 { font-family: var(--serif); margin: 4px 0 12px; font-size: clamp(18px, 2.1vw, 25px); font-weight: 700; line-height: 1.5; }
.reason p { margin: 0; font-size: 16px; line-height: 1.95; color: var(--ink-2); max-width: 760px; }
@media (max-width: 600px) { .reason { grid-template-columns: 1fr; gap: 12px; } .reason .rn span { display: inline; margin-left: 10px; } }

/* =========================================================================
   相談の流れ
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px 32px; position: relative; }
.step .sn { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 18px; font-family: var(--num); color: var(--pink); font-weight: 700; }
.step:nth-child(2) .sn { color: var(--sky); }
.step:nth-child(3) .sn { color: var(--green); }
.step .sn b { font-size: 42px; line-height: 1; }
.step .sn span { font-size: 12px; letter-spacing: .16em; }
.step h4 { font-family: var(--serif); margin: 0 0 12px; font-size: 18.5px; font-weight: 700; line-height: 1.55; }
.step p { margin: 0; font-size: 15px; line-height: 1.9; color: var(--ink-2); }
.step .free { display: inline-block; margin-top: 16px; font-size: 11.5px; font-weight: 700; color: var(--green-deep); background: #e6f1e6; padding: 6px 13px; border-radius: 999px; }
.step::after { content: ""; position: absolute; top: 50%; right: -17px; width: 22px; height: 22px; border-top: 3px solid var(--pink); border-right: 3px solid var(--pink); transform: translateY(-50%) rotate(45deg); opacity: .55; }
.step:last-child::after { display: none; }
@media (max-width: 820px) { .step::after { top: auto; bottom: -17px; right: 50%; transform: translateX(50%) rotate(135deg); } }

/* =========================================================================
   相談方法
   ========================================================================= */
.methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .methods { grid-template-columns: 1fr; } }
.method { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 32px; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.method:hover { transform: translateY(-5px); box-shadow: 0 28px 50px -34px rgba(70, 61, 52, .4); }
.method.feat { border: 2px solid #06c755; box-shadow: 0 26px 50px -32px rgba(6, 199, 85, .4); }
.method .mhead { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.method .mic { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.method .mic.line { background: #06c755; }
.method .mic.form { background: var(--pink); }
.method .mic.video { background: var(--sky); }
.method .mic.tel { background: var(--accent-soft); }
.method .mic.quiz { background: var(--sky); }
.method h4 { font-family: var(--serif); margin: 0; font-size: 19.5px; font-weight: 700; }
.method .rec { font-size: 11px; font-weight: 700; color: #06c755; letter-spacing: .06em; margin-top: 3px; display: block; }
.method p { margin: 0 0 22px; font-size: 16px; line-height: 1.9; color: var(--ink-2); flex: 1; }
.method .telnum { font-family: var(--num); font-size: 32px; font-weight: 700; line-height: 1; margin: 0 0 6px; }
.method .telhours { font-size: 12px; color: var(--ink-3); margin: 0 0 18px; line-height: 1.7; }
.method .maction { display: inline-flex; align-items: center; justify-content: center; gap: 10px; align-self: flex-start; padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: background .25s, transform .25s; }
.method .maction.line { background: #06c755; color: #fff; }
.method .maction.line:hover { background: #05b54d; transform: translateY(-2px); }
.method .maction.pink { background: var(--pink); color: #fff; }
.method .maction.pink:hover { background: var(--pink-deep); transform: translateY(-2px); }

/* =========================================================================
   CTAバンド
   ========================================================================= */
.cta-band { padding: clamp(72px, 9vw, 120px) 0; background: var(--cream-2); }
.cta-card { background: linear-gradient(135deg, #f08aab 0%, #e75685 52%, #f0786f 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(44px, 6vw, 72px) clamp(32px, 5vw, 72px); position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { font-family: var(--num); font-size: 11px; letter-spacing: .2em; font-weight: 700; color: rgba(255, 255, 255, .9); }
.cta-card h2 { font-family: var(--serif); margin: 14px 0 16px; font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; line-height: 1.45; }
.cta-card p { margin: 0; font-size: 16px; line-height: 1.95; color: rgba(255, 255, 255, .92); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn-white { display: flex; align-items: center; justify-content: space-between; background: #fff; color: var(--pink-deep); padding: 20px 26px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: background .25s, color .25s, transform .25s; }
.cta-actions .btn-white:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.cta-actions .tel { padding: 16px 22px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28); border-radius: 16px; }
.cta-actions .tel .label { font-family: var(--num); font-size: 10px; letter-spacing: .12em; opacity: .9; display: block; }
.cta-actions .tel .num { font-family: var(--num); font-size: 26px; font-weight: 700; display: block; line-height: 1.2; }
@media (max-width: 800px) { .cta-card { grid-template-columns: 1fr; gap: 32px; } }

/* =========================================================================
   提携医療機関
   ========================================================================= */
.med-partner { background: var(--cream-2); }

/* 複数クリニックの並び */
.mp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1180px; margin: 0 auto;
}

/* カード全体 */
.mp-card {
  max-width: 820px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(70,61,52,.18);
  display: flex; flex-direction: column;
}
.mp-grid .mp-card { max-width: none; }

/* クリニック名ヘッダー */
.mp-clinic {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 32px; border-bottom: 1px solid var(--line-2);
  background: #fff;
}
.mp-clinic-logo {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: #fff; color: #fff;
  display: grid; place-items: center;
  font-family: var(--num); font-size: 14px; font-weight: 700;
}
.mp-clinic-logo.txt { background: var(--sky); color: #fff; font-size: 20px; }
.mp-tag {
  display: inline-block; margin: 0 0 4px;
  font-size: 10px; letter-spacing: .16em; font-weight: 700;
  color: var(--sky); background: rgba(121,195,214,.12);
  padding: 2px 10px; border-radius: 999px;
}
.mp-name { margin: 0 0 2px; font-size: 20px; font-weight: 700; color: var(--ink); }
.mp-spec { margin: 0; font-size: 12px; color: var(--ink-3); }

/* コメントエリア */
.mp-comment {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px 32px 24px;
  flex: 1 1 auto;
}
.mp-face { flex-shrink: 0; text-align: center; width: 88px; }
.mp-face-img {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--line); margin: 0 auto 8px;
  overflow: hidden;
}
.mp-face-label { margin: 0; font-size: 11px; line-height: 1.6; color: var(--ink-3); }
.mp-face-label strong { display: block; font-size: 12.5px; color: var(--ink); }
.mp-quote {
  margin: 0; position: relative;
  padding: 20px 24px 20px 32px;
  background: var(--cream); border-radius: 16px;
  border-left: 4px solid var(--sky);
}
.mp-quote::before {
  content: "\201C";
  position: absolute; top: 8px; left: 12px;
  font-size: 40px; line-height: 1; color: var(--sky); opacity: .5;
  font-family: Georgia, serif;
}
.mp-quote p { margin: 0; font-size: 16px; line-height: 1.9; color: var(--ink-2); }

/* フッターリンク */
.mp-footer {
  padding: 16px 32px 24px;
  display: flex; justify-content: flex-end;
}
.mp-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--sky);
  border: 1.5px solid var(--sky); border-radius: 999px;
  padding: 8px 20px; transition: background .2s, color .2s;
}
.mp-link:hover { background: var(--sky); color: #fff; }

@media (max-width: 900px) {
  .mp-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .mp-clinic { padding: 18px 20px; gap: 12px; }
  .mp-name { font-size: 17px; }
  .mp-comment { flex-direction: column; align-items: center; gap: 20px; padding: 24px 20px 16px; }
  .mp-face { width: 100%; display: flex; align-items: center; gap: 14px; text-align: left; }
  .mp-face-img { margin: 0; width: 56px; height: 56px; flex-shrink: 0; }
  .mp-quote { padding: 16px 18px 16px 24px; }
  .mp-quote p { font-size: 13px; }
  .mp-footer { padding: 12px 20px 20px; }
}

/* =========================================================================
   フッター
   ========================================================================= */
.footer { background: var(--cream); padding: 80px 0 140px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer .brand { margin-bottom: 16px; }
.footer .addr { font-size: 12.5px; line-height: 1.95; color: var(--ink-3); }
.footer .addr strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 4px; font-size: 13px; }
.footer-col h5 { margin: 0 0 18px; font-family: var(--num); font-size: 11px; letter-spacing: .2em; font-weight: 700; color: var(--pink); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 11.5px; color: var(--ink-3); }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a:hover { color: var(--ink); }

/* =========================================================================
   下部固定CTA
   ========================================================================= */
.sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: 10px; padding: 12px clamp(16px, 4vw, 28px); background: rgba(253, 248, 240, .93); backdrop-filter: blur(14px) saturate(1.2); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px -16px rgba(70, 61, 52, .25); transform: translateY(120%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.sticky.show { transform: translateY(0); }
.sticky-inner { display: flex; gap: 10px; width: 100%; max-width: 720px; margin: 0 auto; }
.sticky a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 11px 14px; border-radius: 16px; font-weight: 700; font-size: 14.5px; text-align: center; transition: background .2s; line-height: 1.5; }
.sticky a small { font-size: 10px; font-weight: 700; opacity: .9; }
.sticky a.det { background: var(--pink); color: #fff; }
.sticky a.det:hover { background: var(--pink-deep); }
.sticky a.lin { background: #06c755; color: #fff; }
.sticky a.lin:hover { background: #05b54d; }
@media (min-width: 701px) {
  .sticky { left: auto; right: 22px; bottom: 22px; border: 1px solid var(--line); border-radius: 22px; padding: 10px; box-shadow: 0 24px 50px -22px rgba(70, 61, 52, .45); }
  .sticky-inner { width: auto; }
  .sticky a { min-width: 170px; border-radius: 14px; }
}

.parallax-band {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.parallax-band-img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================================
   H1 文字アニメーション（文字のみ・JS不要）
   ========================================================================= */
.about-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6.4vw, 80px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 36px;
}

.about-h1 .h1-line {
  display: block;
}

.about-h1 .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(48px) rotate(-1deg);
  animation: charFadeUp 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 58ms + 280ms);
}

.about-h1 .ch.em {
  color: var(--pink);
}

@keyframes charFadeUp {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-h1 .ch {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================================================================
   ヒーロー：テキストのみ
   ========================================================================= */
.about-hero {
  background:
    radial-gradient(72% 58% at 100% 8%,  rgba(231, 86,133,.26), transparent 52%),
    radial-gradient(60% 50% at  0% 95%, rgba(121,195,214,.26), transparent 48%),
    radial-gradient(48% 40% at 52% 54%, rgba(244,192,103,.18), transparent 60%),
    var(--cream);
}

.about-hero-inner {
  max-width: 900px;
  padding-bottom: 0;
}

.about-hero-lead {
  font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 2.05;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 36px;
}
.about-hero-lead .hl  { color: var(--pink-deep); font-weight: 700; }
.about-hero-lead strong { color: var(--ink); font-weight: 700; }

/* ---- TOC ---- */
.toc {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 32px;
  margin: 0 0 36px;
  max-width: 700px;
  box-shadow: 0 14px 32px -22px rgba(70,61,52,.18);
}
.toc-title {
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-title::before { content: "✦"; color: var(--yellow); }
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
@media (max-width: 560px) { .toc-list { grid-template-columns: 1fr; } }
.toc-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13.5px;
}
.toc-list .toc-n {
  font-family: var(--num);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
  min-width: 18px;
}
.toc-list a {
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  line-height: 1.6;
}
.toc-list a:hover { color: var(--pink); border-color: var(--pink); }

/* CTA ボタン群（ヒーロー内） */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.hero-cta-note {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
}

/* =========================================================================
   受給要件カード
   ========================================================================= */
.req-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 50px);
}
.req-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: clamp(20px, 2.8vw, 36px);
  align-items: start;
  transition: box-shadow .3s;
}
.req-card:hover { box-shadow: 0 24px 48px -30px rgba(70,61,52,.38); }
.req-card:nth-child(1) { border-top: 4px solid var(--pink); }
.req-card:nth-child(2) { border-top: 4px solid var(--sky); }
.req-card:nth-child(3) { border-top: 4px solid var(--green); }
.req-num {
  font-family: var(--num);
  font-size: clamp(44px, 5.2vw, 60px);
  font-weight: 700;
  line-height: .88;
  color: var(--pink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.req-card:nth-child(2) .req-num { color: var(--sky); }
.req-card:nth-child(3) .req-num { color: var(--green); }
.req-num span {
  font-size: 9.5px;
  letter-spacing: .16em;
  color: var(--ink-3);
  font-weight: 700;
}
.req-card h3 {
  font-family: var(--serif);
  margin: 0 0 12px;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.52;
}
.req-card p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); }
.req-card p:last-of-type { margin-bottom: 0; }
.req-point {
  background: var(--cream-2);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-top: 16px;
}
.req-point-title {
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 10px;
}
.req-point ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-2);
}
@media (max-width: 600px) {
  .req-card { grid-template-columns: 1fr; gap: 12px; }
  .req-num { flex-direction: row; align-items: baseline; gap: 10px; }
}

/* セクション末の小CTAテキスト */
.section-mini-cta {
  margin-top: clamp(32px, 4vw, 50px);
  background: #fff;
  border: 1.5px dashed var(--pink-soft);
  border-radius: var(--r);
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-mini-cta p { margin: 0; font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink-2); }

/* =========================================================================
   年金種類カード
   ========================================================================= */
.pension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: clamp(30px, 4vw, 48px);
}
@media (max-width: 760px) { .pension-grid { grid-template-columns: 1fr; } }
.pension-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: box-shadow .3s;
}
.pension-card:hover { box-shadow: 0 22px 46px -30px rgba(70,61,52,.35); }
.pension-card:nth-child(1) { border-top: 4px solid var(--sky); }
.pension-card:nth-child(2) { border-top: 4px solid var(--pink); }
.pension-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pension-card:nth-child(1) .pension-tag { background: rgba(121,195,214,.15); color: var(--sky); }
.pension-card:nth-child(2) .pension-tag { background: rgba(231,86,133,.1); color: var(--pink-deep); }
.pension-card h3 {
  font-family: var(--serif);
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
}
.pension-card > p { margin: 0 0 18px; font-size: 15px; line-height: 1.9; color: var(--ink-2); }
.pension-amounts {
  background: var(--cream-2);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.amt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.amt-row:last-child { border-bottom: none; }
.amt-row .lbl { color: var(--ink-2); font-weight: 700; }
.amt-row .val { font-family: var(--num); font-size: 18px; font-weight: 700; color: var(--pink-deep); }
.pension-card .note { font-size: 11.5px; color: var(--ink-3); line-height: 1.8; margin: 0; }

/* 遡及請求ボックス */
.retroactive-box {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(231,86,133,.07), rgba(244,192,103,.12));
  border: 1.5px solid var(--pink-soft);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.5vw, 44px);
}
.retroactive-box h3 {
  font-family: var(--serif);
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}
.retroactive-box h3 .em { color: var(--pink); }
.retroactive-box p { margin: 0 0 10px; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); }
.retroactive-box p strong { color: var(--pink-deep); font-weight: 700; }
.retroactive-box p:last-child { margin-bottom: 0; }

/* =========================================================================
   等級カード
   ========================================================================= */
.grade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
@media (max-width: 820px) {
  .grade-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
.grade-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .3s, box-shadow .3s;
}
.grade-card:hover { transform: translateY(-5px); box-shadow: 0 26px 48px -32px rgba(70,61,52,.38); }
.grade-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--num);
  font-size: 19px;
  font-weight: 700;
}
.grade-card:nth-child(1) .grade-badge { background: var(--pink); color: #fff; }
.grade-card:nth-child(2) .grade-badge { background: var(--sky); color: #fff; }
.grade-card:nth-child(3) .grade-badge { background: var(--green); color: #fff; }
.grade-badge small { font-size: 10px; letter-spacing: .1em; opacity: .88; }
.grade-card h4 {
  font-family: var(--serif);
  margin: 0 0 10px;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.55;
}
.grade-card > p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.88; color: var(--ink-2); }
.grade-mental {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-2);
  border-left: 3px solid var(--pink-soft);
}
.grade-card:nth-child(1) .grade-mental { border-left-color: var(--pink-soft); }
.grade-card:nth-child(2) .grade-mental { border-left-color: rgba(121,195,214,.55); }
.grade-card:nth-child(3) .grade-mental { border-left-color: rgba(139,194,141,.55); }
.grade-only {
  display: inline-block;
  font-size: 11px;
  color: var(--ink-3);
  background: var(--cream-3);
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 700;
}
.grade-notice {
  margin-top: clamp(26px, 3.5vw, 44px);
  background: #fff;
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--r);
  padding: 22px 28px;
}
.grade-notice h5 {
  font-family: var(--serif);
  margin: 0 0 12px;
  font-size: 14.5px;
  font-weight: 700;
}
.grade-notice ul { margin: 0; padding: 0 0 0 18px; font-size: 14.5px; line-height: 2.1; color: var(--ink-2); }

/* =========================================================================
   申請が複雑な3ポイント
   ========================================================================= */
.complex-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: clamp(30px, 4vw, 50px);
}
.complex-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
}
.complex-n {
  font-family: var(--num);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  line-height: .88;
  color: var(--cream-3);
  text-shadow: 0 2px 0 rgba(70,61,52,.05);
}
.complex-card h4 {
  font-family: var(--serif);
  margin: 0 0 12px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}
.complex-card p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); }
.complex-card p:last-of-type { margin-bottom: 0; }
.complex-mistake {
  background: rgba(231,86,133,.05);
  border: 1px dashed rgba(231,86,133,.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
.complex-mistake strong { color: var(--pink-deep); font-weight: 700; }
@media (max-width: 560px) {
  .complex-card { grid-template-columns: 1fr; gap: 10px; }
  .complex-n { font-size: 32px; }
}

/* =========================================================================
   6ステップ（縦並び・詳細版）
   ========================================================================= */
.steps-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.steps-detail::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 39px;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink), var(--sky), var(--green), var(--yellow), var(--coral), var(--pink-deep));
  opacity: .22;
  pointer-events: none;
}
@media (max-width: 520px) {
  .steps-detail::before { left: 29px; }
}
.step-d {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 38px);
  transition: box-shadow .3s;
  position: relative;
}
.step-d:hover { box-shadow: 0 22px 44px -30px rgba(70,61,52,.38); }
.step-d-sn { display: flex; flex-direction: column; align-items: center; }
.step-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--num);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  color: #fff;
}
.step-dot .sd-lbl { font-size: 8px; letter-spacing: .12em; opacity: .9; }
.step-dot .sd-n   { font-size: 24px; }
.step-d:nth-child(1) .step-dot { background: var(--pink); }
.step-d:nth-child(2) .step-dot { background: var(--sky); }
.step-d:nth-child(3) .step-dot { background: var(--green); }
.step-d:nth-child(4) .step-dot { background: var(--yellow); color: var(--ink); }
.step-d:nth-child(5) .step-dot { background: var(--coral); }
.step-d:nth-child(6) .step-dot { background: var(--pink-deep); }
.step-d h4 {
  font-family: var(--serif);
  margin: 6px 0 12px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.5;
}
.step-d p { margin: 0 0 12px; font-size: 15px; line-height: 1.92; color: var(--ink-2); }
.step-d p:last-of-type { margin-bottom: 0; }
.step-d ul {
  margin: 0 0 14px;
  padding: 0 0 0 18px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-2);
}
.step-d-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.step-meta-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink-3);
}
.step-meta-tag.free { background: #e6f1e6; border-color: var(--green); color: var(--green-deep); }
.step-meta-tag.success { background: rgba(231,86,133,.08); border-color: var(--pink-soft); color: var(--pink-deep); }
@media (max-width: 520px) {
  .step-d { grid-template-columns: 58px 1fr; gap: 16px; }
  .step-dot { width: 48px; height: 48px; }
  .step-dot .sd-n { font-size: 20px; }
}
.steps-summary {
  background: linear-gradient(135deg, rgba(231,86,133,.07), rgba(121,195,214,.1));
  border: 1.5px solid var(--pink-soft);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.5vw, 44px);
  margin-top: 8px;
}
.steps-summary h4 { font-family: var(--serif); margin: 0 0 14px; font-size: clamp(17px, 2vw, 21px); font-weight: 700; }
.steps-summary p { margin: 0 0 10px; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); }
.steps-summary p:last-child { margin-bottom: 0; }

/* =========================================================================
   よくあるミステーブル
   ========================================================================= */
.mistake-table-wrap {
  margin-top: clamp(28px, 3.5vw, 44px);
  overflow-x: auto;
  border-radius: var(--r);
  box-shadow: 0 14px 32px -22px rgba(70,61,52,.2);
}
.mistake-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: #fff;
  font-size: 15px;
}
.mistake-table thead th {
  background: var(--cream-2);
  color: var(--ink-3);
  font-family: var(--num);
  font-size: 10.5px;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 13px 20px;
  text-align: left;
  border-bottom: 2px solid var(--line);
}
.mistake-table tbody tr {
  border-bottom: 1px solid var(--line-2);
  transition: background .2s;
}
.mistake-table tbody tr:last-child { border-bottom: none; }
.mistake-table tbody tr:hover { background: var(--cream); }
.mistake-table td { padding: 14px 20px; vertical-align: top; line-height: 1.82; }
.td-mistake { font-weight: 700; color: var(--ink); font-family: var(--serif); min-width: 200px; }
.td-effect  { color: var(--ink-2); }
.warn-ico {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.warn-ico::before {
  content: "!";
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.mistake-summary {
  margin-top: 26px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 22px 28px;
}
.mistake-summary p { margin: 0 0 10px; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); }
.mistake-summary p:last-child { margin-bottom: 0; }

/* =========================================================================
   中間CTA
   ========================================================================= */
.mid-cta-box {
  background: linear-gradient(135deg, rgba(231,86,133,.06), rgba(244,192,103,.1));
  border: 2px solid var(--pink-soft);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 62px);
  text-align: center;
}
.mid-cta-box h3 {
  font-family: var(--serif);
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.5;
}
.mid-cta-box p { margin: 0 0 10px; font-size: 15.5px; line-height: 1.9; color: var(--ink-2); }
.mid-cta-box .last-p { margin-bottom: 28px; }
.mid-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.mid-cta-note { font-size: 12.5px; color: var(--ink-3); margin: 0; }

/* =========================================================================
   FAQ アコーディオン
   ========================================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
}
details.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
details.faq-item[open] {
  box-shadow: 0 20px 44px -28px rgba(70,61,52,.35);
  border-color: var(--pink-soft);
}
details.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 700;
  line-height: 1.55;
  list-style: none;
  transition: background .2s;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { background: var(--cream); }
details.faq-item[open] summary { background: var(--cream); border-bottom: 1px solid var(--line-2); }
.faq-q-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--num);
  font-size: 13px;
  font-weight: 700;
}
details.faq-item[open] .faq-q-icon { background: var(--pink-deep); }
.faq-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: transform .3s;
  color: var(--ink-3);
}
details.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  background: var(--pink-soft);
  color: var(--pink-deep);
}
.faq-answer {
  padding: 20px 24px 24px;
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--pink-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(231,86,133,.3);
  transition: border-color .2s;
}
.faq-answer a:hover { border-color: var(--pink-deep); }

/* =========================================================================
   ページ末 関連ページリンク
   ========================================================================= */
.related-section {
  padding-top: clamp(54px, 7vw, 80px);
}
.related-section h4 {
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 18px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  gap: 12px;
  transition: border-color .25s, transform .25s, box-shadow .25s, color .25s;
}
.related-link:hover {
  border-color: var(--pink-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -22px rgba(70,61,52,.3);
  color: var(--pink-deep);
}
.related-link .rel-ar {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-deep);
  display: grid;
  place-items: center;
  font-size: 11px;
}

/* =========================================================================
   傷病リスト（セクション2内）
   ========================================================================= */
.condition-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}
@media (max-width: 540px) { .condition-list { grid-template-columns: 1fr; } }
.cond-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}
.cond-item .ci-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 7px;
}
.cond-item:nth-child(3n+2) .ci-dot { background: var(--sky); }
.cond-item:nth-child(3n+3) .ci-dot { background: var(--green); }

    /* ===== FAQ 一覧ページ 専用スタイル ===== */

    /* ---- ヒーロー ---- */
    .faq-hero {
      background: var(--bg);
    }
    .faq-hero .crumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-family: var(--num); letter-spacing: .1em;
      color: var(--ink-3); margin-bottom: 28px;
    }
    .faq-hero .crumb a { color: var(--ink-3); }
    .faq-hero .crumb a:hover { color: var(--accent); }
    .faq-hero .crumb .sep { margin: 0 2px; }
    .faq-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--num); font-size: 11px; letter-spacing: .28em;
      font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 20px;
    }
    .faq-hero-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }

    /* ---- コンテンツエリア ---- */
    .faq-section {
      padding: 0 0 clamp(80px,10vw,140px);
      background: var(--bg);
    }

    /* ---- フィルターバー ---- */
    .faq-filter-wrap {
      padding: clamp(32px,4vw,48px) 0 clamp(36px,5vw,56px);
      border-bottom: 1px solid var(--line-2);
      margin-bottom: clamp(36px,5vw,56px);
    }
    .faq-filter-label {
      font-family: var(--num); font-size: 10.5px; letter-spacing: .2em;
      font-weight: 700; color: var(--ink-3); margin-bottom: 14px;
    }
    /* syougai_styles-article.css の .filter-bar が持つ下パディングをリセット */
    .faq-filter-wrap .filter-bar { padding-bottom: 0; background: transparent; }

    /* ---- FAQ カードリスト ---- */
    .faq-card-list {
      display: flex; flex-direction: column; gap: 10px;
    }
    .faq-card {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      background: #fff;
      border: 1px solid var(--line-2);
      text-decoration: none;
      color: inherit;
      transition: all .3s ease;
      position: relative;
    }

    .faq-card:hover {
      z-index: 1; border-color: var(--accent);
      box-shadow: 0 8px 40px -16px rgba(38,164,192,.28);
      transform: translateY(-1px);
    }
    .faq-card.hide { display: none; }

    .faq-card-icon-col {
      display: flex; align-items: center; justify-content: center;
      padding: 0;
      background: var(--accent-soft);
      border-right: 1px solid var(--line-2);
    }
    .faq-q-badge {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--accent); color: #fff;
      display: grid; place-items: center;
      font-family: var(--num); font-size: 15px; font-weight: 700;
      flex-shrink: 0;
    }

    .faq-card-body {
      padding: 30px 32px 28px;
      display: flex; flex-direction: column;
    }
    .faq-card-meta {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px; flex-wrap: wrap;
    }
    .faq-card-date {
      font-family: var(--num); font-size: 12.5px; letter-spacing: .08em;
      color: var(--ink-3); font-weight: 600;
    }
    .faq-card-q {
      font-size: clamp(18px,1.9vw,21px); font-weight: 700;
      color: var(--ink); line-height: 1.6; margin: 0 0 12px;
      letter-spacing: .01em; font-family: var(--serif);
    }
    .faq-card-excerpt {
      font-size: 15px; line-height: 1.9; color: var(--ink-3); margin: 0;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }

    .faq-card-arrow-col {
      display: flex; align-items: center; justify-content: center;
      padding: 0 28px;
      color: var(--ink-3);
      transition: color .25s;
    }
    .faq-card:hover .faq-card-arrow-col { color: var(--accent); }
    .faq-arrow-icon {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-family: var(--num); font-size: 10.5px; font-weight: 700;
      letter-spacing: .14em;
    }
    .faq-arrow-icon::after {
      content: "→"; font-size: 18px; transition: transform .3s;
    }
    .faq-card:hover .faq-arrow-icon::after { transform: translateX(4px); }

    @media (max-width: 680px) {
      .faq-card { grid-template-columns: 56px 1fr; }
      .faq-card-arrow-col { display: none; }
      .faq-card-icon-col { padding: 28px 0 0; }
      .faq-q-badge { width: 30px; height: 30px; font-size: 12px; }
      .faq-card-body { padding: 22px 20px 20px; }
    }

    /* ---- ページネーション（styles-article.css の .pagination を使用） ---- */

    /* ---- 検索・相談誘導 ---- */
    .faq-consult-box {
      margin-top: clamp(56px,7vw,80px);
      background: var(--bg-soft); border: 1px solid var(--line-2);
      border-radius: var(--r-xl); padding: clamp(36px,5vw,56px) clamp(28px,4vw,48px);
      display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
    }
    .faq-consult-box h3 { margin: 0 0 12px; font-size: clamp(19px,2.2vw,26px); font-weight: 700; line-height: 1.5; }
    .faq-consult-box p { margin: 0; font-size: 14px; line-height: 1.9; color: var(--ink-2); }
    .faq-consult-btns { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }
    @media (max-width: 760px) {
      .faq-consult-box { grid-template-columns: 1fr; }
      .faq-consult-btns { flex-direction: row; flex-wrap: wrap; }
    }

    /* ---- 新着バッジ ---- */
    .badge-new {
      display: inline-flex; align-items: center;
      background: var(--accent); color: #fff;
      font-family: var(--num); font-size: 9px; letter-spacing: .16em;
      font-weight: 700; padding: 3px 8px; border-radius: 999px;
    }
    .badge-update {
      display: inline-flex; align-items: center;
      background: #f0f9fb; color: var(--accent-deep); border: 1px solid var(--accent-soft);
      font-family: var(--num); font-size: 10.5px; letter-spacing: .14em;
      font-weight: 700; padding: 4px 10px; border-radius: 999px;
    }

/* =========================================================================
   FAQ 詳細ページ (faq-detail) 専用スタイル
   ========================================================================= */

/* ---- 読書進捗バー ---- */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); width: 0; z-index: 200; transition: width .1s linear; }

/* ---- ページヘッダー ---- */
.faq-detail-head {
  padding: 130px 0 0;
  background: var(--bg);
  font-family: var(--serif);
}
.faq-detail-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-family: var(--num); letter-spacing: .1em;
  color: var(--ink-3); margin-bottom: 32px; flex-wrap: wrap;
}
.faq-detail-crumb a { color: var(--ink-3); transition: color .2s; }
.faq-detail-crumb a:hover { color: var(--accent); }
.faq-detail-crumb .sep { margin: 0 2px; }

/* Q バッジ＋質問 */
.faq-q-lead {
  display: flex; gap: 20px; align-items: center;
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 28px 32px; margin-bottom: 28px;
}
.faq-q-lead-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--num); font-size: 17px; font-weight: 700;
}
.faq-q-lead-text {
  font-size: clamp(18px,2.2vw,24px); font-weight: 700;
  color: var(--ink); line-height: 1.55; letter-spacing: .01em;
  padding-top: 8px;
}

/* FAQページ：回答ブロック（A＝h2〜h4を含む長文の場合がある） */
.faq-a-block {
  border-left: 4px solid #4caf8a;
  background: #FDF8F0;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 28px 32px; margin-bottom: 32px;
}
.faq-a-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.faq-a-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: #4caf8a; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--num); font-size: 17px; font-weight: 700;
}
.faq-a-label {
  font-family: var(--num); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; color: var(--ink-3);
}
.faq-a-text { max-width: none; }
.faq-a-text > *:first-child { margin-top: 0; }
/* faq-a-block は既に背景色(--bg-soft)付きのカードなので、
   本文用の見出し余白/罫線・背景色（--line-2 / --bg-gray）は
   ほぼ同系色で埋もれてしまう。カード内向けに余白を詰め、白背景で視認性を確保する。 */
.faq-a-text h2, .faq-a-text h3, .faq-a-text h4 { scroll-margin-top: 100px; }
.faq-a-text h2 { margin-top: 32px; padding-bottom: 12px; border-bottom-color: #fff; }
.faq-a-text h3 { margin-top: 26px; padding: 4px 0 4px 16px; }
.faq-a-text h4 { margin-top: 22px; background: #fff; }
/* タグ・日付 */
.faq-detail-meta {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.faq-detail-date {
  font-family: var(--num); font-size: 12px; font-weight: 600;
  color: var(--ink-3); letter-spacing: .06em;
}
.faq-detail-date span { color: var(--ink-2); margin-left: 4px; }

/* 記事タイトル（h1） */
.faq-detail-title {
  font-size: clamp(26px,3.4vw,42px); font-weight: 700; line-height: 1.45;
  letter-spacing: .02em; margin: 0 0 24px; color: var(--ink); text-wrap: pretty;
}

/* byline */
.faq-detail-byline {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 0; border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2); flex-wrap: wrap; margin-bottom: 0;
}
.faq-detail-author {
  display: flex; align-items: center; gap: 14px;
}
.faq-detail-author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); display: grid; place-items: center;
  color: var(--accent); font-size: 18px; flex-shrink: 0;
}
.faq-detail-author .who .name { font-size: 13.5px; font-weight: 700; }
.faq-detail-author .who .role { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

/* シェアボタン */
.article-share { display: flex; align-items: center; gap: 8px; }
.article-share .s-label { font-family: var(--num); font-size: 10.5px; letter-spacing: .2em; font-weight: 700; color: var(--ink-3); margin-right: 4px; }
.share-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2); transition: all .25s; font-size: 14px;
}
.share-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* ---- コンテンツエリア ---- */
.faq-detail-wrap {
  padding: 0 0 clamp(80px,10vw,130px);
  background: var(--bg);
}
.faq-detail-layout {
}
.faq-detail-layout--col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 940px) { .faq-detail-layout--col { grid-template-columns: 1fr; } }

/* ---- サイドバー ---- */
.faq-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 940px) { .faq-side { position: static; order: -1; } }

/* ---- 関連FAQ（サイドバー内） ---- */
.side-related {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 24px 22px;
}
.side-related h4 {
  margin: 0 0 16px; font-family: var(--num); font-size: 10.5px;
  letter-spacing: .22em; font-weight: 700; color: var(--accent);
}
.side-faq-links { display: flex; flex-direction: column; gap: 0; }
.side-faq-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--line-2);
  font-size: 12.5px; line-height: 1.6; color: var(--ink-2);
  text-decoration: none; transition: color .2s;
}
.side-faq-link:last-child { border-bottom: 0; padding-bottom: 0; }
.side-faq-link:hover { color: var(--accent); }
.side-faq-link .sfq-q {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--num); font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ---- 前後ナビ ---- */
.faq-pager {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line-2);
  max-width: 720px;
}
.faq-pager a {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 22px; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); text-decoration: none; transition: all .25s;
  color: var(--ink-2);
}
.faq-pager a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 24px -10px rgba(38,164,192,.2); }
.faq-pager .pager-dir {
  font-family: var(--num); font-size: 10px; letter-spacing: .2em;
  font-weight: 700; color: var(--ink-3);
}
.faq-pager .pager-q { font-size: 13px; font-weight: 700; line-height: 1.5; color: inherit; }
.faq-pager .pager-next { text-align: right; }

/* ---- ページ内アンカーハイライト ---- */
.article-body h2 { scroll-margin-top: 100px; }
.article-body h3 { scroll-margin-top: 100px; }

/* ---- 一覧へ戻るリンク ---- */
.back-to-list {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--num); font-size: 12px; letter-spacing: .12em;
  font-weight: 700; color: var(--ink-3); text-decoration: none; margin-bottom: 32px;
  transition: color .2s;
}
.back-to-list:hover { color: var(--accent); }
.back-to-list::before { content: "←"; }


/* =========================================================================
   プロフィールページ (profile) 専用スタイル
   ========================================================================= */

/* ---- ヒーロー変種 ---- */
.profile-hero {
  background:
    radial-gradient(72% 58% at 100% 8%,  rgba(121,195,214,.28), transparent 52%),
    radial-gradient(60% 50% at  0% 95%, rgba(231, 86,133,.22), transparent 48%),
    radial-gradient(48% 40% at 52% 54%, rgba(244,192,103,.18), transparent 60%),
    var(--cream);
}

/* =========================================================================
   セクション2：代表メッセージ
   ========================================================================= */
.profile-message-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(28px, 3.5vw, 44px);
}
@media (max-width: 860px) {
  .profile-message-layout { grid-template-columns: 1fr; }
}

/* 写真カラム */
.profile-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 860px) {
  .profile-photo-col { flex-direction: row; align-items: flex-start; gap: 20px; }
}
@media (max-width: 560px) {
  .profile-photo-col { flex-direction: column; align-items: center; }
}

.profile-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(70,61,52,.38);
  background: var(--cream-2);
}
@media (max-width: 860px) {
  .profile-photo-frame { width: 160px; aspect-ratio: 3/4; flex-shrink: 0; }
}
@media (max-width: 560px) {
  .profile-photo-frame { width: 180px; }
}

.profile-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.profile-name-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 20px;
  width: 100%;
  box-shadow: 0 10px 24px -16px rgba(70,61,52,.2);
}
@media (max-width: 860px) {
  .profile-name-card { text-align: left; width: auto; flex: 1; }
}

.profile-name-ja {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .08em;
}
.profile-name-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: .06em;
}
.profile-name-org {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* 本文カラム */
.profile-message-body {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 16px 36px -24px rgba(70,61,52,.18);
}
.profile-message-body p {
  font-family: var(--serif);
  font-size: clamp(15.5px, 1.7vw, 17px);
  line-height: 2.1;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.profile-message-body p:last-of-type { margin-bottom: 0; }

.profile-sign {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--ink-3);
}
.profile-sign .sign-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .06em;
}

/* =========================================================================
   セクション3：3つの原則
   ========================================================================= */
.principle-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.principle-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(18px, 2.5vw, 32px);
  align-items: start;
  transition: box-shadow .3s, transform .3s;
}
.principle-card:hover {
  box-shadow: 0 24px 48px -30px rgba(70,61,52,.35);
  transform: translateY(-3px);
}
.principle-card:nth-child(1) { border-left: 4px solid var(--pink); }
.principle-card:nth-child(2) { border-left: 4px solid var(--sky); }
.principle-card:nth-child(3) { border-left: 4px solid var(--green); }

@media (max-width: 560px) {
  .principle-card { grid-template-columns: 1fr; gap: 10px; }
}

.principle-num {
  font-family: var(--num);
  font-size: clamp(44px, 5.2vw, 58px);
  font-weight: 700;
  line-height: .88;
  color: var(--cream-3);
  text-shadow: 0 2px 0 rgba(70,61,52,.06);
}
.principle-card:nth-child(1) .principle-num { color: rgba(231,86,133,.18); }
.principle-card:nth-child(2) .principle-num { color: rgba(121,195,214,.25); }
.principle-card:nth-child(3) .principle-num { color: rgba(139,194,141,.25); }

.principle-body h3 {
  font-family: var(--serif);
  margin: 6px 0 14px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.52;
}
.principle-body p {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
.principle-body p:last-child { margin-bottom: 0; }

/* =========================================================================
   セクション4：代表経歴
   ========================================================================= */
.career-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.career-profile-head {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.career-name-block h3 {
  font-family: var(--serif);
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.4;
}
.career-name-block h3 span {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-3);
  margin-left: 8px;
  letter-spacing: .04em;
}
.career-name-block p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.8;
}

.career-affiliation {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.8;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}
.career-affil-label {
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--ink-3);
}

/* タイムライン */
.career-timeline {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 40px);
  position: relative;
}

.career-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.career-item:last-child { border-bottom: none; padding-bottom: 0; }
.career-item:first-child { padding-top: 0; }

.career-year {
  font-family: var(--num);
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.6;
  flex-shrink: 0;
}
.career-item--current .career-year {
  color: var(--ink);
  position: relative;
}
.career-item--current .career-year::after {
  content: "現在";
  display: block;
  font-size: 9px;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-top: 2px;
}

.career-detail {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
  padding-top: 2px;
}

@media (max-width: 480px) {
  .career-item { grid-template-columns: 56px 1fr; gap: 12px; }
  .career-year { font-size: 15px; }
}

/* 実績ハイライト */
.career-highlight {
  background: linear-gradient(135deg, rgba(231,86,133,.07), rgba(244,192,103,.12));
  border: 2px solid var(--pink-soft);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
@media (max-width: 640px) {
  .career-highlight { grid-template-columns: 1fr; gap: 16px; }
}

.career-hl-num {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.career-hl-num b {
  font-family: var(--num);
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  display: block;
}
.career-hl-num b span { font-size: .55em; }
.career-hl-num span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 180px;
  text-align: center;
}

.career-highlight > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-2);
}

/* =========================================================================
   セクション5：著書・メディア・講演
   ========================================================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
@media (max-width: 900px) {
  .media-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
}

.media-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .3s, transform .3s;
}
.media-card:hover {
  box-shadow: 0 22px 46px -30px rgba(70,61,52,.32);
  transform: translateY(-4px);
}

.media-card-head { display: flex; align-items: center; }

.media-tag {
  display: inline-block;
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-3);
  border: 1px solid var(--line);
}
.media-card:nth-child(1) .media-tag { background: rgba(231,86,133,.1); color: var(--pink-deep); border-color: var(--pink-soft); }
.media-card:nth-child(2) .media-tag { background: rgba(121,195,214,.12); color: var(--sky); border-color: rgba(121,195,214,.3); }
.media-card:nth-child(3) .media-tag { background: rgba(139,194,141,.12); color: var(--green-deep); border-color: rgba(139,194,141,.3); }

.media-book-title {
  font-family: var(--serif);
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  line-height: 1.65;
  color: var(--ink);
}
.media-book-author {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
}

.media-book-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--cream-2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}
.media-award {
  font-family: var(--num);
  font-size: 11px;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(244,192,103,.15);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244,192,103,.4);
  align-self: flex-start;
}

.media-book-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
  flex: 1;
}

.media-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.7;
}

.media-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: var(--r);
  padding: 32px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  border: 2px dashed var(--line);
  min-height: 120px;
}

.media-lecture-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.media-lecture-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-2);
  padding: 10px 14px;
  background: var(--cream-2);
  border-radius: 10px;
}
.media-lecture-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px;
}

/* =========================================================================
   セクション6：事務所概要・アクセス
   ========================================================================= */
.office-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(28px, 3.5vw, 44px);
}
@media (max-width: 820px) {
  .office-layout { grid-template-columns: 1fr; }
}

.office-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 15px;
  box-shadow: 0 12px 30px -20px rgba(70,61,52,.18);
}
.office-table tbody tr {
  border-bottom: 1px solid var(--line-2);
  transition: background .2s;
}
.office-table tbody tr:last-child { border-bottom: none; }
.office-table tbody tr:hover { background: var(--cream); }
.office-table th {
  padding: 14px 18px;
  background: var(--cream-2);
  font-family: var(--num);
  font-size: 10.5px;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--ink-3);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  border-right: 1px solid var(--line-2);
  width: 100px;
}
.office-table td {
  padding: 14px 18px;
  color: var(--ink-2);
  line-height: 1.85;
  vertical-align: top;
}

.office-sub {
  font-size: 12px;
  color: var(--ink-3);
}
.office-tel-free {
  font-family: var(--num);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.office-tel-label {
  font-size: 12px;
  color: var(--ink-3);
  margin-left: 4px;
}

.office-online-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(121,195,214,.1);
  border: 1.5px solid rgba(121,195,214,.35);
  border-radius: var(--r);
  padding: 16px 20px;
}
.office-online-badge {
  display: inline-block;
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 700;
  background: var(--sky);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 2px;
}
.office-online-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}
.office-online-note p strong { color: var(--ink); font-weight: 700; }

/* 地図ブロック */
.office-map-block {
  position: sticky;
  top: 100px;
}
@media (max-width: 820px) {
  .office-map-block { position: static; }
}

.office-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-2);
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 700;
}
.office-map-placeholder small {
  font-size: 12px;
  font-weight: 400;
}

/* =========================================================================
   セクション7：支援者・連携機関の方へ
   ========================================================================= */
.supporter-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4.5vw, 56px);
  max-width: 860px;
  margin: clamp(28px, 3.5vw, 44px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 50px -32px rgba(70,61,52,.22);
}

.supporter-lead {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--ink-2);
}

.supporter-catch {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}
.supporter-catch strong { color: var(--pink-deep); }

.supporter-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--cream-2);
  border-radius: var(--r);
  padding: 20px 24px;
}
.supporter-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
}
.supporter-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.supporter-note {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
}

.supporter-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 26px;
  background: var(--sky);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 14px 30px -12px rgba(121,195,214,.7);
}
.supporter-cta:hover {
  background: #5aadcc;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(121,195,214,.8);
}
.supporter-cta .ar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  display: grid;
  place-items: center;
  font-size: 12px;
}


/* =========================================================================
   料金案内ページ (price) 専用スタイル
   ========================================================================= */

/* ---- ヒーロー変種 ---- */
.price-hero {
  background:
    radial-gradient(72% 58% at 100% 8%,  rgba(244,192,103,.28), transparent 52%),
    radial-gradient(60% 50% at  0% 95%, rgba(139,194,141,.24), transparent 48%),
    radial-gradient(48% 40% at 52% 54%, rgba(231,86,133,.14), transparent 60%),
    var(--cream);
}

/* =========================================================================
   セクション2：費用フロー図
   ========================================================================= */
.price-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 680px;
  margin: clamp(28px, 3.5vw, 44px) auto 0;
}

.price-flow-item {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 18px 24px;
  transition: box-shadow .3s;
}
.price-flow-item:hover { box-shadow: 0 14px 32px -20px rgba(70,61,52,.25); }
.price-flow-item.free { border-left: 4px solid var(--green); }
.price-flow-item.paid { border-left: 4px solid var(--pink); background: rgba(231,86,133,.04); }

.price-flow-step {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.price-flow-label {
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--ink-3);
}
.price-flow-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.price-flow-cost {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.cost-free {
  font-family: var(--num);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-deep);
  background: #e6f1e6;
  padding: 4px 14px;
  border-radius: 999px;
}
.cost-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: .06em;
}
.cost-paid {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-deep);
  text-align: right;
  line-height: 1.6;
}

.price-flow-arrow {
  font-size: 22px;
  color: var(--line);
  line-height: 1;
  padding: 4px 0;
  text-align: center;
}

.price-flow-branch {
  width: 100%;
  margin-top: 12px;
  padding: 14px 24px;
  background: var(--cream-2);
  border: 1px dashed var(--line);
  border-radius: var(--r);
  display: flex;
  justify-content: flex-end;
}
.price-flow-branch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.branch-arrow { font-size: 20px; color: var(--line); }
.branch-label { color: var(--ink-2); }
.branch-val { font-weight: 700; }

@media (max-width: 560px) {
  .price-flow-item { grid-template-columns: 1fr; gap: 10px; }
  .price-flow-cost { align-items: flex-start; }
  .cost-paid { text-align: left; }
  .price-flow-branch-item { flex-wrap: wrap; gap: 6px; }
}

/* 補足注記 */
.price-notes {
  max-width: 680px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-note-item {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.8;
  margin: 0;
}
.price-note-icon {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--ink-3);
  margin-top: 1px;
}

/* =========================================================================
   セクション3：料金カード
   ========================================================================= */
.fee-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.fee-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px -18px rgba(70,61,52,.18);
  transition: box-shadow .3s;
}
.fee-card:hover { box-shadow: 0 22px 46px -28px rgba(70,61,52,.3); }

.fee-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.5vw, 26px) clamp(22px, 3vw, 36px);
  background: #fff;
  border-bottom: 1px solid var(--line-2);
}
.fee-num {
  font-family: var(--num);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.fee-card:nth-child(2) .fee-num { color: var(--sky); }
.fee-card:nth-child(3) .fee-num { color: var(--coral); }
.fee-card:nth-child(4) .fee-num { color: var(--green-deep); }
.fee-card:nth-child(5) .fee-num { color: var(--yellow); }

.fee-card-head h3 {
  font-family: var(--serif);
  margin: 0 0 3px;
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 700;
  line-height: 1.4;
}
.fee-subtitle {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 700;
  letter-spacing: .04em;
}

.fee-body {
  padding: clamp(18px, 2.5vw, 28px) clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fee-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-2);
}
.fee-row:last-child { border-bottom: none; }
.fee-row-note { padding-top: 4px; padding-bottom: 0; border-bottom: none; }

.fee-label {
  font-family: var(--num);
  font-size: 10.5px;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--ink-3);
  padding-top: 3px;
}
.fee-val {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}
.fee-val.zero {
  font-family: var(--num);
  font-size: 26px;
  font-weight: 700;
  color: var(--green-deep);
}
.fee-val.warn {
  font-family: var(--num);
  font-size: 20px;
  font-weight: 700;
  color: var(--warn);
}
.fee-sub-note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
}

.fee-val-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fee-val-group > p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 700;
  letter-spacing: .02em;
  padding-top: 3px;
}
.fee-detail-list {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
}

@media (max-width: 560px) {
  .fee-row { grid-template-columns: 1fr; gap: 6px; }
  .fee-label { padding-top: 0; }
}

/* 注記 */
.fee-annotation {
  padding: 0 clamp(22px, 3vw, 36px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fee-annotation p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.7;
}
.fee-annotation-single {
  margin: 0;
  padding: 0 clamp(22px, 3vw, 36px) clamp(16px, 2vw, 24px);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* インフォボックス */
.fee-infobox {
  margin: 0 clamp(22px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  background: var(--bg);
  border-radius: var(--r);
  padding: 18px 22px;
  border-left: 3px solid var(--sky);
}
.fee-card:nth-child(4) .fee-infobox { border-left-color: var(--green); }
.fee-infobox h5 {
  font-family: var(--serif);
  margin: 0 0 10px;
  font-size: 14.5px;
  font-weight: 700;
}
.fee-infobox p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.88;
  color: var(--ink-2);
}
.fee-infobox p:last-child { margin-bottom: 0; }
.fee-infobox strong { color: var(--pink-deep); font-weight: 700; }
.fee-infobox ul {
  margin: 0 0 10px;
  padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* 計算例 */
.fee-example {
  margin: 0 clamp(22px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  background: linear-gradient(135deg, rgba(231,86,133,.06), rgba(244,192,103,.1));
  border: 1.5px solid var(--pink-soft);
  border-radius: var(--r);
  padding: clamp(18px, 2.5vw, 28px);
}
.fee-example-title {
  font-family: var(--num);
  font-size: 10.5px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fee-example-title::before { content: "✦"; color: var(--yellow); }

.fee-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .fee-example-grid { grid-template-columns: 1fr; }
}

.fee-example-case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-label {
  display: inline-block;
  font-family: var(--num);
  font-size: 9.5px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--pink-deep);
  background: var(--pink-soft);
  padding: 2px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.fee-example-case h5 {
  font-family: var(--serif);
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
}
.case-dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 13.5px;
  line-height: 1.75;
}
.case-dl dt {
  font-weight: 700;
  color: var(--ink-3);
  white-space: nowrap;
}
.case-dl dd {
  margin: 0;
  color: var(--ink-2);
}
.case-dl dd strong {
  color: var(--pink-deep);
  font-weight: 700;
}
.case-dl-em {
  color: var(--green-deep) !important;
  font-weight: 700 !important;
}

.fee-example-note {
  margin: 0;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.7;
}

/* 実費ボックス */
.fee-expense-box {
  margin-top: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 36px);
}
.fee-expense-box h4 {
  font-family: var(--serif);
  margin: 0 0 12px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
}
.fee-expense-box > p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.88;
  color: var(--ink-2);
}
.expense-list {
  margin: 0 0 14px;
  padding: 0 0 0 20px;
  font-size: 15px;
  line-height: 2;
  color: var(--ink-2);
}
.expense-note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
}

/* =========================================================================
   セクション4：サポート内容グリッド
   ========================================================================= */
.support-include-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
@media (max-width: 640px) {
  .support-include-grid { grid-template-columns: 1fr; }
}

.support-include-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 700;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.support-include-item:hover {
  border-color: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(70,61,52,.22);
}

.si-num {
  font-family: var(--num);
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.media-logo{width:140px; border:solid 1px #eee;}
.media-book-cover{width:100px;}

/* ============================================================
   styles-article.css — Voice list + Column article templates
   Depends on styles.css (tokens / buttons / fade / ph)
   ============================================================ */

/* ---------- Nav (vanilla, hamburger) ---------- */
.ph-head-sub { margin: 24px 0 0; max-width: 640px; font-size: 16px; line-height: 2; color: var(--ink-2); }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0 0 clamp(40px, 5vw, 64px);
  background: var(--bg);
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: all .25s;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-chip .cnt { font-family: var(--num); font-size: 12px; opacity: .7; }

/* ---------- Featured article ---------- */
.voice-section { padding: 0 0 clamp(80px,10vw,140px); background: var(--bg); }

.featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-xl);
  overflow: hidden; margin-bottom: 56px; transition: all .4s ease;
}
.featured:hover { border-color: var(--accent); box-shadow: 0 32px 56px -32px rgba(0,0,0,.18); }
.featured .f-img { position: relative; aspect-ratio: 16/11; }
.featured .f-img > image-slot, .featured .f-img > .ph { width: 100%; height: 100%; display: block; border-radius: 0; }
.featured .f-badge {
  position: absolute; top: 22px; left: 22px; background: var(--accent); color: #fff;
  padding: 8px 16px; font-family: var(--num); font-size: 10.5px; letter-spacing: .2em; font-weight: 700; border-radius: 999px;
}
.featured .f-body { padding: clamp(32px,4vw,56px); display: flex; flex-direction: column; justify-content: center; }
.featured .f-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.cat-tag { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: #fff; background: var(--ink); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.cat-tag.c-payroll { background: var(--accent); }
.cat-tag.c-hr { background: var(--accent-deep); }
.cat-tag.c-audit { background: #3a4148; }
.cat-tag.c-dx { background: #4cc0d4; }
.cat-tag.c-grant { background: #6a8a3a; }
.post-date { font-family: var(--num); font-size: 12.5px; font-weight: 600; color: var(--ink-3); letter-spacing: .04em; }
.featured h2 { margin: 0 0 18px; font-size: clamp(22px,2.6vw,34px); font-weight: 700; line-height: 1.5; letter-spacing: .02em; }
.featured p { margin: 0 0 28px; font-size: 14px; line-height: 1.95; color: var(--ink-2); }
.read-more { display: inline-flex; align-items: center; gap: 12px; font-family: var(--num); font-size: 12px; letter-spacing: .14em; font-weight: 700; color: var(--ink); }
.read-more .line { width: 28px; height: 1px; background: var(--accent); transition: width .3s; }
.featured:hover .read-more .line, .voice-card:hover .read-more .line { width: 44px; }
@media (max-width: 860px) { .featured { grid-template-columns: 1fr; } }

/* ---------- Article grid ---------- */
.voice-grid-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1000px) { .voice-grid-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .voice-grid-list { grid-template-columns: 1fr; } }

.voice-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: all .35s ease;
}
.voice-card.hide { display: none; }
.voice-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 28px 44px -30px rgba(0,0,0,.2); }
.voice-card .vc-img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.voice-card .vc-img > image-slot, .voice-card .vc-img > .ph { width: 100%; height: 100%; display: block; border-radius: 0; transition: transform .6s ease; }
.voice-card:hover .vc-img > image-slot, .voice-card:hover .vc-img > .ph { transform: scale(1.05); }
.voice-card .vc-company {
  position: absolute; bottom: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; color: var(--ink); letter-spacing: .03em;
}
.voice-card .vc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.voice-card .vc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.voice-card h3 { margin: 0 0 14px; font-size: 16px; font-weight: 700; line-height: 1.6; letter-spacing: .01em; }
.voice-card p { margin: 0 0 20px; font-size: 16px; line-height: 1.85; color: var(--ink-3); flex: 1; }
.voice-card .vc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-2); }
.voice-card .vc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag-sm { font-size: 10.5px; font-weight: 600; color: var(--accent-deep); background: var(--accent-soft); padding: 4px 9px; border-radius: 999px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 64px; }
.pagination a, .pagination span {
  min-width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px;
  font-family: var(--num); font-size: 14px; font-weight: 600; color: var(--ink-2);
  border: 1px solid var(--line); background: #fff; transition: all .25s; padding: 0 6px;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .cur, .pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination .dots { border: 0; background: transparent; }
.pagination .nav-arrow { gap: 8px; }

/* ============================================================
   Article (column) page
   ============================================================ */
.article-head { padding: 124px 0 0; background: var(--bg); }
.article-head .container-narrow { position: relative; }
.article-meta-top { display: flex; align-items: center; gap: 14px; margin: 28px 0 22px; flex-wrap: wrap; }
.article-title {
  font-size: clamp(26px, 3.6vw, 46px); font-weight: 700; line-height: 1.5;
  letter-spacing: .02em; margin: 0 0 28px; color: var(--ink); text-wrap: pretty;
}
.article-byline { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: 14px; }
.article-author .avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--bg-gray); flex-shrink: 0; }
.article-author .avatar > image-slot, .article-author .avatar > .ph { width: 100%; height: 100%; display: block; border-radius: 50%; }
.article-author .who .name { font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.article-author .who .role { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.article-share { display: flex; align-items: center; gap: 8px; }
.article-share .s-label { font-family: var(--num); font-size: 10.5px; letter-spacing: .2em; font-weight: 700; color: var(--ink-3); margin-right: 4px; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all .25s; }
.share-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.share-btn svg { width: 16px; height: 16px; }

.article-hero-img { margin: clamp(36px,5vw,56px) 0 0; }
.article-hero-img .frame { width: 100%; /*aspect-ratio: 16/8;*/ border-radius: var(--r-xl); overflow: hidden; }
.article-hero-img .frame > image-slot, .article-hero-img .frame > .ph { width: 100%; height: 100%; display: block; border-radius: 0; }
.article-hero-img .cap { margin-top: 12px; font-size: 11.5px; color: var(--ink-3); letter-spacing: .04em; }

/* Article body layout */
.article-wrap { padding: clamp(48px,6vw,80px) 0 clamp(80px,10vw,130px); background: var(--bg); }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: clamp(40px,5vw,72px); align-items: start; }
@media (max-width: 940px) { .article-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.article-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 940px) { .article-side { position: static; } }
.toc-card { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 26px 24px; }
.toc-card h4 { margin: 0 0 18px; font-family: var(--num); font-size: 11px; letter-spacing: .22em; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 10px; }
.toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; counter-reset: toc; }
.toc-list a { display: flex; gap: 12px; padding: 9px 12px; border-radius: var(--r-sm); font-size: 12.5px; line-height: 1.6; color: var(--ink-2); transition: all .2s; border-left: 2px solid transparent; }
.toc-list a::before { counter-increment: toc; content: counter(toc,decimal-leading-zero); font-family: var(--num); font-size: 10px; font-weight: 700; color: var(--ink-3); padding-top: 2px; }
.toc-list a:hover { background: #fff; color: var(--accent); }
.toc-list a.active { background: #fff; color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
.toc-list a.active::before { color: var(--accent); }

.side-cta { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 28px 24px; position: relative; overflow: hidden; }
.side-cta h4 { margin: 0 0 10px; font-size: 17px; font-weight: 700; line-height: 1.5; position: relative; }
.side-cta p { margin: 0 0 18px; font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.7); position: relative; }
.side-cta .btn { width: 100%; justify-content: center; position: relative; }

/* Article typography */
.article-body { font-size: 15.5px; line-height: 2.05; color: var(--ink-2); max-width: 720px; }
.article-body > * + * { margin-top: 28px; }
.article-body .lead { font-size: 17px; line-height: 2; color: var(--ink); font-weight: 500; }

/* h2 — セクション区切り：下線＋左アクセントライン */
.article-body h2 {
  font-size: clamp(21px,2.3vw,28px); font-weight: 700; line-height: 1.5; color: var(--ink);
  letter-spacing: .02em; margin-top: 60px; padding: 0 0 16px; border-bottom: 2px solid var(--line-2);
  position: relative; scroll-margin-top: 100px;
}
.article-body h2::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 56px; height: 2px; background: var(--accent); }

/* h3 — サブセクション：左ボーダー */
.article-body h3 {
  font-size: clamp(17px,1.9vw,21px); font-weight: 700; line-height: 1.55; color: var(--ink);
  margin-top: 44px; letter-spacing: .02em; scroll-margin-top: 100px;
  padding: 4px 0 4px 16px; border-left: 4px solid var(--accent);
}

/* h4 — 小見出し：背景色＋細ボーダー */
.article-body h4 {
  font-size: clamp(14px,1.5vw,17px); font-weight: 700; line-height: 1.65; color: var(--ink);
  margin-top: 32px; letter-spacing: .02em; scroll-margin-top: 100px;
  padding: 9px 14px; background: var(--bg-gray);
  border-left: 3px solid var(--accent-deep); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.article-body p { margin-top: 22px; text-wrap: pretty; }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body a.inline { color: var(--accent-deep); border-bottom: 1px solid var(--accent-soft); font-weight: 600; }
.article-body a.inline:hover { border-bottom-color: var(--accent-deep); }
.article-body ul, .article-body ol { margin-top: 22px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article-body ul li { position: relative; padding-left: 30px; line-height: 1.9; }
.article-body ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 8px; height: 8px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.article-body ol { counter-reset: ol; }
.article-body ol > li { position: relative; padding-left: 42px; line-height: 1.9; counter-increment: ol; }
.article-body ol > li::before { content: counter(ol); position: absolute; left: 0; top: 2px; width: 26px; height: 26px; background: var(--accent); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--num); font-size: 12px; font-weight: 700; }
.article-body ol li ul { margin-top: 10px; gap: 8px; }
.article-body ol li ul li { padding-left: 18px; }
.article-body ol li ul li::before { content: "・"; position: absolute; left: 2px; top: 0; width: auto; height: auto; background: none; border: none; transform: none; border-radius: 0; display: inline; color: var(--ink-2); font-family: inherit; font-size: 16px; font-weight: 400; line-height: 1.9; }

.article-body figure { margin: 36px 0; }
.article-body figure .frame { width: 100%; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; }
.article-body figure .frame > image-slot, .article-body figure .frame > .ph { width: 100%; height: 100%; display: block; border-radius: 0; }
.article-body figure figcaption { margin-top: 12px; font-size: 12px; color: var(--ink-3); text-align: center; letter-spacing: .03em; }

.article-body blockquote {
  margin: 36px 0; padding: 28px 32px; background: var(--bg-soft);
  border-left: 4px solid var(--accent); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 16px; line-height: 1.95; color: var(--ink); font-weight: 500; position: relative;
}
.article-body blockquote::before { content: "“"; font-family: var(--num); font-size: 56px; color: var(--accent-soft); position: absolute; top: 8px; right: 20px; line-height: 1; font-weight: 700; }

.callout {
  margin: 36px 0; padding: 28px 30px; background: var(--accent-soft);
  border-radius: var(--r-lg); position: relative;
}
.callout .c-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--num); font-size: 10.5px; letter-spacing: .2em; font-weight: 700; color: var(--accent-deep); margin-bottom: 12px; }
.callout p { margin: 0; font-size: 14px; line-height: 1.9; color: var(--accent-ink); }
.callout.warn { background: #fbeae7; }
.callout.warn .c-label { color: var(--warn); }
.callout.warn p { color: #6e2c23; }

.article-table-wrap { margin: 36px 0; overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line-2); }
.article-table { width: 100%; border-collapse: collapse; font-size: 13.5px; background: #fff; }
.article-table th { background: var(--ink); color: #fff; text-align: left; padding: 16px 18px; font-weight: 700; font-size: 12.5px; letter-spacing: .04em; }
.article-table td { padding: 15px 18px; border-bottom: 1px solid var(--line-2); }
.article-table tr:last-child td { border-bottom: 0; }
.article-table tr:nth-child(even) td { background: var(--bg-soft); }

/* Tags + author box + share footer */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--line-2); max-width: 720px; }
.article-tags .t { font-size: 12px; font-weight: 600; color: var(--ink-2); background: var(--bg-gray); padding: 8px 16px; border-radius: 999px; transition: all .25s; }
.article-tags .t:hover { background: var(--accent); color: #fff; }

.author-box { display: grid; grid-template-columns: 80px 1fr; gap: 24px; margin-top: 40px; padding: 32px; background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: var(--r-lg); max-width: 720px; align-items: start; }
.author-box .ab-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: var(--bg-gray); }
.author-box .ab-avatar > image-slot, .author-box .ab-avatar > .ph { width: 100%; height: 100%; display: block; border-radius: 50%; }
.author-box .ab-role { font-family: var(--num); font-size: 10.5px; letter-spacing: .2em; font-weight: 700; color: var(--accent); }
.author-box .ab-name { font-size: 18px; font-weight: 700; margin: 6px 0 12px; letter-spacing: .02em; }
.author-box .ab-bio { font-size: 13px; line-height: 1.9; color: var(--ink-2); margin: 0; }
@media (max-width: 540px) { .author-box { grid-template-columns: 1fr; } }

/* Related articles */
.related { padding: clamp(72px,9vw,120px) 0; background: var(--bg-soft); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 1000px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- Shared CTA band ---------- */
.cta-band { padding: clamp(72px,9vw,120px) 0; background: var(--bg); }
.cta-band-card {
  background: linear-gradient(135deg, #1b8aa3 0%, #e75685 55%, #4cc0d4 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(44px,6vw,72px) clamp(32px,5vw,72px);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
}
.cta-band-card::before { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.cta-band-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.16), transparent 50%); }
.cta-band-card > * { position: relative; z-index: 1; }
.cta-band-card .eyebrow { color: rgba(255,255,255,.9); }
.cta-band-card h2 { margin: 14px 0 16px; font-size: clamp(26px,3.4vw,40px); font-weight: 700; line-height: 1.4; letter-spacing: .02em; }
.cta-band-card p { margin: 0; font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.9); }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band-actions .btn-white { background: #fff; color: var(--accent-deep); padding: 20px 26px; border-radius: var(--r-md); font-weight: 700; font-size: 15px; justify-content: space-between; }
.cta-band-actions .btn-white:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.cta-band-actions .tel { padding: 16px 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-md); }
.cta-band-actions .tel .label { font-family: var(--num); font-size: 10px; letter-spacing: .22em; opacity: .85; }
.cta-band-actions .tel .num { font-family: var(--num); font-size: 26px; font-weight: 700; display: block; line-height: 1.2; }
@media (max-width: 800px) { .cta-band-card { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding: 80px 0 140px; border-top: 1px solid var(--line-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .addr { font-size: 12.5px; line-height: 1.95; color: var(--ink-3); }
.footer-brand .addr strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; font-size: 13px; }
.footer-col h5 { margin: 0 0 18px; font-family: var(--num); font-size: 11px; letter-spacing: .22em; font-weight: 700; color: var(--accent); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--ink-2); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--ink-3); letter-spacing: .05em; gap: 16px; flex-wrap: wrap; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a:hover { color: var(--ink); }

/* Reading progress bar */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); width: 0; z-index: 101; transition: width .1s linear; }
    /* ── Grade page specific ── */
    .grade-nav {
      background: #fff;
      border: 1.5px solid #e8f4f7;
      border-radius: 16px;
      padding: 36px 40px;
      margin: 0 auto 56px;
      max-width: 820px;
    }
    .grade-nav-title {
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: #e75685;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .grade-nav-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
    }
    @media (max-width: 600px) {
      .grade-nav-grid { grid-template-columns: 1fr; }
      .grade-nav { padding: 24px 20px; }
    }
    .grade-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 8px;
      background: #fef6fa;
      text-decoration: none;
      color: #1a2a30;
      font-size: .9rem;
      font-weight: 500;
      transition: background .18s, color .18s;
      border: 1px solid transparent;
    }
    .grade-nav-item:hover {
      background: #e0f4f9;
      border-color: #e75685;
      color: #1a6a7c;
    }
    .grade-nav-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: #e75685;
      color: #fff;
      border-radius: 50%;
      font-size: .75rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .grade-nav-note {
      font-size: .8rem;
      color: #7a9098;
      margin-top: 16px;
      line-height: 1.7;
    }

    /* ── Category sections ── */
    .grade-cat {
      scroll-margin-top: 80px;
      margin-bottom: 80px;
    }
    .grade-cat-head {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }
    .grade-cat-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 44px;
      background: #e75685;
      color: #fff;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 4px;
    }
    .grade-cat-title {
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.5;
      color: #0f2027;
      margin: 0;
    }
    .grade-cat-title small {
      display: block;
      font-size: .9rem;
      font-weight: 500;
      color: #e75685;
      margin-top: 4px;
    }
    .grade-lead {
      font-size: .95rem;
      line-height: 1.9;
      color: #2c3e45;
      margin-bottom: 24px;
      padding: 20px 24px;
      background: #fef6fa;
      border-left: 3px solid #e75685;
      border-radius: 0 8px 8px 0;
    }

    /* ── Myths box ── */
    .myths-box {
      background: #fff8f8;
      border: 1.5px solid #fddcdc;
      border-radius: 12px;
      padding: 24px 28px;
      margin-bottom: 24px;
    }
    .myths-box-title {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      color: #c05050;
      margin-bottom: 14px;
    }
    .myth-item {
      margin-bottom: 16px;
    }
    .myth-item:last-child { margin-bottom: 0; }
    .myth-wrong {
      color: #c05050;
      font-weight: 600;
      font-size: .9rem;
    }
    .myth-right {
      color: #2c4a50;
      font-size: .88rem;
      line-height: 1.75;
      margin-top: 4px;
      padding-left: 14px;
    }

    /* ── Grade table ── */
    .grade-table-wrap {
      margin-bottom: 24px;
    }
    .grade-table-label {
      font-size: .8rem;
      font-weight: 700;
      color: #e75685;
      letter-spacing: .06em;
      margin-bottom: 10px;
    }
    .grade-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .88rem;
      line-height: 1.75;
    }
    .grade-table th,
    .grade-table td {
      padding: 12px 16px;
      border: 1px solid #daedf2;
      vertical-align: top;
    }
    .grade-table thead th {
      background: #e8f7fb;
      font-weight: 700;
      text-align: center;
      color: #1a6a7c;
      width: 90px;
    }
    .grade-table tbody tr:nth-child(odd) td { background: #fafefe; }
    .grade-table .grade-lv1 { background: #fff3e0 !important; }
    .grade-table .grade-lv2 { background: #e8f7fb !important; }
    .grade-table .grade-lv3 { background: #f4f9f0 !important; }
    .grade-lv-label {
      font-weight: 700;
      font-size: .9rem;
      text-align: center;
    }
    .lv1-label { color: #c06020; }
    .lv2-label { color: #1a6a7c; }
    .lv3-label { color: #3a7a30; }
    .grade-note-sm {
      font-size: .8rem;
      color: #6a8088;
      margin-top: 6px;
    }

    /* ── Points box ── */
    .points-box {
      background: #fff;
      border: 1.5px solid #daedf2;
      border-radius: 12px;
      padding: 24px 28px;
      margin-bottom: 24px;
    }
    .points-box-title {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      color: #e75685;
      margin-bottom: 16px;
    }
    .point-item {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      font-size: .88rem;
      line-height: 1.75;
      color: #2c3e45;
    }
    .point-item:last-child { margin-bottom: 0; }
    .point-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: #e75685;
      color: #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      font-weight: 700;
      margin-top: 2px;
    }

    /* ── Cat CTA ── */
    .cat-cta {
      background: linear-gradient(120deg, #e8f7fb 0%, #f0faf5 100%);
      border: 1.5px solid #b8e4ee;
      border-radius: 12px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cat-cta-text {
      font-size: .88rem;
      color: #1a4a54;
      font-weight: 500;
    }
    .cat-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e75685;
      color: #fff;
      font-size: .85rem;
      font-weight: 700;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      white-space: nowrap;
      transition: background .18s;
    }
    .cat-cta-btn:hover { background: #1a8aa6; }

    /* ── Cat divider ── */
    .cat-divider {
      border: none;
      border-top: 2px dashed #daedf2;
      margin: 56px 0;
    }

    /* ── Epilepsy supplement ── */
    .epilepsy-supplement {
      background: #f8f8fe;
      border: 1.5px solid #d0d0ee;
      border-radius: 12px;
      padding: 28px 32px;
      margin-top: 32px;
    }
    .epilepsy-supplement h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #2a2a5a;
      margin-bottom: 12px;
    }

    /* ── Final CTA ── */
    .grade-final-refuse {
      background: #fff9ec;
      border: 2px solid #f0c060;
      border-radius: 14px;
      padding: 28px 32px;
      margin: 40px 0;
    }
    .grade-final-refuse h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #7a4c00;
      margin-bottom: 12px;
    }
    .grade-final-refuse p {
      font-size: .9rem;
      line-height: 1.8;
      color: #3a2c00;
      margin: 0;
    }

    /* ======================================================
       受給事例カード（3カラム）専用スタイル
       ====================================================== */

    /* ---- カードグリッド ---- */
    .case-list-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    @media (max-width: 960px) { .case-list-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px)  { .case-list-grid { grid-template-columns: 1fr; } }

    /* ---- カード本体 ---- */
    .case-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: var(--ink);
      transition: transform .3s, box-shadow .3s;
    }
    .case-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 54px -32px rgba(70, 61, 52, .45);
    }
    .case-card.hide { display: none; }

    /* ---- 顔アバターエリア ---- */
    .cc-face {
      position: relative;
      height: 164px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* グラデーション背景（カード順で変化） */
    .case-card:nth-child(6n+1) .cc-face { background: linear-gradient(145deg, rgba(231,86,133,.18) 0%, rgba(244,192,103,.22) 100%); }
    .case-card:nth-child(6n+2) .cc-face { background: linear-gradient(145deg, rgba(121,195,214,.22) 0%, rgba(38,164,192,.30) 100%); }
    .case-card:nth-child(6n+3) .cc-face { background: linear-gradient(145deg, rgba(139,194,141,.22) 0%, rgba(95,168,106,.28) 100%); }
    .case-card:nth-child(6n+4) .cc-face { background: linear-gradient(145deg, rgba(245,148,107,.18) 0%, rgba(244,192,103,.28) 100%); }
    .case-card:nth-child(6n+5) .cc-face { background: linear-gradient(145deg, rgba(121,195,214,.18) 0%, rgba(231,86,133,.16) 100%); }
    .case-card:nth-child(6n+6) .cc-face { background: linear-gradient(145deg, rgba(244,192,103,.18) 0%, rgba(139,194,141,.24) 100%); }

    /* 装飾ドット（背景） */
    .cc-face::before {
      content: "";
      position: absolute;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,.18);
      top: -30px; right: -20px;
      pointer-events: none;
    }
    .cc-face::after {
      content: "";
      position: absolute;
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,.14);
      bottom: -10px; left: 20px;
      pointer-events: none;
    }

    /* ---- 顔アバター（円） ---- */
    .cc-avatar {
      position: relative;
      z-index: 1;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      overflow: hidden;
      background: rgba(255,255,255,.62);
      border: 3px solid rgba(255,255,255,.9);
      box-shadow: 0 8px 24px -8px rgba(70,61,52,.28);
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .cc-avatar svg {
      width: 68px;
      height: 68px;
      display: block;
    }

    /* ---- カテゴリバッジ ---- */
    .cc-cat-badge {
      position: absolute;
      z-index: 2;
      bottom: 12px;
      left: 14px;
      font-size: 10.5px;
      font-weight: 700;
      padding: 4px 13px;
      border-radius: 999px;
      color: #E75685;
      letter-spacing: .04em;
      white-space: nowrap;
      box-shadow: 0 4px 12px -4px rgba(0,0,0,.22);
      background-color: #fff;
    }

    /* カテゴリ別バッジカラー */
    .case-card[data-tags="うつ病"]    .cc-cat-badge { background: var(--pink); }
    .case-card[data-tags="知的障害"]   .cc-cat-badge { background: var(--sky); }
    .case-card[data-tags="統合失調症"] .cc-cat-badge { background: var(--green-deep); }
    .case-card[data-tags="発達障害"]   .cc-cat-badge { background: var(--coral); }
    .case-card[data-tags="ASD_ADHD"]  .cc-cat-badge { background: var(--accent); }
    .case-card[data-tags="双極性障害"] .cc-cat-badge { background: var(--pink-deep); }
    .case-card[data-tags="身体障がい"] .cc-cat-badge { background: #6a8fbf; }
    .case-card[data-tags="脳疾患"]    .cc-cat-badge { background: var(--coral); }
    .case-card[data-tags="その他"]    .cc-cat-badge { background: var(--ink-3); }

    /* ---- カード本文エリア ---- */
    .cc-body {
      padding: 20px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .cc-date {
      font-family: var(--num);
      font-size: 11px;
      color: var(--ink-3);
      font-weight: 600;
      letter-spacing: .08em;
      display: block;
      margin-bottom: 8px;
    }

    .cc-title {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.72;
      margin: 0 0 16px;
      color: var(--ink);
      flex: 1;
    }

    .cc-more {
      font-family: var(--num);
      font-size: 11.5px;
      font-weight: 700;
      color: var(--pink);
      letter-spacing: .08em;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      transition: gap .25s, color .2s;
    }
    .case-card:hover .cc-more { gap: 11px; color: var(--pink-deep); }
    .cc-more::after { content: "→"; }

    /* ======================================================
       記事一覧（受給事例／コラム）— カラム（カード）表示
       アイキャッチの有無どちらでも崩れないよう対応
       ====================================================== */
    .article-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    @media (max-width: 960px) { .article-list { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .article-list { grid-template-columns: 1fr; } }

    .article-row {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid var(--line-2);
      border-radius: var(--r-lg);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .article-row:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: 0 30px 54px -32px rgba(38,164,192,.35);
    }
    .article-row.hide { display: none; }

    /* アイキャッチ画像（任意）— 設定時のみ表示、未設定時は画像領域を確保しない */
    .ar-thumb {
      width: 100%; aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0; background: var(--bg-soft);
    }
    .ar-thumb img {
      width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease;
    }
    .article-row:hover .ar-thumb img { transform: scale(1.06); }

    .ar-body {
      display: flex; flex-direction: column; flex: 1; min-width: 0;
      padding: 24px 24px 26px;
    }

    .ar-meta {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 12px; flex-wrap: wrap;
    }
    .ar-cat {
      display: inline-flex; align-items: center;
      font-size: 12.5px; font-weight: 700; letter-spacing: .03em;
      color: #fff; background: var(--accent-deep);
      padding: 5px 14px; border-radius: 999px; white-space: nowrap;
    }
    /* カテゴリ別バッジカラー（受給事例：診断名ベース） */
    .article-row[data-cat="うつ病"]    .ar-cat { background: var(--pink); }
    .article-row[data-cat="知的障害"]   .ar-cat { background: var(--sky); }
    .article-row[data-cat="統合失調症"] .ar-cat { background: var(--green-deep); }
    .article-row[data-cat="発達障害"]   .ar-cat { background: var(--coral); }
    .article-row[data-cat="ASD_ADHD"]  .ar-cat { background: var(--accent); }
    .article-row[data-cat="双極性障害"] .ar-cat { background: var(--pink-deep); }
    .article-row[data-cat="身体障がい"] .ar-cat { background: #6a8fbf; }
    .article-row[data-cat="脳疾患"]    .ar-cat { background: var(--coral); }
    .article-row[data-cat="その他"]    .ar-cat { background: var(--ink-3); }

    .ar-date {
      font-family: var(--num); font-size: 13px; letter-spacing: .06em;
      color: var(--ink-3); font-weight: 600;
    }
    .ar-title {
      font-family: var(--serif);
      font-size: clamp(16px,1.7vw,19px); font-weight: 700;
      line-height: 1.6; margin: 0 0 10px; color: var(--ink);
    }
    .ar-excerpt {
      font-size: 14.5px; line-height: 1.85; color: var(--ink-3); margin: 0;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
      flex: 1;
    }
    .ar-arrow {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2);
      font-family: var(--num); font-size: 12px; font-weight: 700; letter-spacing: .1em;
      color: var(--pink); transition: gap .25s, color .2s;
    }
    .ar-arrow::after { content: "→"; transition: transform .3s; }
    .article-row:hover .ar-arrow { gap: 11px; color: var(--pink-deep); }
    .article-row:hover .ar-arrow::after { transform: translateX(4px); }

    /* ======================================================
       受給事例詳細（お手紙）ページ 専用スタイル
       ====================================================== */

    /* ---- ページヘッダー ---- */
    .case-detail-head {
      padding: 130px 0 0;
      background: var(--bg);
    }

    /* ---- 受給者プロフィールカード ---- */
    .letter-person {
      display: flex;
      align-items: center;
      gap: 22px;
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: var(--r-lg);
      padding: 24px 28px;
      margin-bottom: 32px;
      box-shadow: 0 8px 24px -16px rgba(70,61,52,.18);
    }
    .lp-avatar {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      overflow: hidden;
      background: linear-gradient(145deg, rgba(231,86,133,.16), rgba(244,192,103,.22));
      border: 3px solid rgba(255,255,255,.9);
      box-shadow: 0 6px 18px -6px rgba(70,61,52,.22);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      flex-shrink: 0;
    }
    .lp-info { flex: 1; min-width: 0; }
    .lp-eyebrow {
      font-family: var(--num);
      font-size: 10px;
      letter-spacing: .22em;
      font-weight: 700;
      color: var(--pink);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .lp-eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--pink); }
    .lp-title {
      font-family: var(--serif);
      font-size: clamp(17px, 2vw, 21px);
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 10px;
      line-height: 1.4;
    }
    .lp-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }
    .lp-cat {
      background: var(--ink-3);
      color: #fff;
      font-size: 10.5px;
      font-weight: 700;
      padding: 4px 13px;
      border-radius: 999px;
      letter-spacing: .04em;
    }
    .lp-date {
      font-family: var(--num);
      font-size: 11px;
      color: var(--ink-3);
      letter-spacing: .06em;
    }
    @media (max-width: 540px) {
      .letter-person { flex-direction: column; align-items: flex-start; gap: 14px; }
    }

    /* ---- お手紙リード文 ---- */
    .letter-lead {
      background: #fff;
      border-left: 4px solid var(--pink);
      border-radius: 0 var(--r) var(--r) 0;
      padding: 18px 22px;
      margin-bottom: 32px;
      font-size: 16px;
      line-height: 1.9;
      color: var(--ink-2);
    }
    .letter-lead strong { color: var(--ink); font-weight: 700; }

    /* ---- Q&A カード ---- */
    .letter-items {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .letter-item {
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: 0 8px 26px -14px rgba(70,61,52,.16);
      transition: box-shadow .3s, transform .3s;
    }
    .letter-item:hover {
      box-shadow: 0 18px 40px -18px rgba(70,61,52,.28);
      transform: translateY(-2px);
    }

    /* 設問エリア */
    .li-q {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 24px;
      background: var(--cream);
      border-bottom: 1px solid var(--line-2);
    }
    .li-num {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-top: 1px;
    }
    .letter-item:nth-child(1) .li-num { background: var(--pink); }
    .letter-item:nth-child(2) .li-num { background: var(--sky); }
    .letter-item:nth-child(3) .li-num { background: var(--green-deep); }
    .letter-item:nth-child(4) .li-num { background: var(--coral); }

    .li-q-text {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.7;
      color: var(--ink-2);
      font-family: var(--serif);
      padding-top: 4px;
    }

    /* 回答エリア */
    .li-a {
      padding: 22px 24px 26px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .li-a-badge {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--num);
      font-size: 12px;
      font-weight: 700;
      margin-top: 2px;
    }
    .letter-item:nth-child(1) .li-a-badge { background: var(--pink-soft); color: var(--pink-deep); }
    .letter-item:nth-child(2) .li-a-badge { background: rgba(121,195,214,.18); color: var(--sky); }
    .letter-item:nth-child(3) .li-a-badge { background: rgba(139,194,141,.18); color: var(--green-deep); }
    .letter-item:nth-child(4) .li-a-badge { background: rgba(245,148,107,.18); color: var(--coral); }

    .li-a-text {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 700;
      line-height: 1.75;
      color: var(--ink);
      margin: 0;
      padding-top: 3px;
    }
    .li-a-text.is-same {
      color: var(--ink-3);
      font-size: 15px;
    }

    /* ---- 事務所コメント ---- */
    .editor-note {
      margin-top: 32px;
      margin-bottom: 32px;
      background: linear-gradient(135deg, rgba(231,86,133,.05), rgba(244,192,103,.09));
      border: 1.5px solid var(--pink-soft);
      border-radius: var(--r-lg);
      padding: 28px 30px;
    }
    .editor-note-label {
      font-family: var(--num);
      font-size: 10px;
      letter-spacing: .24em;
      font-weight: 700;
      color: var(--pink);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .editor-note-label::before { content: ""; width: 24px; height: 1px; background: var(--pink); }
    .editor-note p {
      margin: 0 0 10px;
      font-size: 14.5px;
      line-height: 1.95;
      color: var(--ink-2);
    }
    .editor-note p:last-child { margin-bottom: 0; }
    .editor-note-sign {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--pink-soft);
      font-size: 12px;
      color: var(--ink-3);
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .editor-note-sign strong {
      font-size: 13px;
      color: var(--ink);
      font-weight: 700;
    }

    /* ---- 記事タグ ---- */
    .article-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }
    .article-tags .t {
      font-size: 12px;
      font-weight: 700;
      color: var(--ink-3);
      background: var(--cream-2);
      border: 1px solid var(--line);
      padding: 6px 14px;
      border-radius: 999px;
      transition: border-color .2s, color .2s, background .2s;
    }
    .article-tags .t:hover {
      border-color: var(--pink-soft);
      color: var(--pink-deep);
      background: #fff;
    }

    /* ---- 前後ナビ ---- */
    .case-pager {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--line-2);
    }
    .case-pager a {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 18px 20px;
      background: #fff;
      border: 1.5px solid var(--line);
      border-radius: var(--r-lg);
      text-decoration: none;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      color: var(--ink-2);
    }
    .case-pager a:hover {
      border-color: var(--pink-soft);
      color: var(--pink-deep);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px -10px rgba(231,86,133,.22);
    }
    .pager-dir {
      font-family: var(--num);
      font-size: 10px;
      letter-spacing: .2em;
      font-weight: 700;
      color: var(--ink-3);
    }
    .pager-q {
      font-size: 13px;
      font-weight: 700;
      line-height: 1.5;
      color: inherit;
    }
    .pager-next { text-align: right; }
    @media (max-width: 480px) { .case-pager { grid-template-columns: 1fr; } }

    /* ---- サイドバー：CTA ---- */
    .side-cta-box {
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
      border-radius: var(--r-lg);
      padding: 26px 22px;
      color: #fff;
      margin-bottom: 20px;
    }
    .side-cta-box h4 {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 700;
      margin: 0 0 10px;
      line-height: 1.5;
    }
    .side-cta-box p {
      font-size: 12.5px;
      line-height: 1.8;
      margin: 0 0 18px;
      opacity: .92;
    }
    .side-cta-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      color: var(--pink-deep);
      padding: 13px 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      transition: background .2s, color .2s;
    }
    .side-cta-btn:hover { background: var(--ink); color: #fff; }
    .side-cta-btn + .side-cta-btn {
      margin-top: 8px;
      background: rgba(255,255,255,.18);
      color: #fff;
      border: 1px solid rgba(255,255,255,.4);
    }
    .side-cta-btn + .side-cta-btn:hover { background: rgba(255,255,255,.32); }
    .side-cta-tel {
      margin-top: 14px;
      text-align: center;
      font-family: var(--num);
      font-size: 10px;
      letter-spacing: .1em;
      opacity: .85;
    }
    .side-cta-tel strong {
      display: block;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: .02em;
      margin-top: 2px;
      opacity: 1;
    }

/* =========================================================================
   受給事例詳細ページ (case-detail.html) 追加スタイル
   ========================================================================= */

/* ---- case-detail-head 内のオーバーライド ---- */
.case-detail-head .letter-person { display: block; padding-bottom: 0; }
.case-detail-head .lp-info { padding-left: 0; width: 100%; }
.case-detail-head .lp-title {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* ---- 受給者コメント（詳細ページ内） ---- */
.faq-detail-layout .mp-comment {
  background: var(--cream, #faf8f5);
  border-radius: 16px;
  margin-bottom: 24px;
}
.faq-detail-layout .mp-quote {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
}

/* ---- タグのアクティブ表示 ---- */
.article-tags .t.current {
  background: var(--accent, #e75685);
  color: #fff;
  cursor: default;
}
.article-tags .t.current:hover {
  background: var(--accent, #e75685);
  color: #fff;
}

/* ---- キーファクツバー ---- */
.case-keyfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  background: #f0f8fb;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 20px 0 32px;
  font-size: 13px;
  color: #1a3a47;
  line-height: 1.6;
}
.case-keyfacts .sep { color: var(--accent); }

/* ---- ケースセクション見出し ---- */
.case-section-h {
  font-size: clamp(17px, 2vw, 21px);
  border-bottom: 2px solid var(--accent, #e75685);
  padding-bottom: 8px;
  margin: 0 0 18px;
}
.case-section-h.mt-36 { margin-top: 36px; }
.case-section-h.mt-40 { margin-top: 40px; }
.case-section-h.mb-6  { margin-bottom: 6px; }

/* ---- 受給概要テーブル ---- */
.case-overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.case-overview-table th {
  background: #f0f8fb;
  padding: 12px 14px;
  border: 1px solid #d0e8ef;
  text-align: left;
  font-weight: 700;
  vertical-align: top;
  white-space: nowrap;
}
.case-overview-table th:first-child { width: 38%; }
.case-overview-table td {
  padding: 12px 14px;
  border: 1px solid #d0e8ef;
  background: #fff;
}
.case-overview-table .amount {
  font-size: 16px;
  color: var(--accent);
}

/* ---- 受給者の声 ---- */
.case-voice-note {
  font-size: 12px;
  color: #666;
  margin: 0 0 14px;
}
.case-voice-blockquote {
  border-left: 4px solid var(--accent);
  margin: 0 0 32px;
  padding: 20px 24px;
  background: #fff;
  font-size: 15px;
  line-height: 1.85;
  color: #1a3a47;
  border-radius: 0 8px 8px 0;
}

/* ---- エディターノート（インラインCTA用） ---- */
.editor-note.cta-note { text-align: center; }
.editor-note.cta-note .cta-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.editor-note.cta-note .cta-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.editor-note.cta-note .cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.editor-note.cta-note .maction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  min-width: 140px;
  white-space: nowrap;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.editor-note.cta-note .maction svg { flex-shrink: 0; }
.editor-note.cta-note .maction.line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 4px 14px rgba(6,199,85,.28);
}
.editor-note.cta-note .maction.line:hover {
  background: #05b54d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,.35);
}
.editor-note.cta-note .maction.pink {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(38,164,192,.28);
}
.editor-note.cta-note .maction.pink:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38,164,192,.35);
}
.editor-note.cta-note .maction.tel {
  background: transparent;
  color: var(--accent-deep);
  border: 2px solid var(--accent);
  padding: 11px 22px;
}
.editor-note.cta-note .maction.tel:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38,164,192,.28);
}

/* ---- 成功要因リスト ---- */
.success-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.success-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #f0fdf4;
  border-radius: 8px;
  border-left: 3px solid #22c55e;
  font-size: 16px;
  line-height: 1.7;
}
.success-list .check {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- ストーリー本文 ---- */
.case-story {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-story h3{
  font-size: clamp(16px, 2vw, 18px);
  border-left: 3px solid var(--accent, #e75685);
  padding-left: 12px;
  margin: 0;
  background: var(--bg-soft);
}

/* ---- FAQ リスト（ケース詳細内） ---- */
.case-faq-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-faq-list .letter-item { border-radius: 10px; overflow: hidden; }
.case-faq-list .li-num { background: var(--accent, #e75685); }

/* ---- 関連事例リンクリスト ---- */
.case-related-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-related-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f0f8fb;
  border-radius: 8px;
  font-size: 14px;
  color: #1a3a47;
  text-decoration: none;
  border: 1px solid #cce8f0;
  transition: background .2s;
}
.case-related-list a:hover { background: #e0f2f8; }
.case-related-list .arrow { color: var(--accent); }

/* ---- 関連事例セクション（下部） ---- */
.section.case-related-section {
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
}
.case-related-section .sec-h { font-size: clamp(22px, 2.8vw, 34px); }
.case-related-section .vc-body { padding-top: 28px; }
.case-related-section .voice-card p { font-size: 13px; }
.section-foot { text-align: center; margin-top: 48px; }
.section-foot .link { font-size: 15px; }

/* ---- ユーティリティ ---- */
.mt-auto { margin-top: auto; }