/* =============================================================
   experience.css — 体験記ページ専用スタイル
   - JSX handoff (lp/design_handoff_taikenki_renewal/*.jsx) を CSS 化
   - tokens.css / top.css / review.css の変数・トーンを再利用
   - PC (>=769px) が JSX のリファレンスサイズ。SP (<=768px) は1列化等で調整
   - 命名規則: .tg-experience-*
   ============================================================= */

/* ============================================================
   1. Hero (タイトル + プロフィール + BEFORE/AFTER + 活動メトリクス)
   ============================================================ */
.tg-experience-hero {
  background: linear-gradient(180deg, #F4F7FB 0%, #fff 100%);
  border-bottom: 1px solid #E5E9F0;
  padding: 16px 0 40px;
}
.tg-experience-hero > .inner {
  max-width: 1040px; margin: 0 auto; padding: 0 40px;
}

/* --- Title cluster --- */
.tg-experience-title { margin-bottom: 18px; }
.tg-experience-title .tags {
  display: flex; gap: 6px; margin-bottom: 10px;
  align-items: center; flex-wrap: wrap;
}
.tg-experience-title .date {
  font-size: var(--fs-label-md); color: #7a849c; margin-left: 8px;
}
.tg-experience-title h1 {
  font-size: var(--fs-h1); font-weight: 900; color: #0c2548;
  margin: 0; line-height: 1.35; letter-spacing: -0.01em;
}
.tg-experience-title h1 .mark-y {
  background: linear-gradient(transparent 62%, #FFE45A 62%);
  padding: 0 4px;
}

/* --- Profile card --- */
.tg-experience-profile {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 16px; padding: 24px;
  box-shadow: 0 8px 24px rgba(11, 40, 90, .06);
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  align-items: center; margin-bottom: 16px;
}
.tg-experience-profile .avatar {
  width: 100px; height: 100px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tg-experience-profile .avatar.m { background: #E2ECFF; }
.tg-experience-profile .avatar.f { background: #FFE4EE; }
.tg-experience-profile .avatar svg { width: 100%; height: 100%; }
.tg-experience-profile .name-row {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px;
  flex-wrap: wrap;
}
.tg-experience-profile .name-row .name {
  font-size: var(--fs-title-xl); font-weight: 900; color: #0c2548;
}
.tg-experience-profile .name-row .attr {
  font-size: var(--fs-body-xs); color: #5a6378;
}
.tg-experience-profile .sub-attr {
  font-size: var(--fs-label-md); color: #7a849c; margin-bottom: 12px;
}
.tg-experience-profile .metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.tg-experience-profile .metrics .cell {
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 8px; padding: 10px 12px;
}
.tg-experience-profile .metrics .cell .l {
  font-size: var(--fs-label-md); color: #7a849c; margin-bottom: 4px;
}
.tg-experience-profile .metrics .cell .v {
  font-size: var(--fs-body-sm); font-weight: 900; color: #5a6378; line-height: 1.2;
}
.tg-experience-profile .metrics .cell.highlight .v { color: #0744CC; }
.tg-experience-profile .services {
  display: flex; align-items: center; gap: 8px; margin-top: 10px;
  font-size: var(--fs-body-xs); color: #7a849c; flex-wrap: wrap;
}
.tg-experience-profile .services .label-chip {
  background: #FF6C00; color: #fff;
  padding: 2px 8px; border-radius: 3px;
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.05em;
}
.tg-experience-profile .services .primary {
  color: #0c2548; font-weight: 700;
}
.tg-experience-profile .services .secondary {
  color: #1a1f2e;
}
.tg-experience-profile .services .sep { color: #c1c8d4; }

/* --- BEFORE / AFTER salary card --- */
.tg-experience-ba {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 16px; padding: 20px 24px;
  margin-bottom: 16px;
}
.tg-experience-ba .head {
  font-size: var(--fs-title-md); /* 16px — Card title */
  font-weight: 700;
  color: #0c2548;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: var(--ls-wide);
}
.tg-experience-ba .head::before {
  content: ''; display: inline-block;
  width: 3px; height: 14px; background: #0744CC; border-radius: 2px;
}
.tg-experience-ba .grid {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 16px; align-items: stretch;
}
.tg-experience-ba .side {
  border-radius: 12px; padding: 18px; text-align: center;
}
.tg-experience-ba .side.before {
  background: #F9FAFC; border: 1px solid #E5E9F0;
}
.tg-experience-ba .side.after {
  background: linear-gradient(180deg, #FFF7C2 0%, #FFFBE0 100%);
  border: 2px solid #FFC700;
  position: relative;
}
.tg-experience-ba .side .lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.tg-experience-ba .side.before .lbl { color: #7a849c; }
.tg-experience-ba .side.after .lbl { color: #6B4B00; }
.tg-experience-ba .side .role {
  font-size: var(--fs-body-sm); margin-bottom: 8px;
}
.tg-experience-ba .side.before .role { color: #5a6378; }
.tg-experience-ba .side.after .role { color: #6B4B00; }
.tg-experience-ba .side .income {
  font-size: 28px; /* 大型強調数値 */ font-weight: 900; line-height: 1;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-experience-ba .side.before .income { color: #5a6378; }
.tg-experience-ba .side.after .income { color: #FF6C00; }
.tg-experience-ba .side .range {
  font-size: var(--fs-label-md); margin-top: 6px;
}
.tg-experience-ba .side.before .range { color: #7a849c; }
.tg-experience-ba .side.after .range { color: #6B4B00; }

.tg-experience-ba .arrow {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.tg-experience-ba .arrow svg { display: block; }
.tg-experience-ba .arrow .delta {
  font-size: var(--fs-stat-md); /* 24px — 重要強調数値 */
  font-weight: 900;
  color: #FF6C00;
  margin-top: 8px;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
  line-height: 1;
}

.tg-experience-ba .result {
  background: #0c2548; color: #fff;
  border-radius: 10px; padding: 10px 16px; margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: var(--fs-body-sm); font-weight: 700;
  text-align: center; flex-wrap: wrap;
}
.tg-experience-ba .result b {
  color: #FFC700; font-size: var(--fs-title-xl); /* 20px */
}
.tg-experience-ba .result .trophy {
  width: 16px; height: 16px; color: #FFC700; flex-shrink: 0;
}
.tg-experience-ba .note {
  font-size: var(--fs-body-xs);
  color: #7a849c;
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.6;
}

/* --- Activity metrics row --- */
.tg-experience-activity {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.tg-experience-activity .cell {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 16px 12px; text-align: center;
}
.tg-experience-activity .cell.highlight {
  background: #FFF7C2; border: 2px solid #FFC700;
}
.tg-experience-activity .cell .l {
  font-size: var(--fs-label-md); color: #7a849c; font-weight: 700; margin-bottom: 6px;
}
.tg-experience-activity .cell .v-wrap {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.tg-experience-activity .cell .v {
  font-size: var(--fs-stat-md); font-weight: 900; color: #0c2548;
  line-height: 1; font-family: Helvetica, Arial, sans-serif;
}
.tg-experience-activity .cell .u {
  font-size: var(--fs-body-xs); font-weight: 700; color: #0c2548;
}
.tg-experience-activity .cell.highlight .v,
.tg-experience-activity .cell.highlight .u { color: #FF6C00; }

/* ============================================================
   2. Story section (TOC + Q&A blocks)
   ============================================================ */
.tg-experience-story {
  max-width: 1040px; margin: 0 auto; padding: 32px 40px 40px;
}

/* --- TOC --- */
.tg-experience-toc {
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 20px;
  margin-bottom: 32px;
}
.tg-experience-toc .head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.tg-experience-toc .head .pill {
  background: #0c2548; color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.1em;
}
.tg-experience-toc .head .sub {
  font-size: var(--fs-body-xs); color: #7a849c;
}
.tg-experience-toc ol {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px;
}
.tg-experience-toc ol li {
  font-size: var(--fs-body-sm); display: flex; align-items: baseline;
  gap: 8px; padding: 4px 0;
}
.tg-experience-toc ol li .n {
  color: #0744CC; font-weight: 700; font-size: var(--fs-body-xs);
  min-width: 16px; font-family: Helvetica, Arial, sans-serif;
}
.tg-experience-toc ol li a {
  color: #0744CC;
  text-decoration: underline;
  text-decoration-color: #cfd9eb;
}
.tg-experience-toc ol li a:hover { opacity: 0.7; }

/* --- Story chapter blocks --- */
.tg-experience-chapters {
  display: flex; flex-direction: column; gap: 28px;
}
.tg-experience-chapter h3 {
  font-size: var(--fs-title-lg); font-weight: 900; color: #0c2548;
  margin: 0 0 12px;
  padding: 10px 16px;
  background: #F9FAFC;
  border-left: 4px solid #0744CC;
  border-radius: 0 4px 4px 0;
  display: flex; align-items: center; gap: 10px;
  line-height: 1.4;
}
.tg-experience-chapter h3 .n {
  background: #0744CC; color: #fff;
  width: 26px; height: 26px; border-radius: 99px;
  display: grid; place-items: center;
  font-size: var(--fs-body-xs); font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
  flex-shrink: 0;
}
.tg-experience-chapter p {
  font-size: var(--fs-body-sm); color: #1a1f2e; line-height: var(--lh-loose);
  margin: 0 0 0 6px;
}
.tg-experience-chapter p + p { margin-top: 14px; }
.tg-experience-chapter strong {
  background: linear-gradient(transparent 60%, #fff5b1 60%);
  padding: 0 2px; font-weight: 700;
}
.tg-experience-chapter .again-yes {
  display: inline-block;
  background: #079765; color: #fff;
  font-weight: 900; padding: 8px 20px;
  border-radius: 999px; font-size: var(--fs-body-sm);
  margin: 0 0 12px 6px;
}

/* ============================================================
   3. Agent ratings section (3社評価カード)
   ============================================================ */
.tg-experience-ratings {
  background: #F9FAFC; padding: 48px 0 56px;
}
.tg-experience-ratings > .inner {
  max-width: 1040px; margin: 0 auto; padding: 0 40px;
}
.tg-experience-ratings .head {
  margin-bottom: 24px;
}
.tg-experience-ratings .head .eyebrow {
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.18em;
  color: #1765BF; text-transform: uppercase; margin: 0 0 6px;
}
.tg-experience-ratings .head h2 {
  font-size: var(--fs-h2-lg); font-weight: 900; letter-spacing: 0.02em;
  color: #0c2548; margin: 0; line-height: 1.35;
}
.tg-experience-ratings .head .lead {
  font-size: var(--fs-body-sm); color: #5a6378; margin: 8px 0 0;
}

.tg-experience-ratings .list {
  display: flex; flex-direction: column; gap: 18px;
}
.tg-experience-rating-card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 14px; padding: 24px;
  position: relative;
}
.tg-experience-rating-card.is-main {
  border: 2px solid #FFC700;
}
.tg-experience-rating-card .main-ribbon {
  position: absolute; top: -14px; left: 20px;
  background: #FFC700; color: #0c2548;
  padding: 5px 14px; border-radius: 999px;
  font-size: var(--fs-label-sm); font-weight: 900; letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(255, 199, 0, .35);
}

/* header row: logo / name+tags / CTA */
.tg-experience-rating-card .rc-head {
  display: grid; grid-template-columns: 180px 1fr 180px;
  gap: 20px; align-items: center; margin-bottom: 18px;
}
.tg-experience-rating-card .rc-logo {
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 8px; padding: 14px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.tg-experience-rating-card .rc-logo img {
  max-height: 28px; max-width: 100%; object-fit: contain;
}
.tg-experience-rating-card .rc-name {
  font-size: var(--fs-title-md); font-weight: 900; color: #0c2548;
}
.tg-experience-rating-card .rc-tags {
  display: flex; gap: 4px; margin-top: 6px; flex-wrap: wrap;
}
.tg-experience-rating-card .rc-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: #FF6C00; color: #fff;
  font-weight: 900; font-size: var(--fs-btn-sm);
  padding: 12px 16px; border-radius: 8px;
  text-decoration: none; text-align: center;
  box-shadow: 0 4px 12px rgba(255, 108, 0, .25);
}
.tg-experience-rating-card .rc-cta:hover { opacity: 0.85; text-decoration: none; }

/* rating bars */
.tg-experience-rating-card .rc-bars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding: 16px 0; margin-bottom: 14px;
  border-top: 1px solid #F0F2F8;
  border-bottom: 1px solid #F0F2F8;
}
.tg-experience-rating-card .rc-bar {
  display: grid; grid-template-columns: 100px 1fr 50px;
  gap: 8px; align-items: center; font-size: var(--fs-body-sm);
}
.tg-experience-rating-card .rc-bar .l {
  color: #5a6378; font-weight: 700;
}
.tg-experience-rating-card .rc-bar .track {
  height: 6px; background: #E5E9F0;
  border-radius: 3px; position: relative; overflow: hidden;
}
.tg-experience-rating-card .rc-bar .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 3px;
}
.tg-experience-rating-card .rc-bar .fill.score-5 { width: 100%; background: #FF6C00; }
.tg-experience-rating-card .rc-bar .fill.score-4 { width: 80%;  background: #FFC700; }
.tg-experience-rating-card .rc-bar .fill.score-3 { width: 60%;  background: #0744CC; }
.tg-experience-rating-card .rc-bar .fill.score-2 { width: 40%;  background: #0744CC; }
.tg-experience-rating-card .rc-bar .fill.freq-just  { width: 60%; background: #0744CC; }
.tg-experience-rating-card .rc-bar .fill.freq-much  { width: 80%; background: #0744CC; }
.tg-experience-rating-card .rc-bar .fill.freq-few   { width: 40%; background: #0744CC; }
.tg-experience-rating-card .rc-bar .v {
  text-align: right; font-weight: 900; color: #0c2548; font-size: var(--fs-body-sm);
}

/* good / bad */
.tg-experience-rating-card .rc-procon {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.tg-experience-rating-card .rc-good,
.tg-experience-rating-card .rc-bad {
  border-radius: 10px; padding: 14px;
}
.tg-experience-rating-card .rc-good {
  background: #DFF1ED; border: 1px solid #BFE4DC;
}
.tg-experience-rating-card .rc-bad {
  background: #FFE5E0; border: 1px solid #FFC8C0;
}
.tg-experience-rating-card .rc-good .ttl,
.tg-experience-rating-card .rc-bad .ttl {
  font-size: var(--fs-label-md); font-weight: 900; letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 4px;
}
.tg-experience-rating-card .rc-good .ttl { color: #045E3E; }
.tg-experience-rating-card .rc-bad .ttl  { color: #8B0606; }
.tg-experience-rating-card .rc-good .ttl svg { width: 14px; height: 14px; color: #079765; }
.tg-experience-rating-card .rc-good .body,
.tg-experience-rating-card .rc-bad .body {
  font-size: var(--fs-body-sm); color: #1a1f2e; line-height: 1.85;
}

/* footer link */
.tg-experience-rating-card .rc-footer {
  margin-top: 12px; text-align: right;
}
.tg-experience-rating-card .rc-footer a {
  font-size: var(--fs-body-xs); color: #0744CC; font-weight: 700;
}

/* ============================================================
   4. Related articles (6 cards)
   ============================================================ */
.tg-experience-related {
  max-width: 1040px; margin: 0 auto; padding: 48px 40px 56px;
}
.tg-experience-related .head { margin-bottom: 24px; }
.tg-experience-related .head .eyebrow {
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.18em;
  color: #1765BF; text-transform: uppercase; margin: 0 0 6px;
}
.tg-experience-related .head h2 {
  font-size: var(--fs-h2-lg); font-weight: 900; letter-spacing: 0.02em;
  color: #0c2548; margin: 0; line-height: 1.35;
}
.tg-experience-related .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tg-experience-related .card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.tg-experience-related .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  text-decoration: none;
}
.tg-experience-related .card .ttl {
  font-size: var(--fs-title-md); font-weight: 900; color: #0c2548; line-height: 1.55;
}
.tg-experience-related .card .sub {
  font-size: var(--fs-body-sm); color: #5a6378; line-height: 1.7;
}
.tg-experience-related .card .more {
  font-size: var(--fs-body-xs); color: #0744CC; font-weight: 700; margin-top: auto;
}

/* ============================================================
   5. Disclaimer
   ============================================================ */
.tg-experience-disclaimer {
  max-width: 1040px; margin: 0 auto;
  padding: 0 40px 48px;
}
.tg-experience-disclaimer .box {
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 16px 20px;
  font-size: var(--fs-body-xs); color: #5a6378; line-height: 1.75;
}
.tg-experience-disclaimer .box strong { color: #1a1f2e; }

/* ============================================================
   6. Responsive (SP <= 768px)
   ============================================================ */
@media (max-width: 768px) {
  .tg-experience-hero { padding: 12px 0 28px; }
  .tg-experience-hero > .inner { padding: 0 16px; }

  .tg-experience-title h1 { font-size: 22px; line-height: 1.4; }
  .tg-experience-title .date { display: block; margin-left: 0; margin-top: 4px; }

  .tg-experience-profile {
    grid-template-columns: 1fr; gap: 16px; padding: 18px;
    text-align: left;
  }
  .tg-experience-profile .avatar {
    width: 72px; height: 72px;
  }
  .tg-experience-profile .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .tg-experience-profile .name-row .name { font-size: 17px; }

  .tg-experience-ba { padding: 16px 14px; }
  .tg-experience-ba .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tg-experience-ba .side .income { font-size: 22px; }
  .tg-experience-ba .arrow svg { transform: rotate(90deg); }
  .tg-experience-ba .result { font-size: var(--fs-body-xs); padding: 10px 12px; }
  .tg-experience-ba .result b { font-size: var(--fs-title-md); }

  .tg-experience-activity {
    grid-template-columns: repeat(2, 1fr); gap: 8px;
  }
  .tg-experience-activity .cell .v { font-size: 20px; }

  .tg-experience-story { padding: 24px 16px 32px; }
  .tg-experience-toc ol { grid-template-columns: 1fr; gap: 4px; }
  .tg-experience-toc ol li { font-size: var(--fs-body-xs); }

  .tg-experience-chapter h3 {
    font-size: 16px; padding: 10px 12px; line-height: 1.45;
  }
  .tg-experience-chapter h3 .n {
    width: 22px; height: 22px; font-size: var(--fs-label-sm);
  }
  .tg-experience-chapter p { font-size: 14px; line-height: 1.85; margin-left: 0; }

  .tg-experience-ratings { padding: 32px 0 40px; }
  .tg-experience-ratings > .inner { padding: 0 16px; }
  .tg-experience-ratings .head h2 { font-size: 22px; }

  .tg-experience-rating-card { padding: 18px 14px; }
  .tg-experience-rating-card .main-ribbon {
    font-size: var(--fs-label-sm); padding: 4px 10px; left: 12px;
  }
  .tg-experience-rating-card .rc-head {
    grid-template-columns: 1fr; gap: 12px;
  }
  .tg-experience-rating-card .rc-logo {
    height: 48px; padding: 10px;
  }
  .tg-experience-rating-card .rc-bars {
    grid-template-columns: 1fr; gap: 6px;
  }
  .tg-experience-rating-card .rc-bar {
    grid-template-columns: 90px 1fr 40px;
    font-size: var(--fs-label-md);
  }
  .tg-experience-rating-card .rc-procon {
    grid-template-columns: 1fr; gap: 10px;
  }

  .tg-experience-related { padding: 32px 16px 40px; }
  .tg-experience-related .head h2 { font-size: 22px; }
  .tg-experience-related .grid {
    grid-template-columns: 1fr; gap: 12px;
  }

  .tg-experience-disclaimer { padding: 0 16px 32px; }
}

/* =============================================================
   7. Experience Hub page sections (.tg-experience-hub-*)
   ============================================================= */

/* --- Hub Hero (タイトル + lead + メトリクスカード) --- */
.tg-experience-hub-hero {
  background: linear-gradient(180deg, #F4F7FB 0%, #fff 100%);
  border-bottom: 1px solid #E5E9F0;
  padding: 32px 0 40px;
}
.tg-experience-hub-hero > .inner {
  max-width: 1040px; margin: 0 auto; padding: 0 40px;
}
.tg-experience-hub-hero .tags {
  display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap;
}
.tg-experience-hub-hero h1 {
  font-size: var(--fs-h1); font-weight: 900; color: #0c2548;
  margin: 0 0 14px; line-height: 1.35; letter-spacing: -0.01em;
}
.tg-experience-hub-hero h1 .mark-y {
  background: linear-gradient(transparent 62%, #FFE45A 62%);
  padding: 0 4px;
}
.tg-experience-hub-hero .lead {
  font-size: var(--fs-body-md); color: #1a1f2e; line-height: var(--lh-loose);
  margin: 0 0 22px;
}
.tg-experience-hub-hero .lead strong {
  background: linear-gradient(transparent 60%, #fff5b1 60%);
  padding: 0 2px; font-weight: 700;
}
.tg-experience-hub-hero .lead .note {
  display: block; font-size: var(--fs-body-xs); color: #7a849c;
  margin-top: 8px; line-height: 1.6;
}
.tg-experience-hub-hero .metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 18px;
}
.tg-experience-hub-hero .metrics .cell {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 14px 16px; text-align: center;
  box-shadow: 0 4px 12px rgba(11, 40, 90, .04);
}
.tg-experience-hub-hero .metrics .cell.highlight {
  background: #FFF7C2; border: 2px solid #FFC700;
}
.tg-experience-hub-hero .metrics .cell .l {
  font-size: var(--fs-label-md); color: #7a849c; font-weight: 700;
  margin-bottom: 6px; letter-spacing: 0.05em;
}
.tg-experience-hub-hero .metrics .cell .v {
  font-size: var(--fs-stat-md); font-weight: 900; color: #0c2548;
  line-height: 1; font-family: Helvetica, Arial, sans-serif;
}
.tg-experience-hub-hero .metrics .cell.highlight .v { color: #FF6C00; }
.tg-experience-hub-hero .metrics .cell .u {
  font-size: var(--fs-body-xs); color: #5a6378; margin-left: 2px;
}
.tg-experience-hub-hero .metrics .cell.text .v {
  font-size: var(--fs-title-md); font-family: inherit;
}

.tg-experience-hub-hero .progress {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 999px; padding: 4px; height: 28px;
  position: relative; overflow: hidden;
}
.tg-experience-hub-hero .progress-bar {
  background: linear-gradient(90deg, #FF6C00 0%, #FFC700 100%);
  height: 100%; border-radius: 999px;
}
.tg-experience-hub-hero .progress-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fs-body-xs); font-weight: 700; color: #0c2548;
  letter-spacing: 0.02em;
}

/* --- Age cards (年代別 4枚) --- */
.tg-experience-hub-ages {
  max-width: 1040px; margin: 0 auto; padding: 40px 40px 16px;
}
.tg-experience-hub-ages .head { margin-bottom: 20px; }
.tg-experience-hub-ages .head .eyebrow {
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.18em;
  color: #1765BF; text-transform: uppercase; margin: 0 0 6px;
}
.tg-experience-hub-ages .head h2 {
  font-size: var(--fs-h2-lg); font-weight: 900; color: #0c2548;
  margin: 0; line-height: 1.35;
}
.tg-experience-hub-ages .head .lead {
  font-size: var(--fs-body-sm); color: #5a6378; margin: 8px 0 0; line-height: 1.7;
}
.tg-experience-hub-ages .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.tg-experience-hub-ages .card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 14px; padding: 18px;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px;
  align-items: center; text-decoration: none; color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.tg-experience-hub-ages .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 40, 90, .08);
  border-color: #0744CC;
  text-decoration: none;
}
.tg-experience-hub-ages .card .icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center; font-size: 22px;
}
.tg-experience-hub-ages .card.tone-20s .icon { background: #E2ECFF; }
.tg-experience-hub-ages .card.tone-30s .icon { background: #FFF7C2; }
.tg-experience-hub-ages .card.tone-40s .icon { background: #FFE6C9; }
.tg-experience-hub-ages .card.tone-50s .icon { background: #DFF1ED; }
.tg-experience-hub-ages .card .label {
  font-size: var(--fs-title-md); font-weight: 900; color: #0c2548;
  margin-bottom: 2px;
}
.tg-experience-hub-ages .card .sub {
  font-size: var(--fs-label-md); color: #7a849c; line-height: 1.5;
}
.tg-experience-hub-ages .card .count {
  text-align: right;
}
.tg-experience-hub-ages .card .count .n {
  font-size: var(--fs-title-xl); font-weight: 900; color: #0744CC;
  line-height: 1; font-family: Helvetica, Arial, sans-serif;
}
.tg-experience-hub-ages .card .count .u {
  font-size: var(--fs-body-xs); color: #5a6378; font-weight: 700;
}
.tg-experience-hub-ages .card.is-few .count .n { color: #7a849c; }

/* --- Experience list (公開済み 30件カードグリッド) --- */
.tg-experience-hub-list {
  max-width: 1040px; margin: 0 auto; padding: 40px 40px 16px;
}
.tg-experience-hub-list .head { margin-bottom: 20px; }
.tg-experience-hub-list .head .eyebrow {
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.18em;
  color: #1765BF; text-transform: uppercase; margin: 0 0 6px;
}
.tg-experience-hub-list .head h2 {
  font-size: var(--fs-h2-lg); font-weight: 900; color: #0c2548;
  margin: 0; line-height: 1.35;
}
.tg-experience-hub-list .head .lead {
  font-size: var(--fs-body-sm); color: #5a6378; margin: 8px 0 0; line-height: 1.7;
}
.tg-experience-hub-list .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tg-experience-hub-list .exp-card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.tg-experience-hub-list .exp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 40, 90, .08);
  text-decoration: none;
}
.tg-experience-hub-list .exp-card .row1 {
  display: flex; align-items: center; gap: 10px;
}
.tg-experience-hub-list .exp-card .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.tg-experience-hub-list .exp-card .avatar.m { background: #E2ECFF; }
.tg-experience-hub-list .exp-card .avatar.f { background: #FFE4EE; }
.tg-experience-hub-list .exp-card .avatar svg { width: 100%; height: 100%; }
.tg-experience-hub-list .exp-card .name-block {
  flex: 1; min-width: 0;
}
.tg-experience-hub-list .exp-card .name-block .tags {
  display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 2px;
}
.tg-experience-hub-list .exp-card .name-block .name {
  font-size: var(--fs-body-xs); color: #5a6378; font-weight: 700;
}
.tg-experience-hub-list .exp-card .result-block {
  text-align: right; flex-shrink: 0;
}
.tg-experience-hub-list .exp-card .result-block .l {
  font-size: 9px; color: #7a849c; font-weight: 700; letter-spacing: 0.08em;
}
.tg-experience-hub-list .exp-card .result-block .v {
  font-size: var(--fs-title-md); font-weight: 900; color: #FF6C00;
  line-height: 1; font-family: Helvetica, Arial, sans-serif;
}
.tg-experience-hub-list .exp-card .ttl {
  font-size: var(--fs-body-sm); font-weight: 700; color: #0c2548;
  line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.tg-experience-hub-list .exp-card .ba {
  font-size: var(--fs-label-md); color: #5a6378;
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 6px; padding: 6px 10px;
}
.tg-experience-hub-list .exp-card .ba b { color: #0c2548; font-weight: 700; }
.tg-experience-hub-list .exp-card .footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; margin-top: auto;
  border-top: 1px solid #F0F2F8;
  font-size: var(--fs-label-md); color: #7a849c;
}
.tg-experience-hub-list .exp-card .footer .agent {
  display: flex; align-items: center; gap: 4px;
}
.tg-experience-hub-list .exp-card .footer .agent b {
  color: #0c2548; font-weight: 700;
}
.tg-experience-hub-list .exp-card .footer .more {
  color: #0744CC; font-weight: 700;
}

/* --- How-to (体験談の読み方) --- */
.tg-experience-hub-howto {
  max-width: 1040px; margin: 0 auto; padding: 40px 40px 16px;
}
.tg-experience-hub-howto .head { margin-bottom: 20px; }
.tg-experience-hub-howto .head .eyebrow {
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.18em;
  color: #1765BF; text-transform: uppercase; margin: 0 0 6px;
}
.tg-experience-hub-howto .head h2 {
  font-size: var(--fs-h2-lg); font-weight: 900; color: #0c2548;
  margin: 0; line-height: 1.35;
}
.tg-experience-hub-howto .steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tg-experience-hub-howto .step {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 20px;
}
.tg-experience-hub-howto .step .n {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: #0744CC; color: #fff;
  font-size: var(--fs-body-xs); font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: 10px;
}
.tg-experience-hub-howto .step h3 {
  font-size: var(--fs-title-md); font-weight: 900; color: #0c2548;
  margin: 0 0 8px; line-height: 1.4;
}
.tg-experience-hub-howto .step p {
  font-size: var(--fs-body-sm); color: #1a1f2e; line-height: var(--lh-relaxed);
  margin: 0;
}
.tg-experience-hub-howto .step p strong {
  background: linear-gradient(transparent 60%, #fff5b1 60%);
  padding: 0 2px; font-weight: 700;
}

/* --- CTA (アンケート参加) --- */
.tg-experience-hub-cta {
  max-width: 1040px; margin: 32px auto 0; padding: 0 40px;
}
.tg-experience-hub-cta .box {
  background: linear-gradient(135deg, #0744CC 0%, #1765BF 100%);
  color: #fff; border-radius: 14px; padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  box-shadow: 0 8px 24px rgba(7, 68, 204, .25);
}
.tg-experience-hub-cta .box h3 {
  margin: 0 0 6px; font-size: var(--fs-title-xl); font-weight: 900;
  color: #fff; line-height: 1.4;
}
.tg-experience-hub-cta .box p {
  margin: 0; font-size: var(--fs-body-sm); line-height: var(--lh-relaxed);
  opacity: 0.95;
}
.tg-experience-hub-cta .box .btn-disabled {
  display: inline-block; padding: 12px 24px;
  background: rgba(255,255,255,0.2); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px; font-weight: 700; font-size: var(--fs-btn-sm);
  white-space: nowrap;
}
.tg-experience-hub-cta .box .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 26px;
  background: #fff; color: #0744CC;
  border-radius: 8px; font-weight: 900; font-size: var(--fs-btn-sm);
  white-space: nowrap; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.tg-experience-hub-cta .box .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
}
.tg-experience-hub-cta .box .btn svg {
  width: 14px; height: 14px;
}

/* --- Methodology --- */
.tg-experience-hub-methodology {
  max-width: 1040px; margin: 0 auto; padding: 40px 40px 56px;
}
.tg-experience-hub-methodology .head { margin-bottom: 16px; }
.tg-experience-hub-methodology .head .eyebrow {
  font-size: var(--fs-label-sm); font-weight: 700; letter-spacing: 0.18em;
  color: #1765BF; text-transform: uppercase; margin: 0 0 6px;
}
.tg-experience-hub-methodology .head h2 {
  font-size: var(--fs-h2-lg); font-weight: 900; color: #0c2548;
  margin: 0; line-height: 1.35;
}
.tg-experience-hub-methodology .box {
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 22px 26px;
}
.tg-experience-hub-methodology dl {
  display: grid; grid-template-columns: 140px 1fr; gap: 10px 20px;
  margin: 0; font-size: var(--fs-body-sm); line-height: 1.7;
}
.tg-experience-hub-methodology dt {
  color: #5a6378; font-weight: 700;
}
.tg-experience-hub-methodology dd {
  margin: 0; color: #1a1f2e;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .tg-experience-hub-hero { padding: 20px 0 28px; }
  .tg-experience-hub-hero > .inner { padding: 0 16px; }
  .tg-experience-hub-hero h1 { font-size: 22px; line-height: 1.4; }
  .tg-experience-hub-hero .lead { font-size: var(--fs-body-sm); }
  .tg-experience-hub-hero .metrics {
    grid-template-columns: repeat(2, 1fr); gap: 8px;
  }
  .tg-experience-hub-hero .metrics .cell { padding: 12px 10px; }
  .tg-experience-hub-hero .metrics .cell .v { font-size: 20px; }
  .tg-experience-hub-hero .metrics .cell.text .v { font-size: var(--fs-body-md); }

  .tg-experience-hub-ages { padding: 28px 16px 8px; }
  .tg-experience-hub-ages .head h2 { font-size: 22px; }
  .tg-experience-hub-ages .grid {
    grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .tg-experience-hub-ages .card { padding: 14px; grid-template-columns: 44px 1fr auto; gap: 10px; }
  .tg-experience-hub-ages .card .icon { width: 44px; height: 44px; font-size: 18px; border-radius: 10px; }
  .tg-experience-hub-ages .card .label { font-size: var(--fs-body-sm); }
  .tg-experience-hub-ages .card .sub { font-size: 11px; }
  .tg-experience-hub-ages .card .count .n { font-size: var(--fs-title-md); }

  .tg-experience-hub-list { padding: 28px 16px 8px; }
  .tg-experience-hub-list .head h2 { font-size: 22px; }
  .tg-experience-hub-list .grid {
    grid-template-columns: 1fr; gap: 12px;
  }

  .tg-experience-hub-howto { padding: 28px 16px 8px; }
  .tg-experience-hub-howto .head h2 { font-size: 22px; }
  .tg-experience-hub-howto .steps {
    grid-template-columns: 1fr; gap: 12px;
  }

  .tg-experience-hub-cta { padding: 0 16px; margin-top: 24px; }
  .tg-experience-hub-cta .box {
    grid-template-columns: 1fr; padding: 22px 20px; text-align: left;
    gap: 16px;
  }
  .tg-experience-hub-cta .box .btn-disabled,
  .tg-experience-hub-cta .box .btn { justify-content: center; text-align: center; }

  .tg-experience-hub-methodology { padding: 28px 16px 36px; }
  .tg-experience-hub-methodology .head h2 { font-size: 22px; }
  .tg-experience-hub-methodology .box { padding: 18px; }
  .tg-experience-hub-methodology dl {
    grid-template-columns: 1fr; gap: 4px 0;
  }
  .tg-experience-hub-methodology dt { margin-top: 8px; }
  .tg-experience-hub-methodology dt:first-child { margin-top: 0; }
}

/* =============================================================
   2. Experience List Page (年代別体験談一覧)
   - 20代/30代/40代/50代で共通利用。年代ごとの tone は
     .tg-exp-list-hero.is-age-20s 等で切り替える
   - JSX handoff: design_handoff_taikenkiichiran_renewal/experience-20s-page.jsx
   ============================================================= */

/* --- 共通 inner / sec-head --- */
.tg-exp-list-hero,
.tg-exp-list-section {
  background: #fff;
}
.tg-exp-list-hero > .inner,
.tg-exp-list-section > .inner {
  max-width: 1040px; margin: 0 auto; padding: 0 40px;
}
.tg-exp-list-section { padding: 32px 0 24px; }

.tg-exp-list-section .sec-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.tg-exp-list-section .sec-head .bar {
  display: inline-block; width: 4px; height: 22px;
  background: #0744CC; border-radius: 2px;
}
.tg-exp-list-section .sec-head h2 {
  margin: 0; font-size: var(--fs-h2); font-weight: 900; color: #0c2548;
  line-height: 1.35;
}

/* ---- Age-band tones (20s=blue / 30s=orange / 40s=green / 50s=navy) ---- */
.tg-exp-list-hero.is-age-20s .age-badge,
.tg-exp-list-section.is-age-20s .sec-head .bar { background: #0744CC; }
.tg-exp-list-hero.is-age-30s .age-badge,
.tg-exp-list-section.is-age-30s .sec-head .bar { background: #FF6C00; }
.tg-exp-list-hero.is-age-40s .age-badge,
.tg-exp-list-section.is-age-40s .sec-head .bar { background: #079765; }
.tg-exp-list-hero.is-age-50s .age-badge,
.tg-exp-list-section.is-age-50s .sec-head .bar { background: #0c2548; }

/* age-band related-head bar follows section tone */
.tg-exp20-related.is-age-30s .related-head .bar { background: #FF6C00; }
.tg-exp20-related.is-age-40s .related-head .bar { background: #079765; }
.tg-exp20-related.is-age-50s .related-head .bar { background: #0c2548; }

/* active state for non-20s pages */
.tg-exp20-other-ages .age-card.is-active.is-30s {
  background: #FFEEDD; border: 2px solid #FF6C00;
  box-shadow: 0 6px 16px rgba(255, 108, 0, .13);
}
.tg-exp20-other-ages .age-card.is-active.is-30s .age-icon { background: #fff; }
.tg-exp20-other-ages .age-card.is-active.is-30s .age-status { color: #FF6C00; font-weight: 900; }

.tg-exp20-other-ages .age-card.is-active.is-40s {
  background: #DFF1ED; border: 2px solid #079765;
  box-shadow: 0 6px 16px rgba(7, 151, 101, .13);
}
.tg-exp20-other-ages .age-card.is-active.is-40s .age-icon { background: #fff; }
.tg-exp20-other-ages .age-card.is-active.is-40s .age-status { color: #079765; font-weight: 900; }

.tg-exp20-other-ages .age-card.is-active.is-50s {
  background: #E7EBF3; border: 2px solid #0c2548;
  box-shadow: 0 6px 16px rgba(12, 37, 72, .13);
}
.tg-exp20-other-ages .age-card.is-active.is-50s .age-icon { background: #fff; }
.tg-exp20-other-ages .age-card.is-active.is-50s .age-status { color: #0c2548; font-weight: 900; }

/* ============================================================
   2-1. Hero
   ============================================================ */
.tg-exp20-hero {
  background: #fff;
  border-bottom: 1px solid #E5E9F0;
  padding: 32px 0 28px;
}
.tg-exp20-hero .eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 900;
  color: #0744CC; letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.tg-exp20-hero h1 {
  font-size: var(--fs-h1); font-weight: 900; color: #0c2548;
  margin: 0 0 10px; line-height: 1.35; letter-spacing: -0.01em;
}
.tg-exp20-hero h1 .mark-y {
  background: linear-gradient(transparent 62%, #FFE45A 62%);
  padding: 0 4px;
}

.tg-exp20-hero .meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; color: #7a849c;
  margin-bottom: 22px; flex-wrap: wrap;
}
.tg-exp20-hero .meta .age-badge {
  background: #0744CC; color: #fff;
  padding: 3px 10px; border-radius: 3px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.05em;
}
.tg-exp20-hero .meta .dot { color: #c1c8d4; }

.tg-exp20-hero .hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; align-items: stretch;
}
.tg-exp20-hero .hero-lead {
  background: #F4F7FB;
  border: 1px solid #E5E9F0;
  border-radius: 14px;
  padding: 22px 24px;
  font-size: var(--fs-body-md); color: #1a1f2e; line-height: 1.9;
  display: flex; align-items: center;
}
.tg-exp20-hero .hero-lead p { margin: 0; }
.tg-exp20-hero .hero-lead b {
  background: linear-gradient(transparent 62%, #FFE45A 62%);
  padding: 0 2px; font-weight: 900;
}

.tg-exp20-hero .hero-point-card {
  background: linear-gradient(135deg, #0c2548 0%, #1a3a6e 100%);
  border-radius: 16px;
  padding: 22px 26px;
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 16px 32px rgba(11, 40, 90, .15);
}
.tg-exp20-hero .hero-point-card .corner-accent {
  position: absolute; top: 0; left: 0;
  width: 64px; height: 64px;
  border-top: 3px solid #FFC700;
  border-left: 3px solid #FFC700;
  border-radius: 16px 0 0 0;
  pointer-events: none;
}
.tg-exp20-hero .hero-point-card .badge {
  display: inline-block;
  background: rgba(255, 199, 0, 0.15); color: #FFC700;
  padding: 3px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 900; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tg-exp20-hero .hero-point-card .title {
  font-size: var(--fs-title-lg); font-weight: 900;
  line-height: 1.6; color: #fff; margin-bottom: 12px;
}
.tg-exp20-hero .hero-point-card .title .hl {
  display: inline-block;
  background: #FFC700; color: #0c2548;
  padding: 2px 8px; border-radius: 4px;
  margin: 2px 2px; font-weight: 900;
}
.tg-exp20-hero .hero-point-card .points {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.tg-exp20-hero .hero-point-card .points li {
  font-size: var(--fs-body-sm); color: #c8d2e2; line-height: 1.7;
  padding-left: 14px; position: relative;
}
.tg-exp20-hero .hero-point-card .points li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #FFC700;
}
.tg-exp20-hero .hero-point-card .points b {
  color: #FFC700; font-weight: 900;
}

/* ============================================================
   2-2. Market Characteristics
   ============================================================ */
.tg-exp20-market .market-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 24px; align-items: stretch;
}
.tg-exp20-market .market-narrative {
  font-size: var(--fs-body-md); color: #1a1f2e; line-height: 1.9;
}
.tg-exp20-market .market-narrative p { margin: 0; }
.tg-exp20-market .market-narrative .mark-y {
  background: linear-gradient(transparent 62%, #FFE45A 62%);
  padding: 0 4px; font-weight: 700;
}
.tg-exp20-market .market-stats {
  display: flex; flex-direction: column; gap: 8px;
}
.tg-exp20-market .stat {
  border-radius: 10px; padding: 12px 16px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 12px;
}
.tg-exp20-market .stat-l .l {
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; margin-bottom: 2px;
}
.tg-exp20-market .stat-l .note {
  font-size: 10px; color: #5a6378;
}
.tg-exp20-market .stat-v {
  display: flex; align-items: baseline; gap: 2px;
}
.tg-exp20-market .stat-v .v {
  font-size: 24px; font-weight: 900;
  font-family: Helvetica, Arial, sans-serif; line-height: 1;
}
.tg-exp20-market .stat-v .u {
  font-size: 12px; font-weight: 900;
}
.tg-exp20-market .stat.tone-blue   { background: #EAF1FF; }
.tg-exp20-market .stat.tone-blue   .l,
.tg-exp20-market .stat.tone-blue   .v,
.tg-exp20-market .stat.tone-blue   .u { color: #0744CC; }
.tg-exp20-market .stat.tone-orange { background: #FFEEDD; }
.tg-exp20-market .stat.tone-orange .l,
.tg-exp20-market .stat.tone-orange .v,
.tg-exp20-market .stat.tone-orange .u { color: #FF6C00; }
.tg-exp20-market .stat.tone-green  { background: #DFF1ED; }
.tg-exp20-market .stat.tone-green  .l,
.tg-exp20-market .stat.tone-green  .v,
.tg-exp20-market .stat.tone-green  .u { color: #079765; }

/* ============================================================
   2-3. Themes
   ============================================================ */
.tg-exp20-themes .themes-box {
  background: #F9FAFC; border: 1px solid #E5E9F0;
  border-radius: 14px; padding: 20px 24px;
}
.tg-exp20-themes .themes-lead {
  font-size: var(--fs-body-sm); color: #5a6378;
  line-height: 1.85; margin: 0 0 14px;
}
.tg-exp20-themes .themes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.tg-exp20-themes .theme-card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 10px; padding: 12px 14px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 12px; align-items: center;
}
.tg-exp20-themes .theme-tag {
  background: #EAF1FF; color: #0744CC;
  padding: 4px 10px; border-radius: 3px;
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.02em; white-space: nowrap;
}
.tg-exp20-themes .theme-body {
  font-size: var(--fs-body-sm); color: #1a1f2e; line-height: 1.7;
}

/* ============================================================
   2-4. Published List (cards grid)
   ============================================================ */
.tg-exp20-list .sec-head .count-num {
  color: #0744CC;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp20-list .list-lead {
  font-size: var(--fs-body-sm); color: #5a6378;
  line-height: 1.85; margin: 0 0 18px;
}
.tg-exp20-list .cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tg-exp20-list .exp-card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 16px 18px;
  box-shadow: 0 6px 16px rgba(11, 40, 90, .04);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
.tg-exp20-list .exp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 40, 90, .1);
  border-color: #0744CC;
  text-decoration: none;
}

.tg-exp20-list .exp-card .card-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.tg-exp20-list .exp-card .code {
  background: #0c2548; color: #FFC700;
  padding: 4px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.05em;
}
.tg-exp20-list .exp-card .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: #F4F7FB;
  display: inline-flex; align-items: center; justify-content: center;
}
.tg-exp20-list .exp-card .avatar svg {
  width: 28px; height: 28px;
}
.tg-exp20-list .exp-card .nick {
  font-size: var(--fs-label-md); color: #7a849c; font-weight: 700;
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.tg-exp20-list .exp-card .tags {
  display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 8px;
}

.tg-exp20-list .exp-card .card-title {
  font-size: var(--fs-title-sm); font-weight: 900; color: #0c2548;
  line-height: 1.55; margin-bottom: 12px;
  min-height: 64px; flex: 1;
}

.tg-exp20-list .exp-card .card-meta {
  background: #F9FAFC; border-radius: 8px;
  padding: 10px 12px;
  font-size: var(--fs-body-sm); color: #5a6378; line-height: 1.7;
  margin-bottom: 12px;
}
.tg-exp20-list .exp-card .card-meta .band { margin-bottom: 4px; }
.tg-exp20-list .exp-card .card-meta .ba {
  display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.tg-exp20-list .exp-card .card-meta .ba .num {
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp20-list .exp-card .card-meta .ba .num.after {
  color: #0c2548; font-weight: 900;
}
.tg-exp20-list .exp-card .card-meta .ba .arr {
  flex-shrink: 0;
}
.tg-exp20-list .exp-card .card-meta .ba .diff {
  padding: 1px 6px; border-radius: 3px;
  font-size: 10px; font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp20-list .exp-card .card-meta .ba .diff.plus {
  background: #FFEEDD; color: #FF6C00;
}
.tg-exp20-list .exp-card .card-meta .ba .diff.zero {
  background: #F1F2F5; color: #5a6378;
}
.tg-exp20-list .exp-card .card-meta .agents .ag {
  color: #0744CC; font-weight: 700;
}

.tg-exp20-list .exp-card .cta {
  color: #0744CC; font-size: var(--fs-body-sm); font-weight: 900;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}

/* ============================================================
   2-5. Ranking Banner (blue CTA)
   ============================================================ */
.tg-exp20-ranking-banner { padding: 16px 0 32px; }
.tg-exp20-ranking-banner > .inner {
  max-width: 1040px; margin: 0 auto; padding: 0 40px;
}
.tg-exp20-ranking-banner .banner-box {
  background: linear-gradient(135deg, #0744CC 0%, #0633A3 100%);
  border-radius: 14px; padding: 22px 26px;
  color: #fff;
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  box-shadow: 0 12px 28px rgba(7, 68, 204, .18);
}
.tg-exp20-ranking-banner .badge {
  display: inline-block;
  background: #FFC700; color: #0c2548;
  padding: 3px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 900; letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.tg-exp20-ranking-banner .banner-ttl {
  font-size: var(--fs-title-xl); font-weight: 900; line-height: 1.45;
  margin-bottom: 8px;
}
.tg-exp20-ranking-banner .banner-ttl .hl {
  color: #FFC700;
}
.tg-exp20-ranking-banner .banner-sub {
  font-size: var(--fs-body-sm); color: #c8d2e2; line-height: 1.85;
}
.tg-exp20-ranking-banner .banner-cta {
  background: #FFC700; color: #0c2548;
  border-radius: 10px; padding: 16px 22px;
  font-size: var(--fs-body-md); font-weight: 900;
  text-decoration: none; text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 6px 16px rgba(255, 199, 0, .35);
}
.tg-exp20-ranking-banner .banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 199, 0, .5);
  text-decoration: none;
}

/* ============================================================
   2-6. Other Age Bands
   ============================================================ */
.tg-exp20-other-ages .other-lead {
  font-size: var(--fs-body-sm); color: #5a6378; line-height: 1.85;
  margin: 0 0 16px;
}
.tg-exp20-other-ages .age-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tg-exp20-other-ages .age-card {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 12px; padding: 20px 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(11, 40, 90, .03);
  transition: all 120ms ease;
}
.tg-exp20-other-ages .age-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 40, 90, .08);
  text-decoration: none;
}
.tg-exp20-other-ages .age-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.tg-exp20-other-ages .age-label {
  font-size: var(--fs-title-md); font-weight: 900; color: #0c2548;
}
.tg-exp20-other-ages .age-status {
  font-size: var(--fs-label-md); font-weight: 700; color: #7a849c;
}

/* tone per band */
.tg-exp20-other-ages .age-card.is-20s .age-icon { background: #EAF1FF; color: #0744CC; }
.tg-exp20-other-ages .age-card.is-30s .age-icon { background: #FFEEDD; color: #FF6C00; }
.tg-exp20-other-ages .age-card.is-40s .age-icon { background: #DFF1ED; color: #079765; }
.tg-exp20-other-ages .age-card.is-50s .age-icon { background: #E7EBF3; color: #0c2548; }

/* active state (current page) */
.tg-exp20-other-ages .age-card.is-active {
  cursor: default;
}
.tg-exp20-other-ages .age-card.is-active.is-20s {
  background: #EAF1FF;
  border: 2px solid #0744CC;
  box-shadow: 0 6px 16px rgba(7, 68, 204, .13);
}
.tg-exp20-other-ages .age-card.is-active.is-20s .age-icon {
  background: #fff;
}
.tg-exp20-other-ages .age-card.is-active.is-20s .age-status {
  color: #0744CC; font-weight: 900;
}

/* ============================================================
   2-7. Related list
   ============================================================ */
.tg-exp20-related { padding-bottom: 56px; }
.tg-exp20-related .related-box {
  background: #fff; border: 1px solid #E5E9F0;
  border-radius: 14px; padding: 20px 24px;
}
.tg-exp20-related .related-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid #E5E9F0;
}
.tg-exp20-related .related-head .bar {
  display: inline-block; width: 3px; height: 18px;
  background: #0744CC; border-radius: 2px;
}
.tg-exp20-related .related-head h2 {
  margin: 0; font-size: var(--fs-h2); font-weight: 900; color: #0c2548;
}
.tg-exp20-related .related-list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column;
}
.tg-exp20-related .related-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #E5E9F0;
  display: flex; gap: 10px; align-items: baseline;
  font-size: var(--fs-body-md);
}
.tg-exp20-related .related-list li:last-child {
  border-bottom: none;
}
.tg-exp20-related .related-list li .n {
  font-size: 11px; color: #7a849c; min-width: 24px;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp20-related .related-list li a {
  flex: 1; line-height: 1.55;
  color: #0744CC; font-weight: 700;
}
.tg-exp20-related .related-list li .arr {
  color: #0744CC; flex-shrink: 0; font-weight: 900;
}

/* ============================================================
   2-8. Responsive (<=768px)
   ============================================================ */
@media (max-width: 768px) {
  .tg-exp-list-hero > .inner,
  .tg-exp-list-section > .inner,
  .tg-exp20-ranking-banner > .inner {
    padding: 0 16px;
  }

  /* Hero */
  .tg-exp20-hero { padding: 20px 0 22px; }
  .tg-exp20-hero h1 { font-size: 20px; line-height: 1.5; }
  .tg-exp20-hero .meta { font-size: 10px; gap: 8px; margin-bottom: 14px; }
  .tg-exp20-hero .meta .age-badge { font-size: 10px; padding: 2px 8px; }
  .tg-exp20-hero .hero-grid {
    grid-template-columns: 1fr; gap: 12px;
  }
  .tg-exp20-hero .hero-lead {
    padding: 16px 18px; font-size: var(--fs-body-sm); line-height: 1.85;
  }
  .tg-exp20-hero .hero-point-card {
    padding: 16px 18px; border-radius: 12px;
  }
  .tg-exp20-hero .hero-point-card .corner-accent {
    width: 40px; height: 40px;
    border-top-width: 2px; border-left-width: 2px;
    border-radius: 12px 0 0 0;
  }
  .tg-exp20-hero .hero-point-card .title { font-size: var(--fs-title-md); line-height: 1.6; }
  .tg-exp20-hero .hero-point-card .points li { font-size: var(--fs-body-xs); }

  /* Sec head */
  .tg-exp-list-section .sec-head h2 { font-size: 18px; }

  /* Market */
  .tg-exp20-market .market-grid {
    grid-template-columns: 1fr; gap: 14px;
  }
  .tg-exp20-market .market-narrative { font-size: 12.5px; }
  .tg-exp20-market .stat { padding: 10px 12px; }
  .tg-exp20-market .stat-v .v { font-size: 20px; }

  /* Themes */
  .tg-exp20-themes .themes-box { padding: 14px 16px; }
  .tg-exp20-themes .themes-grid {
    grid-template-columns: 1fr; gap: 8px;
  }
  .tg-exp20-themes .theme-card { padding: 10px 12px; gap: 10px; }
  .tg-exp20-themes .theme-tag { font-size: 10.5px; padding: 3px 8px; }
  .tg-exp20-themes .theme-body { font-size: 11.5px; }

  /* List grid → 1col */
  .tg-exp20-list .cards-grid {
    grid-template-columns: 1fr; gap: 10px;
  }
  .tg-exp20-list .exp-card { padding: 14px 16px; }
  .tg-exp20-list .exp-card .card-title { min-height: 0; font-size: 13.5px; }
  .tg-exp20-list .exp-card .card-meta { font-size: 10.5px; }

  /* Ranking banner */
  .tg-exp20-ranking-banner .banner-box {
    grid-template-columns: 1fr; gap: 14px; padding: 18px 20px;
  }
  .tg-exp20-ranking-banner .banner-ttl { font-size: 15px; }
  .tg-exp20-ranking-banner .banner-cta {
    font-size: 13px; padding: 14px 18px;
    white-space: normal;
  }

  /* Other age bands */
  .tg-exp20-other-ages .age-grid {
    grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .tg-exp20-other-ages .age-card { padding: 14px 12px; gap: 6px; }
  .tg-exp20-other-ages .age-icon { width: 36px; height: 36px; border-radius: 10px; }
  .tg-exp20-other-ages .age-label { font-size: 13px; }
  .tg-exp20-other-ages .age-status { font-size: 10.5px; }

  /* Related */
  .tg-exp20-related .related-box { padding: 16px 18px; }
  .tg-exp20-related .related-head h2 { font-size: 15px; }
  .tg-exp20-related .related-list li { font-size: 12px; padding: 9px 0; }
  .tg-exp20-related .related-list li .n { min-width: 22px; font-size: 10.5px; }
}

/* ============================================================
   Experience Hub (新版・正典) — .tg-exp-hub-*
   旧版の .tg-experience-hub-* とは別系統。
   ============================================================ */

/* ---------------- 共通: .inner / .sec-head / .eyebrow / .lead ---------------- */
.tg-exp-hub-hero .inner,
.tg-exp-hub-byage .inner,
.tg-exp-hub-goal .inner,
.tg-exp-hub-list .inner,
.tg-exp-hub-howto .inner,
.tg-exp-hub-research .inner,
.tg-exp-hub-related .inner,
.tg-exp-hub-methodology .inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}

.tg-exp-hub-byage .sec-head,
.tg-exp-hub-list .sec-head,
.tg-exp-hub-howto .sec-head {
  margin-bottom: 18px;
}
.tg-exp-hub-byage .sec-head .eyebrow,
.tg-exp-hub-list .sec-head .eyebrow,
.tg-exp-hub-howto .sec-head .eyebrow,
.tg-exp-hub-related .sec-head .eyebrow {
  color: #0744CC;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.tg-exp-hub-byage .sec-head h2,
.tg-exp-hub-list .sec-head h2,
.tg-exp-hub-howto .sec-head h2 {
  margin: 0 0 6px;
  font-size: var(--fs-h2);
  font-weight: 900;
  color: #0c2548;
  line-height: 1.4;
}
.tg-exp-hub-byage .sec-head .lead,
.tg-exp-hub-list .sec-head .lead,
.tg-exp-hub-howto .sec-head .lead {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: #5a6378;
  line-height: 1.85;
}
.tg-exp-hub-related .sec-head.sm h2 {
  margin: 0;
  font-size: var(--fs-title-xl);
  font-weight: 900;
  color: #0c2548;
}

/* ============================================================
   Hero — 整理軸 + 4 stat blocks
   ============================================================ */
.tg-exp-hub-hero {
  background: linear-gradient(180deg, #F4F7FB 0%, #fff 100%);
  border-bottom: 1px solid #E5E9F0;
  padding: 32px 0 40px;
}
.tg-exp-hub-hero .title-cluster {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.tg-exp-hub-hero .title-cluster .badge {
  background: #0744CC;
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.tg-exp-hub-hero .title-cluster .meta {
  font-size: var(--fs-label-md);
  color: #7a849c;
}
.tg-exp-hub-hero .eyebrow {
  color: #0744CC;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.tg-exp-hub-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 900;
  color: #0c2548;
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.tg-exp-hub-hero .lead {
  font-size: var(--fs-body-sm);
  color: #1a1f2e;
  line-height: 1.95;
  max-width: 760px;
  margin: 0 0 24px;
}

/* Overview card */
.tg-exp-hub-hero .overview-card {
  background: #fff;
  border: 1px solid #E5E9F0;
  border-radius: 16px;
  padding: 22px 26px 24px;
  box-shadow: 0 12px 32px rgba(11, 40, 90, .06);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.tg-exp-hub-hero .overview-left {
  padding-right: 24px;
  border-right: 1px solid #E5E9F0;
}
.tg-exp-hub-hero .axis-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-label-sm);
  color: #0744CC;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tg-exp-hub-hero .axis-eyebrow .axis-bar {
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #0744CC;
  border-radius: 2px;
}
.tg-exp-hub-hero .axis-title {
  font-size: var(--fs-title-sm);
  font-weight: 900;
  color: #0c2548;
  margin-bottom: 12px;
  line-height: 1.55;
}
.tg-exp-hub-hero .axis-body {
  font-size: var(--fs-body-sm);
  color: #1a1f2e;
  line-height: 1.95;
}
.tg-exp-hub-hero .axis-body .axis-note {
  display: block;
  margin-top: 8px;
  color: #5a6378;
  font-size: var(--fs-label-md);
}

/* 4 stat blocks */
.tg-exp-hub-hero .overview-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}
.tg-exp-hub-hero .stat {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid;
}
.tg-exp-hub-hero .stat.tone-blue   { background: #EAF1FF; border-color: rgba(7, 68, 204, 0.2); color: #0744CC; }
.tg-exp-hub-hero .stat.tone-orange { background: #FFEEDD; border-color: rgba(255, 108, 0, 0.2); color: #FF6C00; }
.tg-exp-hub-hero .stat.tone-green  { background: #DFF1ED; border-color: rgba(7, 151, 101, 0.2); color: #079765; }
.tg-exp-hub-hero .stat.tone-yellow { background: #FFF7C2; border-color: rgba(255, 199, 0, 0.4); color: #6B4B00; }
.tg-exp-hub-hero .stat .l {
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tg-exp-hub-hero .stat .v {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.tg-exp-hub-hero .stat .v .num {
  font-size: var(--fs-stat-md);
  font-weight: 900;
  line-height: 1.1;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp-hub-hero .stat .v .num.small {
  font-size: var(--fs-body-md);
  font-family: inherit;
}
.tg-exp-hub-hero .stat .v .u {
  font-size: var(--fs-body-sm);
  font-weight: 900;
}

/* ============================================================
   By Age Band — 4年代カード
   ============================================================ */
.tg-exp-hub-byage {
  padding: 40px 0 24px;
}
.tg-exp-hub-byage .age-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tg-exp-hub-byage .age-card {
  background: #fff;
  border: 1px solid;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 16px rgba(11, 40, 90, .04);
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: flex-start;
}
.tg-exp-hub-byage .age-card.tone-blue   { border-color: #0744CC; }
.tg-exp-hub-byage .age-card.tone-orange { border-color: #FF6C00; }
.tg-exp-hub-byage .age-card.tone-green  { border-color: #079765; }
.tg-exp-hub-byage .age-card.tone-navy   { border-color: #0c2548; }

.tg-exp-hub-byage .age-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-exp-hub-byage .age-card.tone-blue   .age-icon { background: #EAF1FF; color: #0744CC; }
.tg-exp-hub-byage .age-card.tone-orange .age-icon { background: #FFEEDD; color: #FF6C00; }
.tg-exp-hub-byage .age-card.tone-green  .age-icon { background: #DFF1ED; color: #079765; }
.tg-exp-hub-byage .age-card.tone-navy   .age-icon { background: #E7EBF3; color: #0c2548; }

.tg-exp-hub-byage .age-body { min-width: 0; }
.tg-exp-hub-byage .age-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.tg-exp-hub-byage .age-band {
  font-size: var(--fs-title-xl);
  font-weight: 900;
  color: #0c2548;
  letter-spacing: -0.005em;
}
.tg-exp-hub-byage .age-count {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp-hub-byage .age-card.tone-blue   .age-count { background: #0744CC; }
.tg-exp-hub-byage .age-card.tone-orange .age-count { background: #FF6C00; }
.tg-exp-hub-byage .age-card.tone-green  .age-count { background: #079765; }
.tg-exp-hub-byage .age-card.tone-navy   .age-count { background: #0c2548; }

.tg-exp-hub-byage .age-headline {
  font-size: var(--fs-label-md);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.tg-exp-hub-byage .age-card.tone-blue   .age-headline { color: #0744CC; }
.tg-exp-hub-byage .age-card.tone-orange .age-headline { color: #FF6C00; }
.tg-exp-hub-byage .age-card.tone-green  .age-headline { color: #079765; }
.tg-exp-hub-byage .age-card.tone-navy   .age-headline { color: #0c2548; }

.tg-exp-hub-byage .age-desc {
  font-size: var(--fs-body-sm);
  color: #1a1f2e;
  line-height: 1.85;
  margin: 0 0 10px;
}
.tg-exp-hub-byage .age-rep {
  background: #F9FAFC;
  border: 1px solid #E5E9F0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: var(--fs-body-sm);
}
.tg-exp-hub-byage .rep-label {
  font-size: var(--fs-label-sm);
  font-weight: 900;
  color: #7a849c;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.tg-exp-hub-byage .age-rep ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tg-exp-hub-byage .age-rep li {
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  padding: 2px 0;
}
.tg-exp-hub-byage .age-rep li a {
  color: #1a1f2e;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.tg-exp-hub-byage .age-rep li a:hover { color: #0744CC; }
.tg-exp-hub-byage .age-rep .rep-code {
  background: #0c2548;
  color: #FFC700;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.tg-exp-hub-byage .age-rep .rep-delta {
  padding: 1px 6px;
  border-radius: 3px;
  font-size: var(--fs-label-md);
  font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp-hub-byage .age-rep .rep-delta.plus { background: #FFEEDD; color: #FF6C00; }
.tg-exp-hub-byage .age-rep .rep-delta.zero { background: #F1F2F5; color: #5a6378; }

.tg-exp-hub-byage .age-cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: var(--fs-label-md);
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}
.tg-exp-hub-byage .age-card.tone-blue   .age-cta { background: #0744CC; }
.tg-exp-hub-byage .age-card.tone-orange .age-cta { background: #FF6C00; }
.tg-exp-hub-byage .age-card.tone-green  .age-cta { background: #079765; }
.tg-exp-hub-byage .age-card.tone-navy   .age-cta { background: #0c2548; }
.tg-exp-hub-byage .age-cta:hover { opacity: 0.92; }

/* ============================================================
   Goal Callout — 黄色目標バー（100本）
   ============================================================ */
.tg-exp-hub-goal {
  padding: 0 0 24px;
}
.tg-exp-hub-goal .goal-box {
  background: linear-gradient(135deg, #FFF7C2 0%, #FFE45A 100%);
  border: 2px solid #FFC700;
  border-radius: 14px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
}
.tg-exp-hub-goal .goal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #FF6C00;
  color: #FF6C00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-exp-hub-goal .goal-badge {
  display: inline-block;
  background: #FF6C00;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.tg-exp-hub-goal .goal-title {
  font-size: var(--fs-title-lg);
  font-weight: 900;
  color: #0c2548;
  line-height: 1.45;
  margin-bottom: 10px;
}
.tg-exp-hub-goal .goal-target { color: #FF6C00; }
.tg-exp-hub-goal .goal-progress {
  margin-bottom: 8px;
}
.tg-exp-hub-goal .goal-bar {
  position: relative;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 199, 0, 0.6);
}
.tg-exp-hub-goal .goal-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF6C00 0%, #FFA050 100%);
  border-radius: 999px;
}
.tg-exp-hub-goal .goal-progress-text {
  margin-top: 6px;
  font-size: var(--fs-body-sm);
  color: #1a1f2e;
  font-weight: 700;
}
.tg-exp-hub-goal .goal-progress-text b {
  color: #FF6C00;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp-hub-goal .goal-sub {
  font-size: var(--fs-label-md);
  color: #5a6378;
  line-height: 1.75;
}
.tg-exp-hub-goal .goal-cta {
  background: #FF6C00;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: var(--fs-label-md);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
  align-self: center;
}
.tg-exp-hub-goal .goal-cta:hover { opacity: 0.92; }

/* ============================================================
   Published List — 30本リスト（1行レイアウト）
   ============================================================ */
.tg-exp-hub-list {
  padding: 24px 0;
}
.tg-exp-hub-list .exp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tg-exp-hub-list .exp-item {
  background: #fff;
  border: 1px solid #E5E9F0;
  border-radius: 12px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 64px 52px 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(11, 40, 90, .03);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.tg-exp-hub-list .exp-item:hover {
  border-color: #0744CC;
  box-shadow: 0 8px 24px rgba(7, 68, 204, .08);
  transform: translateY(-1px);
}
.tg-exp-hub-list .exp-code {
  background: #0c2548;
  color: #FFC700;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.3;
}
.tg-exp-hub-list .exp-code .exp-code-label {
  font-size: 9px;
  color: #9ED4FF;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.tg-exp-hub-list .exp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F4F7FB;
  border: 1.5px solid #E5E9F0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-exp-hub-list .exp-avatar.m { background: #EAF1FF; border-color: #C0D2F0; }
.tg-exp-hub-list .exp-avatar.f { background: #FFE8E8; border-color: #F6BFC6; }
.tg-exp-hub-list .exp-avatar svg { width: 48px; height: 48px; display: block; }

.tg-exp-hub-list .exp-main { min-width: 0; }
.tg-exp-hub-list .exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin-bottom: 6px;
}
.tg-exp-hub-list .exp-band {
  font-size: var(--fs-label-md);
  color: #7a849c;
  margin-left: 4px;
}
.tg-exp-hub-list .exp-title {
  font-size: var(--fs-title-sm);
  font-weight: 900;
  color: #0c2548;
  line-height: 1.5;
  margin-bottom: 8px;
}
.tg-exp-hub-list .exp-ba {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: var(--fs-body-sm);
  color: #5a6378;
}
.tg-exp-hub-list .exp-ba .num {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #1a1f2e;
}
.tg-exp-hub-list .exp-ba .num.after {
  color: #0c2548;
  font-weight: 900;
}
.tg-exp-hub-list .exp-ba .diff {
  padding: 2px 8px;
  border-radius: 3px;
  font-size: var(--fs-body-sm);
  font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
}
.tg-exp-hub-list .exp-ba .diff.plus { background: #FFEEDD; color: #FF6C00; }
.tg-exp-hub-list .exp-ba .diff.zero { background: #F1F2F5; color: #5a6378; }
.tg-exp-hub-list .exp-ba .dot { color: #c1c8d4; }
.tg-exp-hub-list .exp-ba .agents-label { color: #7a849c; }
.tg-exp-hub-list .exp-ba .agents {
  color: #0744CC;
  font-weight: 700;
}
.tg-exp-hub-list .exp-cta {
  color: #0744CC;
  font-size: var(--fs-label-md);
  font-weight: 900;
  white-space: nowrap;
  align-self: center;
}

/* ============================================================
   Reading Guide — 3ステップカード
   ============================================================ */
.tg-exp-hub-howto {
  padding: 32px 0 24px;
}
.tg-exp-hub-howto .howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tg-exp-hub-howto .howto-card {
  background: #fff;
  border: 1px solid #E5E9F0;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 6px 16px rgba(11, 40, 90, .04);
}
.tg-exp-hub-howto .howto-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tg-exp-hub-howto .howto-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg-exp-hub-howto .howto-step {
  padding: 3px 10px;
  border-radius: 3px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.tg-exp-hub-howto .howto-card.tone-blue   .howto-icon { background: #EAF1FF; color: #0744CC; }
.tg-exp-hub-howto .howto-card.tone-blue   .howto-step { background: #EAF1FF; color: #0744CC; }
.tg-exp-hub-howto .howto-card.tone-orange .howto-icon { background: #FFEEDD; color: #FF6C00; }
.tg-exp-hub-howto .howto-card.tone-orange .howto-step { background: #FFEEDD; color: #FF6C00; }
.tg-exp-hub-howto .howto-card.tone-green  .howto-icon { background: #DFF1ED; color: #079765; }
.tg-exp-hub-howto .howto-card.tone-green  .howto-step { background: #DFF1ED; color: #079765; }

.tg-exp-hub-howto .howto-title {
  font-size: var(--fs-title-sm);
  font-weight: 900;
  color: #0c2548;
  line-height: 1.5;
  margin-bottom: 10px;
}
.tg-exp-hub-howto .howto-body {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: #1a1f2e;
  line-height: 1.95;
}
.tg-exp-hub-howto .howto-body code {
  background: #F1F2F5;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: var(--fs-label-md);
  color: #0744CC;
  font-family: Helvetica, Arial, sans-serif;
}

/* ============================================================
   Research CTA — ネイビー
   ============================================================ */
.tg-exp-hub-research {
  padding: 8px 0 24px;
}
.tg-exp-hub-research .research-box {
  background: linear-gradient(135deg, #0c2548 0%, #1a3a6e 100%);
  border-radius: 16px;
  padding: 28px 30px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(11, 40, 90, .15);
}
.tg-exp-hub-research .research-badge {
  display: inline-block;
  background: #FFC700;
  color: #0c2548;
  padding: 3px 12px;
  border-radius: 3px;
  font-size: var(--fs-label-sm);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.tg-exp-hub-research .research-title {
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 12px;
}
.tg-exp-hub-research .research-title .hl { color: #FFC700; }
.tg-exp-hub-research .research-body {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: #b8c8e0;
  line-height: 1.95;
  max-width: 600px;
}
.tg-exp-hub-research .research-cta-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.tg-exp-hub-research .research-cta {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: var(--fs-label-md);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.tg-exp-hub-research .research-cta.yellow {
  background: #FFC700;
  color: #0c2548;
}
.tg-exp-hub-research .research-cta.white {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.tg-exp-hub-research .research-cta:hover { opacity: 0.9; }

/* ============================================================
   Related — 2列（ランキング + 関連記事）
   ============================================================ */
.tg-exp-hub-related {
  padding: 24px 0;
}
.tg-exp-hub-related .related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.tg-exp-hub-related .sec-head.sm {
  margin-bottom: 14px;
}
.tg-exp-hub-related .rank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tg-exp-hub-related .rank-item {
  background: #fff;
  border: 1px solid #E5E9F0;
  border-radius: 10px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.tg-exp-hub-related .rank-item:hover { border-color: #0744CC; }
.tg-exp-hub-related .rank-age {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--fs-label-md);
  font-weight: 900;
  font-family: Helvetica, Arial, sans-serif;
  color: #fff;
}
.tg-exp-hub-related .rank-age.tone-blue   { background: #0744CC; }
.tg-exp-hub-related .rank-age.tone-orange { background: #FF6C00; }
.tg-exp-hub-related .rank-age.tone-green  { background: #079765; }
.tg-exp-hub-related .rank-age.tone-navy   { background: #0c2548; }
.tg-exp-hub-related .rank-text {
  font-size: var(--fs-body-sm);
  font-weight: 700;
  color: #0c2548;
}
.tg-exp-hub-related .rank-arr {
  color: #0744CC;
  font-weight: 900;
  font-size: var(--fs-body-md);
}

.tg-exp-hub-related .related-articles {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.tg-exp-hub-related .related-articles li {
  padding: 10px 0;
  border-bottom: 1px dashed #E5E9F0;
  font-size: var(--fs-body-sm);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.tg-exp-hub-related .related-articles li .n {
  font-size: var(--fs-label-md);
  color: #7a849c;
  font-family: Helvetica, Arial, sans-serif;
  min-width: 24px;
}
.tg-exp-hub-related .related-articles li a {
  flex: 1;
  color: #0744CC;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}
.tg-exp-hub-related .related-articles li a:hover { text-decoration: underline; }
.tg-exp-hub-related .related-articles li .arr {
  color: #0744CC;
  flex-shrink: 0;
  font-weight: 900;
}

/* ============================================================
   Methodology — 黄色背景の調査方法カード
   ============================================================ */
.tg-exp-hub-methodology {
  padding: 24px 0 56px;
}
.tg-exp-hub-methodology .meth-box {
  background: #FFFBE0;
  border: 1px solid #FFE45A;
  border-radius: 14px;
  padding: 24px 28px;
}
.tg-exp-hub-methodology .meth-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #E5C547;
  color: #6B4B00;
}
.tg-exp-hub-methodology .meth-head h2 {
  margin: 0;
  font-size: var(--fs-title-lg);
  font-weight: 900;
  color: #0c2548;
}
.tg-exp-hub-methodology .meth-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.tg-exp-hub-methodology .meth-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: start;
}
.tg-exp-hub-methodology .meth-row dt {
  font-size: var(--fs-body-sm);
  font-weight: 900;
  color: #6B4B00;
  background: #FFF1A8;
  border-radius: 4px;
  padding: 4px 8px;
  text-align: center;
  align-self: start;
}
.tg-exp-hub-methodology .meth-row dd {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: #1a1f2e;
  line-height: 1.85;
}

/* ============================================================
   SP (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  .tg-exp-hub-hero .inner,
  .tg-exp-hub-byage .inner,
  .tg-exp-hub-goal .inner,
  .tg-exp-hub-list .inner,
  .tg-exp-hub-howto .inner,
  .tg-exp-hub-research .inner,
  .tg-exp-hub-related .inner,
  .tg-exp-hub-methodology .inner {
    padding: 0 16px;
  }

  /* Hero */
  .tg-exp-hub-hero { padding: 20px 0 28px; }
  .tg-exp-hub-hero h1 { font-size: var(--fs-h2); }
  .tg-exp-hub-hero .lead { font-size: var(--fs-body-sm); }
  .tg-exp-hub-hero .overview-card {
    grid-template-columns: 1fr;
    padding: 18px 18px 20px;
    gap: 18px;
  }
  .tg-exp-hub-hero .overview-left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 18px;
    border-bottom: 1px solid #E5E9F0;
  }
  .tg-exp-hub-hero .axis-title { font-size: var(--fs-body-md); }
  .tg-exp-hub-hero .overview-right { gap: 8px; }
  .tg-exp-hub-hero .stat { padding: 10px 12px; }
  .tg-exp-hub-hero .stat .v .num { font-size: var(--fs-stat-sm); }
  .tg-exp-hub-hero .stat .v .num.small { font-size: var(--fs-body-sm); }

  /* By Age Band */
  .tg-exp-hub-byage { padding: 28px 0 16px; }
  .tg-exp-hub-byage .sec-head h2 { font-size: var(--fs-title-xl); }
  .tg-exp-hub-byage .age-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tg-exp-hub-byage .age-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px 16px 14px;
  }
  .tg-exp-hub-byage .age-icon { width: 44px; height: 44px; border-radius: 10px; }
  .tg-exp-hub-byage .age-icon svg { width: 22px; height: 22px; }
  .tg-exp-hub-byage .age-band { font-size: var(--fs-title-lg); }
  .tg-exp-hub-byage .age-headline { font-size: var(--fs-label-md); }
  .tg-exp-hub-byage .age-desc { font-size: var(--fs-body-sm); }
  .tg-exp-hub-byage .age-rep li { font-size: var(--fs-body-sm); }
  .tg-exp-hub-byage .age-cta {
    grid-column: 1 / -1;
    align-self: stretch;
    justify-content: center;
    padding: 10px 16px;
    margin-top: 8px;
  }

  /* Goal */
  .tg-exp-hub-goal .goal-box {
    grid-template-columns: 44px 1fr;
    padding: 16px 18px;
    gap: 14px;
  }
  .tg-exp-hub-goal .goal-icon { width: 44px; height: 44px; }
  .tg-exp-hub-goal .goal-icon svg { width: 22px; height: 22px; }
  .tg-exp-hub-goal .goal-title { font-size: var(--fs-body-md); }
  .tg-exp-hub-goal .goal-progress-text { font-size: var(--fs-label-md); }
  .tg-exp-hub-goal .goal-sub { font-size: var(--fs-label-md); }
  .tg-exp-hub-goal .goal-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }

  /* Published List */
  .tg-exp-hub-list .sec-head h2 { font-size: var(--fs-title-xl); }
  .tg-exp-hub-list .exp-item {
    grid-template-columns: 52px 44px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }
  .tg-exp-hub-list .exp-code { font-size: var(--fs-label-sm); padding: 4px 6px; }
  .tg-exp-hub-list .exp-avatar { width: 44px; height: 44px; }
  .tg-exp-hub-list .exp-avatar svg { width: 44px; height: 44px; }
  .tg-exp-hub-list .exp-title { font-size: var(--fs-body-sm); }
  .tg-exp-hub-list .exp-ba {
    font-size: var(--fs-label-md);
    gap: 4px;
  }
  .tg-exp-hub-list .exp-cta {
    grid-column: 1 / -1;
    text-align: right;
    margin-top: 2px;
  }
  .tg-exp-hub-list .exp-band { font-size: var(--fs-label-sm); width: 100%; margin-left: 0; }

  /* Reading Guide */
  .tg-exp-hub-howto { padding: 24px 0 16px; }
  .tg-exp-hub-howto .sec-head h2 { font-size: var(--fs-title-xl); }
  .tg-exp-hub-howto .howto-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tg-exp-hub-howto .howto-card { padding: 16px 18px; }
  .tg-exp-hub-howto .howto-title { font-size: var(--fs-body-md); }
  .tg-exp-hub-howto .howto-body { font-size: var(--fs-body-sm); }

  /* Research CTA */
  .tg-exp-hub-research .research-box {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 16px;
  }
  .tg-exp-hub-research .research-title { font-size: var(--fs-title-xl); }
  .tg-exp-hub-research .research-body { font-size: var(--fs-body-sm); }
  .tg-exp-hub-research .research-cta-block { flex-direction: column; gap: 8px; }

  /* Related */
  .tg-exp-hub-related .related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tg-exp-hub-related .sec-head.sm h2 { font-size: var(--fs-title-lg); }
  .tg-exp-hub-related .rank-text { font-size: var(--fs-body-sm); }
  .tg-exp-hub-related .related-articles li { font-size: var(--fs-body-sm); }

  /* Methodology */
  .tg-exp-hub-methodology .meth-box { padding: 18px 18px; }
  .tg-exp-hub-methodology .meth-head h2 { font-size: var(--fs-title-md); }
  .tg-exp-hub-methodology .meth-dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tg-exp-hub-methodology .meth-row {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }
  .tg-exp-hub-methodology .meth-row dt { font-size: var(--fs-label-md); }
  .tg-exp-hub-methodology .meth-row dd { font-size: var(--fs-body-sm); }
}
