/* =========================================================
   T2S LP04 — Production Styles
   (design-system.html のトークンと一致)
   ========================================================= */

:root {
  --color-navy-900: #0B1E3F;
  --color-navy-800: #11264F;
  --color-navy-700: #1A3464;
  --color-navy-600: #2A4F8F;
  --color-navy-500: #3D6EB5;
  --color-blue-400: #5B8FD9;
  --color-blue-300: #8FB3E8;
  --color-blue-200: #C5DBF2;
  --color-blue-100: #E4EEF9;
  --color-blue-50:  #F2F7FC;
  --color-red-700: #A8001C;
  --color-red-600: #C8102E;
  --color-red-500: #DC2540;
  --color-red-100: #FBE5E9;
  --color-white:   #FFFFFF;
  --color-paper:   #FAFBFD;
  --color-gray-100:#F1F4F8;
  --color-gray-200:#E2E7EE;
  --color-gray-300:#C9D0DA;
  --color-gray-400:#9AA4B2;
  --color-gray-500:#6B7280;
  --color-gray-700:#374151;
  --color-ink:     #1A2236;
  --color-success: #1F8A55;

  --color-bg-soft: linear-gradient(180deg, #FFFFFF 0%, #EAF2FB 100%);
  --color-bg-hero: linear-gradient(135deg, #061633 0%, #0B2A5C 55%, #11448C 100%);

  --font-serif: "Roboto", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans:  "Roboto", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-en:    "Roboto", "Noto Serif JP", "Hiragino Mincho ProN", serif;

  --fs-display: clamp(38px, 5.4vw, 76px);
  --fs-h1:      clamp(30px, 3.8vw, 54px);
  --fs-h2:      clamp(24px, 2.8vw, 40px);
  --fs-h3:      clamp(19px, 1.9vw, 26px);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 30, 63, 0.06);
  --shadow-md: 0 4px 14px rgba(11, 30, 63, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 30, 63, 0.12);

  --container: 1280px;
  --container-narrow: 880px;

  --header-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-ink);
  background: #f5fafe;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  background: url("../images/section-03/backgrounds/section-03-bg-desktop@2x.jpg") center top / cover no-repeat;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 880px) {
  .site-bg {
    background-image: url("../images/section-03/backgrounds/section-03-bg-mobile@2x.jpg");
  }
}
main,
.footer {
  position: relative;
  z-index: 1;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #0b36bd;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0;
  overflow: hidden;
  background: transparent;
}
.section--soft { background: transparent; }
.section--blue { background: var(--color-blue-100); }
.section--dark { background: rgba(6,22,51,.88); color: var(--color-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-white); }

#final {
  background:
    linear-gradient(90deg, rgba(6, 18, 43, 0.86) 0%, rgba(6, 18, 43, 0.66) 48%, rgba(6, 18, 43, 0.24) 100%),
    url("../images/lp04-parts/section-06/background-desktop@2x.webp") center / cover no-repeat;
}

@media (max-width: 880px) {
  #final {
    background:
      linear-gradient(180deg, rgba(6, 18, 43, 0.82) 0%, rgba(6, 18, 43, 0.64) 52%, rgba(6, 18, 43, 0.36) 100%),
      url("../images/lp04-parts/section-06/background-mobile@2x.webp") center / cover no-repeat;
  }
}

.section__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--color-navy-600);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section--dark .section__eyebrow { color: var(--color-blue-300); }
.section__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: var(--fs-h2);
  margin-bottom: 14px;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .section__title { font-size: clamp(22px, 7vw, 36px); }
}
.section__lead {
  font-size: 15px;
  color: var(--color-gray-700);
  max-width: 680px;
  margin: 0 auto;
  line-height: 2;
}
.section--dark .section__lead { color: var(--color-blue-200); }

.title-bar {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: .3em;
  color: var(--color-navy-700);
  margin-bottom: 14px;
}
.title-bar::before, .title-bar::after {
  content: ""; width: 40px; height: 1px; background: var(--color-navy-600);
}
.section--dark .title-bar { color: var(--color-blue-300); }
.section--dark .title-bar::before,
.section--dark .title-bar::after { background: var(--color-blue-400); }

/* ---------- Speaker message ---------- */
.speaker-section {
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(6, 18, 43, 0.84) 0%, rgba(6, 18, 43, 0.54) 48%, rgba(6, 18, 43, 0.18) 100%),
    url("../images/section-06/message-bg-pc.png") center / cover no-repeat;
  padding-block: clamp(72px, 8vw, 112px);
  overflow: hidden;
}

.speaker-section .container {
  position: relative;
  z-index: 1;
}

.speaker-section .title-bar {
  color: var(--color-blue-300);
}

.speaker-section .title-bar::before,
.speaker-section .title-bar::after {
  background: var(--color-blue-400);
}

.speaker__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  column-gap: clamp(40px, 6vw, 86px);
  row-gap: 24px;
  align-items: start;
}

.speaker__media {
  max-width: 420px;
  width: 100%;
  justify-self: start;
}

.speaker__media-label {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: left;
  color: #dce9ff;
}

.speaker__portrait {
  position: relative;
  margin: 0;
  border: 1px solid rgba(197, 219, 242, 0.42);
  box-shadow: none;
  overflow: visible;
  background: transparent;
}

.speaker__portrait::before {
  display: none;
}

.speaker__portrait::after {
  display: none;
}

.speaker__portrait img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.speaker__copy {
  min-width: 0;
  max-width: 640px;
}

.speaker__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0 0 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(197, 219, 242, 0.28);
}

.speaker__lead,
.speaker__body,
.speaker__bio {
  font-size: 14px;
  color: var(--color-blue-100);
  line-height: 2;
}

.speaker__lead {
  margin-bottom: 18px;
}

.speaker__body {
  margin-bottom: 28px;
}

.speaker__profile {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(197, 219, 242, 0.22);
  padding-top: 16px;
}

.speaker__name {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 4px;
}

.speaker__role {
  font-size: 13px;
  color: var(--color-blue-300);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 12px;
}

.speaker__bio + .speaker__bio {
  margin-top: 14px;
}

@media (max-width: 880px) {
  .speaker-section {
    background:
      linear-gradient(180deg, rgba(6, 18, 43, 0.82) 0%, rgba(6, 18, 43, 0.54) 48%, rgba(6, 18, 43, 0.18) 100%),
      url("../images/section-06/message-bg-sp.png") center / cover no-repeat;
    padding-block: 64px;
  }

  .speaker__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .speaker__media {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
    order: 5;
  }

  .speaker__copy {
    display: contents;
  }

  .speaker__copy .title-bar {
    order: 1;
  }

  .speaker__title {
    order: 2;
  }

  .speaker__lead {
    order: 3;
  }

  .speaker__body {
    order: 4;
  }

  .speaker__profile {
    order: 6;
    width: 100%;
  }

  .speaker__title {
    font-size: clamp(30px, 9vw, 42px);
  }
}

/* ---------- Serif Latin/Number override ---------- */
.mincho { font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif; }

/* ---------- Gradient Text ---------- */
.text-gradient {
  background-image: linear-gradient(180deg,#4D6FA8 0%, #1F3B6E 45%, #0B1E3F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-gradient--light {
  background-image: linear-gradient(180deg,#FFFFFF 0%,#E1ECFB 55%,#93B4E3 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 34px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s, color .2s;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--color-red-600); color: #fff;
  box-shadow: 0 6px 16px rgba(200,16,46,.28);
}
.btn--primary:hover { background: var(--color-red-700); }
.btn--secondary { background: var(--color-navy-900); color: #fff; }
.btn--secondary:hover { background: var(--color-navy-700); }
.btn--outline {
  background: #fff; color: var(--color-navy-900);
  border-color: var(--color-navy-900);
}
.btn--outline:hover { background: var(--color-blue-50); }
.btn--outline-red {
  background: #fff; color: var(--color-red-600);
  border-color: var(--color-red-600);
}
.btn--outline-red:hover { background: var(--color-red-100); border-color: var(--color-red-700); color: var(--color-red-700); }
.btn--outline-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--outline-light:hover { background: rgba(255,255,255,.08); }
.btn--line {
  background: #06C755; color: #fff;
}
.btn--line:hover { background: #05a847; }
.btn--lg { min-height: 72px; font-size: 17px; padding: 0 46px; }
.btn--sm { min-height: 42px; font-size: 13px; padding: 0 18px; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { font-size: 18px; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-buttons .btn {
  min-width: min(100%, 240px);
}
@media (max-width: 560px) {
  .btn {
    width: 100%;
    min-height: 58px;
    padding-inline: 22px;
    font-size: 15px;
  }
  .btn--lg {
    min-height: 64px;
    font-size: 16px;
    padding-inline: 24px;
  }
  .cta-buttons {
    gap: 10px;
  }
}

/* ---------- Form ---------- */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy-900);
}
.form-field__input {
  height: 48px;
  padding: 0 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  background: #fff;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-field__input:focus {
  border-color: var(--color-navy-600);
  box-shadow: 0 0 0 3px rgba(61,110,181,.18);
}
.form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--color-gray-500);
  text-align: center;
}
.section--dark .form-note { color: var(--color-blue-300); }
.form-note a { text-decoration: underline; }

/* ---------- CTA Form (FV / Main / Footer 用) ---------- */
.cta-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 12px;
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form .btn { width: 100%; }
@media (max-width: 720px) {
  .cta-form__row { grid-template-columns: 1fr; }
}
.cta-form--dark { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); }
.cta-form--dark .form-field__label { color: #fff; }
.cta-form--dark .form-field__input {
  background: rgba(255,255,255,.95);
}

/* ---------- Header ---------- */
.header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 0;
  transition: background .25s ease, box-shadow .25s ease;
}
/* スクロールで Hero を抜けたら通常の sticky ヘッダーに */
.header.is-pinned {
  position: fixed;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 2px 8px rgba(11,30,63,0.06);
  animation: header-slide-down .25s ease;
}
@keyframes header-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
/* PCではヘッダーだけ container の制限を外し横幅 90% に拡張 */
@media (min-width: 881px) {
  :root { --header-h: 76px; }
  .header .container {
    max-width: 90vw;
    width: 90%;
    padding-inline: 0;
  }
}
@media (min-width: 1700px) {
  .header .container { max-width: 1560px; }
}
.header__logo {
  display: inline-flex; align-items: center;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 22px; letter-spacing: .15em;
  color: var(--color-navy-900);
  height: 100%;
}
.header__logo img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 880px) {
  .header__logo img { height: 42px; }
}
@media (max-width: 480px) {
  .header__logo img { height: 42px; }
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 13px; color: var(--color-gray-700); font-weight: 500; }
.nav a:hover { color: var(--color-navy-900); }
.nav__cta {
  background: var(--color-red-600); color: #fff !important;
  padding: 13px 24px; border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  border: 1.5px solid var(--color-red-600);
  box-shadow: 0 6px 16px rgba(200,16,46,.22);
  transition: background .2s, transform .15s, color .2s;
}
.nav__cta:hover { background: var(--color-red-700); border-color: var(--color-red-700); transform: translateY(-1px); }
.nav__cta--outline {
  background: #fff; color: var(--color-red-600) !important;
  box-shadow: none;
}
.nav__cta--outline:hover {
  background: var(--color-red-100);
  color: var(--color-red-700) !important;
  border-color: var(--color-red-700);
}
.nav__toggle { display: none; }
@media (max-width: 880px) {
  .nav { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: transparent; border: none;
    border-radius: var(--radius-md); cursor: pointer;
    color: var(--color-navy-900);
    font-size: 28px;
  }
  .nav--open {
    display: flex;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-gray-200);
    padding: 12px 24px 24px;
  }
  .nav--open a { padding: 12px 0; border-bottom: 1px solid var(--color-gray-100); }
  /* CTAボタンはブロックで並べる */
  .nav--open .nav__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 13px 0;
    border-radius: var(--radius-md);
    margin-top: 6px;
    border-bottom: none;
    font-size: 14px;
  }
  .nav--open .nav__cta--outline {
    border: 1.5px solid var(--color-red-600);
    margin-top: 12px;
  }
  .nav--open .nav__cta + .nav__cta { margin-top: 8px; }
}

/* ---------- HERO (S01) ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #F5FAFE 0%, #E4EEF9 100%); /* 画像未読み込み時のフォールバック */
  color: var(--color-navy-900);
  padding: calc(var(--header-h) + 24px) 0 32px;
  overflow: hidden;
  isolation: isolate;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
}
/* svh 非対応ブラウザ用フォールバック */
@supports not (height: 100svh) {
  .hero { min-height: 100vh; height: 100vh; }
}
/* 画面が極端に縦長/横長の極端ケースでは収まらない可能性があるためセーフガード */
@media (max-height: 560px) and (min-width: 881px) {
  .hero { height: auto; min-height: 560px; }
}
/* 背景画像レイヤー (picture 要素) */
.hero__bg-slot {
  position: absolute; inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}
.hero__bg-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* 背景画像未充填時のみグラデを乗せる */
.hero__bg-slot:not(.is-filled) {
  background:
    radial-gradient(ellipse at 75% 50%, rgba(91,143,217,.35) 0%, transparent 60%),
    linear-gradient(180deg, #F5FAFE 0%, #E4EEF9 100%);
}
.hero__bg-slot:not(.is-filled) img { display: none; }
/* 画像が入った場合、コピー側 (左) に淡い白ベールで読みやすく */
.hero__bg-slot.is-filled::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.7) 30%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 68%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
}
.hero__copy { max-width: 620px; }
@media (max-width: 880px) {
  .hero {
    /* SP: コピーはヘッダー直下、CTAは下端に押し出す */
    padding: calc(var(--header-h) + 16px) 0 28px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero > .container.hero__inner {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
  }
  .hero__copy {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }
  /* 上ブロック(eyebrow〜lead)は上に固定 / buttons以下は下端に */
  .hero__buttons { margin-top: auto; }
  /* SPは縦長画像の上端から表示 */
  .hero__bg-slot.is-filled img {
    object-position: center top;
  }
  /* SP: 顔/胴体エリアの白ボカシは外し、コピーが乗る最上部だけに薄く */
  .hero__bg-slot.is-filled::after {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.78) 0%,
      rgba(255,255,255,0.3) 18%,
      rgba(255,255,255,0) 30%);
  }
  .hero__copy { max-width: 100%; }
  .hero__title { font-size: 37px; }
  .hero__subhead { font-size: clamp(13px, 4vw, 18px); margin-bottom: 14px; padding-bottom: 12px; }
  .hero__lead {
    font-size: clamp(13px, 4vw, 18px);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .hero__meta {
    font-size: 12px;
    gap: 6px 16px;
    padding: 12px 14px;
    margin-top: 10px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border-top: none;
  }
  .hero__eyebrow { font-size: 10px; margin-bottom: 12px; }
}
/* 横向きスマホ・コンパクト縦表示 */
@media (max-height: 700px) and (max-width: 880px) {
  .hero__title { font-size: 37px; }
  .hero__lead { font-size: clamp(13px, 4vw, 18px); line-height: 1.65; }
}
@media (max-width: 480px) {
  .hero { padding: calc(var(--header-h) + 12px) 0 24px; }
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(10px, 0.95vw, 12px);
  letter-spacing: .3em;
  color: var(--color-navy-600);
  margin-bottom: clamp(10px, 1.4vw, 18px);
}
.hero__title {
  font-size: clamp(58px, 6vw, 84px);
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--color-navy-900);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: clamp(10px, 1.3vw, 16px);
}
.hero__subhead {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: clamp(14px, 1.8vw, 22px);
  letter-spacing: 0.05em;
  padding-bottom: clamp(10px, 1.4vw, 18px);
  border-bottom: 1px solid var(--color-navy-500);
  display: inline-block;
}
.hero__lead {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  color: var(--color-navy-900);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  max-width: 520px;
}
.hero__lead-highlight {
  display: inline-block;
  color: inherit;
  padding: 0;
  line-height: inherit;
  letter-spacing: 0.05em;
}
.hero__lead-highlight--blue {
  color: #0b36bd;
}
.hero__lead-highlight--red {
  color: var(--color-red-600);
}
.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 2.4vw, 28px);
}
.hero__buttons .btn { min-width: 240px; }
@media (max-width: 600px) {
  .hero__buttons .btn { min-width: 0; flex: 1 1 100%; }
  .hero__buttons { gap: 10px; }
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px clamp(20px, 2.4vw, 36px);
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--color-navy-900);
  font-weight: 600;
  padding-top: clamp(14px, 1.6vw, 18px);
  border-top: 1px solid rgba(11,30,63,0.12);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.hero__meta-icon {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
}
.hero__meta-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
/* 日付テキスト全体 — 日本語部分のベースサイズ */
.hero__meta-date {
  font-size: clamp(12px, 1.05vw, 14px);
  color: var(--color-navy-900);
  font-weight: 600;
  line-height: 1.5;
}
/* 数字だけ大きく・Roboto */
.hero__meta-d {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--color-navy-900);
  line-height: 1;
}
@media (max-width: 480px) {
  .hero__meta { gap: 8px 0; flex-direction: column; align-items: flex-start; }
  .hero__meta-item { font-size: 14px; }
  .hero__meta-icon { width: 24px; height: 24px; }
  .hero__meta-icon img { width: 24px; height: 24px; }
  .hero__meta-date { font-size: 12px; }
  .hero__meta-d { font-size: 22px; }
}
@media (max-width: 880px) {
  .hero__title {
    font-size: clamp(40px, 10.8vw, 46px);
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .hero__bg-slot.is-filled img {
    height: 100%;
    transform: none;
  }
}
@media (max-height: 700px) and (max-width: 880px) {
  .hero__title { font-size: clamp(34px, 9.6vw, 42px); }
}

/* ---------- Media Slot (画像/動画差し込み用) ---------- */
.media-slot {
  position: relative;
  background: linear-gradient(135deg, rgba(91,143,217,.18), rgba(11,30,63,.4));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: .2em;
  overflow: hidden;
  text-align: center;
}
.media-slot::before {
  content: attr(data-label);
  padding: 6px 14px;
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
}
.media-slot--light {
  background: linear-gradient(135deg, var(--color-blue-100), var(--color-blue-200));
  color: var(--color-navy-600);
}
.media-slot--light::before { border-color: var(--color-navy-500); }
.media-slot img,
.media-slot video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.media-slot.is-filled::before { display: none; }
.media-slot--16x9 { aspect-ratio: 16 / 9; }
.media-slot--4x3  { aspect-ratio: 4 / 3; }
.media-slot--1x1  { aspect-ratio: 1; }
.media-slot--3x4  { aspect-ratio: 3 / 4; }

/* ---------- Card ---------- */
.card {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-blue-100);
  color: var(--color-navy-700);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy-900);
  margin-bottom: 8px;
  line-height: 1.5;
}
.card__text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-gray-700);
}

/* ---------- Section 09: Experience points ---------- */
.experience-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-point {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.experience-point__main {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(143, 179, 232, 0.24);
  box-shadow: 0 12px 30px rgba(42, 79, 143, 0.12);
  min-height: 128px;
  border-radius: var(--radius-lg);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.experience-point__media {
  width: 92px;
  height: 92px;
  margin: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #0b36bd;
}

.experience-point__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-point__icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-point__body {
  min-width: 0;
}

.experience-point__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  color: #0b36bd;
  line-height: 1.45;
  margin-bottom: 10px;
}

.experience-point__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-700);
  line-height: 1.9;
}

.experience-cta {
  gap: 18px;
  width: 100%;
}

.experience-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  min-height: 66px;
  padding-inline: 24px;
  font-size: 16px;
}

@media (max-width: 880px) {
  .experience-points {
    grid-template-columns: 1fr;
  }

  .experience-point__main {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .experience-point__main {
    padding: 10px 16px;
    gap: 14px;
  }

  .experience-point__media {
    width: 72px;
    height: 72px;
  }

  .experience-point__icon {
    font-size: 46px;
  }

  .experience-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .experience-cta .btn {
    flex: none;
    width: 100%;
    min-height: 60px;
    padding-inline: 22px;
  }
}

/* Grids */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
.grid--5 { grid-template-columns: repeat(5,1fr); }
.grid--6 { grid-template-columns: repeat(6,1fr); }
@media (max-width: 880px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--5 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--6 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 560px) {
  .grid--2 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .grid--5 { grid-template-columns: 1fr; }
  .grid--6 { grid-template-columns: repeat(2,1fr); }
}

/* ---------- Stat row (実績バー) ---------- */
.stat-bar {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) { .stat-bar { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .stat-bar { grid-template-columns: 1fr; } }
.stat { display: flex; gap: 14px; align-items: center; }
.stat__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-blue-100); color: var(--color-navy-700);
  display: grid; place-items: center; font-size: 20px; flex-shrink: 0;
}
.stat__num {
  font-family: var(--font-en); font-weight: 700;
  font-size: 26px; color: var(--color-navy-900); line-height: 1;
}
.stat__num small { font-size: 13px; margin-left: 2px; font-weight: 700; }
.stat__label { font-size: 12px; color: var(--color-gray-500); }

/* ---------- Achievements (S15) ---------- */
.achievements-panel {
  max-width: 1040px;
  margin-inline: auto;
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.achievement-card {
  position: relative;
  min-height: 276px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(143, 179, 232, 0.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 100%);
  box-shadow:
    0 14px 34px rgba(42, 79, 143, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.92);
  padding: 22px 20px 18px;
  text-align: center;
}

.achievement-card__visual {
  width: 236px;
  height: 142px;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: drop-shadow(0 8px 12px rgba(31, 61, 112, 0.12));
}

.achievement-card__content {
  position: relative;
  z-index: 1;
}

.achievement-card__num {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 900;
  color: #0b36bd;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.achievement-card__num span {
  font-size: clamp(38px, 4.2vw, 56px);
}

.achievement-card__num small {
  font-size: clamp(15px, 1.7vw, 22px);
  font-weight: 800;
  margin-inline: 2px;
}

.achievement-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy-800);
  line-height: 1.4;
}

.achievement-card__label::before {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(11, 54, 189, 0.46);
}

.achievements-message {
  margin: 16px 0 0;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(143, 179, 232, 0.28);
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 62%, rgba(255,255,255,0.2) 0 1px, transparent 2px),
    linear-gradient(90deg, #0046c7 0%, #0b36bd 52%, #0e66d8 100%);
  box-shadow: 0 12px 24px rgba(11, 54, 189, 0.18);
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .achievement-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .achievement-card {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .achievement-card {
    min-height: 238px;
    padding: 18px 16px 16px;
  }

  .achievement-card__visual {
    width: 210px;
    height: 124px;
  }
}

@media (max-width: 560px) {
  .achievement-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px 18px;
    text-align: left;
  }

  .achievement-card__visual {
    width: 116px;
    height: 96px;
    margin: 0;
  }

  .achievement-card__content {
    min-width: 0;
  }

  .achievement-card__num span {
    font-size: clamp(34px, 10vw, 44px);
  }

  .achievement-card__num small {
    font-size: 14px;
  }

  .achievement-card__label {
    justify-content: flex-start;
    margin-top: 6px;
    font-size: 16px;
  }
}

/* ---------- Checklist (S04 / S22) ---------- */
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .check-list { grid-template-columns: 1fr; } }
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-gray-700);
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  background: var(--color-navy-900); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ---------- Stat highlight (S05) ---------- */
.metric {
  text-align: center;
  padding: 28px 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}
.metric__value {
  font-family: var(--font-en);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--color-navy-900);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--color-navy-500) 0%, var(--color-navy-900) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.metric__label {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-navy-900);
  font-weight: 700;
  margin-bottom: 8px;
}
.metric__note {
  font-size: 11px;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* ---------- Diagnose card (S02) ---------- */
.diag-card {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.diag-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.diag-card__icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-blue-100); color: var(--color-navy-700);
  display: grid; place-items: center;
  font-size: 28px;
}
.diag-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 10px;
}
.diag-card__text {
  font-size: 13px;
  color: var(--color-gray-700);
  line-height: 1.9;
  margin-bottom: 22px;
  flex-grow: 1;
}
.diag-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-900);
  border-top: 1px solid var(--color-gray-200);
  padding-top: 16px;
  display: inline-flex; gap: 6px; justify-content: center; align-items:center;
}
.diag-card__cta .arrow { transition: transform .2s; }
.diag-card:hover .diag-card__cta .arrow { transform: translateX(4px); }

/* ---------- Section 05 — 現在地診断 (redesigned) ---------- */
.sec05 {
  position: relative;
  padding: clamp(64px, 9vw, 100px) 0;
  overflow: hidden;
  background: transparent;
}

.sec05__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.sec05__copy {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

/* 左: コピー */
.sec05__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--color-navy-600);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.sec05__badge {
  display: inline-block;
  background: var(--color-navy-700);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.sec05__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  margin: 0 0 20px;
}
.sec05__lead {
  font-size: 14px;
  color: var(--color-gray-700);
  line-height: 2;
}

/* 右: カードラッパー */
.sec05__cards-wrap {
  position: relative;
  width: min(760px, 100%);
  margin-inline: auto;
}

/* AI バッジ */
.sec05__ai-badge {
  position: absolute;
  top: -8px;
  right: 0;
  background: linear-gradient(135deg, var(--color-navy-700), var(--color-navy-500));
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(11,30,63,.25);
}

/* 質問ヘッダー */
.sec05__question {
  text-align: center;
  margin-bottom: 20px;
}
.sec05__question-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy-900);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 6px;
}
.sec05__deco {
  color: var(--color-blue-400);
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}
.sec05__question-sub {
  font-size: 16px;
  color: var(--color-gray-500);
  letter-spacing: .04em;
}

.sec05__for-title {
  font-size: clamp(28px, 4vw, 48px);
  white-space: nowrap;
}
.sec05__for-grid {
  align-items: stretch;
}
.sec05__for-card {
  padding: 18px 16px 22px;
}
.sec05__for-image {
  width: min(100%, 132px);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 0;
}
.sec05__for-image img,
.sec05__for-icon {
  width: 100%;
  height: 100%;
}
.sec05__for-image img {
  object-fit: contain;
}
.sec05__for-icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sec05__for-icon--future { background-image: url("../images/section-05/generated/for-you-future.png"); }
.sec05__for-icon--balance { background-image: url("../images/section-05/generated/for-you-balance.png"); }
.sec05__for-icon--life { background-image: url("../images/section-05/generated/for-you-life.png"); }
.sec05__for-icon--potential { background-image: url("../images/section-05/generated/for-you-potential.png"); }
.sec05__for-icon--ai { background-image: url("../images/section-05/generated/for-you-ai.png"); }
.sec05__for-card .card__title {
  font-size: clamp(15px, 1.18vw, 17px);
}

/* 3カード */
.sec05__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* 新デザインカード */
.diag-card2 {
  appearance: none;
  font: inherit;
  color: inherit;
  background: rgba(255,255,255,.82);
  border: 1.5px solid rgba(93, 148, 222, .22);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(11,30,63,.07), 0 0 0 1px rgba(93,148,222,.08);
  transition: box-shadow .22s, transform .22s, border-color .22s;
  cursor: pointer;
}
.diag-card2:focus-visible,
.story-answer:focus-visible,
.story-reset:focus-visible {
  outline: 3px solid rgba(93,148,222,.42);
  outline-offset: 3px;
}
.diag-card2:hover {
  box-shadow: 0 8px 28px rgba(11,30,63,.14);
  transform: translateY(-4px);
  border-color: rgba(93,148,222,.45);
}
.diag-card2.is-selected {
  border-color: rgba(11,30,63,.58);
  box-shadow: 0 10px 30px rgba(11,30,63,.16), inset 0 0 0 1px rgba(11,30,63,.12);
}
.diag-card2.is-dimmed {
  opacity: .52;
}
.diag-card2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.diag-card2__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue-300);
  color: var(--color-navy-700);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 12px;
  background: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.diag-card2__title {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  color: var(--color-navy-900);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}
.diag-card2__icon {
  width: 96px; height: 96px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diag-card2__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.diag-card2__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy-700);
  background: rgba(224,235,248,.7);
  border: 1px solid var(--color-blue-300);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  width: 100%;
  justify-content: center;
  transition: background .2s, color .2s;
}
.diag-card2__arrow {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
}
.diag-card2:hover .diag-card2__cta {
  background: var(--color-navy-700);
  color: #fff;
  border-color: var(--color-navy-700);
}
.diag-card2:hover .diag-card2__arrow { transform: translateX(3px); }

/* 静的カード（sec03 共感カード） */
.diag-card2--static { cursor: default; }
.diag-card2--static:hover {
  box-shadow: 0 2px 12px rgba(11,30,63,.07), 0 0 0 1px rgba(93,148,222,.08);
  transform: none;
  border-color: rgba(93, 148, 222, .22);
}
.diag-card2__sub {
  font-size: 13px;
  color: var(--color-gray-500);
  line-height: 1.7;
  text-align: center;
  margin: -6px 0 14px;
}

.story-gate {
  margin-top: clamp(24px, 4vw, 40px);
}
.story-stage {
  position: relative;
  padding: clamp(22px, 3.5vw, 34px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(93,148,222,.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 42px rgba(11,30,63,.09);
}
.story-stage + .story-stage {
  margin-top: 18px;
}
.story-progress {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.story-progress i {
  width: 34px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: rgba(93,148,222,.22);
}
.story-progress i.is-active {
  background: var(--color-navy-700);
}
.story-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-blue-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.story-stage__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.55;
  color: var(--color-navy-900);
  margin: 0 0 10px;
}
.story-stage__lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-gray-600);
  margin: 0 0 20px;
}
.story-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.story-answer {
  appearance: none;
  min-height: 74px;
  padding: 16px 14px;
  border: 1px solid rgba(93,148,222,.26);
  border-radius: var(--radius-md);
  background: rgba(244,248,252,.82);
  color: var(--color-navy-900);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.story-answer:hover {
  transform: translateY(-2px);
  border-color: rgba(11,30,63,.42);
  background: #fff;
  box-shadow: 0 10px 24px rgba(11,30,63,.08);
}
.story-answer.is-picked {
  background: var(--color-navy-700);
  border-color: var(--color-navy-700);
  color: #fff;
}
.story-stage.is-answered .story-answer:not(.is-picked) {
  opacity: .42;
}
.story-feedback {
  margin-top: 16px;
  padding: 18px 20px;
  background: rgba(224,235,248,.62);
  border-left: 3px solid var(--color-blue-500);
  border-radius: var(--radius-md);
  color: var(--color-navy-900);
}
.story-feedback__kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-blue-600);
  margin-bottom: 8px;
}
.story-feedback strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.story-feedback span:last-child {
  display: block;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-gray-700);
}
.story-result {
  background: linear-gradient(135deg, rgba(11,30,63,.96), rgba(34,76,130,.94));
  color: #fff;
}
.story-result .story-label,
.story-result .story-stage__title {
  color: #fff;
}
.story-result .story-progress i {
  background: rgba(255,255,255,.3);
}
.story-result .story-progress i.is-active {
  background: #fff;
}
.story-result__text {
  font-size: 15px;
  line-height: 2;
  color: #fff;
  margin: 0;
}
.story-regret {
  margin-top: 22px;
  padding: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
}
.story-regret h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
  color: #fff;
  margin: 0 0 10px;
}
.story-regret p {
  font-size: 13px;
  line-height: 1.9;
  color: #fff;
  margin: 0;
}
.story-regret ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.story-regret li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #fff;
}
.story-regret li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue-300);
}
.story-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.story-reset {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
}

/* レスポンシブ */
@media (max-width: 1000px) {
  .sec05__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sec05__ai-badge { top: -14px; right: 4px; }
}
@media (max-width: 640px) {
  .sec05__title { font-size: clamp(22px, 7vw, 36px); }
  .sec05__cards { grid-template-columns: 1fr; gap: 12px; }
  .story-choices { grid-template-columns: 1fr; }
  .sec05__question { margin-bottom: 16px; }
  .sec05__question-main { font-size: 17px; gap: 6px; }
  .sec05__question-sub { font-size: 14px; }
  .sec05__for-title { font-size: clamp(27px, 7vw, 35px); }
  .sec05__for-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
      "image title"
      "image text";
    gap: 6px 14px;
    align-items: center;
    padding: 18px 18px 20px;
    text-align: left;
  }
  .sec05__for-image {
    grid-area: image;
    width: 88px;
    margin: 0;
  }
  .sec05__for-card .card__title {
    grid-area: title;
    margin: 0;
  }
  .sec05__for-card .card__text {
    grid-area: text;
    margin: 0;
  }
  .diag-card2 { padding: 18px 14px 16px; }
  .diag-card2__header { flex-direction: row; gap: 10px; justify-content: flex-start; }
  .diag-card2__header .diag-card2__num { margin-bottom: 0; }
  .diag-card2__sub { text-align: left; align-self: stretch; margin: 8px 0 12px 42px; }
  .diag-card2__icon { width: 72px; height: 72px; }
  .diag-card2__title { font-size: 16px; text-align: left; }
  .diag-card2__cta { font-size: 16px; align-items: center; }
  .diag-card2__arrow { font-size: 24px; line-height: 1; }
  .story-stage { padding: 22px 18px; }
  .story-result__actions { flex-direction: column; }
  .story-reset { width: 100%; }
}

/* ---------- Step / Timeline (S07 before-after, S15 history) ---------- */
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 880px) { .step-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .step-row { grid-template-columns: 1fr; } }
.step {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
}
.step__num {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--color-navy-600);
  margin-bottom: 8px;
  display: inline-block;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-navy-900);
  font-weight: 700;
  margin-bottom: 6px;
}
.step__text { font-size: 12px; color: var(--color-gray-700); line-height: 1.8; }

/* ---------- Section 10: First timers ---------- */
.first-time__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.first-time__copy .section__lead {
  text-align: left;
  margin-inline: 0;
}

.first-time__note-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(143, 179, 232, 0.34);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 26px rgba(42, 79, 143, 0.08);
}

.first-time__note-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.first-time__note-card p {
  font-size: 15px;
  color: var(--color-navy-800);
  line-height: 2;
}

.first-time__cards {
  display: grid;
  gap: 16px;
}

.first-time-card {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(143, 179, 232, 0.26);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 58%, rgba(255,255,255,0.62) 100%);
  box-shadow: 0 10px 28px rgba(42, 79, 143, 0.12);
  padding: 22px 220px 22px 24px;
}

.first-time-card__copy {
  position: relative;
  z-index: 1;
}

.first-time-card__num {
  display: inline-block;
  margin-right: 10px;
  font-family: var(--font-en);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: rgba(143, 179, 232, 0.86);
  vertical-align: middle;
}

.first-time-card__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0b36bd;
  vertical-align: middle;
}

.first-time-card__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 700;
  color: #0b36bd;
  line-height: 1.45;
  margin-top: 8px;
}

.first-time-card__text {
  max-width: 24em;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-navy-700);
  line-height: 1.85;
  margin-top: 8px;
}

.first-time-card__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

@media (max-width: 880px) {
  .first-time__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .first-time-card {
    min-height: 154px;
    padding: 18px 104px 18px 18px;
  }

  .first-time-card__img {
    width: 118px;
    object-fit: contain;
    object-position: right bottom;
  }

  .first-time-card__num {
    font-size: 30px;
  }

  .first-time-card__title {
    font-size: 16px;
    white-space: nowrap;
  }

  .first-time-card__text {
    font-size: 12px;
  }

  .first-time__note-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .first-time__note-icon {
    width: 52px;
    height: 52px;
  }

  .first-time__note-card p {
    font-size: 13px;
    line-height: 1.9;
  }
}

/* ---------- Day / Chapter (S11 program) ---------- */
.day-card {
  background: linear-gradient(180deg, var(--color-blue-50), var(--color-white));
  border: 1px solid var(--color-blue-200);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(42, 79, 143, 0.12);
}
.day-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 10px 14px;
}
.day-card__badge {
  font-family: var(--font-en);
  font-weight: 700;
  background: var(--color-navy-900);
  color: var(--color-white);
  min-width: 76px;
  padding: 7px 14px 6px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 12px rgba(11, 30, 63, 0.2);
}
.day-card__title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
  color: var(--color-navy-900);
}
.day-card__body {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(197,219,242,.7);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.day-card__chapter {
  display: grid;
  grid-template-columns: minmax(96px, 33%) 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 20px 0;
}
.day-card__chapter:first-child { padding-top: 0; }
.day-card__chapter:last-child { border-bottom: 0; padding-bottom: 0; }
.day-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-height: 116px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(228,238,249,.78)),
    var(--color-blue-50);
  overflow: hidden;
}
.day-card__visual::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(42, 79, 143, .28);
}
.day-card__visual::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 18%;
  border-radius: 999px 999px 28px 28px;
  background: linear-gradient(180deg, rgba(143,179,232,.38), rgba(91,143,217,.16));
}
.day-card__visual--image {
  background: var(--color-blue-50);
  box-shadow: inset 0 0 0 1px rgba(197, 219, 242, .62);
}
.day-card__visual--image::before,
.day-card__visual--image::after {
  display: none;
}
.day-card__visual--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.day-card__content {
  min-width: 0;
}
.day-card__chapter-label {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 8px 2px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--color-blue-100);
  color: var(--color-navy-600);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .08em;
}
.day-card__chapter h4 {
  font-size: clamp(16px, 1.7vw, 19px);
  margin-bottom: 8px;
  color: var(--color-navy-700);
}
.day-card__chapter p {
  font-size: 13px;
  color: var(--color-gray-700);
  line-height: 1.85;
}
.day-card__insight {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-blue-50);
  color: var(--color-navy-600);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.7;
}
@media (max-width: 980px) and (min-width: 561px) {
  .day-card__chapter { grid-template-columns: 112px 1fr; }
}
@media (max-width: 560px) {
  .day-card {
    padding: 14px;
    border-radius: var(--radius-lg);
  }
  .day-card__head {
    grid-template-columns: auto 1fr;
    padding-inline: 4px;
  }
  .day-card__body { padding: 16px; }
  .day-card__chapter {
    grid-template-columns: 88px 1fr;
    gap: 14px;
    align-items: start;
  }
  .day-card__visual {
    min-height: 88px;
  }
  .day-card__chapter p,
  .day-card__insight { font-size: 12px; }
}

/* ---------- Timeline (S15) ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin: 32px 0;
}
@media (max-width: 880px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
.timeline__item { text-align: center; }
.timeline__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}
.timeline__year {
  font-family: var(--font-en);
  font-weight: 700; font-size: 14px;
  color: var(--color-navy-900);
}
.timeline__place { font-size: 11px; color: var(--color-gray-500); }

/* ---------- Audience Cards (S11) ---------- */
.aud-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 34px;
}
.aud {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px 0;
  border: 1px solid rgba(143, 179, 232, 0.36);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f6faff 100%);
  box-shadow: 0 10px 26px rgba(42, 79, 143, 0.08);
}
.aud::after {
  content: "";
  position: absolute;
  inset: auto 8px 0;
  height: 44%;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(ellipse at center bottom, rgba(47, 116, 255, 0.12), rgba(47, 116, 255, 0));
  pointer-events: none;
}
.aud__head {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 22px;
}
.aud__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.aud__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-navy-900);
}
.aud__person {
  position: relative;
  z-index: 1;
  width: min(96px, 78%);
  height: 126px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 12px rgba(31, 61, 112, 0.12));
}
.aud-age-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(980px, 100%);
  min-height: 48px;
  margin: 30px auto 0;
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0c73e8 0%, #0758ca 100%);
  box-shadow: 0 10px 22px rgba(7, 88, 202, 0.24);
  color: #fff;
}
.aud-age-note__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.aud-age-note p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.aud-age-note strong {
  font-weight: 700;
}
.aud-age-note span {
  font-size: 14px;
  opacity: 0.9;
}
.aud-title__break {
  display: none;
}
@media (max-width: 880px) {
  .aud-row {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
    margin-inline: auto;
  }
  .aud {
    min-height: 96px;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px;
  }
  .aud__head {
    width: auto;
    flex: 1 1 auto;
    gap: 8px;
    justify-content: flex-start;
  }
  .aud__icon {
    width: 48px;
    height: 48px;
  }
  .aud__name {
    font-size: 18px;
    white-space: nowrap;
    writing-mode: horizontal-tb;
  }
  .aud__person {
    flex: 0 0 auto;
    width: 68px;
    height: 78px;
  }
  .aud-title__break {
    display: block;
  }
}
@media (max-width: 560px) {
  .aud-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .aud {
    min-height: 96px;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px;
  }
  .aud-age-note {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 12px 16px;
  }
  .aud-age-note p {
    display: block;
    text-align: center;
    font-size: 16px;
  }
  .aud-age-note span {
    display: block;
    margin-top: 2px;
    font-size: 14px;
  }
}

/* ---------- Quote / Voice (S16) ---------- */
.voice {
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.voice__tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--color-navy-600);
  margin-bottom: 12px;
}
.voice__quote {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-navy-900);
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.voice__quote::before {
  content: "“";
  position: absolute; left: 0; top: -8px;
  font-size: 28px; color: var(--color-blue-400);
  font-family: var(--font-serif);
}
.voice__person { font-size: 12px; color: var(--color-gray-500); margin-top: auto; }

/* ---------- Section 15: Voice tabs ---------- */
.voice-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-bottom: 36px;
}
.voice-tabs__btn {
  width: 100%;
  min-width: 0;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.voice-tabs__btn:hover {
  border-color: var(--color-navy-500);
  box-shadow: var(--shadow-sm);
}
.voice-tabs__btn.is-active {
  background: var(--color-navy-900);
  border-color: var(--color-navy-900);
}
.voice-tabs__num {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--color-navy-500);
}
.voice-tabs__btn.is-active .voice-tabs__num {
  color: var(--color-blue-300);
}
.voice-tabs__cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy-800);
  line-height: 1.4;
}
.voice-tabs__cat::after {
  content: "▼";
  font-size: 8px;
  color: var(--color-navy-400);
  flex-shrink: 0;
}
.voice-tabs__btn.is-active .voice-tabs__cat {
  color: var(--color-white);
}
.voice-tabs__panel { display: none; }
.voice-tabs__panel.is-active { display: block; }
.voice-tabs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.voice-tabs__tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--color-navy-600);
  display: block;
  margin-bottom: 12px;
}
.voice-tabs__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-image: linear-gradient(180deg,#4D6FA8 0%,#1F3B6E 45%,#0B1E3F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 16px;
}
.voice-tabs__desc {
  font-size: 14px;
  color: var(--color-gray-700);
  line-height: 2.1;
}
.voice-tabs__video .media-slot {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.voice-title__break {
  display: none;
}
@media (max-width: 880px) {
  .voice-tabs__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-tabs__btn { padding: 10px 12px; }
  .voice-tabs__num { font-size: 12px; }
  .voice-tabs__cat { font-size: 10px; }
  .voice-tabs__inner { grid-template-columns: 1fr; gap: 20px; }
  .voice-tabs__video { order: -1; }
}
@media (max-width: 560px) {
  .voice-title__break {
    display: block;
  }
}

/* ---------- Participation method (S18) ---------- */
.join-cards {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: stretch;
}
.join-cards__or {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 3px solid #2f74ff;
  border-radius: 50%;
  background: #fff;
  color: #0b36bd;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  box-shadow: 0 10px 22px rgba(42, 79, 143, 0.14);
}
.way-card {
  background: #fff;
  border: 1px solid rgba(143, 179, 232, 0.42);
  border-radius: 8px;
  padding: 20px 14px;
  display: grid;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(42, 79, 143, 0.1);
}
.way-card__top {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.way-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  text-align: center;
}
.way-card__badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef5ff;
  display: grid;
  place-items: center;
}
.way-card__badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.way-card__title {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--color-navy-900);
  line-height: 1.25;
}
.way-card__lead {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0b36bd;
  line-height: 1.6;
}
.way-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  min-height: 178px;
}
.way-card__list {
  display: grid;
  gap: 0;
}
.way-card__list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px dashed rgba(47, 116, 255, 0.28);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-navy-700);
  line-height: 1.6;
}
.way-card__list li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (max-width: 960px) {
  .join-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .join-cards__or {
    position: static;
    transform: none;
    justify-self: center;
    margin: -8px 0;
  }
  .way-card {
    grid-template-columns: 1fr;
  }
  .way-card__top { grid-template-columns: 40% minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .way-card { gap: 14px; padding: 18px 12px; }
  .way-card__top { grid-template-columns: 1fr; gap: 14px; }
  .way-card__media {
    min-height: 0;
  }
  .way-card__lead {
    font-size: 13px;
  }
}

.briefing-merge {
  scroll-margin-top: calc(var(--header-height) + 18px);
  margin-top: 38px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(143, 179, 232, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(42, 79, 143, 0.1);
}
.briefing-merge__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #0b36bd;
}
.briefing-merge__title::before,
.briefing-merge__title::after {
  content: "\\";
  display: inline-block;
  margin: 0 12px;
  font-family: var(--font-sans);
  font-size: 20px;
  color: #2f74ff;
}
.briefing-merge__title::after {
  content: "/";
}
.briefing-merge__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.briefing-merge__card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(143, 179, 232, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(42, 79, 143, 0.08);
}
.briefing-merge__check {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.briefing-merge__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.briefing-merge__card h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-navy-900);
}
.briefing-merge__card p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-navy-700);
}
.briefing-merge__buttons {
  width: 100%;
  margin: 16px auto 0;
}
.briefing-merge__buttons .btn {
  flex: 1 1 0;
  max-width: 420px;
  min-width: 320px;
  min-height: 56px;
}
@media (max-width: 880px) {
  .briefing-merge {
    padding: 20px 18px 22px;
  }
  .briefing-merge__cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .briefing-merge__title::before,
  .briefing-merge__title::after {
    display: none;
  }
  .briefing-merge__card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 86px;
    padding: 14px;
  }
  .briefing-merge__check {
    width: 20px;
    height: 20px;
  }
  .briefing-merge__icon {
    width: 42px;
    height: 42px;
  }
}

/* ---------- Overview / Price ---------- */
.overview-section {
  position: relative;
  overflow: hidden;
}
.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 22px;
  align-items: stretch;
}
.overview-card,
.access-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    var(--color-white);
  border: 1px solid rgba(143, 179, 232, .42);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(42, 79, 143, .12);
}
.overview-card {
  position: relative;
  padding: 34px 28px 26px;
}
.overview-card__label {
  position: absolute;
  top: -1px;
  left: 28px;
  min-width: 148px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--color-navy-600);
  color: var(--color-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .12em;
  line-height: 1;
}
.overview-list {
  margin: 0;
  padding: 12px 0 0;
}
.overview-list__item {
  display: grid;
  grid-template-columns: minmax(148px, .48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(47, 116, 255, .24);
}
.overview-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.overview-list__item dt {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  color: #0b36bd;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
}
.overview-list__item dt img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.overview-list__item dd {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(143, 179, 232, .52);
  color: var(--color-navy-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.overview-list__item dd small {
  display: block;
  margin-top: 2px;
  color: var(--color-navy-600);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}
.overview-list__item dd a {
  color: #0b36bd;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.access-card {
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr);
  overflow: hidden;
}
.access-card__head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px 24px 18px;
}
.access-card__head img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.access-card__head h3 {
  font-family: var(--font-sans);
  color: #0b36bd;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.25;
}
.access-card__head p {
  margin-top: 6px;
  color: var(--color-navy-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.access-card__map {
  min-height: 260px;
  margin: 0 16px 16px;
  border: 1px solid rgba(143, 179, 232, .42);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-blue-50);
}
.access-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}
@media (max-width: 960px) {
  .overview-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .overview-card {
    padding: 34px 18px 20px;
  }
  .overview-card__label {
    left: 18px;
    min-width: 126px;
    min-height: 30px;
    font-size: 13px;
  }
  .overview-list__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .overview-list__item dt {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }
  .overview-list__item dt img {
    width: 30px;
    height: 30px;
  }
  .overview-list__item dd {
    padding-left: 40px;
    border-left: 0;
    font-size: 14px;
  }
  .access-card {
    grid-template-rows: auto auto;
  }
  .access-card__head {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 20px 18px 14px;
  }
  .access-card__head img {
    width: 38px;
    height: 38px;
  }
  .access-card__head h3 {
    font-size: 18px;
  }
  .access-card__map {
    min-height: 240px;
    margin: 0 12px 12px;
  }
  .access-card__map iframe {
    min-height: 240px;
  }
}

.price-section {
  background: var(--color-bg-soft);
}
.price-panel {
  padding: 28px;
  background: var(--color-white);
  border: 1px solid rgba(143, 179, 232, .48);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  position: relative;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(143, 179, 232, .54);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.price-card__badge {
  min-height: 46px;
  width: min(100%, 236px);
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  color: var(--color-white);
  background: var(--color-navy-600);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
}
.price-card__badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.price-card__target {
  color: var(--color-navy-600);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(47, 116, 255, .26);
}
.price-card__regular {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--color-navy-700);
  font-size: 15px;
  font-weight: 500;
}
.price-card__regular span {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.price-card__sale {
  margin-top: 2px;
  font-family: var(--font-en);
  color: var(--color-red-600);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  line-height: .98;
}
.price-card__sale small {
  font-family: var(--font-sans);
  color: var(--color-red-600);
  font-size: 15px;
  font-weight: 700;
  margin-left: 3px;
}
.price-card__deadline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 16px;
  color: var(--color-red-600);
  background: var(--color-red-100);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.price-card__deadline::before {
  content: "i";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 13px;
  font-style: italic;
  line-height: 1;
}
.price-tools {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 16px;
  margin-top: 18px;
}
.price-tool {
  min-width: 0;
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(143, 179, 232, .54);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--color-navy-700);
  text-align: left;
}
button.price-tool {
  width: 100%;
  cursor: pointer;
  font: inherit;
}
.price-tool:hover {
  border-color: rgba(42, 79, 143, .44);
}
.price-tool:not(.price-tool--simulator) {
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: stretch;
}
.price-tool--support,
.price-tool--family {
  position: relative;
  padding-bottom: 78px;
  background: var(--color-blue-50);
}
.price-tool--support > span,
.price-tool--family > span {
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}
.price-tool--support > img,
.price-tool--family > img {
  align-self: center;
  background: var(--color-white);
}
.price-tool > img {
  width: 54px;
  height: 54px;
  padding: 10px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--color-blue-50);
}
.price-tool strong,
.price-tool__title {
  color: var(--color-navy-900);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
}
.price-tool small {
  display: block;
  margin-top: 4px;
  color: var(--color-navy-700);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}
.price-tool__btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 84px;
  width: auto;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 14px;
  font-size: 13px;
  letter-spacing: .02em;
  white-space: normal;
  line-height: 1.45;
}
.price-tool__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.price-tool__steps span {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--color-navy-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.price-tool__steps img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.price-tool__steps b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-navy-900);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
}
.price-tool__action {
  justify-self: start;
  color: var(--color-red-600);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.price-tool--simulator {
  justify-items: start;
}
.price-tool--simulator .price-tool__title {
  line-height: 1.7;
}
.price-simulator {
  margin-top: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(42, 79, 143, .48);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-simulator__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(47, 116, 255, .28);
}
.price-simulator__bar button {
  min-width: 74px;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-blue-50);
  color: var(--color-navy-700);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.price-simulator__body {
  display: grid;
  gap: 18px;
  padding: 24px 22px;
}
.price-simulator__body h3 {
  font-family: var(--font-serif);
  color: var(--color-navy-900);
  font-size: var(--fs-h3);
}
.price-simulator__body p {
  color: var(--color-navy-700);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
.price-simulator__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-simulator__steps div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--color-blue-50);
  border: 1px solid rgba(143, 179, 232, .54);
  border-radius: var(--radius-md);
}
.price-simulator__steps img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.price-simulator__steps span {
  display: block;
  color: var(--color-navy-600);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.price-simulator__steps strong {
  color: var(--color-navy-700);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.price-simulator__cta {
  padding: 24px;
  color: var(--color-white);
  background: var(--color-navy-900);
  border-radius: var(--radius-md);
}
.price-simulator__cta strong {
  display: block;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.price-simulator__cta p {
  margin: 8px 0 18px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.price-simulator__cta .btn {
  background: var(--color-white);
  color: var(--color-navy-900);
  box-shadow: none;
}
.price-simulator__cta .btn:hover {
  background: var(--color-blue-50);
}
.price-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 20px;
}
.price-actions .btn {
  width: 100%;
}
@media (max-width: 980px) {
  .price-tools {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .price-panel {
    padding: 22px 14px;
  }
  .price-cards,
  .price-actions,
  .price-simulator__steps {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 20px 16px;
  }
  .price-card__sale {
    font-size: clamp(44px, 15vw, 56px);
  }
  .price-tool__steps {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .price-tool__steps span {
    grid-template-columns: 20px 24px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }
  .price-simulator__bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: #fff; border: 1px solid var(--color-gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq__summary {
  cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-navy-900);
  list-style: none;
  line-height: 1.6;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  color: var(--color-navy-600);
  font-family: var(--font-en);
  transition: transform .2s;
  align-self: center;
}
.faq__item[open] .faq__summary::after { content: "−"; }
.faq__q { font-family: var(--font-en); color: var(--color-navy-600); flex-shrink: 0; }
.faq__body {
  padding: 0 24px 22px 50px;
  font-size: 14px;
  color: var(--color-gray-700);
  line-height: 1.9;
}

/* ---------- 8 balance (S13) ---------- */
.sec13-balance {
  background: transparent;
}
.sec13-balance .sec02__lead {
  max-width: 520px;
  margin-bottom: 0;
}
.sec13-balance .sec02__note {
  max-width: 620px;
}
.sec13-balance .sec02__inner {
  row-gap: clamp(14px, 1.8vw, 24px);
}
.sec13-balance .balance-message {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(61,110,181,0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(42,79,143,0.08);
  padding: 12px 16px;
  letter-spacing: 0;
  text-align: left;
}
.sec13-balance .balance-message::before {
  display: none;
}
.balance-message__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.balance-message__text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy-700);
  line-height: 1.75;
}
.balance-message__text strong {
  color: var(--color-blue-500);
  font-weight: inherit;
}
.balance-card {
  margin: 0;
}
.sec13-balance .balance-card .media-slot {
  width: min(100%, 500px);
  margin-inline: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.sec13-balance .balance-card .media-slot img {
  object-fit: contain;
  padding: 0;
}
@media (max-width: 880px) {
  .sec13-balance .balance-card .media-slot { width: min(100%, 420px); }
}
@media (max-width: 560px) {
  .sec13-balance .balance-card .media-slot { width: min(100%, 320px); }
  .sec13-balance .balance-message {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 12px 14px;
  }
  .balance-message__icon {
    width: 36px;
    height: 36px;
  }
  .balance-message__text {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ---------- Opening Videos (S14) ---------- */
.opening-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.opening-card {
  background: var(--color-white);
  border: 1px solid rgba(197,219,242,.85);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(42,79,143,.12);
  overflow: hidden;
}
.opening-card__media {
  position: relative;
}
.opening-card__media .media-slot {
  border-radius: 0;
}
.opening-card__media .media-slot::before {
  display: none;
}
.opening-card__media::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.86);
  background: rgba(42,79,143,.68);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px rgba(11,30,63,.24);
}
.opening-card__media .media-slot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--color-white);
  transform: translate(-38%, -50%);
}
.opening-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.12) 0 10%, transparent 11%),
    linear-gradient(180deg, rgba(11,30,63,0) 42%, rgba(11,30,63,.24) 100%);
  pointer-events: none;
}
.opening-card__body {
  padding: 12px 16px 16px;
}
.opening-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 3px 8px 2px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--color-navy-700);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}
.opening-card__title {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  color: var(--color-navy-900);
}
.opening-card__text {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-gray-500);
  line-height: 1.75;
}
.opening-compass {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto auto minmax(40px, 1fr);
  align-items: center;
  gap: 18px;
  margin: 44px auto 0;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-navy-900);
  text-align: center;
  letter-spacing: .04em;
}
.opening-compass::before,
.opening-compass::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-blue-300));
}
.opening-compass::after {
  background: linear-gradient(90deg, var(--color-blue-300), transparent);
}
.opening-compass img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
}
.opening-compass span {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 880px) {
  .opening-cards { grid-template-columns: 1fr; }
  .opening-compass {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    font-size: 18px;
  }
  .opening-compass::before,
  .opening-compass::after {
    width: min(180px, 52vw);
    justify-self: center;
  }
  .opening-compass img {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
  }
  .opening-compass span {
    display: block;
  }
}

/* ---------- Sticky CTA ---------- */
/* PC では非表示 */
.sticky-cta { display: none; }

/* SP のみ: 2ボタン横並び固定バー */
@media (max-width: 880px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 40;
    background: var(--color-navy-900);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    gap: 8px;
    box-shadow: 0 12px 32px rgba(11,30,63,.35);
    transform: translateY(140%);
    transition: transform .35s ease;
  }
  .sticky-cta.is-show { transform: translateY(0); }
  body.has-diagnosis-open .sticky-cta.is-show { transform: translateY(140%); }
  .sticky-cta__btn {
    flex: 1;
    width: auto;
    min-height: 52px;
    font-size: 13px;
    padding: 0 8px;
    border-radius: var(--radius-sm);
    justify-content: center;
  }
}

/* ---------- Inline CTA Banner (本文中 → 主フォームへ誘導) ---------- */
.inline-cta {
  background: var(--color-bg-hero);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px clamp(20px, 3vw, 40px);
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.inline-cta__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 22px;
}
.inline-cta__text {
  flex: 1; min-width: 200px;
  font-family: var(--font-serif); font-size: 17px; color: #fff;
}
.inline-cta .btn { flex-shrink: 0; }

/* ---------- LINE block ---------- */
/* ---------- Section 23: LINE ---------- */
#line {
  background: transparent;
}
.line-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.line-section__left .title-bar { margin-bottom: 16px; }
.line-section__lead {
  font-size: 16px;
  color: var(--color-gray-700);
  line-height: 1.9;
  margin-bottom: 28px;
}
.line-section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 880px) {
  .line-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-head .title-bar { margin-bottom: 0; }
.contact-card {
  padding: 28px 28px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    var(--color-white);
  border: 1px solid rgba(143, 179, 232, .42);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(42, 79, 143, .12);
}
.contact-card__footer {
  margin-top: 24px;
}
.contact-list {
  margin: 0;
  padding: 12px 0 0;
}
.contact-list__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(47, 116, 255, .24);
}
.contact-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-list__item dt {
  margin: 0;
  color: #0b36bd;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}
.contact-list__item dd {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(143, 179, 232, .52);
  color: var(--color-navy-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.contact-list__item dd small {
  display: block;
  color: var(--color-navy-600);
  font-size: 13px;
  font-weight: 500;
}
.contact-list__item dd a {
  color: #0b36bd;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
}
.contact-list__item dd a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-navy-900);
  color: var(--color-blue-200);
  padding: 56px 0;
  font-size: 13px;
}
@media (max-width: 880px) {
  .footer { padding-bottom: 90px; } /* sticky-cta 分の余白 */
}
.footer a { color: var(--color-blue-100); }
.footer__logo {
  display: inline-block;
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer__top {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 24px;
  margin-left: auto;
}
.footer__nav a {
  color: var(--color-blue-100);
  font-size: 13px;
  white-space: nowrap;
}
.footer__nav a:hover { color: #fff; }
.footer__nav .btn { font-size: 13px; }
.footer__nav .btn--outline-red { color: var(--color-red-600); }
.footer__nav .btn--outline-red:hover { color: var(--color-red-700); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--color-blue-300);
}

/* ---------- Section 02: Video Intro ---------- */
.sec02 { padding-bottom: clamp(40px, 5vw, 64px); }
.sec02 > .container { position: relative; z-index: 1; }

/* PC: 左列 [copy / note]、右列 [video が2行スパン] */
.sec02__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(32px, 5vw, 64px);
  row-gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}
.sec02__copy  { grid-column: 1; grid-row: 1; }
.sec02__video { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.sec02__note  { grid-column: 1; grid-row: 2; }

.sec02__label { color: var(--color-navy-700); }
.sec02__label::before,
.sec02__label::after { background: var(--color-navy-600); }

.sec02__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background-image: linear-gradient(180deg,#4D6FA8 0%,#1F3B6E 45%,#0B1E3F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: clamp(12px, 1.6vw, 20px);
}

.sec02__lead {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-gray-700);
  line-height: 2.1;
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

.sec02__note {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy-700);
  line-height: 1.9;
  padding-left: 18px;
  border-left: 3px solid var(--color-navy-500);
  letter-spacing:0.04em;
}

.sec02__em {
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-navy-500);
}

.sec02__video {
  display: flex; flex-direction: column;
  gap: 14px; align-items: center;
}
.sec02__video .media-slot {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sec02__video-caption {
  font-family: var(--font-en);
  font-size: 12px; letter-spacing: .25em;
  color: var(--color-navy-600);
  text-align: center; margin: 0;
}

@media (max-width: 880px) {
  /* SP: 1カラム / copy → video → note の縦並び */
  .sec02__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 20px;
  }
  .sec02__copy  { grid-column: 1; grid-row: 1; order: 1; }
  .sec02__video { grid-column: 1; grid-row: 2; order: 2; align-self: auto; }
  .sec02__note  { grid-column: 1; grid-row: 3; order: 3; margin-top: 0; }
  /* lead の margin-bottom を打ち消して gap で統一 */
  .sec02__lead  { margin-bottom: 0; }
  .sec02__title { font-size: clamp(22px, 7vw, 36px); }
  .sec02__note { font-size: 20px; line-height: 1.4; letter-spacing: 0.04em;}
  .sec02__em { font-size: 24px; letter-spacing: 0.04em;}
}

/* ---------- Section 03: Empathy ---------- */
.sec03 {
  position: relative;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(16px, 3vw, 40px);
  background: transparent;
}
.sec03 > .container { position: relative; z-index: 1; }

/* inner: 2-col (copy | cards) */
.sec03__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* ---- Left copy ---- */
.sec03__copy .title-bar { margin-bottom: 16px; }
.sec03__copy .section__title { margin-bottom: 20px; }
.sec03__lead {
  font-size: 15px;
  color: var(--color-gray-700);
  line-height: 2;
}

/* ---- Cards: 縦並び ---- */
.sec03__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* カード: 横長 [アイコン | テキスト縦 | 写真] */
.empathy-card {
  background: rgba(255,255,255,.94);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 70px 1fr 140px;
  align-items: stretch;
  min-height: 90px;
}
.empathy-card__icon {
  width: 56px; height: 56px;
  object-fit: contain;
  align-self: center;
  justify-self: center;
  flex-shrink: 0;
}
.empathy-card__body {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.empathy-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.empathy-card__num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue-300);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.empathy-card__category {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-700);
  line-height: 1.3;
}
.empathy-card__question {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: normal;
  gap: 6px;
}
.empathy-card__check {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
/* 写真 */
.empathy-card__photo {
  overflow: hidden;
}
.empathy-card__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.empathy-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ---- Quote card ---- */
.sec03__quote {
  position: relative;
  z-index: 1;
  background: #ffffff;
  text-align: center;
  padding: clamp(16px, 2.5vw, 28px) clamp(14px, 3vw, 40px);
  margin: clamp(40px, 5vw, 64px) auto clamp(48px, 7vw, 80px);
  max-width: var(--container);
  width: calc(100% - 48px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.sec03__quote p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-navy-700);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
}
.sec03__quote-accent {
  color: var(--color-red-600);
  font-size: 1.2em;
  font-weight: 700;
}

/* ---- SP ---- */
@media (max-width: 880px) {
  .sec03__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .empathy-card { grid-template-columns: 60px 1fr; }
  .empathy-card__photo { display: none; }
  .sec03__quote {
    padding-inline: 16px;
    width: calc(100% - 32px);
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
br.sp-br { display: none; }
@media (max-width: 880px) { br.sp-br { display: block; } }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 32px; }
.mt-8 { margin-top: 48px; }
.note {
  font-size: 11px;
  color: var(--color-gray-500);
  line-height: 1.6;
}
.section--dark .note { color: var(--color-blue-300); }

/* ---------- Section anchor scroll offset ---------- */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* =========================================================
   Sec04 | AI時代の問題提起
   ========================================================= */

.sec04 {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding-block: clamp(56px, 7vw, 92px);
}
.sec04 .container { position: relative; z-index: 1; }

.sec04__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.sec04__lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-navy-800);
  margin-top: 20px;
}

.sec04__messages {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec04__keymsg {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(61,110,181,0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(42,79,143,0.08);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.sec04__keymsg:nth-child(2) {
  background: linear-gradient(180deg, rgba(232,243,255,0.9) 0%, rgba(215,233,251,0.82) 100%);
}

.sec04__msg-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sec04__keymsg-line1 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy-700);
  line-height: 1.7;
}

.sec04__keymsg:nth-child(2) .sec04__keymsg-line1 {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(42, 79, 143, 0.22);
}

.sec04__keymsg-line2 {
  font-size: 13px;
  color: var(--color-navy-700);
  line-height: 1.8;
}

.sec04__keymsg-line2 strong { color: var(--color-navy-900); font-weight: 700; }

.sec04__facts {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sec04__question {
  margin-top: 24px;
}

.sec04__question-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 700;
  color: var(--color-navy-700);
  line-height: 1.45;
  margin-bottom: 14px;
}

.sec04__question-years {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.sec04__question-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-navy-700);
}

.sec04__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  flex: 1;
  align-items: stretch;
}

.sec04__stat {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(61,110,181,0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(42,79,143,0.12);
  padding: 22px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.sec04__stat-img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
  margin: auto auto 14px;
}

.sec04__stat-num {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 900;
  color: #0b36bd;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 14px;
}

.sec04__stat-unit {
  display: inline-block;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.68em;
  line-height: 1;
  vertical-align: 0.08em;
}

.sec04__stat-label {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 12px;
}

.sec04__stat-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-navy-700);
  line-height: 1.65;
  margin-bottom: 12px;
}

.sec04__source {
  align-self: center;
  display: inline-flex;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-blue-100);
  color: var(--color-navy-700);
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 880px) {
  .sec04__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sec04__facts {
    display: block;
  }

  .sec04__stats {
    flex: initial;
  }

  .sec04__stats {
    grid-template-columns: 1fr;
  }

  .sec04__stat {
    min-height: 0;
    padding: 26px 18px 22px;
  }

  .sec04__stat-label {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .sec04__stat-num {
    font-size: clamp(48px, 13vw, 64px);
    margin-bottom: 16px;
  }

  .sec04__stat-note {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .sec04__stat-img {
    height: clamp(148px, 38vw, 190px);
    margin-bottom: 18px;
  }
}

/* =============================================
   SEC07 — BENEFITS
   ============================================= */

.sec07 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
  background: transparent;
}

.sec07 .container {
  position: relative;
  z-index: 1;
}

/* Benefit cards grid */
.sec07__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(143, 179, 232, 0.28);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-height: 152px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 11px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 28px;
}

.benefit-card__num {
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, #1d5de0 0%, #0b36bd 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(29, 93, 224, 0.24);
}

.benefit-card__img {
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 0;
  width: 64%;
  height: 68%;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.benefit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  color: var(--color-navy-900);
  margin: 0;
  line-height: 1.42;
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  white-space: normal;
}

.benefit-card__title br {
  display: none;
}

.benefit-card__text {
  position: relative;
  z-index: 1;
  max-width: 56%;
  font-size: 12px;
  line-height: 1.75;
  color: var(--color-navy-800);
  margin: 0;
}

/* ──── Responsive ──── */
@media (max-width: 880px) {
  .sec07__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
}

@media (max-width: 560px) {
  .sec07 { padding-top: 60px; }

  .sec07__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .benefit-card {
    min-height: 168px;
    padding: 18px 18px 20px;
  }

  .benefit-card__img {
    width: 62%;
    height: 70%;
  }

}

/* ---------- Section 06: T2Sの核心 ---------- */
.sec06 { position: relative; overflow: hidden; }

.sec06 .container { position: relative; z-index: 1; }

.sec06__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.sec06__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-top: 14px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.sec06__title-em {
  font-size: 1.25em;
  font-weight: 900;
  display: inline-block;
  line-height: 1;
}

.sec06__lead {
  font-size: 15px;
  color: var(--color-blue-200);
  line-height: 2;
}

/* ダイアグラムエリア: 左バッジ列 | コンパス | 右バッジ列 */
.sec06__diagram-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec06__badges-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec06__diagram-img {
  flex-shrink: 0;
  width: clamp(140px, 16vw, 220px);
}
.sec06__diagram-img img { width: 100%; height: auto; display: block; }

/* バッジ共通 */
.sec06__badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(147,197,253,0.2);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  backdrop-filter: blur(4px);
}

.sec06__badge-icon {
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1.3;
}

.sec06__badge-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sec06__badge-desc {
  font-size: 11px;
  color: var(--color-blue-200);
  line-height: 1.6;
  margin: 0;
}

/* 左列: icon を右端（コンパス側）に寄せる */
.sec06__badges-col--left .sec06__badge {
  flex-direction: row-reverse;
  text-align: right;
}

/* クォートバー */
.sec06__quote {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(20px, 2.5vw, 32px) 24px;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.sec06__quote-text {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin: 0;
}

.sec06__quote-text::before { content: "── "; }
.sec06__quote-text::after  { content: " ──"; }

@media (max-width: 880px) {
  .sec06__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec06__diagram-wrapper { gap: 8px; }

  .sec06__diagram-img { width: clamp(100px, 28vw, 140px); }

  .sec06__badge-name { font-size: 12px; }
  .sec06__badge-desc { font-size: 10px; }
  .sec06__badge { padding: 8px 10px; }
}
