/* 全ページ共通スタイル（参考: next-ai-choice.com の側をそのまま再現）
   紫→赤の縦グラデーション背景の上に白いカードを乗せる。色・字体・部品はここだけで決める。 */

:root {
  --red: #d61b2d;
  --red-dark: #a91523;
  --red-10: rgba(214, 27, 45, .10);
  --red-20: rgba(214, 27, 45, .20);
  --green: #32d696;
  --green-dark: #279970;
  --yellow: #f8ff30;
  --gray: #666666;
  --gray-light: #e6e6e6;
  --gray-text: #808080;
  --line: #cfd6db;
  --navy: #1a1440;
  --fg: #000000;
  --w: 620px;
  --grad: linear-gradient(to bottom, #484db8 0%, #593580 9%, #672252 22%, #71132e 38%, #790814 55%, #7e0205 70%, #800000 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: #2b1a4d;
  color: var(--fg);
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
ul, ol { padding-left: 1.4em; }
b, strong { font-weight: 700; }

/* ---------- 骨格 ---------- */
.l-wrapper { position: relative; max-width: var(--w); margin-inline: auto; min-height: 100vh; padding-bottom: 96px; background: var(--grad); box-shadow: 0 0 40px rgba(0,0,0,.45); }
.l-inner { padding-inline: 12px; }
.l-section { margin-top: 26px; }

/* ---------- ヘッダー ---------- */
.p-header { background: #fff; }
.p-header__inner { display: flex; align-items: center; justify-content: space-between; height: 50px; padding-inline: 14px; }
.p-header__logo { font-size: 15px; font-weight: 700; color: var(--fg); text-decoration: none; letter-spacing: .04em; }
.p-header__logo span { color: var(--red); }
.p-header__nav { display: flex; gap: 12px; font-size: 12px; font-weight: 700; }
.p-header__nav a { color: var(--gray); text-decoration: none; }
.p-header__nav a:hover { color: var(--red); }
@media (max-width: 480px) { .p-header__nav { display: none; } }

/* ---------- ヒーロー（写真コラージュ＋大文字） ---------- */
.p-mv { position: relative; aspect-ratio: 375 / 210; overflow: hidden; background: var(--navy); }
.p-mv__grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.p-mv__grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) brightness(.85); }
.p-mv__shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,20,64,.25) 0%, rgba(26,20,64,.55) 45%, rgba(26,20,64,.92) 100%); }
.p-mv__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 14px 12px; color: #fff; text-align: center; text-shadow: 0 2px 6px rgba(0,0,0,.6); }
.p-mv__tags { display: flex; justify-content: center; gap: 8px; margin-bottom: 6px; }
.p-mv__tags span { padding: 3px 12px; border: 1px solid rgba(255,255,255,.7); border-radius: 100vh; font-size: 11px; font-weight: 700; background: rgba(0,0,0,.25); }
.p-mv__sub { font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.p-mv__title { font-size: 27px; font-weight: 900; line-height: 1.2; letter-spacing: .02em; }
.p-mv__title em { display: block; font-size: 24px; }
.p-mv__title em { font-style: normal; color: var(--yellow); }
.p-mv__title small { display: block; font-size: 14px; font-weight: 700; letter-spacing: .1em; margin-top: 4px; }

/* ---------- 見出し（光沢ピル） ---------- */
.c-title { position: relative; display: flex; align-items: center; justify-content: center; width: fit-content; min-width: 260px; margin: 26px auto 0; padding: 8px 28px; border-radius: 100vh; background: linear-gradient(to bottom, #2a1c5e 0%, #16102e 100%); border: 2px solid #6b4bd6; box-shadow: 0 0 0 2px #1a1440, 0 4px 14px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.25); color: #fff; font-size: 16px; font-weight: 700; line-height: 1.2; letter-spacing: .09em; text-align: center; }
.c-title--red { background: linear-gradient(to bottom, #e6273a 0%, #9b0f1e 100%); border-color: #ff8a94; box-shadow: 0 0 0 2px #6a0a14, 0 4px 14px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.3); }

/* ---------- 白カード（本文の器） ---------- */
.c-panel { margin-top: 14px; padding: 16px 14px; background: #fff; border-radius: 8px; }
.c-panel + .c-panel { margin-top: 14px; }
.c-h2 { margin-top: 26px; padding: 6px 12px; border-left: 6px solid var(--red); background: var(--red-10); font-size: 18px; font-weight: 700; line-height: 1.4; }
.c-h2:first-child { margin-top: 0; }
.c-h3 { margin-top: 22px; padding-bottom: 4px; border-bottom: 2px solid var(--red); font-size: 16px; font-weight: 700; }
.c-h2 + p, .c-h3 + p { margin-top: 10px; }
p + p { margin-top: 12px; }

/* ---------- 記事ヘッダ（H1・直接回答・要約・目次） ---------- */
.p-article__title { font-size: 21px; font-weight: 700; line-height: 1.45; letter-spacing: .02em; }
.p-article__answer { margin-top: 12px; font-size: 15px; line-height: 1.8; padding: 12px 14px; border-left: 4px solid var(--red); background: var(--red-10); }
.p-article__meta { margin-top: 8px; font-size: 11px; color: var(--gray-text); }
.c-summary { margin-top: 16px; padding: 14px; border: 2px solid var(--red); border-radius: 6px; }
.c-summary__label { display: inline-block; margin-bottom: 6px; padding: 2px 12px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; border-radius: 100vh; }
.c-summary p { font-size: 14px; }
.c-toc { margin-top: 14px; padding: 12px 16px; background: #f4f4f6; border-radius: 6px; }
.c-toc__label { font-size: 13px; font-weight: 700; color: var(--red); margin-bottom: 4px; }
.c-toc ol { padding-left: 1.4em; font-size: 14px; }
.c-toc a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line); }
.c-toc a:hover { color: var(--red); }

/* ---------- 強調 ---------- */
.c-highlight { color: var(--red); font-weight: 700; background: linear-gradient(transparent 60%, var(--yellow) 0); }
.c-underline { background: linear-gradient(transparent 60%, var(--yellow) 0); }
.c-note { font-size: 12px; color: var(--gray-text); margin-top: 6px; }
.c-quote { margin-top: 12px; padding: 12px 14px; border-left: 4px solid var(--line); background: #f4f4f6; font-size: 14px; }
.c-quote cite { display: block; margin-top: 6px; font-size: 11px; color: var(--gray-text); font-style: normal; }

/* ---------- 比較表（白い器・横スクロール・1列目固定） ---------- */
.p-comparison { margin-top: 14px; padding: 12px 10px; background: #fff; border-radius: 8px; }
.p-comparison__scroll { overflow-x: auto; border: 1px solid var(--red); border-top: none; scrollbar-color: var(--red) transparent; scrollbar-width: thin; }
.p-comparison__scroll::-webkit-scrollbar { height: 5px; }
.p-comparison__scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.p-comparison__table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 12px; }
.p-comparison__table th { padding: 6px 4px 0; background: #fff; }
.p-comparison__table th span { display: flex; align-items: center; justify-content: center; height: 20px; margin-inline: 3px; background: var(--red); border-radius: 3px 3px 0 0; color: #fff; font-size: 11px; font-weight: 700; white-space: nowrap; }
.p-comparison__table td { padding: 12px 8px; text-align: center; border-top: 1px solid var(--red); font-weight: 700; vertical-align: middle; }
.p-comparison__table th:first-child, .p-comparison__table td:first-child { position: sticky; left: 0; background: #fff; min-width: 108px; z-index: 1; box-shadow: 1px 0 0 var(--line); }
.p-comparison__table tr.is-focus td { background: #fff3f4; }
.p-comparison__table tr.is-focus td:first-child { background: #fff3f4; color: var(--red); }
.p-comparison__badge { display: inline-block; margin-bottom: 2px; padding: 1px 8px; border-radius: 100vh; background: var(--yellow); color: var(--fg); font-size: 10px; }
.p-comparison__src { font-size: 11px; color: var(--gray-text); margin-top: 8px; }

/* ---------- カード（項目紹介・写真つき） ---------- */
.p-cards { margin-top: 14px; display: grid; gap: 14px; }
.p-card { background: #fff; border-radius: 6px; padding: 18px 13px 14px; }
.p-card__head { display: flex; align-items: center; gap: 10px; }
.p-card__num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(to bottom, #ffd86b, #d4a017); color: #5a3d00; font-size: 15px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,.25); }
.p-card__title { display: inline-block; border-bottom: 1px solid var(--red); color: var(--red); font-size: 18px; font-weight: 700; line-height: 1.25; text-decoration: none; }
.p-card__title:hover { opacity: .7; }
.p-card__text { margin-top: 14px; font-size: 14px; line-height: 1.7; }
.p-card__img { display: block; margin-top: 12px; border-radius: 4px; overflow: hidden; aspect-ratio: 16 / 9; }
.p-card__img img { width: 100%; height: 100%; object-fit: cover; }
.p-card__meta { margin-top: 10px; padding: 12px; background: var(--red-10); border-radius: 4px; }
.p-card__item + .p-card__item { margin-top: 12px; }
.p-card__item-title { padding: 3px 12px 3px 34px; position: relative; background: var(--red-20); border-radius: 100vh; font-size: 13px; font-weight: 700; }
.p-card__item-title::before { content: ""; position: absolute; left: 6px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--red); opacity: .85; }
.p-card__item-text { margin-top: 5px; font-size: 14px; font-weight: 700; line-height: 1.4; }
.p-card__button { margin-top: 14px; }

/* ---------- 良い点・悪い点 ---------- */
.p-feature { margin-top: 18px; border: 6px solid var(--red); padding: 0 14px 14px; background: #fff; }
.p-feature__title { display: flex; align-items: center; justify-content: center; width: 150px; height: 30px; margin-inline: auto; border-radius: 0 0 10px 10px; color: #fff; font-weight: 700; }
.p-feature__title--good { background: var(--red); }
.p-feature__title--bad { background: var(--gray); }
.p-feature__list { margin-top: 12px; list-style: none; padding: 0; }
.p-feature__list li { position: relative; padding-left: 30px; font-size: 14px; font-weight: 700; }
.p-feature__list li + li { margin-top: 10px; padding-top: 10px; border-top: 1px dashed #ccc; }
.p-feature__list--good li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--red); color: #fff; font-size: 13px; line-height: 22px; text-align: center; }
.p-feature__list--good li + li::before { top: 10px; }
.p-feature__bad { margin-top: 14px; padding: 0 12px 12px; background: var(--gray-light); border-radius: 6px; }
.p-feature__list--bad li { padding-left: 16px; }
.p-feature__list--bad li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--fg); }
.p-feature__list--bad li + li::before { top: 20px; }

/* ---------- 一次体験（写真つき） ---------- */
.p-experience { margin-top: 14px; padding: 14px; border-radius: 8px; background: #fff8e1; border: 1px solid #f0d67a; }
.p-experience__label { font-size: 12px; font-weight: 700; color: #8a6d00; }
.p-experience p { margin-top: 6px; font-size: 14px; }
.p-experience__photos { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.p-experience__photos figure { border-radius: 4px; overflow: hidden; background: #ddd; }
.p-experience__photos img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.p-experience__photos figcaption { padding: 4px 6px; font-size: 11px; color: var(--gray); background: #fff; }

/* ---------- 声（引用スライド風） ---------- */
.p-voice { margin-top: 12px; display: grid; grid-auto-flow: column; grid-auto-columns: 82%; gap: 10px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; }
.p-voice__item { scroll-snap-align: start; padding: 14px; border: 1px solid var(--red); background: var(--red-10); }
.p-voice__title { color: var(--red); font-size: 14px; font-weight: 700; text-align: center; }
.p-voice__text { margin-top: 10px; font-size: 12px; }
.p-voice__src { margin-top: 6px; font-size: 11px; color: var(--gray-text); }

/* ---------- Q&A ---------- */
.p-faq { margin-top: 4px; }
.p-faq details { border-bottom: 1px solid var(--line); }
.p-faq summary { list-style: none; cursor: pointer; padding: 12px 28px 12px 30px; position: relative; font-size: 14px; font-weight: 700; }
.p-faq summary::-webkit-details-marker { display: none; }
.p-faq summary::before { content: "Q"; position: absolute; left: 4px; top: 12px; color: var(--red); font-weight: 700; }
.p-faq summary::after { content: ""; position: absolute; right: 10px; top: 16px; width: 8px; height: 8px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); transition: transform .2s; }
.p-faq details[open] summary::after { transform: rotate(225deg); top: 20px; }
.p-faq__a { position: relative; padding: 0 10px 14px 30px; font-size: 14px; }
.p-faq__a::before { content: "A"; position: absolute; left: 4px; top: 0; color: var(--gray); font-weight: 700; }

/* ---------- ボタン（緑の立体・矢印・光沢） ---------- */
.c-button { display: block; width: 100%; padding: 15px 40px 15px 18px; position: relative; overflow: hidden; background: var(--green); box-shadow: 0 5px 0 var(--green-dark); border-radius: 100vh; color: #fff; font-size: 16px; font-weight: 700; letter-spacing: .09em; text-align: center; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.c-button::before { content: ""; position: absolute; top: 50%; right: 18px; width: 11px; height: 11px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: translateY(-50%) rotate(45deg); }
.c-button::after { content: ""; position: absolute; top: 0; left: -150%; width: 40%; height: 100%; background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%); animation: shine 3s ease-in-out infinite; }
@keyframes shine { 0% { left: -60%; } 40%, 100% { left: 130%; } }
.c-button:hover { transform: translateY(5px); box-shadow: none; }
.c-button--red { background: var(--red); box-shadow: 0 5px 0 var(--red-dark); }
.c-button--white { background: #fff; color: var(--red); border: 2px solid var(--red); box-shadow: 0 5px 0 var(--red-20); }
.c-button--white::before { border-color: var(--red); }
.c-button__lead { display: block; text-align: center; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.c-button__lead::before { content: "＼ "; } .c-button__lead::after { content: " ／"; }

/* ---------- バナー（写真＋帯文字） ---------- */
.p-banner { display: block; margin-top: 14px; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 8; text-decoration: none; }
.p-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8); }
.p-banner__text { position: absolute; left: 12px; bottom: 12px; right: 12px; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.7); }
.p-banner__text b { display: inline-block; padding: 2px 10px; background: rgba(0,0,0,.55); font-size: 15px; }
.p-banner__text small { display: block; margin-top: 4px; font-size: 12px; font-weight: 700; }

/* ---------- 内部リンク（関連ページ） ---------- */
.p-related { margin-top: 12px; display: grid; gap: 8px; list-style: none; padding: 0; }
.p-related a { display: block; padding: 10px 30px 10px 12px; position: relative; border: 1px solid var(--line); border-radius: 6px; color: var(--fg); font-size: 14px; font-weight: 700; text-decoration: none; }
.p-related a::after { content: ""; position: absolute; right: 12px; top: 50%; width: 8px; height: 8px; border-top: 2px solid var(--red); border-right: 2px solid var(--red); transform: translateY(-50%) rotate(45deg); }
.p-related a:hover { border-color: var(--red); }

/* ---------- 階段（無料メルマガ → 20周年パーティー → 川島塾） ---------- */
.p-stairs { margin-top: 14px; padding: 18px 14px; background: #fff; border-radius: 8px; }
.p-stairs__title { text-align: center; font-size: 16px; font-weight: 700; }
.p-stairs__step + .p-stairs__step { margin-top: 16px; }
.p-stairs__step-label { display: inline-block; padding: 1px 10px; background: var(--red); color: #fff; border-radius: 100vh; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.p-stairs__step p { font-size: 13px; margin-bottom: 8px; }

/* ---------- フッター ---------- */
.p-footer { margin-top: 26px; padding: 22px 14px 10px; text-align: center; }
.p-footer__list { display: flex; justify-content: center; gap: 16px; list-style: none; padding: 0; }
.p-footer__list a { color: rgba(255,255,255,.75); font-size: 11px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); }
.p-footer__list a:hover { color: #fff; }
.p-footer__copy { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,.6); }

/* ---------- 画面下 固定ナビ（アイコン＋文字・濃紺グラデ） ---------- */
.p-fixed-nav { position: fixed; left: 0; right: 0; bottom: 0; max-width: var(--w); margin-inline: auto; z-index: 100; }
.p-fixed-nav__list { display: flex; height: 62px; list-style: none; padding: 0; background: linear-gradient(to right, #23184f, #3b1a4e 50%, #5a1030); box-shadow: 0 -2px 10px rgba(0,0,0,.4); }
.p-fixed-nav__list li { width: 25%; }
.p-fixed-nav__list li + li { border-left: 1px solid rgba(255,255,255,.35); }
.p-fixed-nav__list a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; height: 100%; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-decoration: none; }
.p-fixed-nav__list svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.p-fixed-nav__list a:hover { background: rgba(0,0,0,.25); }

/* ---------- 印刷 ---------- */
@media print { .p-fixed-nav { display: none; } .l-wrapper { padding-bottom: 0; background: #fff; } }

blockquote.c-quote { margin-inline: 0; }

/* ---------- 主役の先出し帯（ヘッダー直下・参考サイトの「人気No1」帯） ---------- */
.p-lead-band { background: #fff; border-top: 1px solid var(--gray-light); padding: 10px 14px 12px; }
.p-lead-band__label { text-align: center; font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: .08em; }
.p-lead-band__inner { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.p-lead-band__img { flex-shrink: 0; width: 84px; margin: 0; }
.p-lead-band__img img { width: 84px; height: 64px; object-fit: cover; border-radius: 8px; }
.p-lead-band__img figcaption { font-size: 9px; color: var(--gray-text); text-align: center; line-height: 1.4; margin-top: 2px; }
.p-lead-band__body { flex: 1; min-width: 0; }
.p-lead-band__name { font-size: 17px; font-weight: 900; color: var(--fg); line-height: 1.2; }
.p-lead-band__text { margin-top: 3px; font-size: 12px; font-weight: 700; color: var(--gray); line-height: 1.5; }
.p-lead-band__btn { margin-top: 10px; }
.p-lead-band__btn .c-button { padding-block: 11px; font-size: 14px; }

/* ---------- 要約の数字3カード（参考サイトの TOP3 相当） ---------- */
.c-summary__stats { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.c-summary__stat { padding: 8px 6px 10px; background: var(--red-10); border-radius: 6px; text-align: center; }
.c-summary__stat-label { font-size: 11px; font-weight: 700; color: var(--red); }
.c-summary__stat-value { margin-top: 2px; font-size: 15px; font-weight: 900; line-height: 1.25; letter-spacing: -.01em; }
.c-summary__stat-value small { display: block; font-size: 11px; font-weight: 700; }
.c-summary__stat-note { margin-top: 3px; font-size: 10px; color: var(--gray-text); line-height: 1.3; }

/* ---------- 写真枠の共通（figure＋出典キャプション・差し替え用） ---------- */
figure.p-card__img { margin: 12px 0 0; aspect-ratio: auto; }
figure.p-card__img a, figure.p-card__img > img { display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 4px; }
figure.p-card__img a img { width: 100%; height: 100%; object-fit: cover; }
figure.p-card__img figcaption { margin-top: 4px; font-size: 11px; color: var(--gray); }
.p-mv__grid figure { margin: 0; position: relative; }
.p-mv__grid figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) brightness(.85); }
.p-mv__grid figcaption { position: absolute; left: 4px; top: 4px; padding: 1px 6px; background: rgba(0,0,0,.45); color: #fff; font-size: 9px; border-radius: 3px; z-index: 1; }
.p-banner figure { margin: 0; height: 100%; }
.p-banner__cap { position: absolute; left: 12px; top: 10px; padding: 1px 6px; background: rgba(0,0,0,.45); color: #fff; font-size: 10px; border-radius: 3px; }

/* ---------- カード群の見出し（タブの代替・目的別の入口） ---------- */
.p-cards__group { margin: 8px 0 -4px; padding-left: 12px; border-left: 4px solid var(--yellow); color: #fff; font-size: 15px; font-weight: 700; line-height: 1.4; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.p-cards__group + .p-card { margin-top: 0; }

/* ---------- 主役カード（川島塾だけ §3 の型に膨らませる） ---------- */
.p-card--main { border: 3px solid var(--red); }
.p-card__lead { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.p-card__section { margin-top: 14px; padding-bottom: 4px; border-bottom: 2px solid var(--red); font-size: 15px; font-weight: 700; }
.p-card__facts { margin-top: 8px; list-style: none; padding: 0; }
.p-card__facts li { position: relative; padding-left: 20px; font-size: 14px; font-weight: 700; line-height: 1.5; }
.p-card__facts li + li { margin-top: 8px; }
.p-card__facts li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.p-card__facts a { font-size: 11px; font-weight: 500; margin-left: 4px; white-space: nowrap; }
.p-card .p-feature { margin-top: 12px; border-width: 4px; }
.p-card .p-voice__text { font-size: 13px; }
.p-card__links { margin-top: 10px; font-size: 13px; }
.p-experience__button { margin-top: 14px; }

/* ---------- 比較表の主軸列（主宰者・会員と直接会えるか＝2列目を強調） ---------- */
.p-comparison__table th.p-comparison__key span { background: var(--navy); }
.p-comparison__table td.p-comparison__key { min-width: 150px; background: #f4f2fb; color: var(--navy); }
.p-comparison__table tr.is-focus td.p-comparison__key { background: #ffe9ec; color: var(--red); }
