/* =========================================================
   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); }

.final-pivot {
  width: min(720px, 100%);
  margin: 26px auto 0;
  padding: 18px 28px;
  border-block: 1px solid rgba(159, 197, 255, .34);
  color: rgba(255, 255, 255, .96);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .02em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.final-pivot__line {
  display: inline;
}

.final-question {
  width: min(620px, 100%);
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(159, 197, 255, .26);
  color: rgba(255, 255, 255, .98);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .02em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

@media (max-width: 880px) {
  .final-pivot {
    margin-top: 20px;
    padding: 12px 0;
    font-size: clamp(18px, 4.6vw, 20px);
    line-height: 1.58;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .final-pivot__line {
    display: block;
    white-space: nowrap;
  }

  #final .cta-buttons {
    margin-top: 28px !important;
  }

  .final-question {
    margin-top: 18px;
    padding-top: 14px;
    font-size: clamp(21px, 5.6vw, 25px);
  }
}

/* ---------- 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: hidden;
  background: transparent;
  aspect-ratio: 4 / 5;
}

.speaker__portrait::before {
  display: none;
}

.speaker__portrait::after {
  display: none;
}

.speaker__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% 22%;
  transform: scale(1.18);
  transform-origin: 62% 24%;
}

.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__statement {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 0 clamp(18px, 2vw, 24px);
  border-left: 2px solid rgba(143, 179, 232, 0.78);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(22px, 2.45vw, 34px);
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.speaker__statement strong {
  display: inline-block;
  margin-top: 2px;
  color: #dce9ff;
  font-size: 1.06em;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(143, 179, 232, 0.28);
  background: linear-gradient(transparent 62%, rgba(143, 179, 232, 0.22) 62%);
}

.speaker__body {
  margin-bottom: 28px;
}

.speaker__chip-list {
  list-style: none;
  margin: -16px 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.speaker__chip-list li {
  font-size: 12px;
  color: rgba(197, 219, 242, 0.7);
  border: 1px solid rgba(143, 179, 232, 0.3);
  padding: 3px 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.speaker__verdict {
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.speaker__questions {
  margin: 0 0 28px;
  padding: 18px 22px;
  border-left: 2px solid rgba(143, 179, 232, 0.4);
  background: rgba(143, 179, 232, 0.06);
}

.speaker__questions p {
  font-size: 14px;
  color: rgba(197, 219, 242, 0.85);
  line-height: 2;
  margin: 0;
}

.speaker__questions p + p {
  margin-top: 8px;
}

.speaker__question {
  margin: 0 0 22px;
  padding: 16px 0;
  border-block: 1px solid rgba(197, 219, 242, .28);
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .02em;
}

.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: 6;
  }

  .speaker__copy {
    display: contents;
  }

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

  .speaker__title {
    order: 2;
  }

  .speaker__lead {
    order: 3;
  }

  .speaker__body {
    order: 4;
  }

  .speaker__statement {
    order: 4;
  }

  .speaker__body {
    order: 5;
  }

  .speaker__profile {
    order: 7;
    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--briefing-offer {
  flex-direction: column;
  gap: 3px;
  min-height: 74px;
  line-height: 1.22;
  white-space: normal;
}
.btn--briefing-offer .btn__main {
  display: block;
  font-size: 1em;
}
.btn--briefing-offer .btn__sub {
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .03em;
  color: var(--color-red-700);
  opacity: .9;
}
.btn--apply-offer {
  flex-direction: column;
  gap: 3px;
  min-height: 74px;
  line-height: 1.22;
  white-space: normal;
}
.btn--apply-offer .btn__main {
  display: block;
  font-size: 1em;
}
.btn--apply-offer .btn__sub {
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .9);
  padding-inline: .12em;
}
.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%, 320px);
}
@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__cta--briefing-offer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 8px 14px;
  text-align: center;
  line-height: 1.15;
}
.nav__cta--briefing-offer .btn__main {
  font-size: 13px;
}
.nav__cta--briefing-offer .btn__sub {
  max-width: 150px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
.nav__cta--apply-offer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 8px 14px;
  text-align: center;
  line-height: 1.15;
}
.nav__cta--apply-offer .btn__main {
  font-size: 13px;
}
.nav__cta--apply-offer .btn__sub {
  max-width: 150px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
.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__desktop-mark {
  position: absolute;
  left: clamp(520px, 48vw, 840px);
  top: 56%;
  z-index: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(92px, 9vw, 156px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(10, 71, 151, .105);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  white-space: nowrap;
}
.hero__desktop-mark small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-en);
  font-size: clamp(12px, 1.05vw, 18px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(10, 71, 151, .18);
}
.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; }
.hero__mobile-photo {
  display: none;
}
@media (max-width: 880px) {
  .hero__desktop-mark {
    display: none;
  }

  .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: 0;
}
.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;
  }
}

/* ---------- Mobile hero final composition ---------- */
@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: calc(var(--header-h) + 30px) 0 34px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 48%, #eaf4ff 100%);
  }

  .hero__bg-slot {
    display: none;
  }

  .hero > .container.hero__inner,
  .hero__copy {
    display: block;
    min-height: 0;
  }

  .hero__eyebrow {
    display: block;
    font-size: clamp(12px, 3vw, 13px);
    letter-spacing: .28em;
    line-height: 1.8;
    margin-bottom: 22px;
    white-space: nowrap;
    transform: scale(.94);
    transform-origin: left center;
  }

  .hero__title {
    font-size: clamp(42px, 11.2vw, 50px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .hero__subhead {
    display: block;
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.65;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .hero__lead {
    max-width: none;
    font-size: clamp(17px, 4.5vw, 19px);
    line-height: 1.78;
    letter-spacing: .02em;
    margin-bottom: 22px;
  }

  .hero__lead-highlight {
    display: inline;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero__buttons .btn {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    padding-inline: 8px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: .01em;
  }

  .hero__buttons .arrow {
    margin-left: 6px;
  }

  .hero__meta {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(143,179,232,.38);
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 12px 28px rgba(42,79,143,.12);
  }

  .hero__meta-item {
    font-size: 15px;
    line-height: 1.55;
    gap: 10px;
  }

  .hero__meta-date {
    font-size: 14px;
  }

  .hero__meta-d {
    font-size: 24px;
  }

  .hero__mobile-photo {
    display: block;
    margin: 18px -18px -34px;
    aspect-ratio: 1.05 / 1;
    overflow: hidden;
    background: #e8f4ff;
  }

  .hero__mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73% bottom;
    display: block;
  }
}

@media (max-width: 560px) {
  #first-title {
    width: calc(100vw - 36px) !important;
    max-width: none !important;
    margin-inline: 50% !important;
    transform: translateX(-50%);
    font-size: clamp(28px, 8.1vw, 33px) !important;
    line-height: 1.52 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-align: center;
  }

  #first-title .first-title-line {
    display: block;
    white-space: nowrap;
  }

  #takeaway-title {
    width: calc(100vw - 28px) !important;
    max-width: none !important;
    margin-inline: 50% !important;
    transform: translateX(-50%);
    font-size: clamp(21px, 5.65vw, 25px) !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-align: center;
  }

  #takeaway-title .mobile-break-line {
    display: block !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  .hero__buttons .btn {
    font-size: 13px;
  }

  .hero__eyebrow {
    transform: scale(.88);
  }
}
@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,
.media-slot iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.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; }

.youtube-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(5,16,34,.08), rgba(5,16,34,.42)),
    var(--youtube-thumb) center / 106% 106% no-repeat;
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
}
.youtube-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.16), rgba(0,0,0,.16) 46%, rgba(0,0,0,.44));
}
.youtube-fallback__play {
  position: relative;
  z-index: 1;
  width: clamp(58px, 8vw, 86px);
  height: clamp(58px, 8vw, 86px);
  border-radius: 50%;
  background: #d80f2f;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.youtube-fallback__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
}
.youtube-fallback__label {
  display: none !important;
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(4, 14, 30, .72);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

/* ---------- 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: 500;
  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:
    radial-gradient(circle at 18% 18%, rgba(0, 102, 255, .13), transparent 32%),
    radial-gradient(circle at 86% 26%, rgba(203, 15, 42, .10), transparent 30%),
    linear-gradient(135deg, rgba(235, 246, 255, .92) 0%, rgba(255,255,255,.86) 45%, rgba(229, 244, 255, .9) 100%);
}
.sec05::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(93, 148, 222, .22);
  border-radius: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.34)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.95), transparent 55%);
  box-shadow: 0 24px 70px rgba(11, 30, 63, .08);
  pointer-events: none;
}
.sec05::after {
  content: "CHECK";
  position: absolute;
  right: max(18px, calc((100vw - var(--container)) / 2));
  top: clamp(48px, 7vw, 86px);
  color: rgba(13, 83, 190, .08);
  font-family: var(--font-en);
  font-size: clamp(54px, 10vw, 130px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  pointer-events: none;
}
.sec05 > .container {
  position: relative;
  z-index: 1;
}

.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;
  padding-top: clamp(6px, 1.5vw, 16px);
}

/* 左: コピー */
.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-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-navy-700), #0b5fd6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: 0 10px 22px rgba(11, 30, 63, .18);
}
.sec05__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.22);
}
.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;
  padding: clamp(46px, 4vw, 56px) clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px);
  border-radius: clamp(18px, 2.4vw, 28px);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(93,148,222,.24);
  box-shadow: 0 18px 46px rgba(11,30,63,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sec05__cards-wrap::before {
  content: "30秒診断";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(203, 15, 42, .26);
  color: var(--color-red-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(11,30,63,.10);
}

/* 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;
  font-weight: 700;
}

.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: 118%;
}
.sec05__for-icon--future { background-image: url("../images/section-05/generated/for-you-future-bold.png"); }
.sec05__for-icon--balance { background-image: url("../images/section-05/generated/for-you-balance-bold.png"); }
.sec05__for-icon--life { background-image: url("../images/section-05/generated/for-you-life-bold.png"); }
.sec05__for-icon--potential { background-image: url("../images/section-05/generated/for-you-potential-clean.png"); }
.sec05__for-icon--ai { background-image: url("../images/section-05/generated/for-you-ai-bold.png"); }
.sec05__for-card .card__title {
  font-size: clamp(15px, 1.18vw, 17px);
}

.sec05__more {
  width: min(100%, 960px);
  margin: clamp(28px, 4vw, 44px) auto 0;
  text-align: center;
}

.sec05__more-title {
  margin: 0 0 18px;
  color: var(--color-navy-700);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}

.sec05__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.sec05__pills li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(93, 148, 222, .28);
  box-shadow: 0 10px 24px rgba(11, 30, 63, .07);
  color: var(--color-navy-800);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

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

/* 新デザインカード */
.diag-card2 {
  appearance: none;
  font: inherit;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,255,.96));
  border: 1.5px solid rgba(93, 148, 222, .32);
  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 8px 20px rgba(11,30,63,.08), 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 16px 36px rgba(11,30,63,.18);
  transform: translateY(-4px);
  border-color: rgba(203,15,42,.36);
}
.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: 14px;
  line-height: 1.75;
  color: #fff;
  margin: 0;
}
.story-regret {
  margin-top: 16px;
  padding: 16px;
  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: 19px;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 12px;
}
.story-regret p {
  font-size: 13px;
  line-height: 1.68;
  color: #fff;
  margin: 0;
}
.story-regret__future,
.story-regret__reason,
.story-regret__t2s,
.story-regret__list {
  margin-top: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.story-regret__future span,
.story-regret__reason span,
.story-regret__t2s span,
.story-regret__list > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.story-regret__list {
  margin-top: 14px;
  background: rgba(255,255,255,.07);
}
.story-regret__list ul {
  margin-top: 10px;
}
.story-regret__future {
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
}
.story-regret__reason {
  border-left: 3px solid var(--color-blue-300);
}
.story-regret__t2s {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.18);
}
.story-regret ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.story-regret li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  font-weight: 700;
}
.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: 16px;
  align-items: center;
}
.story-regret + .story-regret__list,
.story-regret__list + .story-result__actions {
  margin-top: 16px;
}
.story-result__actions--reset {
  margin-top: 12px;
}
.story-result__cta-lead {
  flex: 0 0 100%;
  margin: 0 0 2px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.65;
}
.story-result__btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}
.story-result__btn--primary {
  background: var(--color-red-600);
  border: 1px solid var(--color-red-600);
  color: #fff;
  box-shadow: 0 12px 24px rgba(203,15,42,.24);
}
.story-result__btn--outline {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.96);
  color: var(--color-navy-900);
}
.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; align-items: stretch; }
  .story-result__btn,
  .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: center;
  margin-inline: auto;
}

.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[data-voice-target] {
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.aud[data-voice-target]:hover,
.aud[data-voice-target]:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47, 116, 255, .58);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #eef6ff 100%);
  box-shadow: 0 16px 34px rgba(42, 79, 143, 0.14);
  outline: none;
}
.aud[data-voice-target]:focus-visible::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 3;
  border: 2px solid rgba(47, 116, 255, .72);
  border-radius: 6px;
  pointer-events: none;
}
.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(110px, 88%);
  height: 126px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 12px rgba(31, 61, 112, 0.12));
}
.aud:nth-child(1) .aud__person {
  width: min(118px, 94%);
  object-position: center bottom;
}
.aud:nth-child(2) .aud__person {
  width: min(118px, 94%);
  object-position: 56% bottom;
}
.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-switch-note {
  margin: 14px auto 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-red-600);
}
.aud-title__break {
  display: none;
}

@media (min-width: 1101px) {
  #voice .aud-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 1180px);
    margin-inline: auto;
  }
}

@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;
  }
  .aud-switch-note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ---------- 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;
}
.role-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 4vw, 52px);
}
.role-voice-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(143, 179, 232, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(42, 79, 143, 0.1);
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.role-voice-card.is-scroll-highlight {
  animation: voiceCardFocus 1.2s ease both;
}
@keyframes voiceCardFocus {
  0%,
  100% {
    border-color: rgba(143, 179, 232, 0.34);
    box-shadow: 0 12px 30px rgba(42, 79, 143, 0.1);
  }
  18%,
  70% {
    border-color: rgba(47, 116, 255, .68);
    box-shadow: 0 18px 42px rgba(47, 116, 255, .18);
  }
}
.role-voice-card--wide {
  grid-column: 1 / -1;
}
@media (min-width: 881px) {
  .role-voice-card--single {
    grid-column: 1 / -1;
  }
  .role-voice-card--single .role-voice-card__video,
  .role-voice-card--single .role-voice-card__person {
    width: calc((100% - 14px) / 2);
    margin-inline: auto;
  }
}
.role-voice-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.role-voice-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.role-voice-card__label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #0b55c7;
}
.role-voice-card__title {
  margin: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-navy-900);
}
.role-voice-card__videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.role-voice-card__video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(11, 30, 63, 0.12);
}
.role-voice-card__video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.role-voice-card__person {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-700);
}
@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; }
  .role-voice-grid,
  .role-voice-card__videos {
    grid-template-columns: 1fr;
  }
  .role-voice-card--wide {
    grid-column: auto;
  }
}
@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);
  width: min(100%, 1320px);
  margin: 42px auto 0;
  padding: clamp(28px, 3.4vw, 44px) clamp(24px, 3.8vw, 52px);
  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 24px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #0b36bd;
}
.briefing-merge__title-line {
  display: inline;
}

.briefing-merge__visual {
  display: flex;
  justify-content: center;
  margin: -4px auto 26px;
}

.briefing-merge__visual-img {
  display: block;
  width: min(620px, 92%);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(42, 79, 143, .16);
}

.briefing-merge__laptop {
  position: relative;
  width: min(360px, 78vw);
  padding-bottom: 22px;
}

.briefing-merge__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 7px solid #102a58;
  border-radius: 14px 14px 8px 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0) 35%),
    radial-gradient(circle at 78% 24%, rgba(255,255,255,.35), transparent 18%),
    linear-gradient(135deg, #0b36bd 0%, #1f74df 54%, #d90f2f 100%);
  box-shadow: 0 18px 34px rgba(42, 79, 143, .18);
}

.briefing-merge__screen::before {
  content: "";
  position: absolute;
  inset: 48px 20px auto;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  box-shadow:
    0 28px 0 rgba(255,255,255,.26),
    0 56px 0 rgba(255,255,255,.18);
}

.briefing-merge__screen::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 46%;
  height: 34%;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.26);
}

.briefing-merge__screen-title {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px 2px;
  border-radius: 999px;
  background: rgba(8, 37, 92, .42);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
  text-shadow: 0 3px 12px rgba(11, 30, 63, .28);
}

.briefing-merge__play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(217, 15, 47, .94);
  box-shadow: 0 12px 24px rgba(11, 30, 63, .26);
}

.briefing-merge__play::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

.briefing-merge__base {
  display: block;
  width: 82%;
  height: 14px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #dbe8fb 0%, #a9bddc 100%);
  box-shadow: 0 10px 20px rgba(42, 79, 143, .16);
}

.mobile-break-line {
  display: inline;
}
.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: clamp(14px, 1.6vw, 20px);
}
.briefing-merge__card {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 110px;
  padding: 20px 20px 18px;
  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: clamp(18px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-navy-900);
}
.briefing-merge__card p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-navy-700);
}
.briefing-merge__discount {
  width: min(920px, 100%);
  margin: 24px auto 18px;
  padding: 13px 20px;
  border: 1px solid rgba(217, 15, 47, 0.28);
  border-radius: 8px;
  background: rgba(255, 247, 249, 0.92);
  color: var(--color-navy-900);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 10px 22px rgba(217, 15, 47, 0.08);
}
.briefing-merge__discount strong {
  color: #d90f2f;
  font-size: 1.18em;
}
.briefing-merge__discount span {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.78em;
  color: var(--color-gray-600);
}
.briefing-merge__buttons {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
}
.briefing-merge__buttons .btn {
  flex: 1 1 420px;
  max-width: 520px;
  min-width: min(100%, 340px);
  min-height: 72px;
  flex-direction: column;
  gap: 3px;
  line-height: 1.25;
}
.briefing-merge__buttons .btn__main {
  font-size: 1em;
}
.briefing-merge__buttons .btn__sub {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--color-red-700);
  opacity: .86;
}
@media (max-width: 640px) {
  .sticky-cta .btn--briefing-offer {
    gap: 2px;
    min-height: 56px;
    padding-inline: 6px;
  }
  .sticky-cta .btn--briefing-offer .btn__main {
    font-size: 13px;
  }
  .sticky-cta .btn--briefing-offer .btn__sub {
    font-size: 9px;
    line-height: 1.15;
    letter-spacing: 0;
  }
  .sticky-cta .btn--apply-offer {
    gap: 2px;
    min-height: 56px;
    padding-inline: 6px;
  }
  .sticky-cta .btn--apply-offer .btn__main {
    font-size: 13px;
  }
  .sticky-cta .btn--apply-offer .btn__sub {
    font-size: 9px;
    line-height: 1.15;
    letter-spacing: 0;
  }
}

@media (max-width: 390px) {
  .sticky-cta .btn--briefing-offer {
    min-height: 62px;
    gap: 1px;
  }
  .sticky-cta .btn--briefing-offer .btn__main {
    font-size: 12px;
  }
  .sticky-cta .btn--briefing-offer .btn__sub {
    max-width: 100%;
    font-size: 8px;
    line-height: 1.12;
    white-space: normal;
  }
  .sticky-cta .btn--apply-offer {
    min-height: 62px;
    gap: 1px;
  }
  .sticky-cta .btn--apply-offer .btn__main {
    font-size: 12px;
  }
  .sticky-cta .btn--apply-offer .btn__sub {
    max-width: 100%;
    font-size: 8px;
    line-height: 1.12;
    white-space: normal;
  }
}
@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__title {
    font-size: clamp(25px, 6.2vw, 29px) !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
  }
  .briefing-merge__title-line {
    display: block;
  }
  .briefing-merge__visual {
    margin: -2px auto 18px;
  }
  .briefing-merge__laptop {
    width: min(280px, 82vw);
  }
  .briefing-merge__screen {
    border-width: 5px;
    border-radius: 10px 10px 7px 7px;
  }
  .briefing-merge__screen-title {
    top: 14px;
    left: 16px;
    min-height: 34px;
    padding-inline: 12px;
    font-size: 20px;
  }
  .briefing-merge__play {
    width: 54px;
    height: 54px;
  }
  .briefing-merge__play::before {
    left: 22px;
    top: 17px;
    border-width: 10px 0 10px 15px;
  }
  .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;
  }
  .briefing-merge__discount {
    margin: 18px auto 14px;
    padding: 12px 14px;
  }
  .briefing-merge__discount span {
    display: block;
    margin: 2px 0 0;
  }
  .briefing-merge__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .briefing-merge__buttons .btn {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

/* ---------- 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: 26px 28px;
}
.overview-list {
  margin: 0;
  padding: 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: 22px 18px 20px;
  }
  .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: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 14px;
  margin-top: 28px;
}
.price-tool {
  min-width: 0;
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(143, 179, 232, .54);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(42, 79, 143, 0.08);
  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: 1fr;
  align-items: start;
}
.price-tool--support,
.price-tool--family {
  position: relative;
  padding-bottom: 116px;
}
.price-tool--support::before,
.price-tool--family::before {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.price-tool--support::before {
  content: "申込サポート";
  color: #1d5de0;
  background: rgba(47, 116, 255, 0.08);
}
.price-tool--family::before {
  content: "家族で参加したい方へ";
  color: #bf5daa;
  background: rgba(215, 151, 205, 0.12);
}
.price-tool--support {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,255,0.78));
}
.price-tool--family {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,253,0.82));
  border-color: rgba(215, 151, 205, 0.24);
}
.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 {
  display: none;
  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: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
  font-family: var(--font-serif);
}
.price-tool small {
  display: block;
  margin-top: 16px;
  color: var(--color-navy-700);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 2;
}
.price-tool__list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.price-tool__list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-navy-700);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}
.price-tool__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f74ff;
}
.price-tool--family .price-tool__list li::before {
  background: #cf6db9;
}
.price-tool__btn {
  position: absolute;
  right: auto;
  bottom: 34px;
  left: clamp(28px, 3vw, 42px);
  width: auto;
  min-height: 58px;
  margin-top: 12px;
  padding: 0 28px;
  font-size: 15px;
  letter-spacing: .02em;
  white-space: normal;
  line-height: 1.45;
  border-radius: var(--radius-pill);
}
.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: end;
  min-width: 64px;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: #2f74ff;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.price-tool--simulator {
  grid-column: 1 / -1;
  min-height: 84px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: stretch;
  padding: 22px 28px;
  background: rgba(255,255,255,0.92);
}
.price-tool--simulator .price-tool__title {
  line-height: 1.5;
  font-size: clamp(18px, 1.8vw, 24px);
  font-family: var(--font-sans);
}
.price-simulator {
  grid-column: 1 / -1;
  margin-top: 0;
  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: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 0;
}
.price-actions .btn {
  width: min(100%, 280px);
  min-height: 64px;
  border-radius: var(--radius-md);
}
.price-actions-note {
  width: min(920px, 100%);
  margin: 18px auto 30px;
  color: var(--color-gray-600);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}
@media (max-width: 980px) {
  .price-tools {
    grid-template-columns: 1fr;
  }
  .price-tool--simulator {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-tool__action {
    justify-self: start;
  }
}
@media (max-width: 720px) {
  .price-panel {
    padding: 22px 14px;
  }
  .price-cards,
  .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;
  }
  .price-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .price-actions .btn {
    width: 100%;
  }
  .price-tool {
    min-height: 0;
    padding: 24px 18px 96px;
  }
  .price-tool--simulator {
    padding: 18px;
  }
  .price-tool__btn {
    left: 18px;
    right: 18px;
    bottom: 22px;
    width: auto;
  }
}

/* ---------- 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-sans);
  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-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy-700);
  line-height: 1.75;
}
.balance-message__text .mincho {
  font-family: var(--font-sans);
}
.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;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-blue-100), var(--color-blue-200));
}
.opening-card__media .media-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.opening-card__media iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 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--video::before,
.opening-card__media--video::after,
.opening-card__media--video .media-slot::after {
  display: none;
}
.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: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(760px, 100%);
  margin: 46px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(143, 179, 232, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(42, 79, 143, 0.1);
  text-align: left;
}
.opening-compass img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(42, 79, 143, 0.12));
}
.opening-compass__copy {
  min-width: 0;
}
.opening-compass__label {
  display: inline-block;
  margin-bottom: 6px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0b55c7;
}
.opening-compass h3 {
  margin: 0 0 6px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-navy-900);
}
.opening-compass p {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-navy-700);
}
@media (max-width: 880px) {
  .opening-cards { grid-template-columns: 1fr; }
  .opening-compass {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    margin-top: 36px;
    padding: 18px 16px;
  }
  .opening-compass img {
    width: 50px;
    height: 50px;
  }
  .opening-compass h3 {
    font-size: 22px;
  }
}

/* ---------- 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); }
  .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;
}
.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; }
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 58px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: var(--radius-md);
  background: var(--color-red-600);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(200, 16, 46, .18);
}
.contact-button:hover {
  background: var(--color-red-700);
}
@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(36px, 4.8vw, 76px);
  row-gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}
#video-intro .sec02__inner {
  grid-template-columns: minmax(300px, 0.78fr) minmax(620px, 1.35fr);
}
.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, 2.8vw, 40px);
  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;
  box-shadow: 0 16px 34px rgba(42, 79, 143, 0.16);
}
#video-intro .sec02__video .media-slot {
  max-width: 920px;
}
.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 (min-width: 1440px) {
  #video-intro .sec02__inner {
    grid-template-columns: minmax(360px, 0.72fr) minmax(760px, 1.45fr);
  }
  #video-intro .sec02__video .media-slot {
    max-width: 1040px;
  }
}

@media (max-width: 1180px) {
  #video-intro .sec02__inner {
    grid-template-columns: minmax(280px, 0.9fr) minmax(520px, 1.1fr);
    column-gap: 34px;
  }
}

@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; }

.sec03__intro {
  width: min(100%, 820px);
  margin: clamp(26px, 4vw, 42px) auto 0;
  text-align: center;
}

.sec03__intro p {
  margin: 0;
  color: var(--color-navy-700);
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .02em;
}

.sec03__intro p + p {
  margin-top: 10px;
}

.sec03__intro p:nth-child(3),
.sec03__intro p:nth-child(5) {
  margin-top: clamp(24px, 3vw, 34px);
}

.sec03__intro-question {
  width: min(100%, 760px);
  margin-inline: auto !important;
  padding: clamp(18px, 3vw, 26px) 0;
  border-block: 1px solid rgba(26, 52, 100, .18);
  color: var(--color-red-600) !important;
  font-size: clamp(21px, 2.4vw, 30px) !important;
  line-height: 1.75 !important;
}

.sec03__inner {
  display: block;
  width: min(100%, 820px);
  margin-inline: auto;
  text-align: center;
}

/* ---- Left copy ---- */
.sec03__copy {
  text-align: center;
}
.sec03__copy .title-bar {
  justify-content: center;
  margin-bottom: 0;
}
.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; } }
br.pc-br { display: block; }
@media (max-width: 880px) { br.pc-br { display: none; } }
.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);
}

.sec03__movie {
  width: min(100%, 1040px);
  margin: clamp(32px, 5vw, 58px) auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.sec03__movie-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 54, 189, 0.08);
  color: var(--color-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sec03__movie-title {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-navy-900);
}

.sec03__movie-message {
  margin-top: 16px;
  padding-left: 0;
  border-left: 0;
  font-family: var(--font-serif);
  color: var(--color-navy-800);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.sec03__movie-text {
  margin-top: 14px;
  color: var(--color-navy-700);
  font-size: 14px;
  line-height: 1.9;
}

.sec03__movie-frame .media-slot {
  width: min(100%, 920px);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(11, 32, 74, 0.16);
}

.sec03__movie-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: min(100%, 920px);
  margin-top: -6px;
}

.sec03__movie-cta .btn {
  flex: 1 1 0;
  min-width: min(260px, 100%);
}

@media (max-width: 880px) {
  .sec03__movie {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 0;
  }

  .sec03__movie-title {
    font-size: clamp(22px, 7vw, 28px);
  }

  .sec03__movie-message {
    font-size: 15px;
    line-height: 1.85;
  }

  .sec03__movie-text {
    font-size: 14px;
  }

  .sec03__movie-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: -2px;
  }

  .sec03__movie-cta .btn {
    width: 100%;
  }
}

.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__facts-head {
  margin-bottom: 18px;
  text-align: center;
}

.sec04__facts-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(61,110,181,0.18);
  color: var(--color-navy-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sec04__facts-lead {
  margin-top: 12px;
  color: var(--color-navy-800);
  font-size: 14px;
  line-height: 1.8;
}

.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;
  text-align: center;
}

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

.sec04__question-main-line {
  display: inline;
}

.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: 14px;
  flex: 1;
  align-items: stretch;
}

.sec04__stat {
  --stat-accent: #1f6fd1;
  --stat-soft: rgba(31,111,209,0.1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(239,247,255,0.76) 100%);
  border: 1px solid rgba(61,110,181,0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(42,79,143,0.12);
  padding: 22px 18px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.sec04__stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--stat-accent);
}

.sec04__stat--rise {
  --stat-accent: #0b6bd3;
  --stat-soft: rgba(11,107,211,0.1);
}

.sec04__stat--loss {
  --stat-accent: #c51637;
  --stat-soft: rgba(197,22,55,0.1);
}

.sec04__stat--shift {
  --stat-accent: #6256c8;
  --stat-soft: rgba(98,86,200,0.1);
}

.sec04__stat-img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: contain;
  margin: 10px auto 10px;
  opacity: 0.9;
}

.sec04__stat-num {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(42px, 4.6vw, 58px);
  font-weight: 900;
  color: var(--stat-accent);
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 12px;
}

.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 {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  color: var(--stat-accent);
  background: var(--stat-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.sec04__stat-title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 800;
  color: var(--color-navy-900);
  line-height: 1.45;
  margin-bottom: 12px;
}

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

.sec04__source {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--stat-soft);
  color: var(--color-navy-700);
  font-size: 10px;
  line-height: 1;
  margin-top: auto;
}

.sec04__movie {
  width: min(100%, 1080px);
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(61, 110, 181, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(232,243,255,0.78));
  box-shadow: 0 18px 42px rgba(42, 79, 143, 0.12);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.sec04__movie-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11, 54, 189, 0.08);
  color: var(--color-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sec04__movie-title {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-navy-900);
}

.sec04__movie-text {
  margin-top: 14px;
  color: var(--color-navy-700);
  font-size: 14px;
  line-height: 1.9;
}

.sec04__movie-frame .media-slot {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(11, 32, 74, 0.16);
}

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

  .sec04__facts {
    display: block;
  }

  .sec04__facts-head {
    text-align: left;
    margin-bottom: 16px;
  }

  .sec04__facts-lead {
    font-size: 14px;
  }

  .sec04__stats {
    flex: initial;
  }

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

  .sec04__stat {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    grid-template-areas:
      "label image"
      "title image"
      "num image"
      "note note"
      "source source";
    column-gap: 14px;
    align-items: center;
    min-height: 0;
    padding: 18px 16px 16px;
  }

  .sec04__stat-label {
    grid-area: label;
    font-size: 12px;
    margin-bottom: 8px;
  }

  .sec04__stat-title {
    grid-area: title;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .sec04__stat-num {
    grid-area: num;
    font-size: clamp(42px, 11vw, 54px);
    margin-bottom: 0;
  }

  .sec04__stat-note {
    grid-area: note;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
  }

  .sec04__stat-img {
    grid-area: image;
    height: 76px;
    margin: 0;
    align-self: center;
  }

  .sec04__source {
    grid-area: source;
    margin-top: 12px;
  }

  .sec04__movie {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 18px;
  }

  .sec04__movie-copy {
    text-align: left;
  }

  .sec04__movie-title {
    font-size: clamp(22px, 7vw, 28px);
  }

  .sec04__movie-text {
    font-size: 14px;
  }
}

/* =============================================
   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;
}

.sec07__more {
  width: min(100%, 920px);
  margin: -24px auto 0;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(143, 179, 232, .28);
  box-shadow: var(--shadow-md);
}

.sec07__more-title {
  margin: 0 0 18px;
  color: var(--color-navy-700);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.sec07__check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.sec07__check-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 42px;
  border-radius: var(--radius-md);
  background: rgba(242, 247, 252, .9);
  color: var(--color-navy-800);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.sec07__check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-navy-700);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
}

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

  .sec07__more {
    margin-top: -18px;
  }
}

@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%;
  }

  .sec07__more {
    margin-top: -16px;
    padding: 20px 16px;
  }

  .sec07__check-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}

/* ---------- 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; }
}

/* ---------- Responsive polish for tablet / mobile ---------- */
@media (max-width: 1180px) {
  :root { --container: 1040px; }
  .container { padding-inline: 22px; }
  .section { padding-block: clamp(56px, 8vw, 88px); }
  .header .container { width: 100%; }
  .nav { gap: 18px; }
  .nav a:not(.nav__cta) { font-size: 13px; }
  .nav__cta {
    padding-inline: 18px;
    min-height: 42px;
    font-size: 13px;
  }
  .hero__copy { max-width: 560px; }
  .hero__title { font-size: clamp(42px, 5.2vw, 64px); }
  #video-intro .sec02__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  }
  .role-voice-card__videos { gap: 12px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 58px; }
  body { font-size: 14px; }
  .container { padding-inline: 20px; }
  .section__head { margin-bottom: 34px; }
  .section__lead { line-height: 1.85; }
  .hero { min-height: auto; }
  .hero__inner {
    min-height: min(760px, calc(100svh - var(--header-h)));
    padding-block: 72px 40px;
  }
  .hero__buttons .btn,
  .briefing-merge__buttons .btn,
  .price-actions .btn { min-height: 58px; }
  .aud-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .aud {
    min-height: 168px;
  }
  .audience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .role-voice-grid { grid-template-columns: 1fr; }
  .role-voice-card__videos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .briefing-merge { margin-top: 34px; }
  .briefing-merge__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .briefing-merge__card {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px 16px;
  }
  .briefing-merge__icon {
    width: 42px;
    height: 42px;
  }
  .price-tool { min-height: 0; }
  .price-tool--support,
  .price-tool--family { padding-bottom: 104px; }
  .footer__top { gap: 28px; }
  .footer__nav { gap: 10px 18px; }
}

@media (max-width: 880px) {
  .container { padding-inline: 18px; }
  .section { padding-block: 52px; }
  .section__eyebrow,
  .title-bar { letter-spacing: .2em; }
  .section__title { line-height: 1.45; }
  .header { min-height: 58px; }
  .nav {
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .hero__inner { padding-block: 44px 24px; }
  .hero__copy {
    display: grid;
    align-content: start;
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.18;
  }
  .hero__lead { max-width: 24em; }
  .hero__buttons,
  .hero__buttons .btn { width: 100%; }
  .hero__meta {
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,.82);
  }
  #video-intro .sec02__inner,
  .sec02__inner { grid-template-columns: 1fr; }
  #video-intro .sec02__video .media-slot,
  .sec02__video .media-slot { max-width: none; }
  .sec02__video { width: 100%; }
  .opening-cards { gap: 18px; }
  .opening-card__media { min-height: 0; }
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .audience-card {
    min-height: 180px;
    padding: 18px 14px 0;
  }
  .audience-card__title { font-size: 17px; }
  .role-voice-card { padding: 16px; }
  .role-voice-card__videos { grid-template-columns: 1fr; }
  .briefing-merge { padding: 22px 16px; }
  .briefing-merge__title { font-size: clamp(24px, 7vw, 34px); }
  .briefing-merge__cards { grid-template-columns: 1fr; }
  .briefing-merge__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .briefing-merge__buttons .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .price-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .price-actions .btn { width: 100%; }
  .price-tool--support,
  .price-tool--family { padding-bottom: 94px; }
  .price-tool__btn { bottom: 26px; }
  .speaker__inner { gap: 28px; }
  .speaker__media {
    max-width: min(420px, 100%);
    justify-self: center;
  }
  .speaker__copy { text-align: left; }
  .footer { padding-block: 44px 108px; }
  .footer__top { align-items: flex-start; }
  .footer__nav {
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  .section { padding-block: 46px; }
  .section__head { margin-bottom: 28px; }
  .section__title { font-size: clamp(24px, 8.2vw, 34px); }
  .section__lead {
    font-size: 14px;
    line-height: 1.85;
  }
  .title-bar::before,
  .title-bar::after { width: 24px; }
  .hero__inner { padding-block: 36px 22px; }
  .hero__title { font-size: clamp(32px, 10.4vw, 42px); }
  .hero__subhead { font-size: 15px; }
  .hero__lead {
    font-size: 15px;
    line-height: 1.8;
  }
  .hero__buttons { gap: 10px; }
  .btn,
  .nav__cta,
  .sticky-cta__btn { letter-spacing: .02em; }
  .sec02__title { font-size: clamp(26px, 8.4vw, 36px); }
  .sec02__lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .sec02__note {
    font-size: 18px;
    padding-left: 14px;
  }
  .sec02__em { font-size: 22px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card {
    min-height: 150px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    padding: 18px;
  }
  .audience-card__image {
    width: 90px;
    max-height: 106px;
    align-self: end;
  }
  .role-voice-card__head { grid-template-columns: 40px minmax(0, 1fr); }
  .role-voice-card__icon {
    width: 40px;
    height: 40px;
  }
  .role-voice-card__title { font-size: 18px; }
  .briefing-merge__card { grid-template-columns: 42px minmax(0, 1fr); }
  .briefing-merge__card h3 { font-size: 18px; }
  .briefing-merge__discount { font-size: 15px; }
  .overview-card,
  .price-panel,
  .price-tool,
  .role-voice-card,
  .briefing-merge { border-radius: 8px; }
  .price-tool { padding: 24px 18px; }
  .price-tool--support,
  .price-tool--family { padding-bottom: 98px; }
  .price-tool__btn {
    left: 18px;
    right: 18px;
    width: auto;
    padding-inline: 18px;
  }
  .price-tool strong,
  .price-tool__title { font-size: 24px; }
  .price-tool small {
    font-size: 14px;
    line-height: 1.85;
  }
  .speaker-section { padding-block: 54px; }
  .speaker__media-label { font-size: 18px; }
  .speaker__title { font-size: clamp(28px, 8.6vw, 38px); }
  .speaker__lead,
  .speaker__body,
  .speaker__bio {
    font-size: 14px;
    line-height: 1.9;
  }
  .footer__top {
    display: grid;
    gap: 24px;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .footer__nav a { white-space: normal; }
}

@media (max-width: 420px) {
  .container { padding-inline: 14px; }
  .hero__title { font-size: clamp(30px, 10vw, 38px); }
  .hero__lead { font-size: 14px; }
  .hero__meta-item { line-height: 1.55; }
  .sticky-cta {
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  }
  .sticky-cta__btn {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 12px;
  }
  .audience-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .audience-card__image { justify-self: center; }
  .role-voice-card { padding: 14px; }
  .role-voice-card__head {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .briefing-merge__card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .briefing-merge__check { left: 12px; }
  .briefing-merge__icon { justify-self: center; }
  .price-tool--simulator { padding: 18px 16px; }
  .price-tool__action { width: 100%; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* ---------- Mobile overflow repair ---------- */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  main,
  section,
  .section,
  .container {
    max-width: 100%;
  }

  .container {
    padding-inline: 18px;
  }

  .section {
    overflow-x: clip;
  }

  .section__head {
    padding-inline: 0;
    margin-bottom: 26px;
  }

  .section__title,
  .sec02__title,
  .sec05__title,
  .sec05__for-title,
  .speaker__title {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
    line-break: strict;
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  .section__lead,
  .sec02__lead,
  .sec05__lead,
  .sec03__lead,
  .sec04__lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.9;
    overflow-wrap: break-word;
  }

  .title-bar {
    justify-content: center;
    width: 100%;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .18em;
  }

  .title-bar::before,
  .title-bar::after {
    width: 34px;
    flex: 0 0 34px;
  }

  .aud-row {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-inline: 0;
  }

  .aud {
    min-height: 96px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
  }

  .aud__head {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .aud__name {
    white-space: normal !important;
    font-size: 19px;
  }

  .aud__person {
    flex: 0 0 auto;
    width: 70px;
    height: 78px;
  }

  .sec05__for-card {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 16px;
  }

  .sec05__for-image {
    width: 78px;
    margin: 0;
  }

  .benefit-card {
    min-height: 0;
    padding: 18px 16px 116px;
  }

  .benefit-card__text {
    max-width: 100%;
  }

  .benefit-card__img {
    width: 48%;
    height: 48%;
    right: 8px;
  }

  .achievement-cards {
    max-width: 100%;
  }

  .achievement-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .achievement-card__visual {
    width: 96px;
    height: 88px;
  }

  .achievement-card__num {
    white-space: normal;
  }

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

  .achievement-card__label {
    font-size: 15px;
  }

  .sec02__note {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.55;
  }

  .sec02__em {
    font-size: 22px;
  }

  .sec13-balance .sec02__inner,
  #video-intro .sec02__inner {
    grid-template-columns: 1fr !important;
  }

  .sec13-balance .balance-card .media-slot,
  .sec02__video .media-slot,
  .opening-card__media .media-slot,
  .role-voice-card__video {
    width: 100%;
    max-width: 100%;
  }

  .join-cards,
  .way-card,
  .way-card__top {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
  }

  .way-card {
    padding: 16px;
  }

  .way-card__title {
    font-size: 25px;
  }

  .way-card__media {
    min-height: 0;
  }

  .role-voice-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .role-voice-card__title {
    font-size: 21px;
    line-height: 1.45;
  }

  .role-voice-card__person {
    font-size: 14px;
    line-height: 1.6;
  }

  .sticky-cta {
    display: none !important;
  }

  .sticky-cta__btn {
    min-height: 44px;
    padding-inline: 8px;
    font-size: 13px;
    line-height: 1.25;
  }

  #voice .section__title,
  #selectedBy .section__title,
  #video-intro .sec02__title,
  #participation .section__title,
  .sec07 .section__title,
  #achievements .section__title,
  .achievements-section .section__title,
  .sec13-balance .sec02__title {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.5;
    text-align: center;
  }

  #voice .section__lead,
  #participation .section__lead {
    text-align: center;
  }

  .card__title,
  .benefit-card__title,
  .way-card__title,
  .achievement-card__label,
  .role-voice-card__title {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .sec03__quote,
  .achievements-message,
  .aud-age-note {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }

  .sec03__quote p {
    white-space: normal;
    font-size: 18px;
  }

  .hero__bg-slot.is-filled img {
    object-position: 100% bottom;
    transform: translateY(22%);
  }

  .hero__bg-slot.is-filled::after {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.72) 40%,
        rgba(255,255,255,0.28) 68%,
        rgba(255,255,255,0.04) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,0.82) 0%,
        rgba(255,255,255,0.58) 62%,
        rgba(255,255,255,0.14) 100%);
  }

  .hero__buttons {
    margin-top: 14px;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(11,30,63,.12);
  }

  .hero__buttons .btn {
    min-height: 54px;
  }

  .card__text,
  .diag-card2__sub,
  .story-stage__lead,
  .story-feedback span:last-child,
  .benefit-card__text,
  .opening-card__text,
  .experience-point__text,
  .first-time-card__text,
  .role-voice-card__person,
  .way-card__lead,
  .way-card__list li,
  .overview-list__item dd,
  .price-card__target,
  .price-actions-note,
  .faq__body,
  .contact-list__item dd,
  .footer__bottom {
    font-size: 15px;
    line-height: 1.8;
  }

  .section__eyebrow,
  .opening-card__label,
  .role-voice-card__label,
  .price-card__deadline,
  .voice__person,
  .note {
    font-size: 13px;
  }

  .benefit-card__title,
  .card__title,
  .sec05__for-card .card__title,
  .experience-point__title,
  .first-time-card__title {
    font-size: 18px;
    line-height: 1.45;
  }

  .day-card p,
  .day-card__insight,
  .step__text,
  .timeline__place,
  .sec06__badge-desc {
    font-size: 14px;
    line-height: 1.75;
  }

  .day-card__chapter-label,
  .day-card__badge,
  .first-time-card__label,
  .opening-compass__label {
    font-size: 13px;
  }

  .hero__eyebrow,
  .title-bar,
  .sec04__source,
  .sec05__badge,
  .price-card__target,
  .briefing-merge__discount span {
    font-size: 13px;
  }

  .hero__meta-date {
    font-size: 13px;
  }

  .sec05__title {
    font-size: clamp(25px, 6.4vw, 27px);
  }

  .speaker__portrait img {
    transform: none;
    object-position: 62% 22%;
  }
}

@media (max-width: 390px) {
  .container {
    padding-inline: 16px;
  }

  .section__title,
  .sec02__title,
  .sec05__title,
  .sec05__for-title,
  .speaker__title {
    font-size: clamp(26px, 7.5vw, 31px);
  }

  .sec05__title {
    font-size: clamp(25px, 6.4vw, 27px);
  }

  .hero__title {
    font-size: clamp(30px, 9.6vw, 38px);
  }
}

@media (max-width: 880px) {
  .sticky-cta {
    display: none !important;
  }

  .diag-card2__title,
  .card__title,
  .benefit-card__title,
  .sec05__for-card .card__title,
  .experience-point__title,
  .first-time-card__title {
    font-size: 18px;
    line-height: 1.5;
  }

  .benefit-card__text,
  .day-card p,
  .day-card__insight,
  .step__text,
  .timeline__place {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero__eyebrow,
  .title-bar,
  .sec04__source,
  .sec05__badge,
  .day-card__badge,
  .day-card__chapter-label,
  .first-time-card__label,
  .opening-compass__label,
  .opening-card__label,
  .price-card__target,
  .briefing-merge__discount span,
  .note,
  small {
    font-size: 13px !important;
  }

  .diag-card2__num {
    font-size: 13px;
  }

  .opening-card__text,
  .price-actions-note,
  .footer__bottom {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ---------- Mobile designer pass: tighten rhythm, protect reading width ---------- */
.sticky-cta {
  display: none !important;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0 !important;
  }

  .section {
    padding-block: 42px;
  }

  .section__head {
    margin-bottom: 24px;
  }

  .section__title,
  .sec02__title,
  .sec05__for-title,
  .speaker__title {
    font-size: clamp(27px, 7.4vw, 33px);
    line-height: 1.38;
    letter-spacing: 0.01em;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  #video-intro .sec02__title,
  #experience .section__title,
  #achievements .section__title,
  .sec13-balance .sec02__title,
  #first-time .section__title,
  #participation .section__title {
    font-size: clamp(29px, 7.2vw, 32px);
    line-height: 1.42;
  }

  .section__lead,
  .sec02__lead,
  .sec03__lead,
  .first-time__copy .section__lead {
    font-size: 15px;
    line-height: 1.82;
    letter-spacing: 0;
  }

  .speaker-section {
    padding-block: 46px 54px;
  }

  .speaker__inner {
    gap: 24px;
  }

  .speaker__lead,
  .speaker__body,
  .speaker__bio {
    font-size: 15px;
    line-height: 1.9;
  }

  .speaker__statement {
    margin: 4px 0 18px;
    padding-left: 16px;
    font-size: clamp(23px, 6.1vw, 28px);
    line-height: 1.6;
    letter-spacing: 0.01em;
  }

  .speaker__statement strong {
    display: inline-block;
    background: linear-gradient(transparent 72%, rgba(143, 179, 232, 0.28) 72%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding-inline: 0.05em;
  }

  .speaker__media {
    margin-top: 2px;
  }

  .speaker__portrait {
    aspect-ratio: 4 / 3;
  }

  .speaker__portrait img {
    object-position: 58% 18%;
  }

  #first-time {
    padding-top: 42px;
  }

  .first-time__inner {
    gap: 22px;
  }

  .first-time__note-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 22px;
    padding: 20px 18px;
  }

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

  .first-time__note-card p {
    width: 100%;
    font-size: 15px;
    line-height: 1.86;
  }

  .first-time-card {
    min-height: 0;
    padding: 18px;
  }

  .first-time-card__img {
    display: none;
  }

  .first-time-card__title {
    white-space: normal;
    font-size: 19px;
  }

  .first-time-card__text {
    max-width: none;
    font-size: 15px;
  }

  .day-card {
    padding: 14px;
  }

  .day-card__head {
    padding: 0 0 14px;
  }

  .day-card__body {
    padding: 18px;
  }

  .day-card__chapter {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .day-card__visual {
    width: 112px;
    min-height: 112px;
    justify-self: center;
  }

  .day-card__chapter h4 {
    font-size: 20px;
    line-height: 1.5;
  }

  .day-card__chapter p,
  .day-card__insight {
    font-size: 15px;
    line-height: 1.82;
  }

  .day-card__insight {
    display: block;
    padding: 12px 14px;
    margin-top: 12px;
  }

  .sec13-balance .sec02__lead {
    max-width: none;
  }

  .sec13-balance .balance-card .media-slot {
    width: min(100%, 360px);
  }

  .sec13-balance .balance-message {
    margin-top: 18px;
  }

  #experience .section__lead {
    text-align: left;
  }

  .experience-point__main {
    padding: 16px;
  }

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

  .experience-point__title {
    font-size: 20px;
  }

  .experience-point__text {
    font-size: 15px;
    line-height: 1.78;
  }

  .achievement-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }

  .achievement-card__visual {
    width: 86px;
    height: 82px;
  }

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

  .achievements-message {
    font-size: 21px;
    line-height: 1.55;
    padding: 18px 16px;
  }

  .final-cta {
    padding-bottom: 44px;
  }

  .footer {
    padding-block: 42px 50px !important;
  }
}

@media (max-width: 390px) {
  #video-intro .sec02__title,
  #experience .section__title,
  #achievements .section__title,
  .sec13-balance .sec02__title,
  #first-time .section__title,
  #participation .section__title {
    font-size: clamp(26px, 6.8vw, 29px);
  }

  .speaker__statement {
    font-size: clamp(22px, 6vw, 26px);
  }
}

/* ---------- Mobile hero final override: no overlap, compact CTA ---------- */
@media (max-width: 640px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
    padding: calc(var(--header-h) + 18px) 0 0 !important;
  }

  .hero__bg-slot {
    display: none !important;
  }

  .hero__inner {
    padding-block: 0 !important;
  }

  .hero__eyebrow {
    margin-bottom: 18px !important;
  }

  .hero__lead {
    margin-bottom: 20px !important;
  }

  .hero__buttons {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .hero__buttons .btn {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 50px !important;
    padding: 0 8px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    white-space: nowrap;
  }

  .hero__buttons .arrow {
    margin-left: 6px;
  }

  .hero__meta {
    margin-bottom: 0 !important;
    border-radius: 8px !important;
  }

  .hero__mobile-photo {
    display: block !important;
    width: 100% !important;
    margin: 18px 0 0 !important;
    aspect-ratio: 1.08 / 1;
    overflow: hidden;
    border-radius: 0;
  }

  .hero__mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73% bottom;
    display: block;
  }
}

@media (max-width: 380px) {
  .hero__buttons .btn {
    font-size: 13px !important;
  }
}

/* ---------- Video intro refinement: make the movie the visual anchor ---------- */
#video-intro .sec02__inner {
  grid-template-columns: 1fr !important;
  row-gap: clamp(22px, 3vw, 38px);
  justify-items: center;
}

#video-intro .sec02__copy {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 980px);
  text-align: center;
}

#video-intro .sec02__label {
  justify-content: center;
}

#video-intro .sec02__title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.34;
  text-wrap: balance;
}

#video-intro .sec02__lead {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 2;
}

#video-intro .sec02__video {
  grid-column: 1;
  grid-row: 2;
  width: min(100%, 1040px);
}

#video-intro .sec02__video .media-slot {
  width: 100%;
  max-width: none;
}

#video-intro .sec02__note {
  grid-column: 1;
  grid-row: 3;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 28px) clamp(18px, 3vw, 38px);
  border-left: 0;
  border-radius: 8px;
  border: 1px solid rgba(72, 125, 186, 0.22);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(42, 93, 151, 0.12);
  text-align: center;
}

@media (max-width: 820px) {
  #video-intro .sec02__inner {
    row-gap: 20px;
  }

  #video-intro .sec02__copy {
    text-align: left;
  }

  #video-intro .sec02__label {
    justify-content: center;
  }

  #video-intro .sec02__title {
    font-size: clamp(32px, 8.2vw, 42px);
    line-height: 1.35;
    text-align: center;
  }

  #video-intro .sec02__lead {
    max-width: 34em;
    text-align: left;
    font-size: 16px;
    line-height: 1.85;
  }

  #video-intro .sec02__note {
    width: 100%;
    padding: 18px;
    text-align: left;
    font-size: clamp(20px, 5.6vw, 24px);
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  #video-intro .sec02__title {
    font-size: clamp(30px, 8vw, 34px);
  }

  #video-intro .sec02__lead {
    font-size: 15px;
  }
}

/* ---------- Mobile FV polish: integrated portrait, no CTA overlap ---------- */
@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - 0px) !important;
    height: auto !important;
    padding: calc(var(--header-h) + 16px) 0 18px !important;
    background:
      linear-gradient(180deg, #fff 0%, #f7fbff 58%, #eaf4ff 100%) !important;
  }

  .hero > .container.hero__inner {
    min-height: calc(100svh - var(--header-h) - 34px);
    display: block !important;
  }

  .hero__copy {
    position: relative;
    min-height: inherit;
    display: flex !important;
    flex-direction: column;
    padding-bottom: clamp(238px, 36svh, 320px);
  }

  .hero__copy > :not(.hero__mobile-photo) {
    position: relative;
    z-index: 2;
  }

  .hero__eyebrow {
    margin-bottom: 16px !important;
    font-size: clamp(11px, 2.85vw, 12px) !important;
    line-height: 1.6 !important;
    letter-spacing: .25em !important;
    transform: none !important;
    white-space: nowrap;
  }

  .hero__title {
    margin-bottom: 14px !important;
    font-size: clamp(40px, 10.5vw, 46px) !important;
    line-height: 1.12 !important;
    letter-spacing: .02em !important;
  }

  .hero__subhead {
    margin-bottom: 14px !important;
    padding-bottom: 13px !important;
    font-size: clamp(15px, 3.9vw, 17px) !important;
    line-height: 1.55 !important;
    letter-spacing: .02em !important;
  }

  .hero__lead {
    margin-bottom: 18px !important;
    font-size: clamp(16px, 4.2vw, 18px) !important;
    line-height: 1.7 !important;
    letter-spacing: .01em !important;
  }

  .hero__buttons {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .hero__buttons .btn {
    min-height: 50px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  .hero__meta {
    margin: 0 !important;
    padding: 14px 16px !important;
    gap: 8px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 14px 34px rgba(35, 74, 128, .12) !important;
  }

  .hero__meta-item {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .hero__meta-date {
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .hero__meta-d {
    font-size: 23px !important;
  }

  .hero__mobile-photo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    z-index: 1;
    display: block !important;
    width: auto !important;
    height: clamp(300px, 39svh, 360px);
    margin: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden;
    background: #edf7ff;
  }

  .hero__mobile-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.62) 18%,
        rgba(255,255,255,.14) 46%,
        rgba(255,255,255,0) 78%),
      linear-gradient(90deg,
        rgba(255,255,255,.94) 0%,
        rgba(255,255,255,.78) 42%,
        rgba(255,255,255,.16) 68%,
        rgba(255,255,255,0) 100%);
  }

  .hero__mobile-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 77% 43% !important;
    display: block;
  }
}

@media (max-width: 390px) {
  .hero__copy {
    padding-bottom: clamp(232px, 35svh, 302px);
  }

  .hero__title {
    font-size: clamp(37px, 10vw, 42px) !important;
  }

  .hero__subhead,
  .hero__lead {
    font-size: 15px !important;
  }

  .hero__buttons .btn {
    font-size: 13px !important;
  }

  .hero__mobile-photo {
    height: clamp(292px, 38svh, 330px);
  }
}

/* ---------- Mobile FV final-final: portrait as one continuous background ---------- */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh !important;
    padding: calc(var(--header-h) + 16px) 0 0 !important;
    background: #f7fbff !important;
  }

  .hero > .container.hero__inner {
    min-height: calc(100svh - var(--header-h) - 16px) !important;
  }

  .hero__copy {
    min-height: inherit;
    padding-bottom: 0 !important;
  }

  .hero__copy::before {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    top: -16px;
    bottom: 0;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,.98) 44%,
        rgba(255,255,255,.86) 58%,
        rgba(255,255,255,.28) 78%,
        rgba(255,255,255,0) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.96) 0%,
        rgba(255,255,255,.84) 42%,
        rgba(255,255,255,.34) 64%,
        rgba(255,255,255,0) 100%);
  }

  .hero__mobile-photo {
    position: absolute !important;
    top: -16px !important;
    right: auto !important;
    bottom: 0 !important;
    left: 50% !important;
    z-index: -1 !important;
    width: 100vw !important;
    height: auto !important;
    margin: 0 !important;
    transform: translateX(-50%);
    overflow: hidden;
    background: #f7fbff;
  }

  .hero__mobile-photo::before {
    display: none !important;
  }

  .hero__mobile-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 74% 48% !important;
    transform: translateY(252px) scale(1);
    transform-origin: center bottom;
  }

  .hero__eyebrow {
    margin-top: 0 !important;
  }

  .hero__lead {
    max-width: 21em;
  }

  .hero__buttons,
  .hero__meta {
    width: 100%;
  }

  .hero__meta {
    margin-bottom: clamp(116px, 18svh, 160px) !important;
  }
}

@media (max-width: 390px) {
  .hero__mobile-photo img {
    transform: translateY(266px) scale(1);
    object-position: 74% 48% !important;
  }

  .hero__meta {
    margin-bottom: clamp(108px, 17svh, 146px) !important;
  }
}

/* ---------- Mobile FV approved: v18 composition ---------- */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh !important;
    padding: calc(var(--header-h) + 28px) 0 34px !important;
    background: linear-gradient(180deg, #fff 0%, #fff 34%, #eef8ff 69%, #fff 100%) !important;
    overflow: hidden;
  }

  .hero__bg-slot {
    display: none !important;
  }

  .hero > .container.hero__inner {
    min-height: auto !important;
    display: block !important;
  }

  .hero__copy {
    display: flex !important;
    flex-direction: column;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
  }

  .hero__copy::before {
    display: none !important;
  }

  .hero__copy > :not(.hero__mobile-photo) {
    position: relative;
    z-index: 4;
  }

  .hero__eyebrow {
    order: 1;
    width: 100%;
    margin: 0 0 22px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
    letter-spacing: .33em !important;
    white-space: nowrap;
    color: #244a86 !important;
  }

  .hero__title {
    order: 2;
    margin: 0 0 19px !important;
    font-size: clamp(42px, 11vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    color: #24477e !important;
  }

  .hero__subhead {
    order: 3;
    display: block !important;
    width: 100%;
    margin: 0 0 8px !important;
    padding: 0 0 10px !important;
    font-size: 15px !important;
    line-height: 1.52 !important;
    letter-spacing: .02em !important;
    white-space: nowrap;
    color: #071d3f !important;
    border-bottom: 1px solid #2e66b5 !important;
  }

  .hero__mobile-photo {
    order: 4;
    position: relative !important;
    inset: auto !important;
    z-index: 1 !important;
    display: block !important;
    width: calc(100% + (var(--container-pad) * 2)) !important;
    height: 258px !important;
    margin: 0 calc(var(--container-pad) * -1) 0 !important;
    transform: none !important;
    overflow: hidden;
    background: #edf7ff;
  }

  .hero__mobile-photo::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.58) 0%,
        rgba(255,255,255,.17) 18%,
        rgba(255,255,255,.02) 47%,
        rgba(255,255,255,.25) 72%,
        rgba(255,255,255,.96) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.32) 0%,
        rgba(255,255,255,.17) 25%,
        rgba(255,255,255,.09) 61%,
        rgba(255,255,255,.03) 100%);
  }

  .hero__mobile-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 5;
    height: 102px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.95) 74%, #fff);
    filter: blur(1.5px);
  }

  .hero__mobile-photo img {
    display: none !important;
  }

  .hero__mobile-hall,
  .hero__mobile-person,
  .hero__mobile-mark {
    position: absolute;
    display: block;
    pointer-events: none;
  }

  .hero__mobile-hall {
    inset: 0;
    z-index: 1;
    background: url("../images/hero-hall-fv-mobile.jpg") center 48% / cover no-repeat;
    filter: saturate(1.08) contrast(1.04);
  }

  .hero__mobile-person {
    inset: -12px -20px -16px 0;
    z-index: 2;
    background: url("../images/hero-bg-pc.jpg") 73% 50% / auto 330px no-repeat;
    opacity: .95;
  }

  .hero__mobile-mark {
    left: 22px;
    top: 62px;
    z-index: 2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(10, 71, 151, .13);
    text-shadow: 0 1px 0 rgba(255,255,255,.34);
  }

  .hero__mobile-mark small {
    display: block;
    margin-top: 3px;
    font-family: var(--font-en);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .13em;
    color: rgba(10, 71, 151, .20);
    white-space: nowrap;
  }

  .hero__lead {
    order: 5;
    max-width: none !important;
    width: 100%;
    margin: -14px 0 9px !important;
    padding: 9px 12px !important;
    border: 1px solid rgba(255,255,255,.80);
    border-radius: 8px;
    background: rgba(255,255,255,.87);
    box-shadow: 0 12px 28px rgba(8,35,78,.08);
    backdrop-filter: blur(6px);
    font-size: 15.8px !important;
    line-height: 1.38 !important;
    letter-spacing: -.025em !important;
    white-space: nowrap;
  }

  .hero__buttons {
    order: 6;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 0 9px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .hero__buttons .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 47px !important;
    padding: 0 8px !important;
    border-radius: 7px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
    white-space: nowrap;
  }

  .hero__buttons .arrow {
    margin-left: 6px;
  }

  .hero__meta {
    order: 7;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 !important;
    padding: 10px 14px 11px !important;
    gap: 9px !important;
    border: 1px solid rgba(62,117,189,.24) !important;
    border-top: 1px solid rgba(62,117,189,.24) !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.90) !important;
    box-shadow: 0 10px 22px rgba(8,35,78,.08) !important;
  }

  .hero__meta-item {
    gap: 12px !important;
    font-size: 18px !important;
    line-height: 1.34 !important;
    font-weight: 850 !important;
    white-space: nowrap;
  }

  .hero__meta-icon,
  .hero__meta-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .hero__meta-date {
    font-size: 15px !important;
    line-height: 1.34 !important;
    font-weight: 850 !important;
  }

  .hero__meta-d {
    font-size: 23px !important;
    font-weight: 850 !important;
  }
}

@media (max-width: 380px) {
  .hero__eyebrow {
    letter-spacing: .25em !important;
  }

  .hero__title {
    font-size: clamp(39px, 10.8vw, 42px) !important;
  }

  .hero__lead {
    font-size: 14.4px !important;
  }

  .hero__buttons .btn {
    font-size: 13.5px !important;
  }

  .hero__meta-item {
    font-size: 16px !important;
  }

  .hero__meta-d {
    font-size: 21px !important;
  }
}

/* ---------- PC FV balance: centered stage, safer copy/image spacing ---------- */
@media (min-width: 881px) {
  .hero {
    padding-top: calc(var(--header-h) + 18px);
  }

  .hero > .container.hero__inner {
    width: min(1500px, calc(100% - clamp(96px, 14vw, 220px)));
    max-width: none;
    padding-inline: 0;
  }

  .hero__copy {
    max-width: clamp(590px, 35vw, 680px);
    transform: translateX(clamp(14px, 1.8vw, 34px));
  }

  .hero__bg-slot img {
    object-position: calc(100% + clamp(28px, 3.6vw, 76px)) center;
  }

  .hero__bg-slot.is-filled::after {
    background:
      linear-gradient(90deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.82) 31%,
        rgba(255,255,255,.42) 50%,
        rgba(255,255,255,.08) 69%,
        rgba(255,255,255,0) 82%),
      linear-gradient(180deg,
        rgba(255,255,255,.18) 0%,
        rgba(255,255,255,0) 45%);
  }

  .hero__desktop-mark {
    left: clamp(760px, 50vw, 1030px);
    top: 52%;
    font-size: clamp(96px, 8vw, 142px);
    color: rgba(10, 71, 151, .085);
  }

  .hero__desktop-mark small {
    color: rgba(10, 71, 151, .15);
  }
}

@media (min-width: 881px) and (max-width: 1180px) {
  .hero > .container.hero__inner {
    width: calc(100% - 72px);
  }

  .hero__copy {
    max-width: 560px;
    transform: translateX(8px);
  }

  .hero__title {
    font-size: clamp(54px, 6vw, 70px);
  }

  .hero__buttons .btn {
    min-width: 220px;
  }
}

/* ---------- Mobile readability final pass: compact, balanced, no awkward breaks ---------- */
@media (max-width: 640px) {
  :root {
    --mobile-side: clamp(20px, 5.2vw, 30px);
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - calc(var(--mobile-side) * 2), 540px) !important;
  }

  .section,
  .section--soft,
  .sec02,
  .sec03,
  .sec04,
  .sec05 {
    padding-block: 38px !important;
  }

  .section__head {
    margin-bottom: 22px !important;
  }

  .title-bar {
    gap: 14px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: .22em !important;
    white-space: nowrap;
  }

  .title-bar::before,
  .title-bar::after {
    width: 44px !important;
  }

  .section__title,
  .sec02__title,
  .sec03__title,
  .sec04__title,
  .sec05__title,
  .sec05__for-title,
  .speaker__title {
    max-width: 100% !important;
    font-size: clamp(28px, 7.6vw, 34px) !important;
    line-height: 1.36 !important;
    letter-spacing: 0 !important;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .section__lead,
  .sec02__lead,
  .sec03__lead,
  .sec04__lead,
  .sec05__lead,
  .speaker__lead,
  .speaker__body,
  .speaker__bio,
  .first-time__copy .section__lead {
    max-width: 34em !important;
    font-size: 15.5px !important;
    line-height: 1.78 !important;
    letter-spacing: 0 !important;
    text-align: left;
  }

  .section__lead br,
  .sec02__lead br,
  .sec03__lead br,
  .sec04__lead br,
  .sec05__lead br,
  .first-time__copy .section__lead br {
    display: none;
  }

  .sec03__quote {
    margin: 20px 0 28px !important;
    padding: 22px 18px !important;
    border-radius: 14px !important;
  }

  .sec03__quote p {
    font-size: clamp(23px, 6.2vw, 28px) !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .sec03__quote-accent {
    display: inline !important;
    margin: 0 !important;
    font-size: 1.08em !important;
  }

  .sec04__question {
    margin-top: 22px !important;
    padding: 0 !important;
  }

  .sec04__question-title {
    font-size: clamp(22px, 5.8vw, 25px) !important;
    line-height: 1.48 !important;
    letter-spacing: 0 !important;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .sec04__question-years,
  .sec04__question-main,
  .sec04__question-main-line {
    display: block;
  }

  .speaker-section {
    padding-block: 40px 44px !important;
  }

  .speaker__inner {
    gap: 20px !important;
  }

  .speaker__statement {
    margin: 0 0 16px !important;
    padding-left: 16px !important;
    font-size: clamp(21px, 5.2vw, 23px) !important;
    line-height: 1.52 !important;
    letter-spacing: 0 !important;
    background: none !important;
  }

  .speaker__statement span,
  .speaker__statement strong {
    display: block !important;
  }

  .speaker__statement strong {
    width: fit-content;
    margin-top: 4px;
    background: linear-gradient(transparent 70%, rgba(143, 179, 232, .30) 70%) !important;
  }

  .speaker__portrait {
    aspect-ratio: 4 / 3 !important;
  }

  .speaker__portrait img {
    object-position: 58% 15% !important;
  }

  #video-intro .sec02__title {
    font-size: clamp(31px, 8.1vw, 38px) !important;
    line-height: 1.34 !important;
  }

  #video-intro .sec02__lead {
    text-align: center !important;
  }

  #video-intro .sec02__note {
    padding: 16px 18px !important;
    font-size: clamp(21px, 5.7vw, 25px) !important;
    line-height: 1.58 !important;
    text-align: left !important;
  }

  #video-intro .sec02__note br {
    display: none;
  }

  .sec13-balance .sec02__title {
    font-size: clamp(29px, 7.8vw, 35px) !important;
  }

  .sec13-balance .balance-card .media-slot {
    width: min(100%, 330px) !important;
  }

  .sec07__grid {
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .benefit-card {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) 62px;
    grid-template-areas:
      "num title img"
      "text text img";
    align-items: start;
    gap: 8px 10px !important;
    padding: 16px 14px !important;
    border-radius: 8px !important;
  }

  .benefit-card__head {
    display: contents !important;
  }

  .benefit-card__num {
    grid-area: num;
    width: 34px !important;
    height: 34px !important;
    font-size: 17px !important;
  }

  .benefit-card__title {
    grid-area: title;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.42 !important;
  }

  .benefit-card__text {
    grid-area: text;
    max-width: none !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .benefit-card__img {
    grid-area: img;
    position: static !important;
    width: 62px !important;
    height: 62px !important;
    align-self: end;
    opacity: .92;
  }

  .day-card {
    padding: 12px !important;
    border-radius: 10px !important;
  }

  .day-card__head {
    padding-bottom: 12px !important;
  }

  .day-card__body {
    padding: 14px !important;
  }

  .day-card__chapter {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 18px 0 !important;
  }

  .day-card__visual {
    width: 72px !important;
    min-height: 72px !important;
    justify-self: start !important;
  }

  .day-card__chapter-label {
    font-size: 11px !important;
    letter-spacing: .12em !important;
  }

  .day-card__chapter h4 {
    font-size: 18px !important;
    line-height: 1.44 !important;
  }

  .day-card__chapter p,
  .day-card__insight {
    font-size: 14.5px !important;
    line-height: 1.68 !important;
  }

  .day-card__insight {
    padding: 10px 12px !important;
  }

  #first-time .section__title {
    text-align: left !important;
    font-size: clamp(31px, 8.2vw, 38px) !important;
    line-height: 1.36 !important;
  }

  .first-time__note-card {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    justify-items: start !important;
    align-items: center;
    gap: 14px !important;
    margin-top: 18px !important;
    padding: 16px !important;
  }

  .first-time__note-icon {
    width: 56px !important;
    height: 56px !important;
  }

  .first-time__note-card p {
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  .first-time__cards {
    gap: 12px !important;
  }

  .first-time-card {
    padding: 16px !important;
    border-radius: 8px !important;
  }

  .first-time-card__title {
    font-size: 18px !important;
    line-height: 1.44 !important;
  }

  .first-time-card__text {
    font-size: 14.5px !important;
    line-height: 1.68 !important;
  }

  #voice .section__title {
    font-size: clamp(28px, 7.4vw, 34px) !important;
    line-height: 1.38 !important;
  }

  .aud-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .aud {
    min-height: 58px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
  }

  .aud__head {
    gap: 10px !important;
  }

  .aud__icon {
    width: 30px !important;
    height: 30px !important;
  }

  .aud__name {
    font-size: 17px !important;
    line-height: 1.2 !important;
    white-space: nowrap;
  }

  .aud__person {
    display: none !important;
  }

  .aud:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 4px);
  }

  .aud-age-note {
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 16px !important;
    padding: 14px !important;
    border-radius: 8px !important;
  }

  .aud-age-note__icon {
    width: 34px !important;
    height: 34px !important;
  }

  .aud-age-note p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  .aud-age-note p span {
    display: inline !important;
  }

  .role-voice-grid {
    gap: 14px !important;
    margin-top: 22px !important;
  }

  .role-voice-card {
    padding: 14px !important;
    border-radius: 8px !important;
  }

  .role-voice-card__head {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }

  .role-voice-card__icon {
    width: 34px !important;
    height: 34px !important;
  }

  .role-voice-card__label {
    font-size: 13px !important;
  }

  .role-voice-card__title {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .role-voice-card__videos {
    gap: 12px !important;
  }

  .role-voice-card__person {
    margin-top: 8px !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .briefing-merge {
    margin-top: 26px !important;
    padding: 18px 14px !important;
    border-radius: 10px !important;
  }

  .briefing-merge__title {
    font-size: clamp(24px, 6.4vw, 29px) !important;
    line-height: 1.42 !important;
  }

  .briefing-merge__cards {
    gap: 10px !important;
  }

  .briefing-merge__card {
    min-height: 0 !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
    text-align: left !important;
  }

  .briefing-merge__check {
    width: 18px !important;
    height: 18px !important;
  }

  .briefing-merge__icon {
    width: 38px !important;
    height: 38px !important;
  }

  .briefing-merge__card h3 {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  .briefing-merge__card p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  .briefing-merge__discount {
    padding: 14px 12px !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }

  .briefing-merge__discount strong {
    display: inline-block !important;
    font-size: 1.18em !important;
  }

  .briefing-merge__discount span {
    display: block !important;
    margin-top: 4px !important;
    font-size: 13px !important;
  }

  .briefing-merge__buttons {
    gap: 10px !important;
  }

  .briefing-merge__buttons .btn,
  .line-section__actions .btn,
  .final-cta .btn {
    min-height: 56px !important;
    font-size: 17px !important;
    border-radius: 8px !important;
  }

  .line-section__inner {
    gap: 22px !important;
  }

  #line .section__title,
  #contact .section__title {
    text-align: left !important;
    font-size: clamp(31px, 8vw, 38px) !important;
  }

  .line-section__lead {
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  .line-section__actions {
    gap: 10px !important;
  }

  .contact-card {
    padding: 18px 16px !important;
    border-radius: 10px !important;
  }

  .contact-list__item {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 16px 0 !important;
  }

  .contact-list__item dt {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .contact-list__item dd {
    padding-left: 0 !important;
    border-left: 0 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .contact-list__item dd a {
    display: inline-block;
    font-size: 25px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .contact-list__item dd small {
    display: block;
    margin-top: 4px;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .final-cta .section__title {
    font-size: clamp(30px, 7.6vw, 36px) !important;
    line-height: 1.42 !important;
  }

  .final-cta .section__lead {
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .section__title,
  .sec02__title,
  .sec03__title,
  .sec04__title,
  .sec05__title,
  .speaker__title {
    font-size: clamp(27px, 7.2vw, 31px) !important;
  }

  .section__lead,
  .sec02__lead,
  .sec03__lead,
  .sec04__lead,
  .sec05__lead {
    font-size: 15px !important;
  }

  .sec03__quote p {
    font-size: clamp(22px, 6vw, 26px) !important;
  }

  .aud__name {
    font-size: 16px !important;
  }

  .hero__meta-item {
    white-space: normal !important;
  }
}

/* ---------- Mobile refinement pass 02: prevent cramped CTAs and rogue widths ---------- */
@media (max-width: 640px) {
  .hero__buttons .btn {
    min-height: 48px !important;
    padding-inline: 6px !important;
    font-size: 14.4px !important;
    letter-spacing: 0 !important;
    gap: 0 !important;
  }

  .hero__buttons .arrow {
    display: none !important;
  }

  .hero__meta {
    padding: 12px 14px !important;
    gap: 8px !important;
  }

  .hero__meta-item {
    width: 100%;
    gap: 10px !important;
    font-size: 16px !important;
    line-height: 1.34 !important;
    white-space: nowrap !important;
  }

  .hero__meta-date {
    font-size: 14px !important;
  }

  .hero__meta-d {
    font-size: 22px !important;
  }

  .speaker__statement {
    font-size: clamp(21px, 5.2vw, 23px) !important;
    line-height: 1.55 !important;
  }

  .speaker__statement span,
  .speaker__statement strong {
    width: fit-content;
  }

  .speaker__statement strong span {
    display: block !important;
    width: auto;
  }

  .speaker__statement strong {
    white-space: nowrap;
  }

  #first-time .container,
  #first-time .first-time__inner,
  #first-time .first-time__copy,
  #first-time .first-time__cards,
  #first-time .title-bar,
  #first-time .section__title,
  #first-time .section__lead,
  #first-time .first-time__note-card,
  #first-time .first-time-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  #first-time .first-time__inner {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
    overflow: hidden;
  }

  #first-time .section__title {
    font-size: clamp(29px, 7.8vw, 35px) !important;
  }

  #first-time .first-time-card__copy,
  #first-time .first-time-card__title,
  #first-time .first-time-card__text {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 390px) {
  .hero__buttons .btn {
    font-size: 13.8px !important;
  }
}

/* ---------- iPad responsive pass: tablet has its own rhythm ---------- */
@media (min-width: 641px) and (max-width: 880px) {
  :root {
    --container-pad: 30px;
  }

  .container {
    padding-inline: var(--container-pad) !important;
  }

  .section {
    padding-block: 60px !important;
  }

  .section__head {
    margin-bottom: 34px !important;
  }

  .section__title,
  .sec02__title,
  .sec03__title,
  .sec04__title,
  .sec05__title {
    font-size: clamp(40px, 6.2vw, 54px) !important;
    line-height: 1.28 !important;
    letter-spacing: .02em !important;
  }

  .section__lead,
  .sec02__lead,
  .sec03__lead,
  .sec04__lead,
  .sec05__lead {
    font-size: 17px !important;
    line-height: 1.82 !important;
  }

  .hero {
    height: auto !important;
    min-height: 0 !important;
    padding: calc(var(--header-h) + 28px) 0 42px !important;
    align-items: stretch !important;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fff 36%, #eef8ff 70%, #fff 100%) !important;
  }

  .hero__bg-slot,
  .hero__desktop-mark {
    display: none !important;
  }

  .hero > .container.hero__inner {
    display: block !important;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    min-height: 0 !important;
    padding-block: 0 !important;
    margin-inline: auto !important;
  }

  .hero__copy {
    display: flex !important;
    flex-direction: column !important;
    max-width: none !important;
    min-height: 0 !important;
    position: relative;
  }

  .hero__copy > :not(.hero__mobile-photo) {
    position: relative;
    z-index: 4;
  }

  .hero__eyebrow {
    order: 1;
    display: block;
    margin: 0 0 26px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    letter-spacing: .32em !important;
    color: #244a86 !important;
    white-space: nowrap;
  }

  .hero__title {
    order: 2;
    margin: 0 0 20px !important;
    font-size: clamp(58px, 8.8vw, 76px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    color: #24477e !important;
  }

  .hero__subhead {
    order: 3;
    display: block !important;
    width: 100%;
    margin: 0 0 10px !important;
    padding: 0 0 14px !important;
    font-size: clamp(20px, 2.8vw, 23px) !important;
    line-height: 1.5 !important;
    letter-spacing: .02em !important;
    white-space: normal !important;
    color: #071d3f !important;
    border-bottom: 1px solid #2e66b5 !important;
  }

  .hero__mobile-photo {
    order: 4;
    position: relative !important;
    display: block !important;
    width: calc(100% + (var(--container-pad) * 2)) !important;
    height: clamp(340px, 45vw, 430px) !important;
    margin: 0 calc(var(--container-pad) * -1) 0 !important;
    overflow: hidden;
    background: #edf7ff;
  }

  .hero__mobile-photo::before {
    content: "" !important;
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.52) 0%,
        rgba(255,255,255,.14) 22%,
        rgba(255,255,255,.02) 52%,
        rgba(255,255,255,.32) 78%,
        rgba(255,255,255,.98) 100%),
      linear-gradient(90deg,
        rgba(255,255,255,.38) 0%,
        rgba(255,255,255,.20) 28%,
        rgba(255,255,255,.06) 68%,
        rgba(255,255,255,.02) 100%);
  }

  .hero__mobile-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 5;
    height: 118px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.94) 72%, #fff);
    filter: blur(1.5px);
  }

  .hero__mobile-photo img {
    display: none !important;
  }

  .hero__mobile-hall,
  .hero__mobile-person,
  .hero__mobile-mark {
    position: absolute;
    display: block;
    pointer-events: none;
  }

  .hero__mobile-hall {
    inset: 0;
    z-index: 1;
    background: url("../images/hero-hall-fv-mobile.jpg") center 48% / cover no-repeat;
    filter: saturate(1.08) contrast(1.04);
  }

  .hero__mobile-person {
    inset: -24px 0 -20px 0;
    z-index: 2;
    background: url("../images/hero-bg-pc.jpg") 75% 50% / auto clamp(460px, 60vw, 570px) no-repeat;
    opacity: .95;
  }

  .hero__mobile-mark {
    left: 38px;
    top: clamp(92px, 12vw, 126px);
    z-index: 2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(88px, 13vw, 116px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(10, 71, 151, .13);
    text-shadow: 0 1px 0 rgba(255,255,255,.34);
  }

  .hero__mobile-mark small {
    display: block;
    margin-top: 4px;
    font-family: var(--font-en);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(10, 71, 151, .20);
    white-space: nowrap;
  }

  .hero__lead {
    order: 5;
    max-width: none !important;
    width: 100%;
    margin: -18px 0 14px !important;
    padding: 13px 18px !important;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 9px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 14px 30px rgba(8,35,78,.09);
    backdrop-filter: blur(6px);
    font-size: clamp(20px, 2.65vw, 22px) !important;
    line-height: 1.55 !important;
    letter-spacing: -.01em !important;
    white-space: normal;
  }

  .hero__lead br {
    display: block;
  }

  .hero__buttons {
    order: 6;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hero__buttons .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 62px !important;
    padding-inline: 16px !important;
    border-radius: 8px !important;
    font-size: clamp(18px, 2.5vw, 21px) !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
    white-space: nowrap;
  }

  .hero__buttons .arrow {
    display: inline !important;
    margin-left: 10px;
  }

  .hero__meta {
    order: 7;
    display: grid !important;
    grid-template-columns: 1fr;
    align-items: start;
    width: 100%;
    margin: 0 !important;
    padding: 16px 20px !important;
    gap: 12px !important;
    border: 1px solid rgba(62,117,189,.24) !important;
    border-radius: 9px !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 10px 24px rgba(8,35,78,.08) !important;
  }

  .hero__meta-item {
    gap: 12px !important;
    font-size: clamp(20px, 2.8vw, 24px) !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
    white-space: nowrap;
  }

  .hero__meta-item:last-child {
    font-size: clamp(16px, 4.1vw, 18px) !important;
    letter-spacing: 0 !important;
  }

  .hero__venue {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 .45em;
    min-width: 0;
  }

  .hero__venue span + span::before {
    content: "／";
    margin-right: .45em;
    color: rgba(8, 35, 78, .65);
    font-weight: 500;
  }

  .hero__meta-icon,
  .hero__meta-icon img {
    width: 25px !important;
    height: 25px !important;
  }

  .hero__meta-date {
    font-size: clamp(15px, 2vw, 18px) !important;
    line-height: 1.32 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
  }

  .hero__meta-d {
    font-size: clamp(24px, 3.4vw, 30px) !important;
    font-weight: 850 !important;
  }

  .aud-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 720px !important;
    gap: 12px !important;
    margin-top: 28px !important;
  }

  .aud {
    min-height: 92px !important;
    padding: 12px 16px !important;
  }

  .aud__icon {
    width: 44px !important;
    height: 44px !important;
  }

  .aud__name {
    font-size: 21px !important;
  }

  .aud__person {
    display: none !important;
  }

  .aud-age-note {
    max-width: 720px !important;
    margin-top: 18px !important;
  }

  .role-voice-card__videos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .role-voice-card--wide {
    grid-column: auto !important;
  }

  .briefing-merge {
    padding: 28px 24px !important;
  }

  .briefing-merge__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .briefing-merge__card {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
    min-height: 150px;
    padding: 18px 14px !important;
  }

  .briefing-merge__card h3 {
    font-size: 17px !important;
  }

  .briefing-merge__card p {
    font-size: 13px !important;
  }

  .briefing-merge__buttons {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .briefing-merge__buttons .btn {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .sec07__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .benefit-card {
    padding: 20px 18px !important;
  }

  .benefit-card__text,
  .day-card__chapter p,
  .day-card__insight,
  .opening-card__text {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  .contact-list__item dd a {
    white-space: nowrap !important;
  }
}

@media (max-width: 430px) {
  .hero__venue {
    display: block;
    line-height: 1.45;
  }

  .hero__venue span {
    display: block;
  }

  .hero__venue span + span::before {
    content: "";
    margin: 0;
  }
}

.video-title__line {
  display: inline;
}

@media (max-width: 640px) {
  .video-title__line {
    display: block;
  }

  #video-intro .sec02__title {
    font-size: clamp(29px, 7.4vw, 33px) !important;
    line-height: 1.45 !important;
  }

  #video-intro .sec02__lead {
    text-align: left !important;
  }
}

@media (min-width: 881px) and (max-width: 1100px) {
  .hero {
    min-height: 820px;
  }

  .hero > .container.hero__inner {
    width: min(100% - 56px, 980px) !important;
    padding-block: 64px 36px;
  }

  .hero__copy {
    max-width: 530px !important;
  }

  .hero__title {
    font-size: clamp(58px, 6.8vw, 74px) !important;
  }

  .hero__bg-slot img {
    object-position: 70% center !important;
  }

  .hero__desktop-mark {
    left: 54% !important;
    top: 57% !important;
    font-size: clamp(92px, 10vw, 120px) !important;
  }

  .hero__lead {
    font-size: 20px !important;
  }

  .hero__buttons .btn {
    min-height: 60px;
    min-width: 220px;
    font-size: 17px;
  }

  .benefit-card__text,
  .day-card__chapter p,
  .day-card__insight,
  .opening-card__text,
  .briefing-merge__card p {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
  }
}

/* ---------- Official LINE news visual ---------- */
.line-news-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  min-height: clamp(500px, 42vw, 660px);
  display: grid;
  place-items: center;
  background: #eef8fb;
}

.line-news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(232, 253, 255, .92), rgba(232, 253, 255, .72)),
    url("../images/section-03/cards/section-03-card-family@2x.jpg") center / cover no-repeat;
  filter: saturate(.92);
}

.line-news-section::after {
  content: none;
}

.line-news {
  position: relative;
  width: min(100% - 48px, 900px);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 112px) 24px clamp(86px, 9vw, 126px);
  text-align: center;
}

.line-news::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 4vw, 44px) max(-24px, -3vw);
  z-index: -1;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 44%, rgba(255,255,255,.72), rgba(255,255,255,.28) 62%, rgba(255,255,255,0) 78%);
}

.line-news__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--color-navy-700);
  font-family: var(--font-en);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .32em;
}

.line-news__eyebrow::before,
.line-news__eyebrow::after {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(20, 59, 125, .72);
}

.line-news__title {
  margin: 0;
  color: var(--color-navy-700);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .01em;
}

.line-news__title-main {
  display: block;
}

.line-news__title > span:not(.line-news__title-main) {
  display: block;
  margin-top: 8px;
  color: var(--color-navy-700);
  font-family: var(--font-en);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 800;
  letter-spacing: .22em;
}

.line-news__lead {
  margin: clamp(30px, 3.2vw, 42px) auto 0;
  max-width: 720px;
  color: rgba(16, 31, 52, .78);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.95;
  letter-spacing: .02em;
}

.line-news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(100%, 540px);
  min-height: 76px;
  margin-top: clamp(38px, 4.2vw, 56px);
  border-radius: 999px;
  background: #06c755;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 178, 73, .22);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.line-news__button:hover,
.line-news__button:focus-visible {
  transform: translateY(-2px);
  background: #04b94e;
  box-shadow: 0 20px 42px rgba(0, 178, 73, .28);
}

.line-news__button .arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  font-size: .9em;
  line-height: 1;
}

@media (max-width: 767px) {
  .line-news-section {
    min-height: 560px;
  }

  .line-news-section::before {
    background:
      linear-gradient(180deg, rgba(234, 253, 255, .94), rgba(234, 253, 255, .78)),
      url("../images/section-03/cards/section-03-card-family@2x.jpg") center / cover no-repeat;
  }

  .line-news {
    width: min(100% - 32px, 430px);
    padding: 72px 12px 96px;
  }

  .line-news::before {
    inset: 34px -8px 64px;
    border-radius: 18px;
  }

  .line-news__eyebrow {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: .24em;
  }

  .line-news__eyebrow::before,
  .line-news__eyebrow::after {
    width: 38px;
  }

  .line-news__title {
    font-size: clamp(42px, 11.5vw, 54px);
  }

  .line-news__title span {
    font-size: 22px;
    letter-spacing: .18em;
  }

  .line-news__lead {
    margin-top: 28px;
    font-size: clamp(20px, 5vw, 23px);
    line-height: 1.78;
  }

  .line-news__button {
    min-height: 64px;
    margin-top: 34px;
    font-size: 21px;
  }
}

/* ---------- Smartphone final responsive guard ---------- */
@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  main,
  section,
  .section,
  .container {
    max-width: 100%;
  }

  .container {
    width: 100%;
    padding-inline: 18px;
  }

  .section {
    overflow-x: clip;
    padding-block: 44px;
  }

  .section__head {
    width: 100%;
    margin-bottom: 26px;
  }

  .title-bar {
    width: 100%;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: .18em;
    white-space: normal;
  }

  .title-bar::before,
  .title-bar::after {
    flex: 0 0 32px;
    width: 32px;
  }

  .section__title,
  .sec02__title,
  .sec05__for-title,
  .speaker__title,
  .achievements-section .section__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(25px, 7.2vw, 31px) !important;
    line-height: 1.48 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section__lead,
  .sec02__lead,
  .sec03__lead,
  .sec04__lead,
  .sec05__lead {
    width: 100%;
    max-width: 100%;
    font-size: 15px !important;
    line-height: 1.88 !important;
    letter-spacing: 0 !important;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .section__head .section__lead,
  #voice .section__lead,
  #opening .section__lead,
  #experience .section__lead {
    text-align: center;
  }

  .hero__eyebrow {
    font-size: 10px !important;
    letter-spacing: .22em;
    white-space: normal;
  }

  .hero__mobile-photo {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    overflow: hidden !important;
  }

  .hero__meta {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
  }

  .hero__meta-item {
    width: 100%;
    min-width: 0;
    white-space: normal !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .hero__meta-date {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .hero__meta-d {
    font-size: 24px !important;
  }

  .sec03__quote,
  .sec03__quote p {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .sec03__quote {
    margin-top: 34px !important;
    padding: 22px 18px !important;
    border-radius: 18px 18px 0 0;
  }

  .sec03__quote p {
    margin: 0 auto;
    font-size: clamp(23px, 6.8vw, 28px) !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .sec03__quote-accent {
    display: inline;
    white-space: normal !important;
  }

  .sec04__inner,
  .sec04__facts,
  .sec04__question,
  .sec05__inner,
  .first-time__inner,
  .line-news {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden;
  }

  .sec04__facts {
    display: grid;
    gap: 14px;
  }

  .sec04__question {
    padding-inline: 0 !important;
  }

  .sec04__question-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(22px, 5.8vw, 25px) !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    word-break: keep-all;
    overflow-wrap: normal;
    text-align: center;
  }

  .sec04__question-years,
  .sec04__question-main,
  .sec04__question-main-line {
    display: block;
    max-width: 100%;
  }

  .sec05__for-card {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 14px;
    padding: 16px !important;
    text-align: left !important;
  }

  .sec05__for-image {
    width: 78px !important;
    height: 78px !important;
    margin: 0 !important;
  }

  .aud-row {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
    gap: 12px !important;
    margin-inline: 0 !important;
  }

  .aud {
    width: 100%;
    min-height: 94px !important;
    padding: 12px 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .aud__head {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .aud__name {
    font-size: 19px !important;
    line-height: 1.35;
    white-space: normal !important;
  }

  .aud__person {
    display: block !important;
    flex: 0 0 72px;
    width: 72px !important;
    height: 76px !important;
    object-fit: contain;
  }

  .aud-age-note {
    width: 100%;
    max-width: 100%;
    padding: 16px !important;
  }

  .aud-age-note p {
    font-size: 14px !important;
    line-height: 1.75 !important;
    text-align: left;
  }

  .benefit-card,
  .role-voice-card,
  .briefing-merge,
  .price-panel,
  .price-tool,
  .overview-card,
  .contact-card {
    width: 100%;
    max-width: 100%;
    border-radius: 10px !important;
  }

  .benefit-card {
    min-height: 0 !important;
    padding: 18px 16px 108px !important;
  }

  .benefit-card__text,
  .day-card__chapter p,
  .day-card__insight,
  .opening-card__text,
  .role-voice-card__person,
  .price-tool small {
    font-size: 15px !important;
    line-height: 1.78 !important;
  }

  .benefit-card__img {
    width: 42% !important;
    height: auto !important;
    right: 10px !important;
    bottom: 10px !important;
  }

  .achievement-card {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 16px !important;
  }

  .achievement-card__visual {
    width: 86px !important;
    height: 78px !important;
  }

  .achievement-card__num {
    white-space: normal !important;
    line-height: 1.1 !important;
  }

  .achievement-card__num span {
    font-size: clamp(32px, 9.5vw, 42px) !important;
  }

  .achievement-card__label {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .sec02__note {
    width: 100%;
    max-width: 100%;
    padding: 18px 18px 18px 22px !important;
    font-size: 18px !important;
    line-height: 1.62 !important;
    overflow-wrap: anywhere;
  }

  .sec02__em {
    font-size: 21px !important;
  }

  .sec13-balance .balance-card .media-slot,
  .sec02__video .media-slot,
  .opening-card__media .media-slot,
  .role-voice-card__video {
    width: 100% !important;
    max-width: 100% !important;
  }

  .join-cards,
  .way-card,
  .way-card__top {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
  }

  .way-card {
    padding: 16px !important;
  }

  .way-card__title,
  .price-tool strong,
  .price-tool__title {
    font-size: 24px !important;
    line-height: 1.42 !important;
  }

  .briefing-merge {
    padding: 22px 16px !important;
  }

  .briefing-merge__title {
    font-size: clamp(25px, 7vw, 31px) !important;
    line-height: 1.5 !important;
  }

  .briefing-merge__discount {
    font-size: 17px !important;
    line-height: 1.65 !important;
  }

  .line-news {
    width: min(100% - 32px, 430px) !important;
  }

  .line-news__lead {
    font-size: 20px !important;
    line-height: 1.72 !important;
  }

  .footer__nav {
    grid-template-columns: 1fr !important;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .container {
    padding-inline: 16px;
  }

  .section__title,
  .sec02__title,
  .speaker__title {
    font-size: clamp(24px, 7vw, 29px) !important;
  }

  .hero__buttons {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .hero__buttons .btn {
    min-width: 0 !important;
    padding-inline: 8px !important;
    font-size: 13px !important;
  }

  .aud__person {
    width: 62px !important;
    height: 68px !important;
    flex-basis: 62px;
  }

  .hero__meta {
    padding-inline: 14px !important;
  }

  .hero .hero__mobile-photo {
    height: 208px !important;
  }

  .hero__meta-item {
    gap: 9px !important;
  }

  .hero__meta-date {
    font-size: 12px !important;
  }

  .hero__meta-d {
    font-size: 21px !important;
  }
}

/* ---------- Responsive cleanup pass: prevent inner overflow and tighten tablet ---------- */
@media (max-width: 640px) {
  .hero__mobile-photo {
    max-width: none !important;
    overflow: hidden !important;
  }

  .hero__mobile-mark {
    max-width: calc(100vw - 44px);
    overflow: hidden;
  }

  .sec05__inner,
  .sec05__copy,
  .sec05__cards-wrap,
  .sec05__question,
  .sec05__question-main,
  .sec05__question-sub,
  .sec05__cards {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    min-width: 0 !important;
    overflow: hidden;
  }

  .sec05__title {
    font-size: clamp(25px, 6.8vw, 31px) !important;
    line-height: 1.48 !important;
    text-wrap: balance;
  }

  .sec05__question-main {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    letter-spacing: 0 !important;
  }

  .line-news {
    width: 100% !important;
    max-width: min(100%, 430px) !important;
    margin-inline: auto !important;
    padding-inline: 18px !important;
  }

  .line-news__button {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 16px !important;
    font-size: 20px !important;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .hero {
    overflow: hidden;
  }

  .hero__copy,
  .sec05__inner,
  .line-news,
  .speaker__portrait,
  .benefit-card {
    min-width: 0;
    max-width: 100%;
  }

  .hero__copy {
    overflow: hidden;
  }

  .speaker__portrait {
    overflow: hidden;
  }

  .speaker__portrait img {
    max-width: 100%;
  }

  .sec07__grid {
    width: 100%;
    max-width: 100%;
  }

  .benefit-card {
    overflow: hidden;
  }

  .line-news {
    width: min(100% - 48px, 900px) !important;
    margin-inline: auto !important;
    overflow: hidden;
  }
}

@media (min-width: 641px) and (max-width: 880px) {
  .hero__copy {
    width: 100%;
  }

  .hero__title {
    max-width: 9em;
  }

  .hero__buttons {
    width: min(100%, 560px);
  }

  .hero__meta {
    width: min(100%, 620px);
  }

  .benefit-card {
    padding: 18px 16px !important;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #contact .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }

  #contact .contact-head {
    align-items: center;
    text-align: center;
  }

  #contact .section__title {
    max-width: none;
    text-align: center;
    white-space: nowrap;
  }

  #contact .contact-card {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

/* ---------- 2026-06-08 CTA flow update ---------- */
.hero__early-copy {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 0;
  padding: 9px 16px;
  border: 1px solid rgba(201, 21, 50, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,244,246,0.96));
  box-shadow:
    0 10px 24px rgba(201, 21, 50, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #c91532;
}

.hero__early-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: #c91532;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.hero__early-copy strong {
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__early-regular {
  color: var(--color-navy-700);
  font-size: 13px;
  white-space: nowrap;
}

.hero__early-regular::before {
  content: "（";
}

.hero__early-regular::after {
  content: "）";
}

@media (min-width: 641px) {
  .sticky-cta {
    display: none !important;
  }
}

@media (min-width: 641px) and (max-width: 880px) {
  .hero .hero__early-copy {
    order: 7 !important;
    width: min(100%, 560px);
    margin: 0 auto 10px !important;
    text-align: center;
  }

  .hero .hero__meta {
    order: 8 !important;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .hero__early-copy {
    margin-top: 10px;
    text-align: center;
    font-size: clamp(13px, 3.4vw, 15px);
  }

  .hero .hero__early-copy {
    order: 7 !important;
    width: 100%;
    margin: 0 0 10px !important;
    flex-wrap: nowrap;
    gap: 7px;
    padding: 8px 9px;
  }

  .hero__early-label {
    min-height: 23px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero__early-copy strong {
    font-size: 19px;
  }

  .hero__early-regular {
    font-size: 12px;
  }

  @media (max-width: 374px) {
    .hero .hero__early-copy {
      gap: 5px;
      padding-inline: 7px;
    }

    .hero__early-label {
      padding-inline: 7px;
      font-size: 11px;
    }

    .hero__early-copy strong {
      font-size: 18px;
    }

    .hero__early-regular {
      font-size: 11px;
    }
  }

  .hero .hero__meta {
    order: 8 !important;
    padding-block: 8px !important;
    gap: 7px !important;
  }

  .hero .hero__mobile-photo {
    height: 234px !important;
  }

  .hero .hero__lead {
    margin-bottom: 7px !important;
  }

  .sticky-cta,
  .sticky-cta.is-show {
    display: flex !important;
    align-items: stretch;
    gap: 8px;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 80;
    padding: 6px;
    border-radius: 12px;
    background: rgba(8, 27, 60, 0.94);
    box-shadow: 0 14px 34px rgba(11, 30, 63, 0.32);
    transform: none !important;
    transition: none;
  }

  .sticky-cta__btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    padding: 0 8px;
    white-space: nowrap;
  }

  .sticky-cta__btn--briefing {
    background: #fff;
    border-color: #c91532;
    color: #c91532;
  }

  .sticky-cta__btn .arrow {
    margin-left: 6px;
  }

  .footer {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 390px) {
  .sticky-cta {
    left: 10px;
    right: 10px;
  }

  .sticky-cta__btn {
    min-height: 46px;
    font-size: 13px;
    padding-inline: 6px;
  }

  .sticky-cta__btn .arrow {
    margin-left: 4px;
  }

  .hero .hero__mobile-photo {
    height: 208px !important;
  }
}

/* =========================================================
   Final production polish: mobile density / sticky CTA / readability
   ========================================================= */

.price-tool--simulator-direct {
  text-decoration: none;
}

.price-tool--simulator-direct .price-tool__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0b5de8;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

@media (min-width: 641px) {
  .sticky-cta[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .sticky-cta,
  .sticky-cta.is-show {
    display: flex !important;
    align-items: stretch;
    gap: 8px;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 80;
    padding: 6px;
    border-radius: 12px;
    background: rgba(8, 27, 60, 0.94);
    box-shadow: 0 14px 34px rgba(11, 30, 63, 0.32);
    transition: transform .24s ease, opacity .24s ease;
  }

  .sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(120% + env(safe-area-inset-bottom, 0px))) !important;
  }

  .sticky-cta.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  .sticky-cta__btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    padding: 0 8px;
    white-space: nowrap;
  }

  .briefing-merge__title {
    font-size: clamp(28px, 7.4vw, 33px) !important;
    line-height: 1.5 !important;
  }

  .briefing-merge__title-line {
    display: block;
    white-space: nowrap;
  }

  .sec05__cards {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    width: min(100%, 340px);
    max-width: 340px;
    margin: 0 auto;
    transform: none;
  }

  .diag-card2 {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 54px;
    align-items: center;
    gap: 10px;
    min-height: 0;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .diag-card2__header {
    display: contents;
  }

  .diag-card2__num {
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 12px;
  }

  .diag-card2__title {
    font-size: 17px !important;
    line-height: 1.38;
    margin: 0;
    text-align: left;
    width: 100%;
  }

  .diag-card2__title br {
    display: block;
  }

  .diag-card2__sub,
  .diag-card2__cta {
    display: none;
  }

  .diag-card2__icon {
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .sec05__question-main {
    font-size: 16px !important;
    line-height: 1.5;
  }

  .sec07__grid {
    gap: 14px !important;
  }

  .sec07 .section__title {
    font-size: clamp(29px, 8vw, 36px) !important;
    line-height: 1.48 !important;
  }

  .benefit-card {
    min-height: 0 !important;
    padding: 16px 16px 16px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 108px;
    grid-template-areas:
      "head image"
      "text image";
    gap: 8px 10px;
  }

  .benefit-card__head {
    grid-area: head;
    align-items: center;
  }

  .benefit-card__title {
    font-size: 18px !important;
    line-height: 1.38;
  }

  .benefit-card__text {
    grid-area: text;
    max-width: none !important;
    font-size: 14px !important;
    line-height: 1.65;
  }

  .benefit-card__img {
    position: static !important;
    grid-area: image;
    width: 108px !important;
    height: 108px !important;
    align-self: end;
    justify-self: end;
  }

  .day-card {
    padding: 12px !important;
  }

  .day-card__body {
    padding: 14px !important;
  }

  .day-card__chapter {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 14px 0 !important;
    align-items: start;
  }

  .day-card__visual {
    min-height: 0 !important;
    width: 74px !important;
    height: 74px !important;
  }

  .day-card__visual--image img {
    object-fit: contain !important;
  }

  .day-card__chapter h4 {
    font-size: 17px !important;
    line-height: 1.38;
  }

  .day-card__chapter p,
  .day-card__insight {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .experience-points {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .experience-point--nested {
    gap: 0;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(143,179,232,.28);
    box-shadow: 0 12px 30px rgba(42,79,143,.10);
  }

  .experience-point--nested .media-slot {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .experience-point--nested .experience-point__main {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 12px 14px 14px;
    min-height: 0;
  }

  .experience-point__media {
    width: 54px !important;
    height: 54px !important;
  }

  .experience-point__title {
    font-size: 21px !important;
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .experience-point__text {
    font-size: 14px !important;
    line-height: 1.65;
  }

  .price-tool--simulator-direct {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .price-tool--simulator-direct .price-tool__title {
    font-size: 19px !important;
    line-height: 1.5;
  }

  .price-tool--simulator-direct .price-tool__action {
    width: 100%;
    min-height: 54px;
    border-radius: 12px;
    font-size: 16px;
  }
}

@media (min-width: 641px) and (max-width: 880px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .sticky-cta,
  .sticky-cta.is-show {
    display: flex !important;
    align-items: stretch;
    gap: 8px;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 80;
    padding: 6px;
    border-radius: 12px;
    background: rgba(8, 27, 60, 0.94);
    box-shadow: 0 14px 34px rgba(11, 30, 63, 0.32);
    transition: transform .24s ease, opacity .24s ease;
  }

  .sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(120% + env(safe-area-inset-bottom, 0px))) !important;
  }

  .sticky-cta.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  .sticky-cta__btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    padding: 0 8px;
    white-space: nowrap;
  }

  .footer {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 374px) {
  .diag-card2 {
    grid-template-columns: 32px minmax(0, 1fr) 46px;
    gap: 8px;
    padding: 12px 12px;
  }

  .diag-card2__num {
    width: 32px;
    height: 32px;
  }

  .diag-card2__title {
    font-size: 15px !important;
    line-height: 1.36;
  }

  .diag-card2__icon {
    width: 46px;
    height: 46px;
  }

  .benefit-card {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .benefit-card__img {
    width: 92px !important;
    height: 92px !important;
  }
}

@media (max-width: 640px) {
  .benefit-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 104px !important;
    grid-template-areas:
      "head image"
      "text image" !important;
    align-items: start !important;
    gap: 8px 12px !important;
    padding: 16px !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .benefit-card__head {
    display: flex !important;
    grid-area: head !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
  }

  .benefit-card__num {
    grid-area: auto !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
    flex: 0 0 auto !important;
  }

  .benefit-card__title {
    grid-area: auto !important;
    min-width: 0 !important;
    font-size: 18px !important;
    line-height: 1.38 !important;
    margin: 0 !important;
  }

  .benefit-card__text {
    grid-area: text !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    writing-mode: horizontal-tb !important;
  }

  .benefit-card__img {
    grid-area: image !important;
    position: static !important;
    width: 104px !important;
    height: 104px !important;
    margin: 0 !important;
    align-self: end !important;
    justify-self: end !important;
    opacity: .95 !important;
  }
}

@media (max-width: 374px) {
  .benefit-card {
    grid-template-columns: minmax(0, 1fr) 88px !important;
  }

  .benefit-card__img {
    width: 88px !important;
    height: 88px !important;
  }
}

@media (max-width: 560px) {
  .briefing-merge__title {
    font-size: clamp(18px, 4.75vw, 19px) !important;
    line-height: 1.58 !important;
    letter-spacing: 0 !important;
  }

  .briefing-merge__title-line {
    display: block !important;
    white-space: nowrap;
  }

  .mobile-break-line {
    display: block !important;
    white-space: nowrap;
  }

  .sec03__quote p,
  #achievements .section__title,
  #aud-title,
  #diag-title,
  #bal-title {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    line-break: strict;
  }

  .sec03__quote p {
    font-size: clamp(21px, 5.8vw, 24px) !important;
    line-height: 1.65 !important;
  }

  #achievements .section__title,
  #aud-title,
  #diag-title,
  #bal-title {
    width: min(100%, calc(100vw - 36px)) !important;
    margin-inline: auto !important;
    line-height: 1.56 !important;
    letter-spacing: 0 !important;
  }

  #achievements .section__title {
    font-size: clamp(20px, 5vw, 22px) !important;
  }

  #bal-title {
    font-size: clamp(23px, 6vw, 25px) !important;
  }

  #aud-title {
    font-size: clamp(24px, 6.4vw, 27px) !important;
  }

  #diag-title {
    font-size: clamp(21px, 5.9vw, 23px) !important;
  }
}

@media (max-width: 390px) {
  .briefing-merge {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .briefing-merge__title {
    font-size: 17px !important;
    line-height: 1.56 !important;
  }

  #achievements .section__title {
    font-size: 19px !important;
  }

  #aud-title {
    font-size: 25px !important;
  }
}

@media (max-width: 360px) {
  #aud-title {
    font-size: 24px !important;
  }
}

/* ---------- 20260609 final LP polish: mobile readability and diagnosis flow ---------- */
@media (max-width: 640px) {
  .hero__subhead,
  .hero__lead {
    white-space: normal !important;
  }

  .hero__subhead {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .hero__lead {
    font-size: clamp(14px, 3.75vw, 15.5px) !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
  }

  .hero__lead-highlight {
    white-space: nowrap;
  }

  .mobile-break-line {
    display: block !important;
    white-space: normal !important;
  }

  #diag-title,
  #aud-title,
  #bal-title,
  #achievements .section__title {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    line-break: strict;
  }

  .sec05__lead {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .sec05__cards-wrap {
    padding: 54px 12px 16px !important;
    overflow: visible !important;
  }

  .diag-card2::after {
    content: "開始";
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    min-width: 38px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(203, 15, 42, .08);
    color: var(--color-red-600);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
  }

  .diag-card2__icon {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    width: 48px !important;
    height: 48px !important;
  }

  .story-stage {
    padding: 20px 14px !important;
    border-radius: 14px !important;
  }

  .story-stage__title {
    font-size: clamp(20px, 5.8vw, 23px) !important;
    line-height: 1.45 !important;
  }

  .story-result__text {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  .story-regret {
    padding: 14px !important;
  }

  .story-regret h4 {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .story-regret__future,
  .story-regret__reason,
  .story-regret__t2s,
  .story-regret__list {
    padding: 11px 12px !important;
  }

  .story-regret__future span,
  .story-regret__reason span,
  .story-regret__t2s span,
  .story-regret__list > span {
    font-size: 11px !important;
    letter-spacing: .02em !important;
  }

  .story-result__btn,
  .story-reset {
    min-height: 48px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
  }
}

/* ---------- Diagnosis result redesign ---------- */
.story-result {
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(122, 169, 234, .3);
  background:
    radial-gradient(circle at 95% 8%, rgba(97, 158, 238, .28), transparent 36%),
    linear-gradient(180deg, #071833 0%, #14345d 50%, #eaf5ff 100%);
}

.story-result__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.story-result__header span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
}

.story-result__header span:first-child {
  padding: 4px 11px;
  background: rgba(255, 255, 255, .1);
}

.story-result__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.42;
  letter-spacing: .01em;
}

.story-result__question {
  margin: 0 0 22px;
  padding: 16px 0;
  border-block: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .01em;
}

.story-result__block {
  position: relative;
  margin-top: 14px;
}

.story-result__block h4 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(21px, 3vw, 26px);
  line-height: 1.45;
  letter-spacing: .01em;
}

.story-result__block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
}

.story-result__block--empathy {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  color: #fff;
}

.story-result__block--empathy h4 {
  color: #eaf4ff !important;
}

.story-result__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}

.story-result__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #c7ddff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-result__block--risk {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .94);
}

.story-result__block--risk h4 {
  color: #fff;
}

.story-result__focus-wrap {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.story-result__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #dbeaff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
}

.story-result__focus-lead {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.story-result__focus {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.story-result__focus li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 13px 12px 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.story-result__focus li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(69, 129, 210, .35);
}

.story-result__focus li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--color-blue-600);
  border-bottom: 2px solid var(--color-blue-600);
  transform: rotate(-45deg);
}

.story-result__block--hope {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(229, 244, 255, .96));
  color: var(--color-navy-900);
  box-shadow: 0 18px 34px rgba(7, 24, 51, .13);
}

.story-result__block--hope h4 {
  color: var(--color-navy-900);
}

.story-result__block--hope p {
  color: var(--color-navy-700);
}

.story-result__proof {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
  color: var(--color-navy-800);
  text-align: center;
}

.story-result__proof span {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--color-blue-600);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
}

.story-result__proof p {
  margin: 0;
  color: var(--color-navy-800);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.story-result .story-result__actions {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 42px rgba(7, 24, 51, .12);
}

.story-result .story-result__actions--reset {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.story-result__cta-lead {
  color: var(--color-navy-900);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.story-result__btn {
  flex: 1 1 220px;
  min-height: 54px;
  border-radius: 12px;
  font-size: 15px;
}

.story-result__btn--outline {
  border-color: var(--color-red-600);
  color: var(--color-red-600);
}

.story-result .story-reset {
  width: 100%;
  min-height: 46px;
  border-color: rgba(11, 30, 63, .22);
  color: var(--color-navy-800);
  background: rgba(255, 255, 255, .58);
}

@media (max-width: 640px) {
  .story-gate:has(.story-result) {
    margin-left: -10px;
    margin-right: -10px;
  }

  .story-result {
    padding: 24px 15px 18px !important;
    border-radius: 18px !important;
  }

  .story-result__header {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .story-result__title {
    font-size: clamp(24px, 6.6vw, 27px);
    line-height: 1.42;
    margin-bottom: 18px;
  }

  .story-result__question {
    margin-bottom: 18px;
    padding: 14px 0;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.68;
  }

  .story-result__block h4 {
    font-size: clamp(21px, 5.7vw, 24px);
    line-height: 1.46;
  }

  .story-result__block p {
    font-size: 15px;
    line-height: 1.78;
  }

  .story-result__block--empathy {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .story-result__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .story-result__focus li {
    min-height: 48px;
    padding: 11px 12px 11px 39px;
    font-size: 14px;
  }

  .story-result__focus-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .story-result__proof {
    border-radius: 14px;
  }

  .story-result .story-result__actions {
    padding: 14px;
  }

  .story-result__cta-lead {
    font-size: 14px;
  }

  .story-result__btn {
    flex-basis: 100%;
    min-height: 54px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
  }
}

#first-time .first-time__copy,
#first-time .section__title,
#first-time .section__lead {
  text-align: center !important;
}

#first-time .section__title,
#first-time .section__lead {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#first-title {
  transform: none !important;
}

#part-title .part-title-line {
  display: block;
}

.exp-title-line {
  display: block;
}

@media (max-width: 560px) {
  #part-title {
    font-size: clamp(27px, 7vw, 31px) !important;
    line-height: 1.42 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  #part-title .part-title-line {
    white-space: nowrap;
  }

  #exp-title {
    font-size: clamp(28px, 7.4vw, 32px) !important;
    line-height: 1.42 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  #exp-title .exp-title-line {
    white-space: nowrap;
  }
}

.hero__desktop-mark,
.hero__mobile-mark {
  font-family: Impact, "Arial Black", "Helvetica Neue Condensed Black", "Avenir Next Condensed", sans-serif !important;
  font-style: italic !important;
  font-weight: 900 !important;
  letter-spacing: -0.085em !important;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(10, 71, 151, .08);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .36),
    10px 12px 26px rgba(34, 102, 190, .06);
}

.hero__desktop-mark {
  transform: translate(-50%, -50%) skewX(-10deg) scaleX(1.08) !important;
}

.hero__mobile-mark {
  transform: skewX(-10deg) scaleX(1.08) !important;
  transform-origin: left center;
}

.hero__desktop-mark small,
.hero__mobile-mark small {
  font-family: var(--font-en) !important;
  font-style: normal !important;
  letter-spacing: .13em !important;
  transform: skewX(10deg) scaleX(.93);
  transform-origin: left center;
}

/* ---------- 20260609 contact / diagnosis final adjustments ---------- */
.sec05__question-main {
  display: block;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.55;
  letter-spacing: .02em;
  text-wrap: balance;
}

.sec05__qtext {
  display: inline-block;
}

.sec05__question-sub {
  color: var(--color-red-600);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
}

#contact .contact-layout {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
}

#contact .contact-head {
  align-items: center;
  text-align: center;
}

#contact .section__title {
  max-width: none;
  text-align: center !important;
}

#contact .contact-card {
  width: min(100%, 880px);
  margin-inline: auto;
}

.contact-form-link {
  font-size: 18px !important;
  letter-spacing: .02em !important;
}

.faq__body a {
  color: #0b36bd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .sec05__question-main {
    font-size: clamp(22px, 6.4vw, 27px) !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
  }

  .sec05__question-sub {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  #contact .contact-head,
  #contact .section__title {
    text-align: center !important;
    align-items: center !important;
  }

  #contact .section__title {
    font-size: clamp(34px, 9vw, 42px) !important;
  }

  .contact-form-link {
    font-size: 17px !important;
    white-space: normal !important;
  }
}

/* ---------- 20260609 client comment adjustments ---------- */
.hero .hero__meta {
  border-top: 0 !important;
}

.hero .hero__early-copy {
  width: min(100%, 490px);
}

.achievement-card__label {
  font-weight: 500 !important;
}

.sec05__for-icon {
  background-size: 118% !important;
}

.aud:nth-child(1) .aud__person {
  width: min(116px, 92%) !important;
  height: 126px;
  object-position: center bottom;
}

.aud:nth-child(2) .aud__person {
  width: min(118px, 94%) !important;
  object-position: center bottom;
}

.role-voice-card__person {
  margin-top: 12px !important;
}

.price-actions .btn {
  border-radius: var(--radius-md) !important;
}

.faq__summary {
  font-family: var(--font-sans) !important;
}

#final .cta-buttons .btn {
  min-width: min(100%, 320px) !important;
}

.line-news__title-main {
  display: block;
  color: var(--color-navy-700);
  font-family: var(--font-serif);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.line-news__title-main .mincho {
  display: inline;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.line-news__lead {
  font-size: 20px !important;
}

.line-news__button .arrow {
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  font-size: .9em !important;
}

.contact-button {
  display: inline-flex;
}

#video-intro .sec02__title {
  font-size: var(--fs-h2) !important;
  line-height: 1.4 !important;
}

#video-intro .sec02__lead {
  font-size: 15px !important;
  line-height: 2.1 !important;
  color: var(--color-gray-700) !important;
}

.briefing-merge__card {
  align-items: start !important;
  grid-template-rows: auto;
}

.briefing-merge__card > div {
  align-self: start;
  padding-top: 0;
}

.briefing-merge__card h3 {
  min-height: 2.9em;
  display: flex;
  align-items: flex-start;
}

.briefing-merge__card p {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  .hero .hero__early-copy {
    width: 100%;
  }

  #final .cta-buttons .btn {
    min-width: 0 !important;
  }
}

/* ---------- 20260609 client comment adjustments 02 ---------- */
.hero__buttons {
  margin-bottom: 0 !important;
}

.hero .hero__meta {
  margin-top: 24px !important;
}

.sec05__for-image {
  width: min(100%, 152px) !important;
}

#first-title {
  font-size: 38px !important;
}

.contact-button {
  display: flex !important;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .hero > .container.hero__inner {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .sec05__question-main {
    font-size: 18px !important;
  }

  .sec05__for-image {
    width: 95px !important;
  }

  .achievements-message {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  .benefit-card {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "head"
      "text"
      "image" !important;
  }

  .benefit-card__head {
    width: 100% !important;
  }

  .benefit-card__title {
    font-size: 18px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .benefit-card__img {
    justify-self: center !important;
    width: 96px !important;
    height: 96px !important;
  }

  #video-intro .sec02__note {
    font-size: 18px !important;
    line-height: 1.75 !important;
  }

  .day-card__chapter {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "visual"
      "content" !important;
    gap: 12px !important;
  }

  .day-card__visual {
    grid-area: visual !important;
    justify-self: center !important;
  }

  .day-card__content {
    grid-area: content !important;
  }

  #first-time .first-time__inner {
    display: flex !important;
    flex-direction: column !important;
  }

  #first-time .first-time__copy {
    display: contents !important;
  }

  #first-time .title-bar,
  #first-title,
  #first-time .section__lead {
    order: 1;
  }

  #first-time .first-time__cards {
    order: 2;
  }

  #first-time .first-time__note-card {
    order: 3;
  }

  #first-title {
    font-size: clamp(31px, 8vw, 38px) !important;
  }

  .line-news__lead {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.85 !important;
  }
}

/* ---------- 20260609 client FV image swap ---------- */
.hero__desktop-mark,
.hero__mobile-mark {
  display: none !important;
}

.hero__bg-slot.is-filled::after {
  background: none !important;
}

@media (max-width: 880px) {
  .hero__mobile-photo {
    background: transparent !important;
  }

  .hero__mobile-photo::before,
  .hero__mobile-photo::after,
  .hero__mobile-hall,
  .hero__mobile-person,
  .hero__mobile-mark {
    display: none !important;
  }

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

/* ---------- 20260609 client comment adjustments 03 ---------- */
.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero__bg-slot {
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.hero__bg-slot img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.briefing-merge__card h3 {
  min-height: 0 !important;
  margin-bottom: 2px !important;
}

.briefing-merge__card p {
  margin-top: 0 !important;
}

.t2s-about {
  padding-block: clamp(70px, 8vw, 110px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,247,255,0.72)),
    var(--color-white);
}

.t2s-about__inner {
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.t2s-about .title-bar {
  justify-content: center;
  margin-inline: auto;
}

.t2s-about__precopy {
  display: grid;
  gap: 6px;
  margin: 0 auto 18px;
  color: var(--color-navy-700);
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: .02em;
}

.t2s-about__precopy span {
  display: block;
}

.t2s-about__lead {
  margin-top: 26px;
  color: var(--color-gray-700);
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 2.05;
  font-weight: 500;
}

.t2s-about__movie {
  width: min(100%, 860px);
  margin: clamp(30px, 4vw, 48px) auto 0;
}

.t2s-about__movie-title {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: 0;
}

.t2s-about__movie .media-slot {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(16, 55, 118, 0.18);
}

.t2s-about__movie .youtube-fallback__label {
  display: none;
}

.t2s-about__cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(24px, 3.2vw, 36px);
}

.t2s-about__cta .btn {
  min-width: min(280px, 100%);
}

@media (max-width: 880px) {
  .header .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header__inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header__logo,
  .nav__toggle {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nav__toggle {
    transform: translateX(15px);
  }

  .hero .hero__mobile-photo {
    display: block !important;
    height: auto !important;
    aspect-ratio: auto !important;
    width: calc(100% + 32px) !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .hero__mobile-photo img {
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .hero .hero__lead {
    margin: 8px 0 9px !important;
  }

  .hero .hero__early-copy {
    margin-top: 14px !important;
    margin-bottom: 24px !important;
  }
}

@media (max-width: 640px) {
  :root {
    --container-pad: 16px;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header .container,
  .header__inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header__inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header__logo,
  .nav__toggle {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .t2s-about {
    padding-block: 56px 64px;
  }

  .t2s-about__inner {
    text-align: left;
  }

  .t2s-about .title-bar {
    justify-content: flex-start;
    margin-inline: 0;
  }

  .t2s-about .section__title {
    font-size: clamp(28px, 7.4vw, 34px) !important;
    line-height: 1.42 !important;
  }

  .t2s-about__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.9;
  }

  .t2s-about__movie {
    margin-top: 28px;
  }

  .t2s-about__movie-title {
    text-align: center;
    font-size: clamp(21px, 6.2vw, 27px);
    line-height: 1.5;
  }

  .t2s-about__movie .media-slot {
    border-radius: 12px;
  }

  .t2s-about__cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .t2s-about__cta .btn {
    width: 100%;
  }

  .hero .hero__early-copy {
    margin-top: 14px !important;
    margin-bottom: 24px !important;
  }

  .achievement-card__content {
    margin-left: 16px !important;
  }

  .benefit-card {
    grid-template-columns: minmax(0, 1fr) 96px !important;
    grid-template-areas:
      "head head"
      "text image" !important;
    align-items: start !important;
  }

  .benefit-card__head {
    grid-area: head !important;
    width: 100% !important;
  }

  .benefit-card__title {
    white-space: normal !important;
  }

  .benefit-card__text {
    grid-area: text !important;
  }

  .benefit-card__img {
    grid-area: image !important;
    justify-self: end !important;
    align-self: center !important;
    width: 96px !important;
    height: 96px !important;
  }

  .diag-card2 {
    grid-template-rows: auto auto !important;
  }

  .sec05 .diag-card2.story-start::after {
    content: "診断開始 >" !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    margin-top: 8px !important;
    min-width: 78px !important;
    text-align: center !important;
  }

  .hero .hero__meta {
    margin-top: 0 !important;
  }
}

/* ---------- 20260609 mobile FV as full-screen background ---------- */
@media (max-width: 880px) {
  .hero {
    min-height: 100svh !important;
    height: 100svh !important;
    background: url("../images/hero-fv-sp-client-20260609.jpg") right top / auto 100svh no-repeat !important;
    overflow: hidden !important;
    padding: calc(var(--header-h) + 18px) 0 18px !important;
  }

  .hero > .container.hero__inner {
    position: relative;
    z-index: 2;
  }

  .hero__bg-slot {
    display: none !important;
    position: absolute !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    z-index: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    max-width: none !important;
    transform: translateX(-50%) !important;
  }

  .hero__bg-slot img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 72% top !important;
  }

  .hero .hero__mobile-photo,
  .hero__mobile-photo {
    display: none !important;
  }

  .hero .hero__lead {
    margin-top: 12px !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 640px) {
  .hero > .container.hero__inner {
    height: 100% !important;
  }

  .hero__copy {
    height: 100% !important;
    justify-content: flex-start !important;
  }

  .hero__eyebrow {
    margin-bottom: 18px !important;
  }

  .hero__title {
    margin-bottom: 12px !important;
  }

  .hero__subhead {
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
  }

  .hero .hero__lead {
    margin-top: 12px !important;
    margin-bottom: 10px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    white-space: normal !important;
  }

  .hero__buttons {
    margin-top: auto !important;
    margin-bottom: 10px !important;
  }

  .hero .hero__early-copy {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .hero .hero__meta {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* ===== 20260610 リリース版: T2Sとは導入 / 共感見出し / WEF統計タイトル特大 ===== */
.t2s-about__bridge {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: var(--color-navy-600);
  margin: 0 0 14px;
}
.t2s-about__message {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 2.05;
  color: var(--color-navy-800);
  margin: 0 0 30px;
}
.t2s-about__desc {
  margin-top: 26px;
}
.sec03__heading {
  text-align: center;
  margin: 18px 0 26px;
}
.sec03__intro-break {
  margin-top: 1.5em !important;
}
.sec04__stat-title {
  font-size: clamp(21px, 2.1vw, 27px) !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}
@media (max-width: 880px) {
  .sec04__stat-title {
    font-size: 24px !important;
  }
}

/* ===== 20260610: 講師メッセージ順序ガード / 診断締めPQ ===== */
@media (max-width: 880px) {
  .speaker__copy .speaker__lead { order: 2; }
  .speaker__copy .speaker__question { order: 3; }
  .speaker__copy .speaker__body { order: 4; }
  .speaker__copy .speaker__statement { order: 5; }
  .speaker__copy .speaker__close { order: 6; }
}
.story-result__question--close {
  margin-top: 28px;
  text-align: center;
}

/* ===== 20260610: 共感 濃紺ブロック復元 / 締めPQの折返し ===== */
.sec03__intro {
  background: linear-gradient(180deg, #1E3563 0%, #152A50 100%);
  border-radius: 18px;
  padding: clamp(30px, 4.5vw, 52px) clamp(20px, 4vw, 56px);
  box-shadow: 0 18px 40px rgba(11, 30, 63, 0.18);
}
.sec03__intro p {
  color: #F2F6FC;
}
.sec03__quote p {
  white-space: normal;
  max-width: 1100px;
  margin-inline: auto;
}
.sec03__quote .mobile-break-line { display: block; }

/* ===== 20260610: 訴求6カードのレスポンシブ(3列/2列/1列) ===== */
.sec05__for-grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 880px) {
  .sec05__for-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .sec05__for-grid { grid-template-columns: 1fr !important; }
}

/* ===== 20260610: メッセージ映像セクション最終形 ===== */
.sec03__movie {
  width: min(100%, 1040px) !important;
  margin: clamp(42px, 6vw, 72px) auto 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: clamp(18px, 3vw, 28px) !important;
  text-align: center !important;
}

.sec03__movie-copy {
  width: min(100%, 960px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.sec03__movie-label.title-bar {
  margin-inline: auto;
}

.sec03__movie-title {
  margin: clamp(18px, 2.5vw, 26px) 0 0 !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(34px, 4.8vw, 58px) !important;
  font-weight: 800 !important;
  line-height: 1.34 !important;
  color: var(--color-navy-900) !important;
  letter-spacing: 0 !important;
}

.sec03__movie-lead {
  margin: clamp(18px, 3vw, 30px) 0 0;
  color: var(--color-gray-700);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0;
}

.sec03__movie-note {
  margin: clamp(16px, 2.2vw, 24px) 0 0;
  color: var(--color-navy-700);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 700;
  line-height: 1.7;
}

.sec03__movie-frame {
  width: min(100%, 920px);
}

.sec03__movie-frame .media-slot {
  width: 100% !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 42px rgba(11, 32, 74, 0.18) !important;
}

.sec03__movie-message {
  margin: clamp(14px, 2.4vw, 24px) 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--color-navy-900) !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(19px, 2.1vw, 28px) !important;
  font-weight: 800 !important;
  line-height: 1.75 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.sec03__movie-message span {
  display: block;
}

.sec03__movie-cta {
  display: none !important;
}

/* ===== 20260610: 講師メッセージ最終版 ===== */
.speaker__copy .speaker__body {
  margin-bottom: 24px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 2.08;
  letter-spacing: 0.02em;
}

.speaker__body--emphasis {
  color: #fff;
  font-weight: 800;
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.9 !important;
}

.speaker__copy .speaker__question {
  margin-bottom: 30px;
}

.speaker__copy .speaker__statement {
  margin-top: 36px;
}

.speaker__copy .speaker__close {
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 880px) {
  .speaker__copy .speaker__body {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 22px;
  }

  .speaker__body--emphasis {
    font-size: 17px !important;
  }

  .speaker__copy .speaker__question {
    font-size: 22px;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .sec03__movie {
    margin-top: 36px !important;
    gap: 18px !important;
  }

  .sec03__movie-title {
    font-size: clamp(32px, 9.2vw, 40px) !important;
    line-height: 1.38 !important;
  }

  .sec03__movie-lead {
    font-size: clamp(16px, 4.35vw, 18px);
    line-height: 1.85;
  }

  .sec03__movie-note {
    font-size: 14px;
  }

  .sec03__movie-message {
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1.8 !important;
  }
}

/* ===== 20260610: メッセージ映像 375px折返し固定 ===== */
.sec03__movie-lead span,
.sec03__movie-message span {
  display: block;
}

@media (max-width: 430px) {
  .sec03__movie-lead span,
  .sec03__movie-message span {
    white-space: nowrap;
    transform-origin: center;
  }

  .sec03__movie-lead {
    width: 100%;
    overflow: visible;
  }

  .sec03__movie-lead span {
    font-size: clamp(12.5px, 3.35vw, 14px);
    transform: scaleX(.84);
  }

  .sec03__movie-message {
    width: 100%;
    overflow: visible;
  }

  .sec03__movie-message span {
    font-size: clamp(15px, 4vw, 17px);
    transform: scaleX(.78);
  }
}

/* ===== 20260610: AI時代統計リード / 締め問い調整 ===== */
.sec04__facts-lead span {
  display: block;
}

.sec04__facts-lead-strong {
  margin-bottom: 4px;
  color: var(--color-navy-900);
  font-weight: 900;
  font-size: clamp(16px, 1.45vw, 20px);
}

.sec04__question-title {
  display: grid;
  gap: 8px;
}

.sec04__question-subline {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  color: rgba(14, 38, 78, 0.78);
}

.sec04__question-mainline {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 900;
  line-height: 1.42;
  color: var(--color-navy-800);
}

@media (max-width: 640px) {
  .sec04__facts-lead {
    font-size: 14px;
  }

  .sec04__facts-lead-strong {
    font-size: 17px;
  }

  .sec04__question-subline {
    font-size: 15px;
  }

  .sec04__question-mainline {
    font-size: clamp(24px, 6.7vw, 29px);
    line-height: 1.5;
  }
}

/* ===== 20260610: 全デバイス最終レイアウト調整 ===== */
.sec04__question-mainline .mobile-break-line {
  display: inline;
}

.benefit-card {
  isolation: isolate;
}

.benefit-card__img img {
  filter: drop-shadow(0 10px 18px rgba(32, 88, 150, 0.12));
}

@media (min-width: 881px) {
  .benefit-card {
    min-height: 168px;
    padding-right: clamp(118px, 9vw, 150px);
  }

  .benefit-card__text {
    max-width: none;
    padding-right: 0;
    font-size: 13px;
  }

  .benefit-card__img {
    right: 22px;
    bottom: 20px;
    width: clamp(78px, 7.4vw, 108px);
    height: clamp(78px, 7.4vw, 108px);
  }
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .sec07__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .benefit-card__title {
    font-size: 17px;
  }
}

@media (max-width: 1024px) and (min-width: 881px) {
  .hero__copy {
    max-width: 560px;
  }

  .sec04__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .sec04__stat {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sec04__stat-num {
    font-size: clamp(42px, 5.2vw, 64px);
  }

  .sec05__for-grid,
  .sec07__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-card {
    padding-right: 112px;
  }

  .benefit-card__title {
    font-size: 16px;
  }

  .benefit-card__img {
    width: 82px;
    height: 82px;
  }

  .speaker__inner {
    gap: clamp(28px, 4vw, 48px);
  }

  #final .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 880px) and (min-width: 641px) {
  .section__head,
  .container--narrow {
    max-width: 720px;
  }

  .message-section .media-slot,
  .t2s-about__movie .media-slot {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .sec04__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .sec04__stat--shift {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .sec04__question-mainline .mobile-break-line {
    display: block;
  }

  .sec05__for-grid,
  .sec07__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 150px;
    padding: 20px 112px 22px 20px;
  }

  .benefit-card__text {
    max-width: none;
    font-size: 14px;
  }

  .benefit-card__img {
    right: 20px;
    bottom: 20px;
    width: 82px;
    height: 82px;
  }

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

  .speaker__photo {
    max-width: 520px;
    margin: 0 auto;
  }

  #final .cta-buttons {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero__copy {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero__eyebrow { order: 1; }
  .hero__title { order: 2; }
  .hero__subhead { order: 3; }
  .hero__mobile-photo { order: 4; }
  .hero .hero__lead {
    order: 5;
    position: relative;
    z-index: 4;
    max-width: 22em;
    margin: 10px auto 10px !important;
    text-align: left;
  }
  .hero__buttons { order: 6; }
  .hero__early-copy { order: 7; }
  .hero__meta { order: 8; }

  .sec04__question-mainline .mobile-break-line {
    display: block;
  }

  .benefit-card {
    grid-template-columns: minmax(0, 1fr) 86px !important;
    gap: 8px 12px !important;
    padding: 16px 14px !important;
  }

  .benefit-card__img {
    width: 86px !important;
    height: 86px !important;
    align-self: center !important;
  }

  .benefit-card__title {
    font-size: 17px !important;
    line-height: 1.42 !important;
  }

  .benefit-card__text {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  .message-section .section__title,
  .t2s-about .section__title,
  #final-title {
    line-height: 1.42;
  }

  .message-section .media-slot,
  .t2s-about__movie .media-slot {
    width: 100%;
  }
}

@media (max-width: 374px) {
  .benefit-card {
    grid-template-columns: minmax(0, 1fr) 74px !important;
  }

  .benefit-card__img {
    width: 74px !important;
    height: 74px !important;
  }
}

/* ===== 20260610: T2Sとは中央寄せ / FVリード重なり解消 ===== */
.t2s-about,
.t2s-about__inner,
.t2s-about__bridge,
.t2s-about__desc,
.t2s-about__movie,
.t2s-about__movie-title {
  text-align: center !important;
}

.t2s-about .title-bar {
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

.t2s-about__bridge {
  max-width: 34em;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(16px, 1.45vw, 19px) !important;
  line-height: 2 !important;
  font-weight: 700 !important;
}

.t2s-about__desc {
  max-width: 48em;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 640px) {
  .t2s-about {
    padding-top: 48px !important;
  }

  .t2s-about__bridge {
    max-width: 21em;
    font-size: clamp(17px, 4.7vw, 20px) !important;
    line-height: 2.05 !important;
    letter-spacing: 0.02em;
  }

  .t2s-about .title-bar {
    display: flex !important;
    margin-top: 28px !important;
    margin-bottom: 18px !important;
    transform: none !important;
  }

  .t2s-about .section__title {
    max-width: 9.5em;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero__mobile-photo {
    margin-bottom: 0 !important;
  }

  .hero .hero__lead {
    width: min(100%, 21em);
    margin: -4px auto 16px !important;
    padding: 10px 12px 11px;
    border-radius: 12px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 12px 28px rgba(13, 48, 104, 0.10);
    text-align: left !important;
  }
}

@media (max-width: 430px) {
  .sec03__movie,
  .sec03__movie-copy,
  .sec03__movie-frame,
  .sec03__movie-message,
  .sec03__movie-frame .media-slot {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .sec03__movie {
    overflow-x: clip;
  }
}

/* ===== 20260610: スマホFV/T2Sとは 最終微調整 ===== */
@media (max-width: 640px) {
  .hero .hero__lead {
    order: 5 !important;
    z-index: 8 !important;
    width: min(56%, 15.5em) !important;
    max-width: 15.5em !important;
    margin: clamp(24px, 5.4svh, 42px) auto 14px 0 !important;
    padding: 10px 12px 11px !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 12px 28px rgba(13, 48, 104, 0.12) !important;
    text-align: left !important;
    font-size: clamp(14px, 3.75vw, 16px) !important;
    line-height: 1.68 !important;
  }

  .hero__buttons {
    order: 6 !important;
    position: relative !important;
    z-index: 9 !important;
    margin-top: 0 !important;
  }

  .hero__mobile-photo {
    order: 4 !important;
    margin-bottom: 0 !important;
  }

  .t2s-about__bridge {
    width: min(100%, 24em) !important;
    max-width: 24em !important;
    margin: 0 auto 28px !important;
    padding: 18px 18px !important;
    border: 1px solid rgba(123, 171, 232, 0.42) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 16px 38px rgba(27, 83, 156, 0.10) !important;
    font-size: clamp(17px, 4.75vw, 20px) !important;
    line-height: 2 !important;
    text-align: center !important;
  }

  .t2s-about .title-bar {
    display: flex !important;
    width: fit-content !important;
    max-width: max-content !important;
    margin: 0 auto 18px !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    transform: none !important;
    text-align: center !important;
  }
}

@media (max-width: 430px) {
  .hero .hero__lead {
    width: min(58%, 15em) !important;
    max-width: 15em !important;
    margin-top: clamp(22px, 4.8svh, 36px) !important;
  }
}

/* ===== 20260610: スマホFV 最終整理（下部アンカー方式） =====
   方針:
   - heroは min-height:100svh。固定height+overflow:hiddenは端末によって
     CTA・早割・日付がクリップされる事故のもとなので廃止
   - リード以下の情報群は margin-top:auto で画面下部に寄せる。
     固定pxの押し下げは端末の高さ差で破綻するため禁止
   - 顔は上部タイトル群と下部情報群の間に見える */
@media (max-width: 880px) {
  .hero {
    height: auto !important;
    min-height: 100svh !important;
    background-size: cover !important;
    background-position: 72% top !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* height:100%は親がheight:autoだと潰れてmargin-top:autoが効かなくなるため、
     flexの伸長で100svhを満たす構造に統一する */
  .hero > .container.hero__inner {
    height: auto !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: stretch !important;
  }

  .hero__copy {
    height: auto !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  .hero .hero__lead {
    order: 5 !important;
    margin: auto 0 10px !important;
    width: calc(100vw - 32px) !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 12px 28px rgba(13, 48, 104, 0.12) !important;
    backdrop-filter: blur(4px) !important;
    text-align: left !important;
    font-size: clamp(13px, 3.7vw, 16px) !important;
    line-height: 1.68 !important;
    text-shadow: none !important;
  }

  .hero__buttons {
    margin-top: 10px !important;
  }

  .hero .hero__early-copy {
    margin-top: 10px !important;
  }

  .hero .hero__meta {
    margin-top: 10px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(126, 169, 226, 0.72) !important;
    box-shadow: 0 16px 34px rgba(7, 38, 88, 0.20) !important;
  }

  .hero__meta-date,
  .hero__venue {
    color: #061b3c !important;
    text-shadow: none !important;
  }
}

/* タブレット帯（641-880px）: リードカードは内容幅・左寄せで右側の顔を避ける */
@media (min-width: 641px) and (max-width: 880px) {
  .hero .hero__lead {
    margin-top: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: fit-content !important;
    max-width: min(72%, 26em) !important;
    font-size: clamp(16px, 2.3vw, 19px) !important;
    line-height: 1.7 !important;
  }

  .hero__buttons {
    margin-top: 14px !important;
  }

  .hero .hero__early-copy,
  .hero .hero__meta {
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 9px !important;
  }
}

/* ===== 20260610: 最終CTAのリードはスマホでも中央揃えを維持 ===== */
@media (max-width: 640px) {
  #final .section__lead {
    text-align: center !important;
  }
}

/* ===== 20260610: 最終CTAタイトルの単語中折返しを防止 ===== */
@media (max-width: 640px) {
  #final-title {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    max-width: calc(100vw - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(28px, 7.6vw, 34px) !important;
    line-height: 1.48 !important;
  }

  #final-title .text-gradient--light {
    display: inline !important;
  }
}

/* ===== 20260610: 講師タイトル「なぜ、/私がT2Sをつくったのか。」を2行で収める ===== */
@media (max-width: 640px) {
  #spk-title {
    font-size: clamp(20px, 6.4vw, 26px) !important;
    line-height: 1.6 !important;
    word-break: keep-all !important;
  }
}

/* ===== 20260610: 共感見出しを「頑張っている。/でも、…」の2行に固定 ===== */
#empathy-title {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

@media (max-width: 640px) {
  #empathy-title {
    font-size: min(26.25px, calc((100vw - 76px) / 17)) !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 641px) and (max-width: 880px) {
  #empathy-title {
    font-size: min(54px, calc((100vw - 64px) / 17)) !important;
  }
}

/* ===== 20260610: 講師メッセージの新要素をモバイルのorder制御に組み込む ===== */
@media (max-width: 880px) {
  .speaker__chip-list,
  .speaker__verdict,
  .speaker__questions {
    order: 4;
  }
}

/* ===== 20260610: FV調整（CTA削除・ライン位置・早割バーをリンク化） ===== */
/* スマホ/タブレットはフッター固定CTAがあるため、FVのCTAボタンは出さない */
@media (max-width: 880px) {
  .hero__buttons {
    display: none !important;
  }

  /* ラインはタイトル直下に移し、その下にサブコピーを置く */
  .hero__subhead {
    border-bottom: none !important;
    border-top: 1px solid rgba(46, 102, 181, 0.62) !important;
    padding-bottom: 0 !important;
    padding-top: 14px !important;
    margin-top: 2px !important;
  }
}

/* 早割バーはリンク（#priceへスクロール）になったため装飾を打ち消す */
a.hero__early-copy {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}

/* ===== 20260610: T2Sとは見出しを2行で収める ===== */
#about-t2s-title {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

@media (max-width: 640px) {
  #about-t2s-title {
    font-size: min(26.25px, calc((100vw - 76px) / 16.2)) !important;
    line-height: 1.6 !important;
  }
}

@media (min-width: 641px) and (max-width: 880px) {
  #about-t2s-title {
    font-size: min(54px, calc((100vw - 64px) / 16.2)) !important;
  }
}

/* ===== 20260610: 8バランス締めの問い ===== */
.balance-question {
  margin: clamp(24px, 4vw, 42px) auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy, #071f45);
  text-wrap: balance;
}

@media (max-width: 640px) {
  .balance-question {
    margin-top: 22px;
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.45;
  }
}

/* ===== 20260610: 共感ブロック/問い/動画の最終可読性調整 ===== */
.sec03__intro {
  display: grid !important;
  gap: clamp(12px, 2vw, 18px) !important;
  width: min(100%, 780px) !important;
}

.sec03__intro p,
.sec03__intro p + p {
  margin-top: 0 !important;
}

.sec03__pain-line {
  display: grid !important;
  gap: 2px !important;
  text-align: center !important;
}

.sec03__pain-line span {
  color: rgba(242, 246, 252, 0.82) !important;
  font-size: 0.86em !important;
  font-weight: 600 !important;
}

.sec03__pain-line strong {
  display: block !important;
  color: #fff !important;
  font-size: 1.14em !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
}

.sec03__relief {
  margin-top: clamp(12px, 2.2vw, 22px) !important;
  padding-top: clamp(16px, 2.6vw, 26px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
  font-size: 1.12em !important;
  font-weight: 900 !important;
}

.sec03__reason {
  color: rgba(226, 236, 250, 0.94) !important;
  font-size: 0.94em !important;
  line-height: 1.9 !important;
}

.sec03__reason span {
  display: block !important;
}

.sec03__quote {
  padding-block: clamp(28px, 4.4vw, 48px) !important;
}

.sec03__quote p {
  color: var(--color-navy-900) !important;
  font-size: clamp(22px, 3.2vw, 40px) !important;
  line-height: 1.72 !important;
  letter-spacing: 0 !important;
}

.sec03__quote-accent {
  color: var(--color-red-600) !important;
  font-size: 1em !important;
  font-weight: 900 !important;
  background: linear-gradient(transparent 64%, rgba(200, 16, 46, 0.12) 0) !important;
}

.sec03__quote-question {
  color: var(--color-navy-900) !important;
  font-weight: 900 !important;
}

.sec03__movie,
.sec03__movie-copy,
.sec03__movie-frame,
.sec03__movie-frame .media-slot {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.sec03__movie-copy {
  padding-inline: 0 !important;
}

.sec03__movie-note {
  width: min(100%, 760px) !important;
  max-width: 100% !important;
  padding-inline: 12px !important;
  box-sizing: border-box !important;
  text-wrap: balance !important;
}

@media (max-width: 430px) {
  .sec03__movie-lead span,
  .sec03__movie-message span {
    white-space: normal !important;
    transform: none !important;
    font-size: inherit !important;
  }

  .sec03__movie-lead,
  .sec03__movie-message {
    overflow: visible !important;
    width: 100% !important;
  }

  .sec03__movie-note {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
  }

  .sec03__movie-frame {
    width: 100% !important;
  }
}

/* ===== 20260610: メッセージ映像の右切れ防止と注釈2行固定 ===== */
.sec03__movie-note span {
  display: inline;
}

@media (max-width: 900px) {
  .sec03__movie {
    width: min(100%, calc(100vw - 48px)) !important;
  }

  .sec03__movie-frame,
  .sec03__movie-frame .media-slot {
    width: 100% !important;
  }
}

@media (max-width: 430px) {
  .sec03__movie {
    width: min(100%, calc(100vw - 44px)) !important;
  }

  .sec03__movie-note {
    padding-inline: 0 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    text-align: center !important;
  }

  .sec03__movie-note span {
    display: block;
  }
}

/* ===== 20260610: 診断結果の読みやすさ強化 ===== */
.story-result {
  gap: clamp(14px, 2.2vw, 22px) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 174, 255, .2), transparent 34%),
    linear-gradient(180deg, #081c3a 0%, #173c67 44%, #eef7ff 44%, #f8fbff 100%) !important;
}

.story-result__title {
  max-width: 12em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.story-result__flow {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 clamp(16px, 2vw, 22px) !important;
  padding: 0 !important;
  list-style: none !important;
}

.story-result__flow li {
  display: flex !important;
  min-height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .11) !important;
  color: rgba(255, 255, 255, .92) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: .02em !important;
}

.story-result__flow span {
  display: inline-grid !important;
  width: 24px !important;
  height: 24px !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--color-blue-600) !important;
  font-size: 12px !important;
  font-family: var(--font-sans) !important;
  font-weight: 900 !important;
}

.story-result__section-label {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 0 8px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: rgba(50, 116, 203, .1) !important;
  color: var(--color-blue-700) !important;
  font-family: var(--font-sans) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: .04em !important;
}

.story-result__block,
.story-result__focus-wrap,
.story-result__question--close,
.story-result .story-result__actions {
  border: 1px solid rgba(144, 181, 229, .28) !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--color-navy-900) !important;
}

.story-result__block {
  padding: clamp(18px, 2.6vw, 24px) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 36px rgba(7, 24, 51, .08) !important;
}

.story-result__block h4 {
  margin-bottom: 10px !important;
  color: var(--color-navy-900) !important;
}

.story-result__block p:not(.story-result__section-label) {
  color: var(--color-navy-700) !important;
}

.story-result__block--empathy {
  grid-template-columns: 48px 1fr !important;
  align-items: start !important;
}

.story-result__block--empathy h4 {
  color: var(--color-navy-900) !important;
}

.story-result__icon {
  width: 48px !important;
  height: 48px !important;
  background: linear-gradient(135deg, rgba(229, 242, 255, .95), rgba(255, 255, 255, .96)) !important;
  border-color: rgba(116, 164, 226, .36) !important;
}

.story-result__icon svg {
  stroke: var(--color-blue-600) !important;
}

.story-result__block--risk {
  border-top: 0 !important;
  border-left: 5px solid rgba(204, 18, 50, .32) !important;
  background: linear-gradient(135deg, #fff, #fff7f8) !important;
}

.story-result__focus-wrap {
  margin-top: clamp(10px, 1.6vw, 14px) !important;
  padding: clamp(18px, 2.6vw, 24px) !important;
  border-radius: 18px !important;
  border-top: 1px solid rgba(144, 181, 229, .28) !important;
}

.story-result__kicker {
  background: rgba(0, 104, 215, .1) !important;
  color: var(--color-blue-700) !important;
}

.story-result__focus-lead {
  max-width: 48em !important;
  color: var(--color-navy-700) !important;
  font-size: 15px !important;
}

.story-result__focus {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.story-result__focus li {
  align-items: center !important;
  min-height: 86px !important;
  background: linear-gradient(135deg, #f5f9ff, #fff) !important;
  color: var(--color-navy-900) !important;
  border: 1px solid rgba(144, 181, 229, .28) !important;
  box-shadow: 0 10px 22px rgba(7, 24, 51, .06) !important;
}

.story-result__block--hope {
  background: linear-gradient(135deg, #ffffff, #e6f5ff) !important;
  border-color: rgba(97, 158, 238, .38) !important;
}

.story-result__question--close {
  margin: clamp(8px, 1.5vw, 14px) 0 0 !important;
  padding: clamp(16px, 2.5vw, 22px) !important;
  border-radius: 18px !important;
  border-block: 1px solid rgba(144, 181, 229, .28) !important;
  color: var(--color-navy-900) !important;
  text-align: center !important;
  box-shadow: 0 14px 30px rgba(7, 24, 51, .08) !important;
}

.story-result .story-result__actions {
  background: #fff !important;
}

.story-result__cta-lead {
  text-align: center !important;
}

@media (max-width: 768px) {
  .story-result__focus {
    grid-template-columns: 1fr !important;
  }

  .story-result__focus li {
    min-height: auto !important;
  }
}

@media (max-width: 640px) {
  .story-result {
    background:
      radial-gradient(circle at 100% 0%, rgba(109, 174, 255, .18), transparent 36%),
      linear-gradient(180deg, #081c3a 0%, #173c67 34%, #eef7ff 34%, #f8fbff 100%) !important;
  }

  .story-result__flow {
    gap: 6px !important;
  }

  .story-result__flow li {
    min-height: 56px !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 7px 2px !important;
    border-radius: 14px !important;
    font-size: 12px !important;
  }

  .story-result__flow span {
    width: 23px !important;
    height: 23px !important;
  }

  .story-result__block {
    padding: 17px 15px !important;
    border-radius: 16px !important;
  }

  .story-result__block--empathy {
    grid-template-columns: 1fr !important;
  }

  .story-result__icon {
    width: 42px !important;
    height: 42px !important;
  }

  .story-result__section-label {
    margin-bottom: 7px !important;
    font-size: 11px !important;
  }

  .story-result__focus-wrap {
    padding: 17px 15px !important;
    border-radius: 16px !important;
  }

  .story-result__focus-lead {
    font-size: 14.5px !important;
  }

  .story-result__question--close {
    font-size: clamp(18px, 5.1vw, 21px) !important;
  }
}

/* ===== 20260610: 最終レイアウトチェック微調整 ===== */
.hero__title,
.hero__subhead,
.hero__lead,
.section__title,
.sec03__movie-title,
.sec03__movie-message,
.sec04__question-title,
.sec05__title,
.story-result__title,
.story-result__block h4,
.speaker__title,
.speaker__question,
.speaker__statement,
.final-title {
  text-wrap: balance;
  line-break: strict;
}

.media-slot,
.media-slot iframe,
.youtube-lite,
.youtube-lite img {
  max-width: 100%;
}

.t2s-about .title-bar,
.t2s-about .section__title,
.t2s-about__bridge,
.sec03__movie-copy,
.sec03__movie-note,
.sec03__movie-message,
.sec04__question,
.final .section__head {
  text-align: center;
}

@media (max-width: 430px) {
  body {
    overflow-x: hidden;
  }

  .t2s-about__bridge {
    max-width: calc(100vw - 48px) !important;
    margin-inline: auto !important;
    padding: 18px 16px !important;
    font-size: clamp(18px, 5.2vw, 21px) !important;
    line-height: 1.9 !important;
  }

  .t2s-about__movie,
  .sec03__movie,
  .sec03__movie-frame,
  .media-slot--16x9 {
    width: min(100%, calc(100vw - 44px)) !important;
    max-width: calc(100vw - 44px) !important;
    margin-inline: auto !important;
  }

  .sec03__movie-note,
  .sec03__movie-message,
  .sec04__facts-lead,
  .sec04__question-title,
  .story-result__cta-lead {
    overflow-wrap: anywhere;
  }

  .sec05__for-card h3,
  .sec05__for-card p,
  .speaker__body,
  .speaker__close,
  .final__lead {
    word-break: auto-phrase;
    line-break: strict;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .sec05__for-grid,
  .sec04__stats,
  .story-result__panel,
  .sec03__movie,
  .t2s-about__movie {
    max-width: min(92vw, 920px);
    margin-inline: auto;
  }
}

/* 講師写真の拡大変形による横はみ出し判定を防ぐ */
.speaker__portrait img {
  transform: none !important;
  object-position: 60% 24% !important;
}

/* ===== 20260610: 「それは、あなたのせいじゃない。」を1行で収める ===== */
@media (max-width: 640px) {
  .sec03__relief {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: min(19px, calc((100vw - 112px) / 15.6)) !important;
  }
}

/* ===== 20260610: 赤帯クオート「本当に大切な」追加に伴い3行で収める ===== */
@media (max-width: 640px) {
  .sec03__quote p {
    font-size: min(22px, calc((100vw - 36px) / 19)) !important;
    line-height: 1.9 !important;
  }

  .sec03__quote .mobile-break-line {
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

/* ===== 20260610: 種明かし行「幸せについて、誰も教えてくれなかっただけ。」を強調 ===== */
.sec03__reason {
  margin-top: 6px !important;
  font-size: 1.22em !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: .02em !important;
  text-shadow: 0 0 18px rgba(120, 170, 255, 0.28);
}

.sec03__reason-accent {
  font-style: normal;
  color: #ffd9e0;
}

@media (max-width: 640px) {
  .sec03__reason {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    font-size: min(21px, calc((100vw - 112px) / 14.8)) !important;
  }
}

/* ===== 20260610: 「それは、努力が足りないからではない。」を薄い青に抑え、種明かしを立たせる ===== */
.sec03__relief {
  color: rgba(242, 246, 252, 0.82) !important;
  font-weight: 600 !important;
  font-size: 1em !important;
}

/* ===== 20260611: YouTube iframeをLP内で直接操作できるようにする ===== */
.media-slot iframe {
  position: relative;
  z-index: 2;
  pointer-events: auto !important;
}

.media-slot::before,
.media-slot::after {
  pointer-events: none !important;
}

/* ===== 20260611: 診断結果リデザイン =====
   - 背景は下まで濃紺
   - 今のあなたへ+見直したいことを1枠に統合
   - T2Sで学べることは薄ピンク
   - ここからの可能性は枠なしのつなぎ
   - 締めのパワークエスチョンを赤で強調 */
.story-result {
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 174, 255, .2), transparent 34%),
    linear-gradient(180deg, #081c3a 0%, #14315a 100%) !important;
}

@media (max-width: 640px) {
  .story-result {
    background:
      radial-gradient(circle at 100% 0%, rgba(109, 174, 255, .18), transparent 36%),
      linear-gradient(180deg, #081c3a 0%, #14315a 100%) !important;
  }
}

/* 質問・結果へのスクロール時にヘッダーで隠れないように */
.story-stage,
.story-result {
  scroll-margin-top: calc(var(--header-h, 64px) + 12px);
}

/* 今のあなたへ + 見直したいこと（1枠） */
.story-result__block--main {
  border: 1px solid rgba(144, 181, 229, .28) !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--color-navy-900) !important;
}

.story-result__part h4 {
  margin: 0 0 8px;
  color: var(--color-navy-900);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: normal;
}

.story-result__part h4 span {
  display: inline-block;
}

.story-result__part p:not(.story-result__section-label) {
  margin: 0;
  color: var(--color-navy-700);
  font-size: 15px;
  line-height: 1.78;
}

.story-result__part + .story-result__part {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(11, 30, 63, .18);
}

/* T2Sで学べること（薄ピンク） */
.story-result__focus-wrap {
  background: linear-gradient(160deg, #fdf0f3, #fce4ea) !important;
  border-color: rgba(228, 135, 160, .4) !important;
}

.story-result__kicker {
  background: rgba(201, 15, 49, .1) !important;
  color: #a50f2d !important;
}

.story-result__focus-lead {
  color: var(--color-navy-800) !important;
}

.story-result__focus li {
  background: #fff !important;
  border-color: rgba(228, 135, 160, .35) !important;
}

.story-result__focus li::before {
  box-shadow: inset 0 0 0 2px rgba(201, 15, 49, .3) !important;
}

.story-result__focus li::after {
  border-left-color: #c2103a !important;
  border-bottom-color: #c2103a !important;
}

/* ここからの可能性（枠なしのつなぎ） */
.story-result__bridge {
  margin-top: clamp(18px, 2.6vw, 26px);
  padding: 0 6px;
  text-align: center;
  color: #fff;
}

.story-result__bridge h4 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .92);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 700;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.story-result__bridge p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
  max-width: 100%;
}

/* 締めのパワークエスチョン（赤で強調） */
.story-result__question--close {
  margin: clamp(14px, 2vw, 20px) 0 0 !important;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 26px) !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #8e0c26 0%, #c2103a 60%, #d8345c 100%) !important;
  color: #fff !important;
  text-align: center !important;
  box-shadow: 0 18px 40px rgba(142, 12, 38, .35) !important;
}

/* ===== 20260611: 締めPQを枠なしのタイポグラフィ型に（スッキリ、でも読ませる） ===== */
.story-result__question--close {
  margin: clamp(22px, 3.2vw, 32px) 0 4px !important;
  padding: 0 6px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
  text-align: center !important;
  font-size: clamp(20px, 2.8vw, 27px) !important;
  line-height: 1.85 !important;
  letter-spacing: .02em !important;
}

.story-result__question--close span {
  display: inline-block;
}

.story-result__question-emphasis {
  color: #ff6f8e;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 111, 142, .36);
}

.story-result__question--close::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d8345c, #c2103a);
}

/* ===== 20260612: 講師メッセージ可読性・プロフィール再設計 ===== */
.speaker-section {
  background:
    linear-gradient(90deg, rgba(6, 18, 43, .92) 0%, rgba(6, 18, 43, .74) 48%, rgba(6, 18, 43, .34) 100%),
    url("../images/section-06/message-bg-pc.png") center / cover no-repeat !important;
}

.speaker__inner {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr) !important;
  gap: clamp(28px, 4vw, 58px) clamp(42px, 5vw, 76px) !important;
  align-items: start !important;
}

.speaker__media {
  position: sticky;
  top: calc(var(--header-h, 64px) + 28px);
}

.speaker__media-label {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  margin-bottom: 14px !important;
  border: 0;
  background: transparent;
  color: rgba(220, 233, 255, .92) !important;
  font-family: var(--font-sans) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .3em !important;
}

.speaker__media-title {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.06em;
  color: #fff;
}

.speaker__portrait {
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
}

.speaker__copy {
  max-width: 720px !important;
}

.speaker__title {
  margin-bottom: 18px !important;
  padding-bottom: 18px !important;
}

.speaker__copy .speaker__question {
  position: relative;
  margin: 0 0 22px !important;
  padding: 18px 22px 18px 26px !important;
  border: 1px solid rgba(197, 219, 242, .26) !important;
  border-left: 3px solid rgba(255, 111, 142, .9) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(143, 179, 232, .06));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.speaker__body--opening {
  padding-left: 18px;
  border-left: 1px solid rgba(197, 219, 242, .22);
}

.speaker__insight {
  margin: 0 0 24px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(143, 179, 232, .26);
  background: rgba(5, 20, 46, .34);
}

.speaker__insight-label {
  margin: 0 0 8px;
  color: rgba(143, 179, 232, .92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.speaker__insight .speaker__body {
  margin-bottom: 12px !important;
  color: #fff !important;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.7vw, 24px) !important;
  font-weight: 800;
  line-height: 1.55 !important;
}

.speaker__chip-list {
  margin: 0 !important;
}

.speaker__chip-list li {
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(242, 247, 252, .86) !important;
}

.speaker__verdict {
  display: inline-block;
  margin-bottom: 24px !important;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 111, 142, .72);
  color: #fff !important;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.55vw, 23px) !important;
}

.speaker__questions {
  display: grid;
  gap: 10px;
  margin-bottom: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.speaker__questions p {
  position: relative;
  padding: 12px 16px 12px 42px;
  border: 1px solid rgba(197, 219, 242, .2);
  background: rgba(255, 255, 255, .075);
  color: rgba(242, 247, 252, .9) !important;
}

.speaker__questions p::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 12px;
  color: #ff6f8e;
  font-family: var(--font-en);
  font-weight: 800;
}

.speaker__questions p + p {
  margin-top: 0 !important;
}

.speaker__statement {
  margin-top: 30px !important;
  margin-bottom: 22px !important;
  padding: 22px 26px !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-left: 0 !important;
  background:
    linear-gradient(135deg, rgba(168, 0, 28, .24), rgba(143, 179, 232, .08));
}

.speaker__statement strong {
  background: none !important;
}

.speaker__profile {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.2fr);
  gap: 22px 28px;
  align-items: start;
  margin-top: 6px;
  padding: 24px !important;
  border: 1px solid rgba(197, 219, 242, .24) !important;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}

.speaker__profile-head {
  min-width: 0;
}

.speaker__profile-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(143, 179, 232, .95);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}

.speaker__name {
  margin: 0 0 8px !important;
  font-size: clamp(28px, 2.8vw, 38px) !important;
}

.speaker__role {
  margin: 0 !important;
}

.speaker__profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 2;
  gap: 10px;
  margin: 0;
}

.speaker__profile-stats div {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(197, 219, 242, .18);
  background: rgba(6, 18, 43, .26);
}

.speaker__profile-stats dt {
  margin: 0 0 5px;
  color: rgba(197, 219, 242, .72);
  font-size: 11px;
  line-height: 1.4;
}

.speaker__profile-stats dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}

.speaker__profile-bio {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 219, 242, .18);
}

.speaker__bio {
  margin: 0 !important;
  line-height: 1.9 !important;
}

@media (max-width: 880px) {
  .speaker-section {
    background:
      linear-gradient(180deg, rgba(6, 18, 43, .9) 0%, rgba(6, 18, 43, .68) 54%, rgba(6, 18, 43, .28) 100%),
      url("../images/section-06/message-bg-sp.png") center / cover no-repeat !important;
  }

  .speaker__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .speaker__media {
    position: static;
    order: 2 !important;
  }

  .speaker__copy {
    display: block !important;
    order: 1 !important;
    max-width: none !important;
  }

  .speaker__profile {
    order: 3 !important;
    grid-template-columns: 1fr;
    padding: 20px !important;
  }

  .speaker__profile-stats {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .speaker__profile-bio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .speaker__copy .speaker__question,
  .speaker__insight,
  .speaker__statement,
  .speaker__profile {
    margin-inline: calc(var(--mobile-side, 24px) * -0.25);
  }

  .speaker__profile-stats {
    grid-template-columns: 1fr;
  }

  .speaker__questions p {
    padding-right: 14px;
  }
}

/* ===== 20260612: 講師エリア再調整（プロフィール左寄せ・装飾量を抑える） ===== */
@media (min-width: 881px) {
  .speaker__inner {
    grid-template-columns: minmax(300px, 390px) minmax(0, 720px) !important;
    justify-content: center;
    column-gap: clamp(52px, 6vw, 92px) !important;
  }

  .speaker__media {
    position: static !important;
    max-width: 390px !important;
  }
}

.speaker__copy .speaker__question {
  margin-bottom: 18px !important;
  padding: 0 0 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 111, 142, .58) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.speaker__body--opening {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.speaker__insight {
  margin: 0 0 20px !important;
  padding: 0 0 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(197, 219, 242, .18) !important;
  background: transparent !important;
}

.speaker__insight .speaker__body {
  margin-bottom: 10px !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
}

.speaker__chip-list {
  gap: 6px !important;
}

.speaker__chip-list li {
  padding: 2px 10px !important;
  background: transparent !important;
}

.speaker__verdict {
  display: block !important;
  margin-bottom: 18px !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}

.speaker__questions {
  gap: 6px !important;
  margin-bottom: 22px !important;
}

.speaker__questions p {
  padding: 4px 0 4px 24px !important;
  border: 0 !important;
  background: transparent !important;
  line-height: 1.75 !important;
}

.speaker__questions p::before {
  left: 0 !important;
  top: 4px !important;
}

.speaker__statement {
  margin-top: 24px !important;
  margin-bottom: 18px !important;
  padding: 18px 0 18px 22px !important;
  border: 0 !important;
  border-left: 2px solid rgba(255, 111, 142, .72) !important;
  background: transparent !important;
}

.speaker__profile {
  display: block !important;
  margin-top: 18px !important;
  padding: 18px !important;
  border: 1px solid rgba(197, 219, 242, .22) !important;
  border-radius: 8px;
  background: rgba(6, 18, 43, .3) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.speaker__profile-kicker {
  margin-bottom: 8px !important;
}

.speaker__name {
  font-size: clamp(25px, 2.5vw, 32px) !important;
}

.speaker__profile-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px !important;
  margin-top: 16px !important;
}

.speaker__profile-stats div {
  padding: 10px 8px !important;
  background: rgba(255, 255, 255, .055) !important;
}

.speaker__profile-stats dd {
  font-size: clamp(16px, 1.55vw, 20px) !important;
}

.speaker__profile-bio {
  display: block !important;
  margin-top: 16px !important;
  padding-top: 14px !important;
}

.speaker__profile-bio .speaker__bio {
  font-size: 13px !important;
  line-height: 1.85 !important;
}

.speaker__profile-bio .speaker__bio + .speaker__bio {
  margin-top: 10px !important;
}

@media (max-width: 880px) {
  .speaker__media {
    order: 2 !important;
  }

  .speaker__profile {
    order: initial !important;
  }
}

@media (max-width: 560px) {
  .speaker__profile {
    margin-inline: 0 !important;
  }
}

/* ===== 20260612: SP講師セクションは紹介→メッセージの順にする ===== */
@media (max-width: 880px) {
  .speaker__media {
    order: 1 !important;
  }

  .speaker__copy {
    order: 2 !important;
  }
}

/* ===== 20260612: 8バランス締め問いを中央寄せに固定 ===== */
.balance-question {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* ===== 20260612: AI統計カードの数字はみ出し防止 ===== */
@media (min-width: 881px) {
  .sec04__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.sec04__stat {
  min-width: 0 !important;
}

.sec04__stat-num {
  max-width: 100%;
  font-size: clamp(40px, 3.45vw, 52px) !important;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.sec04__stat-unit {
  font-size: 0.58em !important;
  letter-spacing: 0;
}

@media (max-width: 1180px) and (min-width: 881px) {
  .sec04__stat-num {
    font-size: clamp(34px, 3.8vw, 44px) !important;
  }
}

@media (max-width: 880px) {
  .sec04__stats {
    grid-template-columns: 1fr !important;
  }
}

/* ===== 20260612: 診断セクションのCHECK透かしを非表示 ===== */
.sec05::after {
  content: none !important;
}

@media (max-width: 880px) {
  .sec04__stat--shift .sec04__stat-title {
    font-size: clamp(20px, 5.5vw, 22px) !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  #takeaway .section__lead {
    line-height: 1.8;
  }

  .benefit-lead-line {
    display: block;
    white-space: nowrap;
  }
}

/* ===== 20260611: 構成変更（鏡の問い / 声後の早割バー / FV早割の矢印） ===== */

/* FV早割バーの矢印（押せる感を出す） */
.hero__early-arrow {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1;
  color: #c91532;
  margin-left: 2px;
}

/* ===== 20260612: セクション名ラベルを全体的に1px拡大 ===== */
.title-bar {
  font-size: 13px !important;
}

@media (max-width: 640px) {
  .title-bar {
    font-size: 12px !important;
  }
}

/* 鏡の問い「あなたは今、幸せですか？」（静かな自問の帯） */
.mirror-section {
  padding-block: clamp(64px, 10vw, 120px);
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 171, 232, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  text-align: center;
}

.mirror-question {
  margin: 0 auto;
  max-width: 18em;
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-navy-900);
}

.mirror-question__accent {
  color: var(--color-red-600);
  background: linear-gradient(transparent 64%, rgba(200, 16, 46, 0.14) 0);
  font-weight: 900;
}

.mirror-lead {
  max-width: 38em;
  margin: 0 auto clamp(18px, 3vw, 28px);
  color: var(--color-navy-700);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 2;
  letter-spacing: 0.02em;
}

.mirror-question br.sp-br { display: none; }

@media (max-width: 640px) {
  .mirror-question {
    max-width: none;
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.5;
    white-space: nowrap;
  }
}

.voice-cta {
  justify-content: center;
  margin-top: clamp(30px, 4vw, 48px) !important;
}

/* 参加者の声 直後の早割バー（#priceへ） */
.voice-pricebar {
  width: fit-content;
  max-width: 100%;
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid rgba(201, 21, 50, 0.38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,244,246,0.96));
  box-shadow: 0 12px 28px rgba(201, 21, 50, 0.14), inset 0 1px 0 rgba(255,255,255,0.86);
  color: #c91532;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.voice-pricebar:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(201, 21, 50, 0.2), inset 0 1px 0 rgba(255,255,255,0.86);
}

.voice-pricebar__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: #c91532;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.voice-pricebar__price {
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.voice-pricebar__regular {
  font-size: 13px;
  color: var(--color-navy-600);
  font-weight: 600;
  white-space: nowrap;
}

.voice-pricebar__arrow {
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  margin-left: 2px;
}

@media (max-width: 640px) {
  .voice-pricebar {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
  }
  .voice-pricebar__price { font-size: 21px; }
  .voice-pricebar__regular { font-size: 12px; }
}

/* ===== 20260612: 最終CTAに早割価格＋締切（決断の最後の一押し） ===== */
.final-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: clamp(20px, 3vw, 28px) auto 0;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.final-price__label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 12px;
  border-radius: 999px;
  background: #d8345c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.final-price__amount {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.final-price__amount small {
  font-size: 16px;
  margin-left: 1px;
}

.final-price__regular {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: line-through;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .final-price {
    width: 100%;
    justify-content: center;
    gap: 9px;
    padding: 12px 16px;
  }
  .final-price__amount { font-size: 26px; }
}

/* ===== 20260612: 口コミセクション 立場タブ＋サムネ→クリック再生 ===== */
/* 立場タブ（aud-row流用） */
.aud--tab { cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.aud--tab:hover { transform: translateY(-2px); }
.aud--tab.is-active {
  border-color: var(--color-red-600) !important;
  box-shadow: 0 14px 30px rgba(201, 21, 50, 0.18);
}
.aud--tab.is-active .aud__name { color: var(--color-red-600); }
.aud--tab:not(.is-active) { opacity: .7; }
.aud--tab:not(.is-active):hover { opacity: 1; }

/* パネル：activeのみ表示（hidden属性で非表示。JSがトグル） */
.role-voice-panel[hidden] { display: none !important; }

/* サムネ→クリック再生ファサード */
.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-image: var(--yt-thumb);
  background-size: cover;
  background-position: center;
  background-color: #0a1f3d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.yt-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,51,0.05), rgba(7,24,51,0.28));
  transition: background .18s ease;
}
.yt-facade:hover::after { background: linear-gradient(180deg, rgba(7,24,51,0.02), rgba(7,24,51,0.18)); }
.yt-facade__play {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(201, 21, 50, 0.92);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform .18s ease, background .18s ease;
}
.yt-facade__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}
.yt-facade:hover .yt-facade__play { transform: scale(1.08); background: #c91532; }

/* ===== 20260612: 立場タブのレイアウト最適化（4タブ：PC4列／モバイル2×2） ===== */
#voice .aud-row {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 640px) {
  #voice .aud-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  #voice .aud--tab .aud__person {
    height: clamp(64px, 22vw, 96px) !important;
  }
  #voice .aud--tab .aud__name {
    writing-mode: vertical-rl !important;
    text-orientation: mixed;
    white-space: nowrap !important;
    letter-spacing: 0.08em;
  }
  #voice .aud--family .aud__name {
    width: max-content !important;
    max-width: 4.8em !important;
    font-size: 17px !important;
    line-height: 1.22 !important;
    white-space: nowrap !important;
  }
  #voice .aud--family .aud__name-line {
    display: inline;
    white-space: nowrap;
  }
}

/* ===== 20260612: 講師チップ「予約1年待ち」を1行で収める ===== */
.speaker__stat-compact {
  font-size: clamp(15px, 4.3vw, 20px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

@media (min-width: 641px) {
  .speaker__stat-compact {
    font-size: clamp(17px, 1.5vw, 21px) !important;
  }
}

/* ===== 20260612: 共感セクション デザイン再設計 ===== */
.sec03 {
  isolation: isolate;
  padding-top: clamp(72px, 8vw, 116px) !important;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.62) 30%, rgba(234, 242, 251, 0.28) 62%, transparent 78%),
    linear-gradient(180deg, rgba(245, 250, 254, 0.72) 0%, rgba(234, 242, 251, 0.46) 48%, rgba(245, 250, 254, 0.32) 100%);
}

.sec03::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 79, 143, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(42, 79, 143, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 17% 34%, rgba(143, 179, 232, 0.22), transparent 28%),
    radial-gradient(circle at 84% 42%, rgba(197, 219, 242, 0.30), transparent 30%);
  background-size: 88px 88px, 88px 88px, auto, auto;
  mask-image: linear-gradient(180deg, transparent 0%, #000 13%, #000 74%, transparent 100%);
}

.sec03::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(170px, 19vw, 260px);
  left: 50%;
  width: min(980px, 94vw);
  height: min(560px, 62vw);
  border: 1px solid rgba(42, 79, 143, 0.10);
  border-radius: 48% 52% 50% 50%;
  transform: translateX(-50%) rotate(-3deg);
  pointer-events: none;
  opacity: 0.76;
}

.sec03__visual-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.sec03__light {
  position: absolute;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.8;
}

.sec03__light--left {
  top: 180px;
  left: max(-120px, calc(50% - 610px));
  background: radial-gradient(circle, rgba(197, 219, 242, 0.58), rgba(197, 219, 242, 0.04) 66%, transparent 72%);
}

.sec03__light--right {
  top: 250px;
  right: max(-140px, calc(50% - 650px));
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(143, 179, 232, 0.12) 58%, transparent 74%);
}

.sec03__path {
  position: absolute;
  top: clamp(428px, 46vw, 560px);
  left: 50%;
  width: 1px;
  height: clamp(170px, 20vw, 260px);
  background: linear-gradient(180deg, rgba(143, 179, 232, 0), rgba(42, 79, 143, 0.42), rgba(200, 16, 46, 0.18), rgba(143, 179, 232, 0));
  box-shadow: 0 0 28px rgba(143, 179, 232, 0.28);
}

.sec03__inner {
  position: relative;
  width: min(100%, 940px) !important;
}

.sec03__copy {
  position: relative;
}

.sec03__copy > .title-bar,
.sec03__copy > .section__title,
.sec03__copy > .sec03__intro {
  position: relative;
  z-index: 2;
}

.sec03__copy::before,
.sec03__copy::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: clamp(150px, 18vw, 220px);
  height: clamp(74px, 9vw, 108px);
  border: 1px solid rgba(197, 219, 242, 0.72);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(242, 247, 252, 0.42)),
    linear-gradient(90deg, rgba(26, 52, 100, 0.16) 0 30%, transparent 30% 100%);
  box-shadow: 0 18px 44px rgba(11, 30, 63, 0.09);
  backdrop-filter: blur(9px);
  opacity: 0.78;
}

.sec03__copy::before {
  top: clamp(190px, 18vw, 230px);
  left: clamp(-86px, -6vw, -44px);
  transform: rotate(-7deg);
}

.sec03__copy::after {
  top: clamp(244px, 23vw, 310px);
  right: clamp(-88px, -6vw, -46px);
  transform: rotate(6deg);
}

.sec03__copy .title-bar {
  color: var(--color-navy-700) !important;
  opacity: 0.86;
}

.sec03__heading {
  margin: 20px 0 clamp(28px, 4vw, 44px) !important;
  text-shadow: 0 10px 34px rgba(255, 255, 255, 0.78);
}

.sec03__intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: min(100%, 760px) !important;
  margin-top: 0 !important;
  padding: clamp(34px, 4.2vw, 54px) clamp(22px, 5vw, 64px) !important;
  border: 1px solid rgba(197, 219, 242, 0.22);
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 143, 217, 0.36), transparent 46%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(30, 53, 99, 0.98) 0%, rgba(17, 38, 79, 0.99) 56%, rgba(11, 30, 63, 1) 100%) !important;
  box-shadow:
    0 30px 68px rgba(11, 30, 63, 0.24),
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 -1px 0 rgba(0, 0, 0, 0.18) inset !important;
}

.sec03__intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(197, 219, 242, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(197, 219, 242, 0.055) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 72%, rgba(255, 255, 255, 0.12), transparent 56%);
  background-size: 54px 54px, 54px 54px, auto;
  opacity: 0.78;
}

.sec03__intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px;
  border: 1px solid rgba(197, 219, 242, 0.16);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  pointer-events: none;
}

.sec03__pain-line span {
  color: rgba(242, 246, 252, 0.78) !important;
  font-size: clamp(14px, 1.45vw, 18px) !important;
  letter-spacing: 0.04em !important;
}

.sec03__pain-line strong {
  font-size: clamp(22px, 2.45vw, 31px) !important;
  line-height: 1.55 !important;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.sec03__relief {
  width: min(100%, 520px);
  margin-inline: auto !important;
  color: rgba(255, 255, 255, 0.96) !important;
  border-top-color: rgba(197, 219, 242, 0.32) !important;
  font-size: clamp(16px, 1.65vw, 21px) !important;
}

.sec03__reason {
  color: rgba(226, 236, 250, 0.95) !important;
}

.sec03__reason-accent {
  color: #fff;
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(200, 16, 46, 0.32) 0);
}

.sec03__quote {
  position: relative;
  overflow: hidden;
  max-width: 1120px !important;
  margin-top: clamp(44px, 5.5vw, 72px) !important;
  margin-bottom: clamp(58px, 7vw, 92px) !important;
  padding: clamp(30px, 4.3vw, 56px) clamp(18px, 5vw, 72px) !important;
  border: 1px solid rgba(197, 219, 242, 0.58);
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 253, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(197, 219, 242, 0.42), transparent 46%) !important;
  box-shadow:
    0 24px 64px rgba(11, 30, 63, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.82) inset !important;
}

.sec03__quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 62%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.72), transparent);
  transform: translateX(-50%);
}

.sec03__quote::after {
  content: "";
  position: absolute;
  inset: auto 8% -42px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(143, 179, 232, 0.20), transparent 70%);
  pointer-events: none;
}

.sec03__quote p {
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.76 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 880px) {
  .sec03 {
    padding-top: clamp(54px, 13vw, 82px) !important;
  }

  .sec03::before {
    background-size: 58px 58px, 58px 58px, auto, auto;
    opacity: 0.72;
  }

  .sec03::after {
    top: 160px;
    width: 108vw;
    height: 560px;
    border-radius: 42%;
  }

  .sec03__light--left {
    top: 160px;
    left: -140px;
  }

  .sec03__light--right {
    top: 330px;
    right: -170px;
  }

  .sec03__path {
    top: 490px;
    height: 190px;
  }

  .sec03__copy::before,
  .sec03__copy::after {
    display: none;
  }

  .sec03__heading {
    margin-top: 16px !important;
    margin-bottom: 26px !important;
    font-size: clamp(27px, 7.6vw, 36px) !important;
    line-height: 1.5 !important;
  }

  .sec03__intro {
    width: min(100%, 560px) !important;
    padding: clamp(30px, 8.4vw, 42px) clamp(18px, 5.4vw, 30px) !important;
    border-radius: 18px !important;
  }

  .sec03__pain-line span {
    font-size: clamp(13px, 3.4vw, 15px) !important;
  }

  .sec03__pain-line strong {
    font-size: clamp(20px, 5.6vw, 25px) !important;
    line-height: 1.58 !important;
  }

  .sec03__relief {
    font-size: clamp(15px, 4.1vw, 18px) !important;
    line-height: 1.8 !important;
  }

  .sec03__reason {
    font-size: clamp(14px, 3.7vw, 16px) !important;
  }

  .sec03__quote {
    width: calc(100% - 32px) !important;
    margin-top: 40px !important;
    margin-bottom: 64px !important;
    padding: clamp(28px, 8vw, 40px) clamp(18px, 5vw, 28px) !important;
    border-radius: 18px !important;
  }

  .sec03__quote p {
    font-size: clamp(21px, 6vw, 28px) !important;
    line-height: 1.72 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 390px) {
  .sec03__quote p {
    font-size: clamp(19px, 5.55vw, 22px) !important;
  }
}

/* ===== 20260612: 共感セクション 参照デザイン忠実化 ===== */
.sec03 {
  min-height: auto;
  padding-top: clamp(52px, 5vw, 74px) !important;
  padding-bottom: clamp(16px, 2.4vw, 34px) !important;
  background: transparent !important;
}

.sec03::before {
  z-index: -3;
  opacity: 1;
  height: clamp(1120px, 82vw, 1220px);
  bottom: auto;
  background:
    linear-gradient(180deg, rgba(244, 249, 254, 0.92) 0%, rgba(226, 239, 251, 0.70) 64%, rgba(189, 216, 241, 0.62) 100%),
    radial-gradient(ellipse at 50% 16%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.38) 42%, transparent 72%),
    radial-gradient(ellipse at 20% 18%, rgba(255, 255, 255, 0.72), transparent 36%),
    radial-gradient(ellipse at 82% 20%, rgba(255, 255, 255, 0.70), transparent 36%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.36) 48%, transparent 55%),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, transparent 0%, rgba(54, 119, 181, 0.18) 100%) !important;
  background-size: auto;
  mask-image: linear-gradient(180deg, #000 0%, #000 96%, transparent 100%);
}

.sec03::after {
  top: clamp(350px, 31vw, 455px);
  width: 124vw;
  height: clamp(720px, 55vw, 820px);
  border: 0;
  border-radius: 50% 50% 0 0;
  opacity: 0.95;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.72) 0%, rgba(198, 224, 247, 0.34) 34%, transparent 72%),
    repeating-radial-gradient(ellipse at 50% 115%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1px 19px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.sec03__visual-layer {
  z-index: -1;
  height: clamp(1120px, 82vw, 1220px);
  bottom: auto;
}

.sec03__visual-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 76%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.34) 12%, transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(33, 91, 151, 0.035) 42%, rgba(33, 91, 151, 0.10) 74%, rgba(29, 91, 154, 0.20) 100%);
}

.sec03__visual-layer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, 106vw);
  height: 46%;
  min-height: 420px;
  transform: translateX(-50%);
  opacity: 0.58;
  background:
    repeating-linear-gradient(167deg, rgba(255, 255, 255, 0.48) 0 1px, transparent 1px 24px),
    repeating-radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px 20px);
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 100%);
}

.sec03__light {
  filter: blur(16px);
  opacity: 0.62;
}

.sec03__light--left {
  top: 120px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.76), rgba(175, 207, 236, 0.22) 58%, transparent 75%);
}

.sec03__light--right {
  top: 100px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82), rgba(174, 205, 235, 0.20) 60%, transparent 76%);
}

.sec03__path {
  top: clamp(428px, 34vw, 500px);
  height: clamp(116px, 11vw, 160px);
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24), transparent);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.86), 0 0 72px rgba(200, 16, 46, 0.18);
}

.sec03__horizon {
  position: absolute;
  left: 50%;
  top: clamp(500px, 39vw, 585px);
  width: min(220px, 22vw);
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.96), rgba(255, 238, 222, 0.50) 45%, transparent 72%);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.86);
}

.sec03__door {
  position: absolute;
  top: clamp(210px, 18vw, 276px);
  width: clamp(48px, 5vw, 74px);
  height: clamp(120px, 12vw, 178px);
  border: 1px solid rgba(104, 148, 194, 0.20);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.54)),
    linear-gradient(180deg, rgba(231, 242, 252, 0.42), rgba(188, 215, 240, 0.22));
  box-shadow: 0 14px 42px rgba(43, 100, 158, 0.10);
}

.sec03__door::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(104, 148, 194, 0.16);
}

.sec03__door--left {
  left: max(22px, calc(50% - 690px));
}

.sec03__door--right {
  right: max(48px, calc(50% - 670px));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(231, 242, 252, 0.48), rgba(188, 215, 240, 0.20));
}

.sec03__stair {
  position: absolute;
  top: clamp(325px, 27vw, 410px);
  width: clamp(118px, 11vw, 170px);
  height: clamp(76px, 7vw, 110px);
  opacity: 0.52;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0 8px, rgba(98, 143, 190, 0.12) 8px 10px, transparent 10px 16px);
  transform: skewX(-16deg);
  filter: blur(0.2px);
}

.sec03__stair--left {
  left: max(0px, calc(50% - 735px));
}

.sec03__stair--right {
  right: max(54px, calc(50% - 710px));
  transform: skewX(16deg);
}

.sec03__side-copy {
  position: absolute;
  top: clamp(220px, 18vw, 276px);
  z-index: 0;
  margin: 0;
  color: rgba(13, 44, 88, 0.78);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.sec03__side-copy--left {
  left: max(120px, calc(50% - 600px));
}

.sec03__side-copy--right {
  right: max(92px, calc(50% - 620px));
}

.sec03__orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-color: rgba(255,255,255,.74) transparent transparent rgba(255,255,255,.58);
  border-radius: 50%;
  opacity: 0.84;
}

.sec03__orbit--left {
  left: -34px;
  top: -82px;
  width: clamp(190px, 20vw, 310px);
  height: clamp(310px, 32vw, 470px);
  transform: rotate(-14deg);
}

.sec03__orbit--right {
  right: -60px;
  top: 70px;
  width: clamp(220px, 22vw, 360px);
  height: clamp(330px, 33vw, 490px);
  transform: rotate(14deg);
}

.sec03__star {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.72);
}

.sec03__star--a { left: 4.2%; top: 68%; }
.sec03__star--b { left: 7.4%; top: 74%; width: 4px; height: 4px; }
.sec03__star--c { left: 10.4%; top: 79%; }
.sec03__star--d { right: 8.5%; top: 63%; width: 5px; height: 5px; }

.sec03__thought {
  position: absolute;
  z-index: 3;
  width: clamp(146px, 14vw, 210px);
  min-height: clamp(120px, 11vw, 160px);
  padding: clamp(18px, 1.7vw, 24px);
  border: 1px solid rgba(199, 219, 240, 0.34);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.74;
  letter-spacing: 0.04em;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(41, 70, 118, 0.70), rgba(12, 33, 73, 0.44)),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.24), transparent 42%);
  box-shadow: 0 24px 44px rgba(16, 48, 91, 0.22), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(8px);
}

.sec03__thought span {
  display: block;
  margin-bottom: 14px;
  color: rgba(211, 227, 246, 0.54);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: right;
}

.sec03__thought--money {
  left: max(245px, calc(50% - 450px));
  top: clamp(232px, 19vw, 286px);
  transform: rotate(-8deg);
}

.sec03__thought--time {
  left: max(250px, calc(50% - 455px));
  top: clamp(430px, 33vw, 505px);
  transform: rotate(-7deg);
}

.sec03__thought--heart {
  right: max(210px, calc(50% - 515px));
  top: clamp(330px, 26vw, 400px);
  transform: rotate(7deg);
}

.sec03__inner {
  width: min(100%, 1040px) !important;
}

.sec03__copy::before,
.sec03__copy::after {
  display: none !important;
}

.sec03__heading {
  margin: 18px 0 clamp(30px, 3.4vw, 42px) !important;
  color: var(--color-navy-900);
  font-size: clamp(34px, 3.45vw, 54px) !important;
  line-height: 1.38 !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.sec03__copy .title-bar {
  font-size: clamp(12px, 1vw, 15px) !important;
  letter-spacing: 0.34em !important;
  color: rgba(13, 44, 88, 0.88) !important;
}

.sec03__intro {
  width: min(100%, 760px) !important;
  min-height: clamp(355px, 32vw, 488px);
  padding: clamp(46px, 4.5vw, 66px) clamp(44px, 6vw, 78px) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(157, 188, 225, 0.24);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.20) 0%, transparent 34%),
    repeating-radial-gradient(circle at 50% 54%, rgba(130, 165, 210, 0.12) 0 1px, transparent 1px 20px),
    radial-gradient(circle at 50% 44%, rgba(35, 75, 131, 0.80), transparent 54%),
    linear-gradient(180deg, rgba(5, 30, 70, 0.99), rgba(4, 24, 58, 0.99)) !important;
  box-shadow:
    0 34px 70px rgba(18, 54, 94, 0.25),
    0 3px 0 rgba(255, 255, 255, 0.12) inset !important;
}

.sec03__intro::after {
  inset: 0;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 30%, rgba(255,255,255,.04));
}

.sec03__intro::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.09) 50%, transparent 100%),
    radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.15), transparent 32%) !important;
  background-size: auto;
}

.sec03__pain-line {
  gap: 8px !important;
}

.sec03__pain-line span {
  font-size: clamp(17px, 1.55vw, 23px) !important;
  color: rgba(255, 255, 255, 0.90) !important;
}

.sec03__pain-line strong {
  font-size: clamp(28px, 2.8vw, 42px) !important;
  line-height: 1.48 !important;
  color: #fff !important;
  letter-spacing: 0.045em !important;
}

.sec03__relief {
  width: min(100%, 560px);
  margin-top: clamp(14px, 2vw, 22px) !important;
  padding-top: clamp(18px, 2.4vw, 28px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.32) !important;
  font-size: clamp(18px, 1.65vw, 24px) !important;
}

.sec03__reason {
  font-size: clamp(17px, 1.55vw, 22px) !important;
  line-height: 1.78 !important;
}

.sec03__reason-accent {
  color: #ffd9e6;
  font-size: 1.2em;
  background: linear-gradient(transparent 62%, rgba(255, 182, 203, 0.30) 0) !important;
  text-shadow: 0 0 18px rgba(255, 182, 203, 0.22);
}

.sec03__quote {
  width: min(100% - 48px, 1060px) !important;
  max-width: 1060px !important;
  margin-top: clamp(34px, 3.6vw, 48px) !important;
  margin-bottom: clamp(40px, 4.2vw, 56px) !important;
  padding: clamp(26px, 2.8vw, 42px) clamp(22px, 4.8vw, 62px) !important;
  border: 1px solid rgba(175, 146, 92, 0.48);
  outline: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 248, 0.98)) !important;
  box-shadow:
    0 18px 42px rgba(24, 63, 102, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.94) inset !important;
}

.sec03__quote::before {
  display: none;
}

.sec03__quote p {
  font-size: clamp(28px, 2.72vw, 40px) !important;
  line-height: 1.58 !important;
  letter-spacing: 0.045em !important;
  color: var(--color-navy-900) !important;
}

.sec03__quote-accent {
  color: var(--color-red-600) !important;
  border-bottom: 0 !important;
  background: linear-gradient(transparent 58%, rgba(255, 182, 203, 0.42) 0) !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (min-width: 881px) {
  .site-bg {
    background-position: center clamp(64px, 7vw, 104px);
  }

  .sec03 {
    background:
      linear-gradient(180deg,
        rgba(244, 249, 254, 0.10) 0%,
        rgba(225, 239, 252, 0.18) 52%,
        rgba(198, 224, 247, 0.48) 70%,
        rgba(205, 230, 250, 0.66) 80%,
        rgba(236, 247, 255, 0.42) 91%,
        rgba(255, 255, 255, 0.00) 100%) !important;
  }

  .sec03::before {
    height: clamp(1260px, 92vw, 1360px);
    mask-image: linear-gradient(180deg, #000 0%, #000 86%, rgba(0, 0, 0, 0.52) 94%, transparent 100%);
  }

  .sec03::after {
    top: clamp(460px, 36vw, 560px);
    height: clamp(820px, 58vw, 940px);
    opacity: 0.74;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 18%, #000 42%, rgba(0, 0, 0, 0.62) 82%, transparent 100%);
  }

  .sec03__visual-layer {
    height: clamp(1260px, 92vw, 1360px);
    mask-image: linear-gradient(180deg, #000 0%, #000 84%, rgba(0, 0, 0, 0.46) 94%, transparent 100%);
  }

  .sec03__visual-layer::before {
    background:
      radial-gradient(ellipse at 50% 75%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.28) 13%, transparent 24%),
      linear-gradient(180deg, transparent 0%, rgba(33, 91, 151, 0.035) 40%, rgba(33, 91, 151, 0.12) 70%, rgba(74, 139, 198, 0.18) 84%, rgba(246, 251, 255, 0.10) 100%);
  }
}

@media (max-width: 1100px) {
  .sec03__thought--money { left: 5%; }
  .sec03__thought--time { left: 6%; }
  .sec03__thought--heart { right: 4%; }
  .sec03__side-copy--left { left: 6%; }
  .sec03__side-copy--right { right: 4%; }
}

@media (max-width: 880px) {
  .sec03 {
    padding-top: clamp(54px, 13vw, 72px) !important;
  }

  .sec03::before,
  .sec03__visual-layer {
    height: 805px;
  }

  .sec03::before {
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .sec03__visual-layer {
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .sec03__door,
  .sec03__stair,
  .sec03__side-copy,
  .sec03__orbit,
  .sec03__star,
  .sec03__thought {
    display: none;
  }

  .sec03::after {
    top: 390px;
    width: 150vw;
    height: 330px;
    opacity: 0.72;
  }

  .sec03__heading {
    font-size: clamp(29px, 8.4vw, 38px) !important;
    line-height: 1.52 !important;
    margin-bottom: 26px !important;
    white-space: normal;
  }

  .sec03__intro {
    width: min(100%, 560px) !important;
    min-height: auto;
    padding: clamp(30px, 8vw, 42px) clamp(18px, 6vw, 30px) !important;
    border-radius: 16px !important;
  }

  .sec03__pain-line span {
    font-size: clamp(14px, 3.8vw, 16px) !important;
  }

  .sec03__pain-line strong {
    font-size: clamp(21px, 5.45vw, 25px) !important;
    white-space: nowrap;
  }

  .sec03__relief {
    font-size: clamp(15px, 4.2vw, 18px) !important;
  }

  .sec03__reason {
    font-size: clamp(14px, 3.9vw, 17px) !important;
  }

  .sec03__path {
    top: 520px;
    height: 86px;
  }

  .sec03__horizon {
    top: 604px;
    width: 150px;
  }

  .sec03__quote {
    width: calc(100% - 40px) !important;
    margin-inline: auto !important;
    margin-top: 40px !important;
    margin-bottom: 54px !important;
    padding: clamp(28px, 8vw, 40px) clamp(18px, 5vw, 28px) !important;
    border-radius: 16px !important;
    outline-offset: -4px;
    overflow: visible !important;
  }

  .sec03__quote p {
    font-size: clamp(21px, 5.75vw, 26px) !important;
    line-height: 1.64 !important;
    letter-spacing: 0.01em !important;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  .sec03__quote p {
    font-size: clamp(20px, 5.8vw, 23px) !important;
  }
}

/* 20260613: Section 03 dark card accent color */
.sec03__intro .sec03__reason-accent {
  color: #ffd9e6 !important;
  background: none !important;
  text-shadow: 0 0 18px rgba(255, 182, 203, 0.28) !important;
}

.sec03__intro .sec03__pain-line span {
  font-size: 20px !important;
}

.sec03__intro .sec03__relief {
  font-size: 20px !important;
}

.sec03__intro .sec03__reason span {
  font-size: 32px !important;
}

.sec03__intro .sec03__reason-accent {
  font-size: 35px !important;
}

.t2s-about__bridge {
  font-size: 19px !important;
}

.sec03__quote .mobile-break-line:nth-of-type(2),
.sec03__quote .mobile-break-line:nth-of-type(3) {
  white-space: nowrap !important;
}

@media (max-width: 880px) {
  .sec03__quote p {
    line-height: 1.76 !important;
  }

  .sec03__quote .mobile-break-line:nth-of-type(1) {
    font-size: 19px !important;
    margin-bottom: 6px !important;
    white-space: nowrap !important;
  }

  .sec03__quote .mobile-break-line:nth-of-type(2),
  .sec03__quote .mobile-break-line:nth-of-type(3) {
    font-size: 0.86em !important;
    letter-spacing: 0 !important;
  }

  .sec03__quote .mobile-break-line:nth-of-type(3) {
    font-size: 25px !important;
  }
}

/* 20260613: mobile fit for enlarged Section 03 copy */
@media (max-width: 880px) {
  .sec03__intro {
    overflow: hidden !important;
  }

  .sec03__intro .sec03__pain-line span,
  .sec03__intro .sec03__relief {
    font-size: 18px !important;
  }

  .sec03__intro .sec03__relief {
    font-size: 17px !important;
    white-space: normal !important;
  }

  .sec03__intro .sec03__reason {
    line-height: 1.72 !important;
  }

  .sec03__intro .sec03__reason span {
    font-size: 21px !important;
  }

  .sec03__intro .sec03__reason-accent {
    font-size: 26px !important;
  }

  .sec03__quote {
    overflow: hidden !important;
  }

  .sec03__quote p {
    line-height: 1.72 !important;
  }

  .sec03__quote .mobile-break-line:nth-of-type(2) {
    font-size: clamp(18px, calc((100vw - 48px) / 19), 20px) !important;
    white-space: nowrap !important;
  }

  .sec03__quote .mobile-break-line:nth-of-type(3) {
    font-size: clamp(20px, calc((100vw - 92px) / 15), 22px) !important;
    white-space: nowrap !important;
  }
}

.sec03__movie-message span:nth-of-type(3) {
  display: inline;
  background: linear-gradient(transparent 58%, rgba(255, 182, 203, 0.34) 0) !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 390px) {
  .sec03__intro {
    width: calc(100vw - 40px) !important;
    max-width: none !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    padding-inline: 14px !important;
  }

  .sec03__intro .sec03__relief {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .sec03__intro .sec03__reason {
    width: 100% !important;
    text-align: center !important;
  }

  .sec03__intro .sec03__reason span {
    font-size: 19px !important;
    width: 100% !important;
  }

  .sec03__intro .sec03__reason-accent {
    font-size: 24px !important;
  }
}

@media (max-width: 880px) {
  .sec03__movie-message span:nth-of-type(1) {
    white-space: nowrap !important;
    font-size: clamp(16px, calc((100vw - 98px) / 17), 24px) !important;
  }

  .sec03__movie-message span:nth-of-type(2) {
    white-space: nowrap !important;
    font-size: clamp(16px, calc((100vw - 86px) / 17), 24px) !important;
  }
}

@media (max-width: 430px) {
  .sec03__movie-frame {
    width: calc(100vw - 84px) !important;
    max-width: calc(100vw - 84px) !important;
    margin-inline: auto !important;
    overflow: hidden !important;
  }

  .sec03__movie-frame .media-slot,
  .sec03__movie-frame .youtube-fallback {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .sec04__stat--rise .sec04__stat-title {
    white-space: nowrap !important;
    font-size: clamp(22px, 6.1vw, 28px) !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 430px) {
  .sec03__movie-frame .media-slot,
  .sec03__movie-frame iframe,
  .sec03__movie-frame .youtube-fallback {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 430px) {
  .sec03__intro {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    margin-left: 50% !important;
    margin-right: 0 !important;
    transform: translateX(-50%) !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .sec03__intro .sec03__reason {
    width: 100% !important;
    text-align: center !important;
  }

  .sec03__intro .sec03__reason span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
    font-size: clamp(18px, 5vw, 20px) !important;
    letter-spacing: 0 !important;
  }

  .sec03__intro .sec03__reason-accent {
    display: inline !important;
    width: auto !important;
    font-size: clamp(23px, 6.4vw, 25px) !important;
  }
}
