/*
Theme Name: Cocoon Child
Template: cocoon-master
Version: 9.2.0
Last updated: 2026-07-28
Description: シニアの暮らし案内所 kurashi-annai.jp 専用スタイルシート

【v9.2.0 の変更点】
  ・Section 15 新設：TOP「探し方診断」導線カード（ka-topshindan）。ka-toptool同型。

【v9.1.0 の変更点】
  ・v9.0.0以降に末尾追記されていた旧Section 25/27/28/29（v8.x）を
    Section 11〜14 として本体構成に統合（宣言値・カスケード順は不変更）
  ・CV専用トークン（--cv-green系）を Section 1 の :root に集約
  ・8-4 新設：表の横はみ出しでページ全体が横パンする問題の修正
    （__scrollラッパー無し構造の救済＋モバイルの横パン禁止）

【構成】
  1.  基盤（フォント／CSS変数／ベース）
  2.  サイト共通（ヘッダー／ナビ／フッター／フッターリンク）
  3.  トップページ（kh-* ／ ka-mothership ／ 回遊4点 ／ kh-top拡大）
  4.  記事ページ 本文ベース（entry-content ／ 本文リンク可読性）
  5.  記事共通コンポーネント（ka-author 〜 ka-uplink）
  6.  お金・制度記事 専用（ka-keylist 〜 ka-disclaimer）
  7.  体験談記事 専用（ka-taiken-note ／ ka-voice ／ ka-comment）
  8.  図解タップ拡大 ＆ テーブルレスポンシブ
  9.  シミュレーターv2（ka-sim2-*）
  10. 仕事ラボ カテゴリトップ（ka-work-* ／ ka-work-more）
  11. CVグリーン（収益CV専用部品：btn-cv／ka-cta-v2／ka-cta-choice／
      ka-quiz-entry／ka-sticky-cv）※記事装飾には使わない
  12. TOPページ 履歴書ツール導線カード（ka-toptool 系）
  13. TOPページ 実体験ラボ導線カード（ka-toptaiken 系）
  14. 実体験ラボ 体験談募集ブロック（ka-taiken-recruit 系）
  15. TOPページ 探し方診断 導線カード（ka-topshindan 系）

【デザイントークン（変更禁止）】
  ネイビー #1a2b4a ／ ゴールド #c8a05a ／ クリーム白 #faf9f6 ／ ボーダー #e5e0d5
  CVグリーン #00875a（収益CV部品専用。記事装飾に使用禁止）
*/

/* ============================================
   1. 基盤（フォント／CSS変数／ベース）
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Noto+Serif+JP:wght@300;400;700&display=swap');

:root {
  --navy: #1a2b4a;
  --navy-sub: #34486a;
  --navy-dark: #0f1a2e;
  --gold: #c8a05a;
  --gold-light: #d6b77a;
  --gold-dark: #a8803a;
  --cream: #faf9f6;
  --cream-bd: #e5e0d5;
  --white: #ffffff;
  --text: #2a3a4a;
  --text-sub: #5a6a7a;
  --text-mute: #7a8899;
  --border: #e8ebf0;
  --lab-work: #1a2b4a;
  --lab-money: #2874a6;   /* ka-table .good 等が参照。ラボ廃止後も変数は保持 */
  --lab-academy: #196f3d; /* ka-table .good が参照 */
  --lab-love: #b9511e;    /* ka-ng / ka-table .bad が参照 */
  --stance: #fff8e1;
  --stance-text: #5d4037;
  --teal: #2c5f5d;
  --teal-dark: #1a3838;
  --beige: #d6c9b5;
  --paper: #faf9f6;
  --paper-warm: #faf3e0;
  --gray-soft: #5f5e5a;
  --green-soft: #e8f0ed;

  /* CV専用トークン（Section 11 CVグリーン系が参照） */
  /* CV専用トークン（新設） */
  --cv-green:#00875a;
  --cv-green-deep:#006c47;
  --cv-green-bright:#06c755;
  --cv-green-tint:#e9f7f0;
  --cv-green-shadow:#005a3b;

}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}
a { color: var(--navy); text-decoration: none; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; }

@media (max-width: 767px) {
  body { font-size: 16px; }
}

/* ============================================
   2. サイト共通（ヘッダー／ナビ／フッター／フッターリンク）
   ============================================ */
#header-container {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
  display: block !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 100 !important;
}
#header {
  background: var(--white) !important;
  padding: 24px 0 !important;
  display: block !important;
  visibility: visible !important;
}
.tagline {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 10px !important;
  color: var(--gold) !important;
  letter-spacing: 0.3em !important;
  text-align: center !important;
  margin-bottom: 8px !important;
  display: block !important;
  visibility: visible !important;
}
.site-name-text {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  letter-spacing: 0.05em !important;
  display: inline-block !important;
  visibility: visible !important;
}
.logo-header {
  text-align: center !important;
  display: block !important;
  visibility: visible !important;
}
#navi {
  background: var(--white) !important;
  border-top: 1px solid var(--border) !important;
}
#navi .navi-in { background: var(--white) !important; }
#navi .navi-in > ul > li > a {
  color: var(--text) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  padding: 14px 20px !important;
  background: var(--white) !important;
}
#navi .navi-in > ul > li > a:hover {
  color: var(--gold-dark) !important;
  background: var(--cream) !important;
}

#footer {
  background: var(--navy-dark) !important;
  color: rgba(255, 255, 255, 0.65) !important;
  padding: 40px 20px !important;
}
#footer a { color: rgba(255, 255, 255, 0.75) !important; }
#footer a:hover { color: var(--gold) !important; }
#footer .site-name-text { color: var(--white) !important; font-size: 16px !important; }
.source-org.copyright {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 12px !important;
}

/* --- 2-1. フッターリンク帯 --- */
.kh-footer-links {
  background: var(--navy);
  border-top: 1px solid rgba(200, 160, 90, 0.3);
  padding: 28px 24px;
  text-align: center;
}
.kh-footer-links__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.kh-footer-links a {
  color: rgba(250, 249, 246, 0.55) !important;
  font-size: 12px;
  text-decoration: none !important;
  letter-spacing: 0.08em;
  font-family: 'Noto Serif JP', serif;
  transition: color 0.2s;
}
.kh-footer-links a:hover { color: var(--gold) !important; }
.kh-footer-links span { color: rgba(200, 160, 90, 0.4); font-size: 10px; }

@media (max-width: 767px) {
  .site-name-text { font-size: 16px !important; }
}
@media (max-width: 600px) {
  .kh-footer-links__inner { flex-direction: column; gap: 14px; }
  .kh-footer-links span { display: none; }
  .kh-footer-links a { font-size: 13px; padding: 4px 0; }
}

/* ============================================
   3. トップページ
   固定ページ「ホーム」(page-id-24)。ラッパー .kh-top 配下で
   シニア向け拡大スタイル（3-9）が有効になる。
   ============================================ */

/* --- 3-1. Cocoon標準要素の非表示・全幅化 --- */
.page-id-24 .entry-title,
.page-id-24 .article-title,
.page-id-24 .date-tags,
.page-id-24 .post-date,
.page-id-24 .post-update,
.page-id-24 .author-info,
.page-id-24 .sns-share,
.page-id-24 .sns-follow,
.page-id-24 .breadcrumb,
.page-id-24 #breadcrumb,
.page-id-24 .comment-area,
.page-id-24 .pager-post-navi,
.page-id-24 .related-entries {
  display: none !important;
}
.page-id-24 #main,
.page-id-24 #content,
.page-id-24 #content-in {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}
.page-id-24 .entry-content,
.page-id-24 .article,
.page-id-24 .post {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.page-id-24 #sidebar { display: none !important; }

/* --- 3-2. ヒーロー --- */
.kh-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: var(--navy);
}
.kh-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 1;
}
.kh-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    rgba(15, 26, 46, 0.65) 0%,
    rgba(15, 26, 46, 0.35) 50%,
    rgba(15, 26, 46, 0.1) 100%);
  z-index: 2;
}
.kh-hero__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.kh-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.kh-hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}
.kh-hero__eyebrow-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  white-space: nowrap;
}
.kh-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  max-width: 580px;
}
.kh-hero__title em { font-style: normal; color: var(--gold-light); }
.kh-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  margin: 0 0 36px;
  max-width: 500px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.kh-hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.kh-btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  text-decoration: none;
  min-width: 220px;
  text-align: center;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.kh-btn-primary:hover { background: var(--gold-dark); color: var(--white); opacity: 1; }
.kh-btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 32px;
  text-decoration: none;
  min-width: 220px;
  text-align: center;
  transition: all 0.2s;
}
.kh-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
  opacity: 1;
}

/* --- 3-3. 母艦記事バナー（ka-mothership）---
   ヒーロー直下。母艦記事「定年後の仕事ガイド」への主役級導線。
   カード全体タップ可・高コントラスト。記事内の ka-uplink とは別用途。 */
.ka-mothership {
  display: block;
  position: relative;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  border-top: 4px solid var(--gold);
  padding: 44px 56px 40px;
  overflow: hidden;
  transition: background 0.25s ease;
}
.ka-mothership:hover {
  background: var(--navy-sub);
  color: var(--cream);
  opacity: 1;
  text-decoration: none;
}
.ka-mothership__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ka-mothership__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}
.ka-mothership__eyebrow-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.ka-mothership__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 14px;
  max-width: 760px;
}
.ka-mothership__title em {
  font-style: normal;
  color: var(--gold-light);
}
.ka-mothership__desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(250, 249, 246, 0.82);
  margin: 0 0 28px;
  max-width: 640px;
}
.ka-mothership__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ka-mothership:hover .ka-mothership__cta {
  background: var(--gold-light);
  color: var(--navy);
}
.ka-mothership__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}
.ka-mothership:hover .ka-mothership__cta::after {
  transform: translateX(4px);
}
.ka-mothership__bg-arrow {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  line-height: 1;
  color: rgba(200, 160, 90, 0.10);
  pointer-events: none;
  user-select: none;
}

/* --- 3-4. 回遊導線4点セット（検索／ジャンプナビ／完全ガイド／悩み別） --- */
.ka-top-search {
  padding: 20px 16px;
  background: var(--navy);
  text-align: center;
  border-top: 1px solid rgba(200, 160, 90, 0.25);
}
.ka-top-search__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.ka-top-search__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.ka-top-search__input {
  flex: 1;
  padding: 12px 14px;
  font-size: 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-family: inherit;
  color: var(--text);
  background: #ffffff;
}
.ka-top-search__submit {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.ka-top-search__submit:hover { background: var(--gold-dark); }

.ka-jump-nav {
  padding: 36px 16px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--cream-bd);
}
.ka-jump-nav__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ka-jump-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.ka-jump-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px;
  background: var(--white);
  border: 1px solid var(--cream-bd);
  border-top: 3px solid var(--navy);
  text-decoration: none;
  color: var(--text);
  transition: border-top-color 0.2s, box-shadow 0.2s;
}
.ka-jump-nav__btn:hover {
  border-top-color: var(--gold);
  box-shadow: 0 4px 14px rgba(26, 43, 74, 0.1);
  opacity: 1;
  text-decoration: none;
  color: var(--text);
}
.ka-jump-nav__icon {
  font-size: 26px;
  margin-bottom: 8px;
  line-height: 1;
}
.ka-jump-nav__label-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.ka-jump-nav__sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.ka-top-guides {
  padding: 40px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ka-top-guides__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ka-top-guides__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.5;
}
.ka-top-guides__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
.ka-top-guides__item {
  display: block;
  padding: 16px 14px;
  background: var(--navy);
  color: var(--cream) !important;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  transition: background 0.2s;
}
.ka-top-guides__item:hover {
  background: var(--navy-sub);
  color: var(--cream) !important;
  opacity: 1;
  text-decoration: none;
}
.ka-top-guides__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  font-weight: 400;
}

.ka-trouble-nav {
  padding: 40px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-bd);
}
.ka-trouble-nav__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ka-trouble-nav__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.5;
}
.ka-trouble-nav__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.ka-trouble-nav__card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
}
.ka-trouble-nav__q {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.6;
}
.ka-trouble-nav__link {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.ka-trouble-nav__link:hover {
  color: var(--navy);
  text-decoration: underline;
  opacity: 1;
}

/* --- 3-5. ミッション --- */
.kh-mission {
  background: var(--cream);
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid var(--cream-bd);
  border-bottom: 1px solid var(--cream-bd);
}
.kh-section-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.35em;
  margin-bottom: 18px;
  display: block;
}
.kh-mission__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 20px;
}
.kh-mission__title em { font-style: normal; color: var(--gold-dark); }
.kh-mission__desc { font-size: 15px; color: var(--text-sub); line-height: 2.1; margin: 0; }
.kh-mission__divider { width: 1px; height: 40px; background: var(--gold); margin: 30px auto; opacity: 0.5; }
.kh-mission__stats { display: flex; justify-content: center; gap: 60px; margin-top: 32px; flex-wrap: wrap; }
.kh-stat { text-align: center; }
.kh-stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
.kh-stat__label { font-size: 12px; color: var(--text-mute); letter-spacing: 0.1em; }
.kh-stat__unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.45em;
  font-weight: 700;
  margin-left: 2px;
  color: var(--navy);
}
.kh-stat__label--ja {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text-sub) !important;
  letter-spacing: 0.05em !important;
}
.kh-nobr { display: inline-block; } /* 泣き別れ防止 */

/* --- 3-6. ラボセクション ---
   ※ --money/--academy/--love のmodifierは旧4ラボ時代の名残。
     現行トップHTMLでの不使用が確定したら削除可（css_map参照）。 */
.kh-labs { background: var(--white); padding: 80px 0 60px; }
.kh-labs__head { text-align: center; padding: 0 40px 40px; }
.kh-labs__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.kh-labs__line { width: 40px; height: 1px; background: var(--gold); margin: 0 auto; }
.kh-lab-featured {
  display: block;
  background: var(--navy);
  color: var(--white);
  padding: 40px 48px;
  text-decoration: none;
  position: relative;
  border-left: 5px solid var(--gold);
  max-width: 1100px;
  margin: 0 auto 8px;
  transition: background 0.2s;
}
.kh-lab-featured:hover { background: var(--navy-sub); color: var(--white); opacity: 1; }
.kh-lab-featured__tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  display: block;
}
.kh-lab-featured__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.kh-lab-featured__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  display: block;
}
.kh-lab-featured__arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 32px;
  font-family: 'Cormorant Garamond', serif;
}
.kh-lab-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.kh-lab-card {
  display: block;
  background: var(--cream);
  padding: 28px 24px;
  text-decoration: none;
  border-top: 4px solid var(--border);
  transition: background 0.2s;
}
.kh-lab-card:hover { background: var(--white); opacity: 1; }
.kh-lab-card--money { border-top-color: var(--lab-money); }     /* 削除候補 */
.kh-lab-card--academy { border-top-color: var(--lab-academy); } /* 削除候補 */
.kh-lab-card--love { border-top-color: var(--lab-love); }       /* 削除候補 */
.kh-lab-card--new { border-top-color: var(--gold); }
.kh-lab-card__name {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.kh-lab-card__desc { display: block; font-size: 13px; color: var(--text-mute); line-height: 1.7; }

/* --- 3-7. 新着記事 --- */
.kh-articles {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.kh-articles__inner { max-width: 900px; margin: 0 auto; }
.kh-articles__head { text-align: center; margin-bottom: 40px; }
.kh-articles__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.kh-articles__line { width: 40px; height: 1px; background: var(--gold); margin: 0 auto; }
.kh-article-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  align-items: flex-start;
  transition: background 0.2s;
}
.kh-article-item:hover {
  background: var(--cream);
  opacity: 1;
  padding-left: 12px;
  padding-right: 12px;
}
.kh-article-item:last-child { border-bottom: none; }
.kh-article-item__thumb {
  width: 120px;
  height: 90px;
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}
.kh-article-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.kh-article-item__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.kh-article-item__body { flex: 1; min-width: 0; }
.kh-article-item__cat {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--lab-work);
  border: 1px solid var(--lab-work);
  padding: 3px 10px;
  margin-bottom: 8px;
  background: var(--white);
}
.kh-article-item__cat--money { color: var(--lab-money); border-color: var(--lab-money); }       /* 削除候補 */
.kh-article-item__cat--academy { color: var(--lab-academy); border-color: var(--lab-academy); } /* 削除候補 */
.kh-article-item__cat--love { color: var(--lab-love); border-color: var(--lab-love); }          /* 削除候補 */
.kh-article-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 6px;
  display: block;
}
.kh-article-item__date {
  font-size: 12px;
  color: var(--text-mute);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
  display: block;
}

/* --- 3-8. 編集長 --- */
.kh-editor { background: var(--navy); padding: 80px 40px; color: var(--white); }
.kh-editor__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.kh-editor__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  display: block;
}
.kh-editor__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}
.kh-editor__role { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin: 0 0 28px; }
.kh-editor__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 2.1;
  margin: 0 0 32px;
  text-align: left;
}
.kh-editor__link {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 14px 36px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s;
}
.kh-editor__link:hover { background: var(--gold); color: var(--navy); opacity: 1; }

/* --- 3-9. kh-top配下 シニア向け拡大（PC・768px以上） --- */
@media (min-width: 768px) {
  .kh-top .kh-hero { height: 680px; }
  .kh-top .kh-hero__title { font-size: 60px !important; max-width: 980px; line-height: 1.4; }
  .kh-top .kh-hero__sub { font-size: 22px !important; max-width: 660px; }
  .kh-top .kh-btn-primary,
  .kh-top .kh-btn-secondary { font-size: 19px !important; padding: 20px 44px !important; }

  .kh-top .ka-mothership { padding: 56px 64px 52px; }
  .kh-top .ka-mothership__title { font-size: 36px !important; max-width: 920px; }
  .kh-top .ka-mothership__desc { font-size: 19px !important; max-width: 780px; }
  .kh-top .ka-mothership__cta { font-size: 19px !important; padding: 18px 42px !important; }

  .kh-top .ka-top-search__input { font-size: 19px !important; padding: 16px 18px !important; }
  .kh-top .ka-top-search__submit { font-size: 17px !important; padding: 16px 26px !important; }

  .kh-top .kh-mission__title { font-size: 40px !important; }
  .kh-top .kh-mission__desc { font-size: 20px !important; max-width: 820px; margin-left: auto; margin-right: auto; }
  .kh-top .kh-stat__number { font-size: 60px !important; }

  .kh-top .kh-labs__title,
  .kh-top .kh-articles__title { font-size: 34px !important; }
  .kh-top .kh-lab-featured { padding: 52px 60px; }
  .kh-top .kh-lab-featured__title { font-size: 34px !important; }
  .kh-top .kh-lab-featured__desc { font-size: 19px !important; }
  .kh-top .kh-article-item__title { font-size: 21px !important; }
  .kh-top .kh-article-item__thumb { width: 150px; height: 112px; }

  .kh-top .ka-jump-nav__label-text { font-size: 19px !important; }
  .kh-top .ka-jump-nav__sub { font-size: 14px !important; }
  .kh-top .ka-jump-nav__icon { font-size: 38px !important; }
  .kh-top .ka-jump-nav__btn { padding: 24px 14px; }
  .kh-top .ka-top-guides__title,
  .kh-top .ka-trouble-nav__title { font-size: 28px !important; }
  .kh-top .ka-top-guides__item { font-size: 19px !important; padding: 24px 18px !important; }
  .kh-top .ka-trouble-nav__q { font-size: 20px !important; }
  .kh-top .ka-trouble-nav__link { font-size: 16px !important; }

  .kh-top .kh-section-en,
  .kh-top .ka-jump-nav__label,
  .kh-top .ka-top-guides__label,
  .kh-top .ka-trouble-nav__label { font-size: 13px !important; }

  .ka-jump-nav__grid { grid-template-columns: repeat(4, 1fr); }
  .ka-top-guides__grid { grid-template-columns: repeat(4, 1fr); }
  .ka-trouble-nav__grid { flex-direction: row; }
  .ka-trouble-nav__card { flex: 1; }
}

/* --- 3-10. トップページ スマホ対応（767px以下） --- */
@media (max-width: 767px) {
  .kh-hero { height: auto; min-height: auto; }
  .kh-hero__image { position: relative; height: 280px; object-position: center center; }
  .kh-hero__overlay { background: linear-gradient(180deg, rgba(15, 26, 46, 0.2) 0%, rgba(15, 26, 46, 0.5) 100%); }
  .kh-hero__content {
    position: relative;
    background: var(--navy);
    padding: 40px 24px;
    align-items: center;
    text-align: center;
    height: auto;
  }
  .kh-hero__eyebrow { justify-content: center; }
  .kh-hero__title { font-size: 26px; max-width: 100%; }
  .kh-hero__sub { font-size: 14px; max-width: 100%; }
  .kh-hero__buttons { flex-direction: column; width: 100%; }
  .kh-btn-primary, .kh-btn-secondary { width: 100%; min-width: 0; }

  .kh-mission { padding: 50px 22px; }
  .kh-mission__title { font-size: 20px; }
  .kh-mission__stats { gap: 30px; }
  .kh-stat__number { font-size: 28px; }

  .kh-labs { padding: 50px 0 40px; }
  .kh-lab-featured { padding: 30px 24px; }
  .kh-lab-featured__title { font-size: 20px; }
  .kh-lab-featured__arrow { right: 18px; font-size: 24px; }
  .kh-lab-grid { gap: 4px; }
  .kh-lab-card { padding: 20px 18px; }
  .kh-lab-card__name { font-size: 15px; }

  .kh-articles { padding: 50px 22px; }
  .kh-article-item { gap: 14px; padding: 18px 0; }
  .kh-article-item__thumb { width: 88px; height: 66px; }
  .kh-article-item__title { font-size: 14px; }

  .kh-editor { padding: 50px 22px; }
  .kh-editor__name { font-size: 22px; }
  .kh-editor__desc { font-size: 14px; }

  .ka-top-search { padding: 16px 14px; }
  .ka-top-search__input { font-size: 16px; } /* iOS zoom防止（16px以上必須） */
  .ka-top-search__submit { padding: 12px 14px; font-size: 13px; }

  .ka-jump-nav { padding: 28px 14px; }
  .ka-jump-nav__grid { gap: 8px; max-width: 100%; }
  .ka-jump-nav__btn { padding: 14px 8px; }
  .ka-jump-nav__icon { font-size: 22px; }
  .ka-jump-nav__label-text { font-size: 13px; }
  .ka-jump-nav__sub { font-size: 10px; }

  .ka-top-guides { padding: 32px 14px; }
  .ka-top-guides__title { font-size: 16px; }
  .ka-top-guides__grid { gap: 8px; }
  .ka-top-guides__item { font-size: 13px; padding: 14px 10px; }

  .ka-trouble-nav { padding: 32px 14px; }
  .ka-trouble-nav__title { font-size: 16px; }
  .ka-trouble-nav__q { font-size: 14px; }
  .ka-trouble-nav__card { padding: 14px 16px; }

  .kh-top .kh-hero__title { font-size: 30px !important; }
  .kh-top .kh-hero__title em { display: inline-block; }
  .kh-top .kh-hero__sub { font-size: 16px !important; }
  .kh-top .kh-hero__br-pc { display: none; }
  .kh-top .ka-mothership__title { font-size: 22px !important; }
  .kh-top .ka-mothership__desc { font-size: 15px !important; }
  .kh-top .kh-mission__title { font-size: 24px !important; }
  .kh-top .kh-mission__desc { font-size: 16px !important; }
  .kh-top .kh-stat__number { font-size: 40px !important; }
  .kh-top .kh-lab-featured__title { font-size: 23px !important; }
  .kh-top .kh-article-item__title { font-size: 16px !important; }
  .kh-top .ka-jump-nav__label-text { font-size: 15px !important; }
  .kh-top .ka-top-guides__item { font-size: 15px !important; }
  .kh-top .ka-trouble-nav__q { font-size: 16px !important; }

  .ka-mothership {
    padding: 32px 22px 28px;
    border-top-width: 3px;
  }
  .ka-mothership__title {
    font-size: 20px;
    line-height: 1.55;
  }
  .ka-mothership__desc {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .ka-mothership__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 24px;
  }
  .ka-mothership__bg-arrow {
    font-size: 110px;
    right: -14px;
    bottom: -22px;
  }
}

/* ============================================
   4. 記事ページ 本文ベース
   ============================================ */
.entry-content { font-size: 18px; line-height: 1.9; }
.entry-content p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
}
.entry-content strong { color: var(--gold-dark); font-weight: 700; }
.entry-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  border-left: 5px solid var(--gold);
  background: var(--cream);
  padding: 14px 20px;
  margin: 48px 0 24px;
  line-height: 1.5;
  border-radius: 0 6px 6px 0;
}
.entry-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--cream-bd);
  padding-bottom: 10px;
  margin: 40px 0 18px;
  line-height: 1.5;
}
.entry-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}

/* --- 4-1. 本文リンクの可読性 ---
   グローバル a{text-decoration:none} ＋ navy≒本文色 対策。
   本文段落・テキスト系コンポーネント内のみ navy＋ゴールド下線で明示。
   ka-flow / ka-source / ka-work-* / ボタン・カード類には非干渉。 */
.entry-content > p a,
.entry-content > ul > li a,
.entry-content > ol > li a,
.ka-lead a,
.ka-point p a,
.ka-stance-notice p a,
.ka-acc p a,
.ka-voice p a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.entry-content > p a:hover,
.entry-content > ul > li a:hover,
.entry-content > ol > li a:hover,
.ka-lead a:hover,
.ka-point p a:hover,
.ka-stance-notice p a:hover,
.ka-acc p a:hover,
.ka-voice p a:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--gold-dark);
  opacity: 1;
}
/* 紺背景ボックス内はゴールドで明示 */
.ka-summary a,
.ka-author-ft a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.ka-summary a:hover,
.ka-author-ft a:hover {
  color: var(--white);
  text-decoration-color: var(--white);
  opacity: 1;
}

@media (max-width: 767px) {
  .entry-content h2 { font-size: 19px; padding: 12px 16px; }
  .entry-content h3 { font-size: 17px; }
  .entry-content > p a,
  .ka-lead a,
  .ka-acc p a { text-underline-offset: 2px; }
}

/* ============================================
   5. 記事共通コンポーネント（ka-*）
   ============================================ */

/* --- 5-1. 著者ボックス（記事冒頭） --- */
.ka-author {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 22px 26px;
  margin: 0 0 40px;
}
.ka-author .ka-author__title,
.ka-author p.ka-author__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 11px !important;
  color: var(--gold-dark) !important;
  letter-spacing: 0.2em !important;
  margin: 0 0 4px !important;
  opacity: 1 !important;
}
.ka-author .ka-author__name,
.ka-author p.ka-author__name {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 14px !important;
  opacity: 1 !important;
}
.ka-author ul { margin: 0; padding-left: 18px; }
.ka-author li { font-size: 15px; margin-bottom: 6px; color: var(--text); }

/* 1行bylineバリエーション（箇条書きの代替。数値ルールは
   採用=5年間で延べ500名以上／面談=延べ3,000名以上 を使用） */
.ka-author .ka-author__byline,
.ka-author p.ka-author__byline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.ka-author .ka-author__byline a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.ka-author .ka-author__byline a:hover {
  text-decoration: underline;
}
.ka-author:has(.ka-author__byline) .ka-author__name {
  margin-bottom: 8px !important;
}

/* --- 5-2. リード文 --- */
.ka-lead {
  background: var(--white);
  border: 1px solid var(--cream-bd);
  border-top: 3px solid var(--navy);
  padding: 22px 26px;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.ka-lead p { color: var(--text) !important; }

/* --- 5-3. チェックリスト --- */
.ka-check {
  background: var(--white);
  border: 1px solid var(--cream-bd);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 28px 0;
}
.ka-check .ka-check__title,
.ka-check p.ka-check__title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 14px !important;
  opacity: 1 !important;
}
.ka-check ul { margin: 0; padding: 0; list-style: none; }
.ka-check li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.ka-check li:last-child { border-bottom: none; }
.ka-check li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 13px;
}

/* --- 5-4. 例文ボックス --- */
.ka-example {
  background: #fffdf9;
  border: 1px solid rgba(200, 160, 90, 0.3);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  padding: 22px 26px;
  margin: 28px 0;
}
.ka-example .ka-example__label,
.ka-example p.ka-example__label {
  display: inline-block !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  padding: 4px 12px !important;
  margin: 0 0 14px !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}
.ka-example__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 3px;
}
.ka-example .ka-example__text,
.ka-example div.ka-example__text {
  background: var(--white) !important;
  border-left: 3px solid var(--gold);
  padding: 16px 20px !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
  margin: 14px 0 !important;
  color: var(--text) !important;
}
.ka-example .ka-example__comment,
.ka-example p.ka-example__comment {
  background: var(--cream) !important;
  border-left: 3px solid var(--gold-light);
  padding: 14px 18px !important;
  font-size: 15px !important;
  margin-top: 12px !important;
  line-height: 1.8 !important;
  color: var(--text) !important;
}
.ka-example .ka-example__comment-label,
.ka-example span.ka-example__comment-label {
  display: block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 11px !important;
  color: var(--gold-dark) !important;
  letter-spacing: 0.2em !important;
  margin: 0 0 6px !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

/* --- 5-5. NGボックス --- */
.ka-ng {
  background: #fff8f6;
  border: 1px solid rgba(185, 81, 30, 0.25);
  border-top: 3px solid var(--lab-love);
  border-radius: 0 0 8px 8px;
  padding: 18px 22px;
  margin: 18px 0;
}
.ka-ng .ka-ng__label,
.ka-ng p.ka-ng__label {
  display: inline-block !important;
  background: var(--lab-love) !important;
  color: var(--white) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  padding: 4px 12px !important;
  margin: 0 0 12px !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}
.ka-ng .ka-ng__title,
.ka-ng p.ka-ng__title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--lab-love) !important;
  margin: 0 0 8px !important;
  opacity: 1 !important;
}
.ka-ng .ka-ng__body,
.ka-ng p.ka-ng__body {
  font-size: 15px !important;
  margin: 0 !important;
  line-height: 1.85 !important;
  color: var(--text) !important;
}
.ka-ng ul { margin: 0; padding-left: 22px; }
.ka-ng li { font-size: 15px; margin-bottom: 6px; color: var(--text); line-height: 1.8; }

/* --- 5-6. ポイントボックス --- */
.ka-point {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}
.ka-point .ka-point__title,
.ka-point p.ka-point__title,
.ka-point .ka-point__label,
.ka-point p.ka-point__label {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 8px !important;
  opacity: 1 !important;
}
.ka-point p { color: var(--text); }

/* --- 5-7. まとめボックス（紺背景） --- */
.ka-summary {
  background: var(--navy);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 36px 0;
}
.ka-summary .ka-summary__title,
.ka-summary p.ka-summary__title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin: 0 0 18px !important;
  opacity: 1 !important;
  line-height: 1.6 !important;
}
.ka-summary ul { margin: 0; padding-left: 22px; }
.ka-summary li {
  font-size: 15px !important;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.85 !important;
}
.ka-summary p {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.95 !important;
  margin: 12px 0 0 !important;
}
.ka-summary p:first-child { margin-top: 0 !important; }
.ka-summary p strong { color: var(--gold-light) !important; font-weight: 700 !important; }

/* --- 5-8. CTAボックス --- */
.ka-cta {
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  border-top: 3px solid var(--navy);
  border-radius: 0 0 8px 8px;
  padding: 30px 28px;
  margin: 44px 0;
  text-align: center;
}
.ka-cta .ka-cta__title,
.ka-cta p.ka-cta__title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 10px !important;
  opacity: 1 !important;
}
.ka-cta .ka-cta__desc,
.ka-cta p.ka-cta__desc {
  font-size: 14px !important;
  color: var(--text-mute) !important;
  margin: 0 0 22px !important;
  line-height: 1.8 !important;
  opacity: 1 !important;
}
.ka-cta p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin: 0 0 12px;
  text-align: left;
}
.ka-cta p:last-child { margin-bottom: 0; }

/* --- 5-9. ボタン --- */
.btn-main {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 14px 34px;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
  transition: background 0.2s;
}
.btn-main:hover { background: var(--navy-sub); color: var(--white); opacity: 1; }
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--gold-dark); color: var(--white); opacity: 1; }

/* --- 5-10. 著者フッター（記事末・紺背景） --- */
.ka-author-ft {
  background: var(--navy);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 44px 0 0;
}
.ka-author-ft,
.ka-author-ft p,
.ka-author-ft span { color: var(--white) !important; }
.ka-author-ft .ka-author-ft__name,
.ka-author-ft p.ka-author-ft__name {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin: 0 0 6px !important;
  opacity: 1 !important;
}
.ka-author-ft .ka-author-ft__role,
.ka-author-ft p.ka-author-ft__role {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 12px !important;
  color: #e6c88c !important;
  letter-spacing: 0.2em !important;
  margin: 0 0 18px !important;
  opacity: 1 !important;
}
.ka-author-ft .ka-author-ft__desc,
.ka-author-ft p.ka-author-ft__desc {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 2 !important;
  margin: 0 !important;
  opacity: 1 !important;
}

/* --- 5-11. テーブル（共通） --- */
.ka-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.ka-table th {
  background: var(--navy);
  color: var(--white) !important;
  padding: 14px 18px;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.ka-table td {
  padding: 14px 18px;
  border: 1px solid var(--cream-bd);
  vertical-align: top;
  line-height: 1.7;
  color: var(--text);
}
.ka-table tr:nth-child(even) td { background: var(--cream); }
.ka-table .good { color: var(--lab-academy) !important; font-weight: 700; }
.ka-table .bad { color: var(--lab-love) !important; font-weight: 700; }

/* --- 5-12. アコーディオン（FAQ） --- */
.ka-acc {
  border: 1px solid var(--cream-bd);
  border-radius: 6px;
  margin: 12px 0;
  overflow: hidden;
}
.ka-acc summary {
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}
.ka-acc summary::-webkit-details-marker { display: none; }
.ka-acc summary::after {
  content: "＋";
  font-size: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  font-weight: 300;
}
.ka-acc[open] summary::after { content: "－"; }
.ka-acc summary:hover { background: #f2ede3; }
.ka-acc__body {
  padding: 20px 22px;
  background: var(--white);
  border-top: 1px solid var(--cream-bd);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.ka-acc p {
  padding: 18px 22px;
  background: var(--white);
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

/* --- 5-13. 図解・画像（ka-figure・既存16記事の挿絵用） --- */
.ka-figure { margin: 36px 0; text-align: center; }
.ka-figure figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 10px;
  letter-spacing: 0.1em;
}
.ka-figure svg { max-width: 100%; height: auto; }
.ka-figure p { color: inherit !important; margin: 0 0 0.3em 0; }
.ka-figure div { color: inherit; }

/* --- 5-14. スタンス前置きボックス --- */
.ka-stance-notice {
  background: var(--stance);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.ka-stance-notice .ka-stance-notice__title,
.ka-stance-notice p.ka-stance-notice__title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--stance-text) !important;
  margin: 0 0 12px !important;
  opacity: 1 !important;
}
.ka-stance-notice p {
  line-height: 1.9 !important;
  color: var(--text) !important;
  font-size: 15px !important;
  margin: 0 0 8px !important;
}
.ka-stance-notice p:last-child { margin-bottom: 0 !important; }

/* --- 5-15. あわせて読みたい（横の関係） --- */
.ka-related {
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  border-left: 4px solid var(--navy);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.ka-related .ka-related__title,
.ka-related p.ka-related__title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 0 0 12px !important;
  opacity: 1 !important;
  letter-spacing: 0.05em !important;
}
.ka-related .ka-related__title::before,
.ka-related p.ka-related__title::before {
  content: "▶ ";
  color: var(--gold);
  font-size: 0.85em;
  margin-right: 4px;
}
.ka-related ul { margin: 0; padding-left: 0; list-style: none; }
.ka-related li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: var(--text);
}
.ka-related li:last-child { margin-bottom: 0; }
.ka-related li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.ka-related li a {
  color: var(--navy) !important;
  text-decoration: none;
  border-bottom: 1px dotted var(--navy);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.ka-related li a:hover {
  color: var(--gold-dark) !important;
  border-bottom-color: var(--gold-dark);
  opacity: 1;
}

/* --- 5-16. 上りリンク（枝葉→母艦・親ページへ戻る導線） ---
   記事末（まとめ後・著者フッター前）に1記事1個。
   「あわせて読みたい（横）」と差別化した紺背景の上位ページ感。 */
.ka-uplink {
  display: block;
  background: var(--navy);
  border-left: 5px solid var(--gold);
  border-radius: 0;
  padding: 24px 28px;
  margin: 36px 0;
  text-decoration: none;
  transition: background 0.2s;
}
.ka-uplink:hover {
  background: var(--navy-sub);
  opacity: 1;
  text-decoration: none;
}
.ka-uplink__label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin: 0 0 10px;
}
.ka-uplink__lead {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px;
  line-height: 1.7;
}
.ka-uplink__title {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 8px;
}
.ka-uplink__cta {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

/* --- 5-17. 記事コンポーネント スマホ対応（767px以下） --- */
@media (max-width: 767px) {
  .ka-table { font-size: 13px; }
  .ka-table th, .ka-table td { padding: 10px 12px; }
  .ka-author-ft { padding: 24px 22px; }
  .ka-author-ft__desc { font-size: 14px !important; }
  .ka-summary .ka-summary__title,
  .ka-summary p.ka-summary__title { font-size: 18px !important; line-height: 1.5 !important; }
  .ka-figure { margin: 24px 0; }
  .ka-stance-notice { padding: 16px 18px; margin: 22px 0; }
  .ka-stance-notice p { font-size: 14px !important; }
  .ka-related { padding: 16px 18px; margin: 22px 0; }
  .ka-related li { font-size: 14px; }
  .ka-uplink { padding: 20px 20px; margin: 28px 0; }
  .ka-uplink__title { font-size: 17px; }
  .ka-uplink__lead { font-size: 12px; }
}

/* ============================================
   6. お金・制度記事 専用コンポーネント
   （年収の壁ガイド等で使用）
   ============================================ */

/* --- 6-1. キー数値カード集 --- */
.ka-keylist { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.ka-keylist__card {
  display: flex; gap: 16px;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 16px 20px;
}
.ka-keylist__num {
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  min-width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ka-keylist__body { flex: 1; }
.ka-keylist__title { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 6px; line-height: 1.5; }
.ka-keylist__desc { font-size: 13px; color: var(--gray-soft); line-height: 1.7; margin: 0; }

/* --- 6-2. フローチャート --- */
.ka-flow {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.ka-flow__step { margin-bottom: 16px; }
.ka-flow__step:last-child { margin-bottom: 0; }
.ka-flow__q {
  font-weight: 700;
  background: var(--navy);
  color: #faf9f6 !important;
  padding: 10px 16px;
  border-radius: 4px;
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
}
.ka-flow__label {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}
.ka-flow__result {
  font-size: 16px;
  color: var(--text);
  margin: 0;
}
.ka-flow__answers { display: flex; gap: 10px; flex-wrap: wrap; }
.ka-flow__answer { flex: 1; min-width: 200px; padding: 10px 14px; border-radius: 6px; }
.ka-flow__answer--yes { background: var(--green-soft); border-left: 3px solid var(--teal); }
.ka-flow__answer--no { background: #f5f3ed; border-left: 3px solid var(--gray-soft); }
.ka-flow__result a { color: var(--teal); font-weight: 500; }

/* --- 6-3. 出典 --- */
.ka-source {
  font-size: 12px;
  color: var(--gray-soft);
  padding: 8px 12px;
  background: #f5f3ed;
  border-radius: 4px;
  margin: 12px 0 20px;
  line-height: 1.6;
}
.ka-source a { color: var(--teal); word-break: break-all; }

/* --- 6-4. 早見表 --- */
.ka-readyref {
  background: var(--paper-warm);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0;
}
.ka-readyref__title { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 10px; }
.ka-readyref__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--cream);
}
.ka-readyref__table th,
.ka-readyref__table td { border: 1px solid var(--beige); padding: 8px 10px; text-align: left; }
.ka-readyref__table th { background: var(--navy); color: var(--cream); }
.ka-readyref__note { font-size: 11px; color: var(--gray-soft); margin-top: 8px; line-height: 1.6; }

/* --- 6-5. 計算式ボックス --- */
.ka-formula {
  background: var(--cream);
  border: 2px solid var(--teal);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  text-align: center;
}
.ka-formula__line { font-size: 15px; color: var(--navy); margin: 6px 0; }
.ka-formula__ok { color: var(--teal); font-weight: 700; }
.ka-formula__ng { color: #a32d2d; font-weight: 700; }
.ka-formula__calc {
  font-size: 14px;
  color: var(--gray-soft);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--beige);
}

/* --- 6-6. 計算例 --- */
.ka-calc-example {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  margin: 20px 0;
}
.ka-calc-example__title { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 10px; }
.ka-calc-example__steps { padding-left: 20px; margin: 0 0 10px; font-size: 14px; line-height: 1.9; }
.ka-calc-example__steps li { margin-bottom: 4px; }
.ka-calc-example__conclusion {
  background: var(--teal);
  color: #faf9f6 !important;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

/* --- 6-7. シミュレーターCTA（記事内） --- */
.ka-tool-cta {
  background: var(--green-soft);
  border: 2px solid var(--teal);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 24px 0;
}
.ka-tool-cta--main { border-width: 3px; }
.ka-tool-cta__lead { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 6px; }
.ka-tool-cta__body { font-size: 14px; color: var(--text); margin-bottom: 12px; line-height: 1.7; }
.ka-tool-cta__btn { text-align: center; margin: 0; }
.ka-tool-cta__link {
  display: inline-block;
  background: var(--teal);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.ka-tool-cta__link:hover { background: var(--teal-dark); color: var(--cream); opacity: 1; }

/* --- 6-8. SVG図解枠（共通プロパティ集約） --- */
.ka-svg-key-numbers,
.ka-svg-shotokuzei,
.ka-svg-zaishoku,
.ka-svg-spread {
  background: var(--cream);
  border-radius: 8px;
  padding: 20px 16px;
  margin: 24px 0;
}
.ka-svg-key-numbers { border: 2px solid var(--navy); padding: 24px 16px; }
.ka-svg-shotokuzei,
.ka-svg-zaishoku,
.ka-svg-spread { border: 1px solid var(--beige); }
.ka-svg-key-numbers__title,
.ka-svg-shotokuzei__title,
.ka-svg-zaishoku__title,
.ka-svg-spread__title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.ka-svg-key-numbers__title { margin-bottom: 16px; }
.ka-svg-shotokuzei__sub,
.ka-svg-zaishoku__sub,
.ka-svg-spread__sub {
  text-align: center;
  font-size: 12px;
  color: var(--gray-soft);
  margin-bottom: 16px;
}

/* --- 6-9. キー比較テーブル --- */
.ka-keytable {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.ka-keytable th,
.ka-keytable td {
  border: 1px solid var(--beige);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.ka-keytable th { background: var(--navy); color: var(--cream); font-weight: 700; }
.ka-keytable tr.ka-row-highlight td { background: var(--paper-warm); }
.ka-keytable tr.ka-row-highlight strong { color: var(--navy); }

/* --- 6-10. Q&A --- */
.ka-qa { margin: 20px 0; }
.ka-qa__item {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 4px;
}
.ka-qa__q { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 15px; }
.ka-qa__a { color: var(--text); line-height: 1.7; font-size: 14px; margin: 0; }
.ka-qa__q::before { content: "Q. "; color: var(--gold); font-weight: 700; }
.ka-qa__a::before { content: "A. "; color: var(--teal); font-weight: 700; }

/* --- 6-11. 関連記事リスト型 --- */
.ka-related-list {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 20px;
  margin: 32px 0 24px;
}
.ka-related-list__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.ka-related-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ka-related-list__items li {
  padding: 8px 0;
  border-bottom: 1px solid #e8e4d6;
}
.ka-related-list__items li:last-child { border-bottom: none; }
.ka-related-list__items a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.ka-related-list__items a:hover { text-decoration: underline; }

/* --- 6-12. 免責事項 --- */
.ka-disclaimer {
  background: #f5f3ed;
  border-left: 4px solid var(--gray-soft);
  padding: 16px 18px;
  margin: 24px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-soft);
  border-radius: 4px;
}
.ka-disclaimer__title { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 8px; }

/* ============================================
   7. 体験談記事 専用コンポーネント
   （投稿者の語りと採用担当の解説を交互に見せる記事用）
   ============================================ */
.ka-taiken-note {
  font-size: 13px;
  color: var(--gray-soft);
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  border-radius: 6px;
  padding: 12px 16px;
  margin: 0 0 28px;
  line-height: 1.8;
}

/* 投稿者の語り（ゴールド左罫線・クリーム背景） */
.ka-voice {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.ka-voice .ka-voice__label,
.ka-voice p.ka-voice__label {
  display: inline-block !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: var(--gold-dark) !important;
  background: rgba(200, 160, 90, 0.12) !important;
  padding: 3px 12px !important;
  border-radius: 3px !important;
  margin: 0 0 12px !important;
  opacity: 1 !important;
}
.ka-voice p {
  margin: 0 0 12px !important;
  line-height: 1.95 !important;
  color: var(--text) !important;
  font-size: 16px !important;
}
.ka-voice p:last-child { margin-bottom: 0 !important; }

/* 採用担当の解説（ネイビー左罫線・グレー背景） */
.ka-comment {
  background: #f4f6f9;
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0 36px;
}
.ka-comment .ka-comment__label,
.ka-comment p.ka-comment__label {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: var(--white) !important;
  background: var(--navy) !important;
  padding: 4px 14px !important;
  border-radius: 3px !important;
  margin: 0 0 12px !important;
  opacity: 1 !important;
}
.ka-comment p {
  margin: 0 0 12px !important;
  line-height: 1.95 !important;
  color: var(--text) !important;
  font-size: 16px !important;
}
.ka-comment p:last-child { margin-bottom: 0 !important; }
.ka-comment a {
  color: var(--navy) !important;
  font-weight: 500;
  text-decoration: underline;
}
.ka-comment a:hover { color: var(--gold-dark) !important; opacity: 1; }

@media (max-width: 767px) {
  .ka-voice, .ka-comment { padding: 16px 18px; }
  .ka-voice p, .ka-comment p { font-size: 15px !important; }
  .ka-taiken-note { font-size: 12px; }
}

/* ============================================
   8. 図解タップ拡大 ＆ テーブルレスポンシブ
   ============================================ */

/* --- 8-1. タップ拡大対応の図解枠 --- */
.ka-figure-zoom {
  margin: 36px 0;
  cursor: zoom-in;
  position: relative;
}
.ka-figure-zoom__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  border-radius: 6px 6px 0 0;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  font-weight: 500;
  min-height: 36px;
}
.ka-figure-zoom__inner {
  background: #ffffff;
  border: 1px solid var(--cream-bd);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 16px 12px 20px;
  text-align: center;
}
.ka-figure-zoom__inner svg {
  max-width: 100%;
  height: auto;
}
.ka-figure-zoom__caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* --- 8-2. 拡大表示モーダル（dialog要素） --- */
.ka-figure-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(15, 26, 46, 0.96);
  z-index: 9999;
}
.ka-figure-modal::backdrop {
  background: rgba(15, 26, 46, 0.92);
}
.ka-figure-modal[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ka-figure-modal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  min-width: 88px;
  min-height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 22px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.15s, transform 0.1s;
}
.ka-figure-modal__close:hover { background: var(--gold-dark); color: #ffffff; }
.ka-figure-modal__close:active { transform: scale(0.96); }
.ka-figure-modal__content {
  width: 100%;
  height: 100%;
  padding: 60px 16px 24px;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}
.ka-figure-modal__content svg {
  max-width: 100%;
  height: auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .ka-figure-zoom { margin: 24px 0; }
  .ka-figure-zoom__hint { font-size: 13px; padding: 7px 12px; }
  .ka-figure-zoom__inner { padding: 12px 8px 16px; }
  .ka-figure-modal__close {
    top: 12px;
    right: 12px;
    min-width: 84px;
    min-height: 44px;
    font-size: 13px;
  }
  .ka-figure-modal__content { padding: 60px 8px 16px; }
}

/* --- 8-3. ka-table 横スクロール＋1列目sticky ---
   <div class="ka-table-wrap"><div class="ka-table-wrap__scroll">
   <table class="ka-table">…</table></div></div> で囲んで使用。
   ka-table 単体使用も引き続き動作。 --- */
.ka-table-wrap {
  margin: 28px 0;
}
@media (min-width: 768px) {
  .ka-table-wrap .ka-table { margin: 0; }
}
@media (max-width: 767px) {
  .ka-table-wrap::before {
    content: "← 横にスライドして全列を見られます →";
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-mute);
    background: var(--cream);
    border: 1px solid var(--cream-bd);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    padding: 8px;
    letter-spacing: 0.02em;
  }
  .ka-table-wrap__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--cream-bd);
    border-top: none;
    border-radius: 0 0 6px 6px;
    position: relative;
    scrollbar-width: thin;
  }
  .ka-table-wrap__scroll::-webkit-scrollbar { height: 6px; }
  .ka-table-wrap__scroll::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 3px;
  }
  .ka-table-wrap__scroll::-webkit-scrollbar-track { background: var(--cream); }
  .ka-table-wrap .ka-table {
    margin: 0;
    min-width: 640px;
    font-size: 14px;
    border: none;
  }
  .ka-table-wrap .ka-table th,
  .ka-table-wrap .ka-table td {
    padding: 12px 14px;
    white-space: nowrap;
  }
  .ka-table-wrap .ka-table td:last-child,
  .ka-table-wrap .ka-table th:last-child {
    white-space: normal;
    min-width: 200px;
  }
  .ka-table-wrap .ka-table th:first-child,
  .ka-table-wrap .ka-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 4px 0 8px -4px rgba(26, 43, 74, 0.15);
  }
  .ka-table-wrap .ka-table thead th:first-child {
    background: var(--navy);
  }
  .ka-table-wrap .ka-table tbody td:first-child {
    background: #ffffff;
    font-weight: 700;
    color: var(--navy);
  }
  .ka-table-wrap .ka-table tbody tr:nth-child(even) td:first-child {
    background: var(--cream);
  }
}

/* --- 8-4. 表の横はみ出し防止（v9.1.0追加） ---
   症状：表がページ幅を超えると、iOS Safariでページ全体が横パンし、
   sticky1列目が画面基準でズレて戻らない。
   対策1：__scrollラッパー無しの <div class="ka-table-wrap"><table class="ka-table">
   　　　 という直下構造でも、表自体をスクロール容器にして救済する。
   対策2：モバイルではページ自体の横スクロールを禁止する（根治）。 --- */
@media (max-width: 767px) {
  .ka-table-wrap > .ka-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--cream-bd);
    border-top: none;
    border-radius: 0 0 6px 6px;
    scrollbar-width: thin;
  }
  body {
    overflow-x: hidden;
  }
}

/* ============================================
   9. シミュレーターv2（ka-sim2-*）完全独立スコープ
   ============================================ */
.ka-sim2-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.ka-sim2-wrap {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 12px;
  overflow: hidden;
  max-width: 720px;
  margin: 40px auto;
  box-shadow: 0 4px 24px rgba(26,43,74,0.10);
}
.ka-sim2-header { background: var(--navy); padding: 28px 32px 24px; text-align: center; }
.ka-sim2-header__label {
  display: inline-block;
  background: var(--gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.ka-sim2-header__title {
  color: var(--cream);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.ka-sim2-header__title span { color: var(--gold); }
.ka-sim2-header__sub { color: rgba(250,249,246,0.75); font-size: 13px; }
.ka-sim2-header__version {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(250,249,246,0.6);
  border: 1px solid rgba(250,249,246,0.3);
  padding: 2px 10px;
  border-radius: 12px;
}
.ka-sim2-body { padding: 32px; }
.ka-sim2-step { margin-bottom: 28px; }
.ka-sim2-step.is-hidden { display: none; }
.ka-sim2-step__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ka-sim2-step__num {
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.ka-sim2-step__text { font-size: 15px; font-weight: 700; color: var(--navy); }
.ka-sim2-step__hint { font-size: 12px; color: var(--gray-soft); margin-left: 4px; }
.ka-sim2-radio-group { display: flex; flex-direction: column; gap: 8px; }
.ka-sim2-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1.5px solid var(--beige);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ka-sim2-radio-label:hover { border-color: var(--gold); background: var(--paper-warm); }
.ka-sim2-radio-label input { width: 18px; height: 18px; accent-color: var(--navy); cursor: pointer; }
.ka-sim2-radio-label input:checked + span { color: var(--navy); font-weight: 700; }
.ka-sim2-radio-label span { font-size: 15px; color: var(--text); flex: 1; }
.ka-sim2-input-row { display: flex; align-items: center; gap: 8px; max-width: 240px; }
.ka-sim2-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--beige);
  border-radius: 6px;
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  text-align: right;
  background: #ffffff;
  transition: border-color 0.15s;
}
.ka-sim2-input:focus { outline: none; border-color: var(--gold); }
.ka-sim2-input-unit { font-size: 14px; color: var(--gray-soft); white-space: nowrap; }
.ka-sim2-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}
.ka-sim2-btn:hover { background: var(--navy-sub); }
.ka-sim2-btn:active { transform: translateY(1px); }
.ka-sim2-btn:disabled { background: #c4c0b8; cursor: not-allowed; }
.ka-sim2-btn-note { text-align: center; font-size: 12px; color: var(--gray-soft); margin-top: 8px; }
/* 結果表示：JSの classList.add('is-visible') と対応（is-shown不可） */
.ka-sim2-result {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border-top: 3px solid var(--gold);
  padding: 28px 32px;
  display: none;
}
.ka-sim2-result.is-visible { display: block; }
.ka-sim2-result__header { text-align: center; margin-bottom: 20px; }
.ka-sim2-type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--navy);
  border-radius: 30px;
  margin-bottom: 12px;
}
.ka-sim2-type__badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ka-sim2-type__name { color: var(--cream); font-size: 15px; font-weight: 700; }
.ka-sim2-type__sub { display: block; font-size: 12px; color: var(--gray-soft); margin-top: 6px; }
.ka-sim2-main {
  text-align: center;
  background: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 20px;
}
.ka-sim2-main__label {
  font-size: 13px;
  color: var(--gray-soft);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.ka-sim2-main__amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.ka-sim2-main__amount span { font-size: 18px; }
.ka-sim2-main__hours { font-size: 13px; color: var(--gray-soft); }
.ka-sim2-walls { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.ka-sim2-wall-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: #ffffff;
  border-left: 3px solid var(--beige);
  font-size: 14px;
}
.ka-sim2-wall-amount.is-current { border-left-color: var(--gold); background: var(--paper-warm); }
.ka-sim2-wall-name { font-weight: 700; color: var(--navy); min-width: 90px; }
.ka-sim2-wall-desc { color: var(--gray-soft); font-size: 12px; }
.ka-sim2-wall-when {
  font-size: 11px;
  color: var(--gold);
  background: rgba(200,160,90,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
}
.ka-sim2-message {
  background: var(--green-soft);
  border-left: 4px solid var(--teal);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 20px;
}
.ka-sim2-message__title { font-weight: 700; color: var(--teal); font-size: 14px; margin-bottom: 4px; }
.ka-sim2-message__text { font-size: 13px; color: var(--text); line-height: 1.7; }
.ka-sim2-cta {
  background: var(--paper-warm);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 16px;
}
.ka-sim2-cta__lead { font-size: 13px; color: var(--text); margin-bottom: 8px; line-height: 1.6; }
.ka-sim2-cta__link {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.ka-sim2-cta__link:hover { background: var(--navy-sub); color: var(--cream); opacity: 1; }
.ka-sim2-disclaimer {
  font-size: 11px;
  color: var(--gray-soft);
  line-height: 1.7;
  background: #f5f3ed;
  padding: 12px 16px;
  border-radius: 4px;
}
.ka-sim2-disclaimer__sources {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dotted var(--beige);
  word-break: break-all;
}
.ka-sim2-disclaimer__sources a { color: var(--teal); }
.ka-sim2-divider { height: 1px; background: var(--beige); margin: 28px 0 20px; }
.ka-sim2-footer {
  border-top: 1px dotted var(--beige);
  padding: 10px 20px 14px;
  text-align: center;
}
.ka-sim2-footer__text {
  font-size: 10px;
  color: #9e9d99;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .ka-sim2-wrap { margin: 24px 12px; border-radius: 8px; }
  .ka-sim2-header { padding: 20px 20px 18px; }
  .ka-sim2-header__title { font-size: 17px; }
  .ka-sim2-body { padding: 22px 20px; }
  .ka-sim2-result { padding: 22px 20px; }
  .ka-sim2-main__amount { font-size: 26px; }
  .ka-sim2-input-row { max-width: none; }
}

/* ============================================
   10. 仕事ラボ カテゴリトップ（ka-work-*）
   category-work.php 用
   ============================================ */
.ka-work-hub {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  color: var(--navy);
  line-height: 1.8;
}
.ka-work-hub * { box-sizing: border-box; }
.ka-work-hub p { margin: 0 0 1em; }

/* --- 10-1. ヒーロー --- */
.ka-work-hero {
  background: var(--teal);
  color: var(--cream);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 60px;
}
.ka-work-hero::before,
.ka-work-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.ka-work-hero::before { top: 50px; }
.ka-work-hero::after { bottom: 40px; }
.ka-work-hero__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.ka-work-hero__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--cream);
}
.ka-work-hero__subtitle {
  font-size: 15px;
  color: rgba(250,249,246,0.85);
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 400;
}

/* --- 10-2. 道案内ブロック --- */
.ka-work-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  padding: 0 24px;
  text-align: center;
}
.ka-work-intro__heading {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.ka-work-intro__text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}
.ka-work-intro__text strong { color: var(--navy); font-weight: 700; }

/* --- 10-3. セクション見出し（共通） --- */
.ka-work-section-head,
.ka-work-archive-head { text-align: center; }
.ka-work-section-head { margin-bottom: 36px; }
.ka-work-archive-head {
  max-width: 1080px;
  margin: 0 auto 24px;
  padding: 0 24px;
}
.ka-work-section-head__label,
.ka-work-archive-head__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
  text-transform: uppercase;
}
.ka-work-section-head__title,
.ka-work-archive-head__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin: 0;
}
.ka-work-section-head__sub,
.ka-work-archive-head__sub {
  font-size: 14px;
  color: var(--text-sub);
  margin: 8px 0 0;
}

/* --- 10-4. Featuredカード（白背景・カラーバー方式） --- */
.ka-work-pickup {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.ka-work-pickup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ka-work-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  border: 1px solid var(--cream-bd);
  border-top: 4px solid var(--navy);
  border-radius: 0;
  padding: 28px 26px 24px;
  text-decoration: none;
  color: inherit;
  min-height: 200px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ka-work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(26, 43, 74, 0.10);
  text-decoration: none;
  color: inherit;
}
.ka-work-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 600;
  z-index: 2;
}
.ka-work-card__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1;
}
.ka-work-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.ka-work-card__desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  margin: 0 0 18px;
  flex: 1;
}
.ka-work-card__cta {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.ka-work-card__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}
.ka-work-card:hover .ka-work-card__cta::after {
  transform: translateX(4px);
}
.ka-work-card--c01 { border-top-color: #1a2b4a; }
.ka-work-card--c02 { border-top-color: #2c5f5d; }
.ka-work-card--c03 { border-top-color: #8b6f47; }
.ka-work-card--c04 { border-top-color: #3d5a4c; }
.ka-work-card--c01:hover { border-top-color: #0f1a2e; }
.ka-work-card--c02:hover { border-top-color: #1a3838; }
.ka-work-card--c03:hover { border-top-color: #6b5435; }
.ka-work-card--c04:hover { border-top-color: #2a4035; }

/* --- 10-5. ミニリンク帯（Featured外の本体ガイド導線） --- */
.ka-work-more {
  max-width: 1080px;
  margin: 0 auto 48px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--cream-bd);
}
.ka-work-more__label {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  margin: 0 0 12px;
}
.ka-work-more__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ka-work-more__list li { margin: 0; }
.ka-work-more__list a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.ka-work-more__list a:hover { color: var(--gold-dark); }

/* --- 10-6. シミュレーター・ハブ箱（折りたたみ） --- */
.ka-work-sim-wrap {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.ka-work-sim {
  background: var(--teal);
  color: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.ka-work-sim summary {
  list-style: none;
  cursor: pointer;
  padding: 56px 32px 50px;
  text-align: center;
  position: relative;
  transition: background 0.25s ease;
}
.ka-work-sim summary::-webkit-details-marker { display: none; }
.ka-work-sim summary:hover { background: rgba(255,255,255,0.04); }
.ka-work-sim summary::before,
.ka-work-sim summary::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--gold);
}
.ka-work-sim summary::before { top: 36px; }
.ka-work-sim summary::after { bottom: 28px; }
.ka-work-sim__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.ka-work-sim__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.ka-work-sim__desc {
  font-size: 14px;
  color: rgba(250,249,246,0.85);
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.85;
}
.ka-work-sim__trigger {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.ka-work-sim summary:hover .ka-work-sim__trigger {
  background: var(--gold);
  color: var(--teal);
}
.ka-work-sim[open] .ka-work-sim__trigger-text-closed { display: none; }
.ka-work-sim:not([open]) .ka-work-sim__trigger-text-open { display: none; }
.ka-work-sim__body {
  background: var(--cream);
  color: var(--navy);
  padding: 8px 0 0;
}
.ka-work-sim__iframe {
  width: 100%;
  height: 1400px;
  border: none;
  display: block;
  background: var(--cream);
}
.ka-work-sim__after {
  background: var(--teal);
  padding: 24px 32px 40px;
  text-align: center;
  border-top: 1px solid rgba(200, 160, 90, 0.2);
}
.ka-work-sim__after-text {
  font-size: 13px;
  color: rgba(250,249,246,0.7);
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}
.ka-work-sim__after-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.ka-work-sim__after-link:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* --- 10-7. サイトTOPへの導線 --- */
.ka-work-tophome {
  max-width: 760px;
  margin: 60px auto 80px;
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--cream-bd);
  border-bottom: 1px solid var(--cream-bd);
}
.ka-work-tophome__text {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}
.ka-work-tophome__link {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.ka-work-tophome__link:hover {
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
}

/* --- 10-8. 記事なし時のメッセージ --- */
.ka-work-empty {
  text-align: center;
  color: var(--text-sub);
  padding: 40px 0;
}

/* --- 10-9. ka-work スマホ対応（700px以下） --- */
@media (max-width: 700px) {
  .ka-work-hero { padding: 60px 20px 50px; margin-bottom: 40px; }
  .ka-work-hero::before { top: 36px; }
  .ka-work-hero::after { bottom: 28px; }
  .ka-work-hero__title { font-size: 24px; }
  .ka-work-hero__subtitle { font-size: 13px; }
  .ka-work-hero__label { font-size: 12px; margin-bottom: 18px; }

  .ka-work-intro { margin-bottom: 50px; padding: 0 20px; }
  .ka-work-intro__text { font-size: 14px; line-height: 1.85; }

  .ka-work-pickup { margin-bottom: 60px; padding: 0 20px; }
  .ka-work-pickup__grid { grid-template-columns: 1fr; gap: 16px; }
  .ka-work-section-head__title,
  .ka-work-archive-head__title { font-size: 19px; }
  .ka-work-card { padding: 24px 22px 22px; min-height: 0; }
  .ka-work-card__num { font-size: 13px; margin-bottom: 10px; }
  .ka-work-card__title { font-size: 17px; line-height: 1.55; }
  .ka-work-card__desc { font-size: 14px; line-height: 1.85; }
  .ka-work-card__cta { font-size: 13px; }
  .ka-work-card__badge { top: 12px; right: 12px; font-size: 10px; padding: 2px 8px; }
  .ka-work-archive-head { padding: 0 20px; }

  .ka-work-more { padding: 16px 18px; margin-bottom: 32px; }
  .ka-work-more__list { gap: 8px 12px; }
  .ka-work-more__list a { font-size: 13px; }

  .ka-work-sim-wrap { margin-bottom: 60px; padding: 0 20px; }
  .ka-work-sim summary { padding: 44px 20px 40px; }
  .ka-work-sim summary::before { top: 28px; }
  .ka-work-sim summary::after { bottom: 22px; }
  .ka-work-sim__title { font-size: 20px; }
  .ka-work-sim__desc { font-size: 13px; margin-bottom: 24px; }
  .ka-work-sim__trigger { padding: 12px 28px; font-size: 13px; }
  .ka-work-sim__after { padding: 20px 20px 32px; }
  .ka-work-sim__iframe { height: 1500px; }

  .ka-work-tophome { margin: 40px auto 60px; padding: 32px 20px; }
}

/* ============================================
   11. CVグリーン（収益CV専用部品）
   ・「行動を求める部品」専用。記事装飾に使わない
   ・部品：btn-cv / ka-cta-v2 / ka-cta-choice / ka-quiz-entry / ka-sticky-cv
   ・シャインは常時ループさせない：.is-shine（フッターJSが付与）時に
     2回だけ走って止まる（加齢眼のグレア対応）。JS未設置でも表示は正常
   ============================================ */

/* ----------------------------------------------------------
   11-1. CVボタン v2（btn-cv）
   btn-cta（紺・従来）は残し、収益ボタンのみこちらへ移行
   ---------------------------------------------------------- */
.btn-cv{
  position:relative;
  display:flex;align-items:center;justify-content:center;gap:10px;
  width:100%;min-height:60px;
  padding:16px 24px;
  font-size:18px;font-weight:700;
  color:#fff !important;
  background:linear-gradient(180deg,#009a67 0%,var(--cv-green) 55%,var(--cv-green-deep) 100%);
  border:none;border-radius:14px;
  box-shadow:0 4px 0 var(--cv-green-shadow), 0 6px 14px rgba(0,135,90,.28);
  text-decoration:none !important;
  cursor:pointer;
  overflow:hidden;
  transition:transform .08s ease, box-shadow .08s ease;
  -webkit-tap-highlight-color:transparent;
}
.btn-cv:hover{color:#fff !important;text-decoration:none !important}
.btn-cv:active{
  transform:translateY(3px);
  box-shadow:0 1px 0 var(--cv-green-shadow), 0 2px 6px rgba(0,135,90,.25);
}
/* シャイン：常時は光らせない。画面に入った時（.is-shine付与時）に
   2回だけ走って止まる。付与はフッターJS（sticky-cv-bar.html内）が担当。
   JS未設置の記事では光らないだけで表示は正常（フォールバック安全） */
.btn-cv::after{
  content:"";
  position:absolute;top:0;left:-80%;
  width:50%;height:100%;
  background:linear-gradient(105deg,transparent 20%,rgba(255,255,255,.45) 50%,transparent 80%);
  transform:skewX(-20deg);
  pointer-events:none;
}
.btn-cv.is-shine::after{
  animation:cvShine 2.4s ease-in-out .3s 2;
}
@keyframes cvShine{
  0%{left:-80%}
  18%{left:130%}
  100%{left:130%}
}
.btn-cv .arw{display:inline-block;animation:cvArw 1.6s ease-in-out infinite}
@keyframes cvArw{0%,100%{transform:translateX(0)}50%{transform:translateX(5px)}}
@media (prefers-reduced-motion: reduce){
  .btn-cv::after,
  .btn-cv.is-shine::after{animation:none;display:none}
  .btn-cv .arw{animation:none}
}

/* マイクロコピー（ボタンの上下） */
.cv-above{
  text-align:center;font-size:14.5px;font-weight:700;color:var(--cv-green-deep);
  margin:0 0 8px;letter-spacing:.02em;
}
.cv-below{
  text-align:center;font-size:12.5px;color:#888;margin:9px 0 0;line-height:1.6;
}
.cv-below::before{content:"\2713  ";color:var(--cv-green);font-weight:700}

/* ----------------------------------------------------------
   11-2. ぐっさん推薦型CTAボックス（ka-cta-v2）
   ---------------------------------------------------------- */
.ka-cta-v2{
  background:#fff;
  border:2px solid var(--cv-green);
  border-radius:16px;
  overflow:hidden;
  margin:40px 0;
  box-shadow:0 6px 20px rgba(26,43,74,.07);
}
.ka-cta-v2__ribbon{
  background:var(--cv-green-tint);
  padding:10px 20px;
  display:flex;align-items:center;gap:8px;
}
.ka-cta-v2__ribbon .pr{
  font-size:11px;background:#fff;border:1px solid var(--border,#e5e0d5);
  border-radius:3px;padding:1px 7px;color:#777;flex-shrink:0;
}
.ka-cta-v2__ribbon .rb-txt{
  font-size:13px;font-weight:700;color:var(--cv-green-deep);letter-spacing:.03em;
}
.ka-cta-v2__body{padding:22px 20px 24px}
.ka-cta-v2__person{display:flex;gap:14px;align-items:flex-start;margin-bottom:16px}
.ka-cta-v2__avatar{
  flex-shrink:0;width:58px;height:58px;border-radius:50%;
  background:var(--navy,#1a2b4a);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold,#c8a05a);
  font-family:'Noto Serif JP',serif;font-weight:700;font-size:15px;
  border:2px solid var(--gold,#c8a05a);
  overflow:hidden;
}
.ka-cta-v2__avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.ka-cta-v2__bubble{
  position:relative;flex:1;
  background:var(--cream,#faf9f6);border:1px solid var(--border,#e5e0d5);
  border-radius:12px;padding:14px 16px;
  font-size:15.5px;line-height:1.8;
}
.ka-cta-v2__bubble::before{
  content:"";position:absolute;left:-8px;top:20px;
  border:8px solid transparent;border-right-color:var(--border,#e5e0d5);border-left:0;
}
.ka-cta-v2__bubble::after{
  content:"";position:absolute;left:-6.5px;top:20px;
  border:8px solid transparent;border-right-color:var(--cream,#faf9f6);border-left:0;
}
.ka-cta-v2__bubble .who{display:block;font-size:12px;color:#999;margin-top:6px}
.ka-cta-v2__title{
  font-family:'Noto Serif JP',serif;font-size:18.5px;font-weight:700;
  color:var(--navy,#1a2b4a);line-height:1.6;margin:0 0 8px;
}
.ka-cta-v2__desc{font-size:15px;color:#555;line-height:1.85;margin:0 0 18px}

/* ----------------------------------------------------------
   11-3. 比較表型CTA（ka-cta-choice）
   ---------------------------------------------------------- */
.ka-cta-choice{margin:40px 0}
.ka-cta-choice__head{
  text-align:center;font-family:'Noto Serif JP',serif;
  color:var(--navy,#1a2b4a);font-size:18px;font-weight:700;margin:0 0 4px;
}
.ka-cta-choice__sub{text-align:center;font-size:13.5px;color:#888;margin:0 0 18px}
.ka-cta-choice__grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:560px){.ka-cta-choice__grid{grid-template-columns:1fr}}
.ka-choice-card{
  background:#fff;border:1.5px solid var(--border,#e5e0d5);border-radius:14px;
  padding:20px 16px 18px;display:flex;flex-direction:column;
  transition:border-color .15s;
}
.ka-choice-card:hover{border-color:var(--cv-green)}
.ka-choice-card__tag{
  align-self:flex-start;
  font-size:12px;font-weight:700;color:var(--cv-green-deep);
  background:var(--cv-green-tint);border-radius:50px;padding:3px 12px;margin-bottom:10px;
}
.ka-choice-card__q{
  font-size:16.5px;font-weight:700;color:var(--navy,#1a2b4a);line-height:1.6;margin:0 0 8px;
}
.ka-choice-card__a{font-size:14px;color:#666;line-height:1.75;flex:1;margin:0 0 14px}
.ka-choice-card__a b{color:var(--cv-green-deep)}
.ka-choice-card .btn-cv{min-height:52px;font-size:16px;border-radius:12px}
.ka-choice-card__pr{font-size:11px;color:#aaa;text-align:right;margin:8px 0 0}

/* ----------------------------------------------------------
   11-4. 診断入口バナー（ka-quiz-entry）
   ---------------------------------------------------------- */
.ka-quiz-entry{
  background:#fff;
  border:2px solid var(--cv-green);
  border-radius:16px;
  padding:24px 20px;
  margin:32px 0 40px;
  text-align:center;
  position:relative;
  box-shadow:0 6px 20px rgba(0,135,90,.10);
}
.ka-quiz-entry__badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--cv-green);color:#fff;
  font-size:12.5px;font-weight:700;letter-spacing:.05em;
  border-radius:50px;padding:4px 18px;white-space:nowrap;
}
.ka-quiz-entry__title{
  font-family:'Noto Serif JP',serif;font-size:20px;color:var(--navy,#1a2b4a);
  font-weight:700;line-height:1.55;margin:10px 0 6px;
}
.ka-quiz-entry__title em{font-style:normal;color:var(--cv-green-deep)}
.ka-quiz-entry__meta{
  display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin:12px 0 18px;
}
.ka-quiz-entry__meta span{
  font-size:13px;font-weight:700;color:var(--cv-green-deep);
  background:var(--cv-green-tint);border-radius:50px;padding:5px 14px;
}
.ka-quiz-entry .btn-cv{max-width:420px;margin:0 auto}

/* ----------------------------------------------------------
   11-5. モバイル追従フッターバー（ka-sticky-cv）
   表示制御はJS側（sticky-cv-bar.html）
   ---------------------------------------------------------- */
.ka-sticky-cv{
  position:fixed;left:0;right:0;bottom:0;z-index:9990;
  background:rgba(255,255,255,.97);
  border-top:1px solid var(--border,#e5e0d5);
  box-shadow:0 -4px 16px rgba(26,43,74,.10);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  transform:translateY(110%);
  transition:transform .35s ease;
}
.ka-sticky-cv.is-visible{transform:translateY(0)}
.ka-sticky-cv__inner{
  max-width:720px;margin:0 auto;
  display:flex;align-items:center;gap:12px;
}
.ka-sticky-cv__txt{flex:1;min-width:0}
.ka-sticky-cv__txt .t1{font-size:13px;font-weight:700;color:var(--navy,#1a2b4a);line-height:1.4;margin:0}
.ka-sticky-cv__txt .t2{font-size:11px;color:var(--cv-green-deep);font-weight:700;margin:0}
.ka-sticky-cv .btn-cv{
  width:auto;min-height:48px;font-size:15px;padding:10px 20px;
  border-radius:50px;flex-shrink:0;
}
.ka-sticky-cv__close{
  flex-shrink:0;width:44px;height:44px;border:none;background:#f0ede6;
  border-radius:50%;color:#555;font-size:17px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
/* PCでは非表示（モバイル79%に集中） */
@media (min-width:1024px){
  .ka-sticky-cv{display:none}
}

/* ============================================
   12. TOPページ 履歴書ツール導線カード（ka-toptool 系）
   ・/rirekisho-tool/ への導線。TOP(Page ID 24)の悩み別3パターン直下に設置
   ・TOP専用。記事内の krt-inline / krt-pill とは別用途・命名衝突なし
   ============================================ */

.ka-toptool {
  padding: 44px 16px;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-dark);
}
.ka-toptool__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ka-toptool__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin: 0 0 26px;
  line-height: 1.5;
}
.ka-toptool__title em {
  font-style: normal;
  color: var(--gold-light);
}

/* --- 中型カード本体（クリーム地・ペーパー質感で「用紙＝履歴書」を連想） --- */
.ka-toptool__card {
  display: block;
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  padding: 32px 32px 28px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 26, 46, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ka-toptool__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(15, 26, 46, 0.38);
  text-decoration: none;
  opacity: 1;
}

/* 背景の大きなペン絵文字（母艦バナーの bg-arrow と同系の演出） */
.ka-toptool__bg-icon {
  position: absolute;
  right: -8px;
  bottom: -26px;
  font-size: 140px;
  line-height: 1;
  color: rgba(200, 160, 90, 0.12);
  pointer-events: none;
  user-select: none;
}

.ka-toptool__badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ka-toptool__head {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 12px;
  position: relative;
}
.ka-toptool__head em {
  font-style: normal;
  color: var(--gold-dark);
}
.ka-toptool__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
  margin: 0 0 20px;
  position: relative;
}

/* 特徴ピル（無料・登録不要・印刷まで） */
.ka-toptool__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  position: relative;
}
.ka-toptool__feat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--cream-bd);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 7px 14px;
}
.ka-toptool__feat::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 700;
}

.ka-toptool__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  min-height: 54px;
  padding: 15px 40px;
  border-radius: 2px;
  position: relative;
  transition: background 0.2s ease;
}
.ka-toptool__card:hover .ka-toptool__btn {
  background: var(--navy-sub);
  color: var(--cream);
}
.ka-toptool__btn::after {
  content: "→";
  transition: transform 0.2s ease;
}
.ka-toptool__card:hover .ka-toptool__btn::after {
  transform: translateX(4px);
}

/* --- 12-1. PC対応（768px以上）：横並びレイアウト --- */
@media (min-width: 768px) {
  .ka-toptool__card {
    max-width: 680px;
    padding: 36px 40px 32px;
  }
  .ka-toptool__btn {
    padding: 15px 48px;
  }
}

/* --- 12-2. スマホ対応（767px以下） --- */
@media (max-width: 767px) {
  .ka-toptool {
    padding: 36px 14px;
  }
  .ka-toptool__title {
    font-size: 17px;
  }
  .ka-toptool__card {
    padding: 28px 20px 24px;
    border-top-width: 3px;
  }
  .ka-toptool__head {
    font-size: 19px;
  }
  .ka-toptool__desc {
    font-size: 14px;
  }
  .ka-toptool__btn {
    display: flex;
    width: 100%;
    padding: 16px 24px;
  }
  .ka-toptool__bg-icon {
    font-size: 100px;
    right: -12px;
    bottom: -20px;
  }
}

/* ============================================
   13. TOPページ 実体験ラボ導線カード（ka-toptaiken 系）
   ・/taiken/（実体験ラボ ハブ）への導線。TOP(Page ID 24)の kh-labs 直下に設置
   ・TOP専用。記事内 ka-voice / ka-comment / ka-taiken-note とは別用途
   ============================================ */

.ka-toptaiken {
  padding: 44px 16px;
  background: var(--cream);
  border-top: 1px solid var(--cream-bd);
  border-bottom: 1px solid var(--cream-bd);
}
.ka-toptaiken__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ka-toptaiken__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 26px;
  line-height: 1.5;
}
.ka-toptaiken__title em {
  font-style: normal;
  color: var(--gold-dark);
}

/* --- カード本体（白地・ゴールド左罫＝ka-voiceの世界観） --- */
.ka-toptaiken__card {
  display: block;
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-bd);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 30px 32px 28px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(15, 26, 46, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ka-toptaiken__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 26, 46, 0.16);
  text-decoration: none;
  opacity: 1;
}

/* 背景の大きな引用符（体験談＝語りの演出） */
.ka-toptaiken__bg-icon {
  position: absolute;
  right: 8px;
  bottom: -60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  line-height: 1;
  color: rgba(200, 160, 90, 0.12);
  pointer-events: none;
  user-select: none;
}

.ka-toptaiken__badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ka-toptaiken__head {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 12px;
  position: relative;
}
.ka-toptaiken__head em {
  font-style: normal;
  color: var(--gold-dark);
}
.ka-toptaiken__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
  margin: 0 0 20px;
  position: relative;
}

/* 内容タグ（投稿者の実体験・採用担当が解説・匿名で読める） */
.ka-toptaiken__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  position: relative;
}
.ka-toptaiken__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--cream-bd);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 7px 14px;
}
.ka-toptaiken__tag::before {
  content: "\25CF"; /* ● */
  font-size: 8px;
  color: var(--gold-dark);
}

.ka-toptaiken__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  min-height: 54px;
  padding: 15px 40px;
  border-radius: 2px;
  position: relative;
  transition: background 0.2s ease;
}
.ka-toptaiken__card:hover .ka-toptaiken__btn {
  background: var(--navy-sub);
  color: var(--cream);
}
.ka-toptaiken__btn::after {
  content: "\2192"; /* → */
  transition: transform 0.2s ease;
}
.ka-toptaiken__card:hover .ka-toptaiken__btn::after {
  transform: translateX(4px);
}

/* --- 13-1. PC対応（768px以上） --- */
@media (min-width: 768px) {
  .ka-toptaiken__card {
    max-width: 680px;
    padding: 34px 40px 32px;
  }
  .ka-toptaiken__btn {
    padding: 15px 48px;
  }
}

/* --- 13-2. スマホ対応（767px以下） --- */
@media (max-width: 767px) {
  .ka-toptaiken {
    padding: 36px 14px;
  }
  .ka-toptaiken__title {
    font-size: 17px;
  }
  .ka-toptaiken__card {
    padding: 26px 20px 24px;
  }
  .ka-toptaiken__head {
    font-size: 19px;
  }
  .ka-toptaiken__desc {
    font-size: 14px;
  }
  .ka-toptaiken__btn {
    display: flex;
    width: 100%;
    padding: 16px 24px;
  }
  .ka-toptaiken__bg-icon {
    font-size: 150px;
    bottom: -44px;
  }
}

/* ============================================
   14. 実体験ラボ 体験談募集ブロック（ka-taiken-recruit 系）
   ・category-taiken.php 専用。記事一覧下の投稿募集導線
   ・LINEボタンのみブランド色 #06c755（将来用・現状コメントアウト）
   ============================================ */

.ka-taiken-recruit {
  max-width: 720px;
  margin: 48px auto;
  background: var(--navy);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
}
.ka-taiken-recruit__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.ka-taiken-recruit__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.5;
  margin: 0 0 16px;
}
.ka-taiken-recruit__text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 24px;
  max-width: 560px;
}

.ka-taiken-recruit__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ka-taiken-recruit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  min-height: 54px;
  padding: 15px 40px;
  border-radius: 2px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}

/* 現行の主ボタン：お問い合わせフォーム（ゴールド） */
.ka-taiken-recruit__btn--form {
  background: var(--gold);
  color: var(--navy);
}
.ka-taiken-recruit__btn--form:hover {
  background: var(--gold-light);
  color: var(--navy);
  opacity: 1;
  text-decoration: none;
}
.ka-taiken-recruit__btn--form::after {
  content: "\2192"; /* → */
}

/* 将来用：LINEボタン（LINEブランド色。HTML側は現状コメントアウト） */
.ka-taiken-recruit__btn--line {
  background: #06c755;
  color: #ffffff;
}
.ka-taiken-recruit__btn--line:hover {
  opacity: 0.9;
  color: #ffffff;
  text-decoration: none;
}

.ka-taiken-recruit__note {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 22px 0 0;
}
.ka-taiken-recruit__note a {
  color: var(--gold-light);
  text-decoration: underline;
}
.ka-taiken-recruit__note a:hover {
  opacity: 0.8;
}

/* --- 14-1. スマホ対応（767px以下） --- */
@media (max-width: 767px) {
  .ka-taiken-recruit {
    padding: 32px 18px;
    margin: 36px auto;
  }
  .ka-taiken-recruit__title {
    font-size: 19px;
  }
  .ka-taiken-recruit__text {
    font-size: 14px;
  }
  .ka-taiken-recruit__btn {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
  }
}

/* ============================================
   15. TOPページ 探し方診断 導線カード（ka-topshindan 系）
   ka-toptool（Section12）と同型・CVアクセントのみ緑系。新規変数なし。
   ============================================ */
.ka-topshindan {
  padding: 44px 16px;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-dark);
}
.ka-topshindan__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ka-topshindan__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin: 0 0 26px;
  line-height: 1.5;
}
.ka-topshindan__title em { font-style: normal; color: var(--gold-light); }

/* --- カード本体（クリーム地・緑のトップライン＝診断/CV） --- */
.ka-topshindan__card {
  display: block;
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 8px;
  border-top: 4px solid var(--cv-green-bright);
  padding: 32px 32px 28px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 26, 46, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ka-topshindan__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(15, 26, 46, 0.38);
  text-decoration: none;
  opacity: 1;
}
/* 背景の大きな絵文字（母艦バナー bg-arrow / ツール bg-icon と同系演出） */
.ka-topshindan__bg-icon {
  position: absolute;
  right: -6px;
  bottom: -24px;
  font-size: 132px;
  line-height: 1;
  color: rgba(0, 135, 90, 0.10);
  pointer-events: none;
  user-select: none;
}
.ka-topshindan__badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cv-green-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ka-topshindan__head {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 12px;
  position: relative;
}
.ka-topshindan__head em { font-style: normal; color: var(--cv-green); }
.ka-topshindan__desc {
  display: block;
  font-size: 14.5px;
  color: var(--navy-sub);
  line-height: 1.85;
  margin: 0 0 16px;
  position: relative;
}
.ka-topshindan__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  position: relative;
}
.ka-topshindan__feat {
  font-size: 12px;
  font-weight: 700;
  color: var(--cv-green-deep);
  background: var(--cv-green-tint);
  border-radius: 50px;
  padding: 5px 13px;
}
.ka-topshindan__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: var(--cv-green-bright);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  padding: 14px 20px;
  position: relative;
  box-shadow: 0 4px 14px var(--cv-green-shadow);
}
.ka-topshindan__card:hover .ka-topshindan__btn { background: var(--cv-green); }

@media (max-width: 560px) {
  .ka-topshindan__card { padding: 26px 22px 24px; }
  .ka-topshindan__head { font-size: 20px; }
  .ka-topshindan__title { font-size: 18px; }
}

/* ============================================
   End of style.css v9.2.0
   ============================================ */
