:root {
  --ink: #26345c;
  --ink-soft: #536287;
  --blue: #6f9af4;
  --blue-deep: #436fcf;
  --blue-pale: #eaf2ff;
  --pink: #ff789f;
  --pink-deep: #df4e7d;
  --pink-pale: #fff0f5;
  --mint: #70c8bd;
  --yellow: #ffe58d;
  --white: #fff;
  --line: #ccd9f4;
  --shadow: 0 18px 50px rgba(49, 77, 139, .14);
  --radius: 26px;
  --content: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  background: repeating-linear-gradient(90deg, #f4f8ff 0 36px, #eaf2ff 36px 72px);
  overflow-x: hidden;
}

a {
  color: var(--blue-deep);
  text-underline-offset: .2em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 999;
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(111,154,244,.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--content);
  min-height: 72px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 45% 55%;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(145deg, var(--pink), #ffb1c7);
  transform: rotate(-4deg);
  box-shadow: 0 7px 18px rgba(223,78,125,.25);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 8px 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  border-radius: 999px;
}

.desktop-nav a:hover, .desktop-nav a:focus-visible {
  background: var(--blue-pale);
}

.nav-apply {
  color: #fff !important;
  background: var(--pink) !important;
  box-shadow: 0 6px 16px rgba(223,78,125,.25);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: var(--blue-pale);
  border-radius: 14px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 8px 18px 18px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-nav a {
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: var(--blue-pale);
  border-radius: 12px;
}

.page-shell {
  width: min(100% - 28px, var(--content));
  margin: 24px auto 110px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 34px;
}

.hero {
  position: relative;
  min-height: 630px;
  padding: 74px 7% 68px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  background: linear-gradient(145deg, #dfeaff 0%, #eef5ff 54%, #ffe4ed 100%);
}

.hero::before, .section-wave::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 16px;
  background: radial-gradient(circle at 12px 0, transparent 12px, #fff 13px) 0 0/24px 16px repeat-x;
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border: 46px solid rgba(255,255,255,.42);
  border-radius: 50%;
}

.hero-copy, .hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  padding: 6px 13px;
  color: var(--blue-deep);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.28;
  letter-spacing: -.04em;
}

.marker {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
}

.hero-lead {
  max-width: 41rem;
  margin: 22px 0 0;
  font-size: 1.08rem;
  font-weight: 650;
}

.hero-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 750;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
}

.hero-fact {
  padding: 14px 8px;
  text-align: center;
  background: rgba(255,255,255,.88);
  border: 1px solid #fff;
  border-radius: 18px;
}

.hero-fact strong {
  display: block;
  color: var(--pink-deep);
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-fact span {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-row--center {
  justify-content: center;
}

.button {
  min-height: 52px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 9px 22px rgba(223,78,125,.26);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(223,78,125,.32);
}

.button--blue {
  background: var(--blue-deep);
  box-shadow: 0 9px 22px rgba(67,111,207,.24);
}

.button--ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-card {
  position: relative;
  padding: 14px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(49,77,139,.2);
  transform: rotate(2deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4/4.3;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

@media (max-width: 600px) {
  .hero-card img {
    aspect-ratio: 4/3;
  }
}

.hero-sticker {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: 142px;
  padding: 13px 12px;
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.5;
  background: var(--blue-deep);
  border: 4px solid #fff;
  border-radius: 50%;
  transform: rotate(-7deg);
}

.breadcrumb {
  padding: 16px 6%;
  color: var(--ink-soft);
  font-size: .82rem;
  background: #fff;
  border-bottom: 1px dashed var(--line);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #9badd5;
}

.breadcrumb a {
  color: inherit;
}

.article-hero {
  position: relative;
  padding: 64px 7% 54px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 44px;
  align-items: center;
  background: linear-gradient(155deg, #edf4ff, #fff0f6);
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.article-hero p {
  margin: 20px 0 0;
  font-size: 1.06rem;
  font-weight: 600;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 12px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.section {
  position: relative;
  padding: 74px 7%;
}

.section--blue {
  background: var(--blue-pale);
}

.section--pink {
  background: var(--pink-pale);
}

.section--ink {
  color: #fff;
  background: var(--ink);
}

.section--ink .section-kicker, .section--ink .section-lead {
  color: #dbe6ff;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}

.section-lead {
  margin: 13px auto 0;
  color: var(--ink-soft);
}

.section h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.55;
}

.section p {
  margin: 0 0 1em;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.copy-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(49,77,139,.08);
}

.copy-card--pink {
  background: var(--pink-pale);
  border-color: #ffd0df;
}

.copy-card--blue {
  background: var(--blue-pale);
}

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

.card {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(49,77,139,.08);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--blue-pale);
  border-radius: 18px;
}

.card:nth-child(2n) .card-icon {
  background: var(--pink-pale);
}

.card p:last-child {
  margin-bottom: 0;
}

.decision-card {
  display: flex;
  flex-direction: column;
}

.decision-card .card-link, .decision-card .card-link-row {
  margin-top: auto;
  padding-top: 12px;
}

.card-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 850;
}

.card-link::after {
  content: "→";
}

.card-link:hover, .card-link:focus-visible {
  text-decoration: underline;
}

.big-number {
  display: block;
  margin-bottom: 7px;
  color: var(--pink-deep);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}

.data-source {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: .8rem;
  text-align: center;
}

.data-bars {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 13px;
}

.data-bar {
  padding: 17px 19px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(49,77,139,.06);
}

.data-bar__head {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.data-bar__head strong {
  font-size: 1rem;
}

.data-bar__head span {
  flex: 0 0 auto;
  color: var(--pink-deep);
  font-weight: 900;
}

.data-bar__track {
  height: 12px;
  overflow: hidden;
  background: #e8efff;
  border-radius: 999px;
}

.data-bar__track span {
  width: var(--bar);
  min-width: 10px;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  border-radius: inherit;
}

.data-message {
  margin-top: 30px;
  padding: 26px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 22px;
}

.data-message p:last-of-type {
  margin-bottom: 0;
}

.quick-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.quick-check li {
  position: relative;
  padding: 15px 16px 15px 48px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quick-check li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mint);
  border-radius: 50%;
}

.note {
  padding: 18px 20px;
  color: #43320a;
  background: #fff8d8;
  border-left: 5px solid #efc541;
  border-radius: 12px;
}

.note--risk {
  color: #5b2440;
  background: #fff0f5;
  border-color: var(--pink);
}

.speech {
  position: relative;
  margin: 24px 0;
  padding: 24px 26px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 22px;
}

.speech::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -14px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  transform: rotate(45deg);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}

.tag {
  padding: 7px 12px;
  color: var(--blue-deep);
  font-size: .86rem;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 590px;
}

th, td {
  padding: 15px 17px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  width: 31%;
  color: var(--ink);
  background: #eef4ff;
  font-weight: 800;
}

tr:last-child th, tr:last-child td {
  border-bottom: 0;
}

.mini-table {
  min-width: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 26px 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 36px;
  z-index: 2;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.faq summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  list-style: none;
  font-weight: 800;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
}

.faq[open] summary::after {
  content: "−";
  background: var(--pink);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.link-card {
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s, border-color .2s;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.link-card small {
  display: block;
  color: var(--ink-soft);
  font-weight: 500;
}

.form-shell {
  max-width: 780px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label, .field legend {
  font-weight: 800;
}

.required {
  margin-left: 5px;
  padding: 2px 6px;
  color: #fff;
  font-size: .72rem;
  background: var(--pink-deep);
  border-radius: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 13px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(111,154,244,.23);
  border-color: var(--blue);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: .8rem;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-field input {
  width: 22px;
  height: 22px;
  margin-top: 5px;
  accent-color: var(--pink);
}

.checkbox-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.choice-card:hover {
  border-color: var(--pink);
}

.choice-card:has(input:checked) {
  border-color: var(--pink-deep);
  background: #fff4f8;
  box-shadow: 0 0 0 2px rgba(255,111,157,.12);
}

.field .choice-card input {
  width: 22px;
  min-height: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  accent-color: var(--pink-deep);
  flex: 0 0 auto;
}

.field .choice-card input:focus-visible {
  outline: 3px solid rgba(32,96,255,.25);
  outline-offset: 3px;
}

.choice-card span {
  font-weight: 700;
}

.field-error {
  min-height: 1.25em;
  margin: 0;
  color: #b62254;
  font-size: .82rem;
  font-weight: 800;
}

.checkbox-group.is-invalid .choice-card {
  border-color: #b62254;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  min-height: 30px;
  margin-top: 14px;
  font-weight: 800;
}

.form-status.is-error {
  color: #b62254;
}

.form-status.is-success {
  color: #176d62;
}

.cta-band {
  padding: 55px 7%;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-deep), #7f68d8);
  color: #fff;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.cta-band p {
  max-width: 650px;
  margin: 12px auto 22px;
  color: #ecf2ff;
}

.cta-band .button--ghost {
  color: var(--blue-deep);
}

.site-footer {
  padding: 46px 7% 100px;
  color: #dce6ff;
  background: #202e52;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  max-width: var(--content);
  margin: auto;
}

.site-footer h2, .site-footer h3 {
  color: #fff;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.copyright {
  max-width: var(--content);
  margin: 34px auto 0;
  padding-top: 20px;
  font-size: .78rem;
  border-top: 1px solid rgba(255,255,255,.16);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button, .link-card {
    transition: none;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .page-shell {
    width: min(100% - 16px, 720px);
    margin-top: 10px;
    border-radius: 24px;
  }

  .hero, .article-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 52px 7% 58px;
  }

  .hero-media {
    max-width: 540px;
    margin: auto;
  }

  .hero-card {
    transform: rotate(1deg);
  }

  .article-hero {
    padding-top: 44px;
  }

  .article-hero img {
    max-height: 370px;
  }

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

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

  .step:nth-child(2)::after {
    display: none;
  }

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

@media (max-width: 600px) {
  body {
    font-size: 16px;
    background: #edf4ff;
  }

  .header-inner {
    min-height: 64px;
    padding: 0 14px;
  }

  .brand {
    font-size: .88rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .page-shell {
    width: 100%;
    margin: 0 0 86px;
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    padding: 40px 20px 48px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-card {
    padding: 9px;
    border-radius: 22px;
  }

  .hero-card img {
    border-radius: 16px;
  }

  .hero-sticker {
    left: -8px;
    bottom: 18px;
    width: 120px;
    font-size: .76rem;
  }

  .hero-facts {
    gap: 6px;
  }

  .hero-fact {
    padding: 11px 4px;
    border-radius: 13px;
  }

  .hero-fact strong {
    font-size: 1rem;
  }

  .hero-fact span {
    font-size: .69rem;
  }

  .article-hero {
    padding: 36px 20px 42px;
    gap: 24px;
  }

  .article-hero h1 {
    font-size: 2rem;
  }

  .article-hero img {
    border-width: 8px;
    border-radius: 22px;
  }

  .section {
    padding: 58px 20px;
  }

  .section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .section h2 {
    font-size: 1.72rem;
  }

  .two-col, .cards, .link-grid, .form-grid, .choice-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 13px;
  }

  .card, .copy-card {
    padding: 22px 19px;
    border-radius: 20px;
  }

  .data-bar {
    padding: 15px 16px;
  }

  .data-bar__head {
    align-items: flex-start;
  }

  .data-bar__head span {
    font-size: .9rem;
  }

  .data-message {
    padding: 22px 19px;
  }

  .quick-check {
    grid-template-columns: 1fr;
  }

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

  .step:not(:last-child)::after {
    content: "↓";
    display: block;
    right: auto;
    left: 28px;
    top: auto;
    bottom: -20px;
  }

  .table-wrap {
    margin-inline: -4px;
  }

  th, td {
    padding: 13px 12px;
  }

  .button-row .button {
    width: 100%;
  }

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

  .site-footer {
    padding-inline: 20px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 100;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(34,50,94,.12);
  }

  .mobile-cta a {
    min-height: 48px;
    padding: 10px 8px;
    font-size: .88rem;
  }
}

/* =========================================================
   Apply page: "質問だけ" / "応募・面接相談" mode selector
   ========================================================= */

.intent-picker {
  margin: 0;
  padding: 0;
  border: 0;
}

.intent-picker > legend {
  margin-bottom: 12px;
}

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

.intent-card {
  position: relative;
  display: flex;
  gap: 12px;
  min-height: 132px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.intent-card:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.intent-card:has(input:checked) {
  border-color: var(--pink-deep);
  background: #fff7fa;
  box-shadow: 0 0 0 3px rgba(223,78,125,.10);
}

.intent-card input {
  width: 22px;
  height: 22px;
  margin: 3px 0 0;
  flex: 0 0 auto;
  accent-color: var(--pink-deep);
}

.intent-card input:focus-visible {
  outline: 3px solid rgba(67,111,207,.25);
  outline-offset: 3px;
}

.intent-card__body {
  display: grid;
  gap: 5px;
}

.intent-card__body strong {
  font-size: 1.05rem;
  line-height: 1.45;
}

.intent-card__body small {
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.7;
}

.mode-explainer {
  padding: 15px 17px;
  color: #285a54;
  background: #effbf8;
  border: 1px solid #bfe8e1;
  border-radius: 15px;
}

.mode-explainer strong,
.mode-explainer span {
  display: block;
}

.mode-explainer span {
  margin-top: 2px;
  color: #47716c;
  font-size: .88rem;
}

.application-panel {
  padding: 24px;
  background: #f7f9ff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.application-panel__head {
  margin-bottom: 20px;
}

.application-panel__head h3 {
  margin: 0 0 8px;
}

.application-panel__head p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

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

.application-fields .field--full {
  grid-column: 1 / -1;
}

[data-application-fields][hidden],
[data-message-optional][hidden],
[data-message-required][hidden] {
  display: none !important;
}

.form-status:empty {
  min-height: 0;
  margin-top: 0;
}

.form-status.is-success,
.form-status.is-error {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 12px;
}

.form-status.is-success {
  background: #eefaf7;
  border: 1px solid #bde5db;
}

.form-status.is-error {
  background: #fff2f6;
  border: 1px solid #f3bfd0;
}

@media (max-width: 600px) {
  .intent-grid,
  .application-fields {
    grid-template-columns: 1fr;
  }

  .intent-card {
    min-height: 0;
    padding: 16px;
  }

  .application-panel {
    padding: 20px 16px;
    margin-inline: -2px;
  }
}

/* =========================================================
   Site-wide CTA / related links / footer navigation
   ========================================================= */

.related-section .section-head {
  max-width: 760px;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 22px;
}

.related-card strong {
  display: block;
  line-height: 1.55;
}

.related-card small {
  margin-top: 7px;
  line-height: 1.65;
}

.related-card small::after {
  content: " →";
  color: var(--blue-deep);
  font-weight: 800;
}

.decision-cta .button-row {
  justify-content: center;
}

.cta-sub-link {
  margin: 17px 0 0 !important;
  font-size: .9rem;
}

.cta-sub-link a {
  color: #fff;
  font-weight: 750;
  text-underline-offset: .22em;
}

.cta-sub-link a:hover,
.cta-sub-link a:focus-visible {
  text-decoration-thickness: 2px;
}

.footer-grid--expanded {
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
}

.footer-brand > a {
  display: inline-block;
  margin-top: 5px;
  font-weight: 750;
}

@media (max-width: 860px) {
  .footer-grid--expanded {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .related-grid,
  .footer-grid--expanded {
    grid-template-columns: 1fr;
  }

  .related-card {
    min-height: 0;
  }

  .decision-cta {
    padding-inline: 20px;
  }

  .mobile-cta {
    grid-template-columns: .85fr 1.15fr;
  }

  .mobile-cta a {
    font-size: .84rem;
  }
}

/* =========================================================
   fuzoku-joshi-kyujin: visual summary / skimmable sections
   ========================================================= */
.quick-check--compact {
  margin-bottom: 0;
}

.summary-visual-card {
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(49,77,139,.08);
}

.summary-visual-card img {
  width: 100%;
  border-radius: 18px;
}

.jump-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.jump-chip {
  text-decoration: none;
}

.fit-grid {
  align-items: stretch;
}

.simple-list {
  margin: 0;
  padding-left: 1.1em;
}

.simple-list li + li {
  margin-top: .55em;
}

@media (max-width: 600px) {
  .summary-visual-card {
    padding: 10px;
    border-radius: 20px;
  }

  .jump-chip-grid {
    justify-content: flex-start;
  }
}

/* =========================================================
   high-income-women-job: numbers-first visual salary board
   ========================================================= */
.high-income-hero strong {
  color: var(--pink-deep);
}

.income-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.income-board__item {
  position: relative;
  min-height: 210px;
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(49,77,139,.08);
}

.income-board__item--main {
  border-color: #ffc0d3;
  background: linear-gradient(160deg, #fff 0%, #fff2f7 100%);
  transform: translateY(-7px);
}

.income-board__count {
  margin-bottom: 7px;
  padding: 4px 13px;
  color: var(--blue-deep);
  font-size: .9rem;
  font-weight: 900;
  background: var(--blue-pale);
  border-radius: 999px;
}

.income-board__item strong {
  color: var(--pink-deep);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.income-board__item small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 700;
}

.income-addons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.income-addons > div {
  min-height: 68px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.income-addons span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 900;
  background: var(--pink);
  border-radius: 50%;
}

.income-addons strong {
  font-size: .92rem;
  line-height: 1.4;
}

.income-caution {
  margin-top: 18px;
  padding: 16px 18px;
  color: #5b2440;
  font-size: .86rem;
  font-weight: 700;
  background: #fff;
  border-left: 5px solid var(--pink);
  border-radius: 12px;
}

@media (max-width: 600px) {
  .income-board {
    grid-template-columns: 1fr;
  }

  .income-board__item,
  .income-board__item--main {
    min-height: 0;
    padding: 20px 16px;
    transform: none;
  }

  .income-addons {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   profitable-fuzoku-job: decision guide / original data
   ========================================================= */
.freshness-note {
  margin: 14px 0 0 !important;
  padding: 8px 12px;
  display: inline-block;
  color: var(--ink-soft);
  font-size: .78rem !important;
  font-weight: 750 !important;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(111,154,244,.28);
  border-radius: 10px;
}

.profit-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profit-check-card {
  position: relative;
  min-height: 210px;
  padding: 28px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(49,77,139,.07);
}

.profit-check-card__no {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(145deg, var(--blue-deep), var(--pink));
  border-radius: 14px;
}

.profit-check-card h3 {
  margin-bottom: 8px;
}

.profit-check-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.profit-formula {
  margin-top: 22px;
  padding: 18px 20px;
  text-align: center;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
}

.profit-formula strong,
.profit-formula span {
  display: block;
}

.profit-formula span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .86rem;
}

.profit-answer-list {
  display: grid;
  gap: 14px;
}

.profit-answer {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(49,77,139,.06);
}

.profit-answer__label {
  padding: 8px 12px;
  color: var(--blue-deep);
  text-align: center;
  font-size: .86rem;
  font-weight: 900;
  background: var(--blue-pale);
  border-radius: 999px;
}

.profit-answer h3 {
  margin-bottom: 7px;
}

.profit-answer p {
  margin-bottom: 8px;
}

.profit-data-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: center;
}

.current-facts {
  max-width: 820px;
  margin-inline: auto;
}

.interview-checklist {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(49,77,139,.06);
}

.interview-checklist ol {
  margin: 0;
  padding-left: 1.4em;
}

.interview-checklist li {
  padding: 10px 0 10px 4px;
  font-weight: 700;
  border-bottom: 1px dashed var(--line);
}

.interview-checklist li:last-child {
  border-bottom: 0;
}

@media (max-width: 860px) {
  .profit-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profit-data-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .profit-check-grid {
    grid-template-columns: 1fr;
  }

  .profit-check-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .profit-answer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .profit-answer__label {
    width: fit-content;
  }

  .interview-checklist {
    padding: 20px 17px;
  }
}

/* =========================================================
   night-work-women: broad night-work comparison / decision UX
   ========================================================= */
.night-freshness {
  margin: 14px 0 0 !important;
  padding: 8px 12px;
  display: inline-block;
  color: var(--ink-soft);
  font-size: .78rem !important;
  font-weight: 750 !important;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(111,154,244,.28);
  border-radius: 10px;
}

.night-decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.night-decision-card {
  min-height: 210px;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 9px 25px rgba(49,77,139,.07);
}

.night-decision-card__no {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(145deg, var(--blue-deep), var(--pink));
  border-radius: 13px;
}

.night-decision-card h3 { margin-bottom: 8px; }
.night-decision-card p { margin-bottom: 0; color: var(--ink-soft); }

.night-compare-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(49,77,139,.06);
}

.night-compare-table {
  min-width: 760px;
}

.night-compare-table th,
.night-compare-table td {
  width: auto;
  padding: 16px 15px;
  vertical-align: top;
}

.night-compare-table thead th {
  text-align: center;
  background: #eef4ff;
}

.night-compare-table tbody th {
  width: 150px;
  white-space: nowrap;
}

.night-compare-table td:last-child {
  background: #fff7fa;
}

.night-compare-note {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: .82rem;
}

.night-fit-grid {
  align-items: stretch;
}

.night-truth-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(49,77,139,.06);
}

.night-truth-card--pink {
  background: var(--pink-pale);
  border-color: #ffd0df;
}

.night-truth-card h3 { margin-bottom: 12px; }

.night-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  max-width: 820px;
  margin-inline: auto;
}

.night-data-card {
  padding: 28px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 9px 25px rgba(49,77,139,.06);
}

.night-data-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--pink-deep);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.night-data-card span {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.night-data-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

@media (max-width: 860px) {
  .night-decision-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 600px) {
  .night-decision-grid,
  .night-data-grid { grid-template-columns: 1fr; }
  .night-decision-card { min-height: 0; padding: 20px 18px; }
  .night-truth-card { padding: 22px 18px; }
  .night-compare-wrap { margin-inline: -4px; }
}


/* =========================================================
   delivery-health-job: skimmable work flow / decision support
   ========================================================= */
.delivery-hero .hero-facts {
  margin-bottom: 18px;
}

.delivery-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.delivery-flow__item {
  position: relative;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(49,77,139,.07);
}

.delivery-flow__item > span {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--blue-deep);
  border-radius: 50%;
}

.delivery-flow__item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.delivery-flow__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.75;
}

.delivery-flow__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 28px;
  z-index: 3;
  color: var(--pink-deep);
  font-size: 1.35rem;
  font-weight: 900;
}

.delivery-checks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-boundaries {
  align-items: stretch;
}

@media (max-width: 860px) {
  .delivery-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-flow__item::after {
    display: none;
  }

  .delivery-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .delivery-flow,
  .delivery-checks {
    grid-template-columns: 1fr;
  }

  .delivery-flow__item {
    padding: 19px 17px;
  }
}
