:root {
  --forest: #082b5c;
  --forest-deep: #06234b;
  --sage: #f2f7fd;
  --sage-strong: #e4f1fb;
  --cream: #fff;
  --paper: #fff;
  --gold: #0878dd;
  --gold-pale: #9edcff;
  --cta: #ff4b24;
  --ink: #0b2853;
  --muted: #4f6178;
  --line: #cfdbea;
  --white: #fff;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p {
  overflow-wrap: break-word;
  word-break: auto-phrase;
  line-break: strict;
}
p { text-wrap: pretty; }
.nowrap { display: inline-block; }
.phrase-nowrap { display: inline; }
.heading-line { display: block; }
.section-inner, .header-inner, .footer-inner {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 72px;
  border-bottom: 1px solid rgba(24, 32, 29, .08);
  background: rgba(251, 250, 246, .96);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; height: 100%; gap: 30px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong { color: var(--forest); font-size: 23px; font-weight: 900; letter-spacing: -.04em; }
nav { display: flex; gap: 28px; margin-left: auto; font-size: 12px; font-weight: 700; }
.header-cta {
  display: grid;
  place-items: center;
  min-width: 132px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 790px;
  color: var(--white);
  background-color: var(--forest-deep);
  background-image: url("assets/hero-network-v8.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 35, 75, .42) 0%, rgba(6, 35, 75, .24) 38%, rgba(6, 35, 75, .04) 66%, rgba(6, 35, 75, 0) 78%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 86px 0 72px;
}
.eyebrow, .kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.eyebrow {
  color: var(--gold-pale);
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1.6;
  letter-spacing: .1em;
}
h1 {
  max-width: 620px;
  margin: 27px 0 0;
  font-size: clamp(40px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -.05em;
}
h1 span, h1 em { display: block; white-space: nowrap; }
h1 em { color: var(--gold-pale); font-style: normal; }
.hero-tagline {
  margin: 30px 0 0;
  font-size: 25px;
  font-weight: 800;
}
.hero-description {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 2;
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 690px);
  margin-top: 26px;
  border-top: 1px solid rgba(158, 220, 255, .45);
  border-bottom: 1px solid rgba(158, 220, 255, .45);
}
.hero-facts p {
  margin: 0;
  padding: 16px 24px 16px 0;
}
.hero-facts p + p {
  padding-left: 28px;
  border-left: 1px solid rgba(158, 220, 255, .5);
}
.hero-facts i {
  float: left;
  margin: 8px 13px 0 0;
  color: var(--gold-pale);
  font-size: 18px;
}
.hero-facts span, .hero-facts small { display: block; }
.hero-facts span {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}
.hero-facts strong { color: var(--gold-pale); font-size: 24px; font-weight: 900; }
.hero-facts small { color: rgba(255,255,255,.72); font-size: 9px; font-weight: 700; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-1px); filter: brightness(.98); }
.button-primary { color: var(--white); background: var(--cta); }
.button span { margin-left: 32px; font-size: 18px; }
.hero-cta { min-width: 360px; margin-top: 26px; font-size: 16px; }
.hero-note { margin: 10px 0 0 8px; color: rgba(255,255,255,.65); font-size: 9px; }

.chapter { padding: 108px 0; }
.chapter-light { background: var(--sage); }
.chapter-dark { color: var(--white); background: var(--forest); }
.chapter-heading { max-width: 820px; }
.scenes .chapter-heading { max-width: 1040px; }
.chapter-heading-center { margin-inline: auto; text-align: center; }
.chapter-number {
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.chapter-number-gold { color: var(--forest-deep); background: var(--gold); }
.kicker { color: var(--forest); }
.kicker-gold { color: var(--gold-pale); }
h2 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(35px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.chapter-heading > p:last-child, .scope-heading > p:last-child {
  max-width: 810px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 15px;
  text-wrap: balance;
}
.chapter-heading > h2:first-child,
.scope-heading > h2:first-child,
.network-heading > h2:first-child,
.price-panel > div:first-child > h2:first-child,
.faq-grid > div:first-child > h2:first-child,
.application-content > h2:first-child {
  margin-top: 0;
}
.chapter-heading-dark h2 { color: var(--white); }
.chapter-heading-dark > p:last-child { color: rgba(255,255,255,.7); }

.quiet-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.quiet-cards article {
  min-height: 260px;
  padding: 34px 30px;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
}
.quiet-cards span { color: var(--gold); font-size: 11px; font-weight: 900; }
.quiet-cards h3 { margin: 18px 0 0; font-size: 19px; line-height: 1.6; }
.quiet-cards h3 .phrase-nowrap {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.quiet-cards p { margin: 13px 0 0; color: var(--muted); font-size: 12px; }

.service-map {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.service-map > div { padding: 34px 24px; text-align: center; }
.service-map i { color: var(--gold); text-align: center; font-size: 22px; }
.service-map small, .service-map strong, .service-map span { display: block; }
.service-map small { color: var(--gold-pale); font-size: 10px; font-weight: 800; }
.service-map strong { margin-top: 7px; font-size: 23px; }
.service-map span { margin-top: 7px; color: rgba(255,255,255,.62); font-size: 10px; }
.service-map-center { background: rgba(255,255,255,.07); }
.direct-line {
  margin: 0;
  padding: 16px;
  color: var(--forest-deep);
  background: var(--gold);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.direct-line i { margin-right: 8px; }
.service-overview-figure {
  width: min(100%, 1040px);
  margin: 60px auto 0;
}
.service-overview-figure img {
  border: 1px solid rgba(158,220,255,.5);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(1,17,43,.26);
}
.service-overview-figure figcaption {
  margin-top: 14px;
  color: rgba(255,255,255,.62);
  text-align: center;
  font-size: 10px;
}
.service-list { margin-top: 72px; border-top: 1px solid rgba(255,255,255,.2); }
.service-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.service-list article > span { color: var(--gold); font-size: 35px; font-weight: 600; }
.service-list h3 { margin: 0; color: var(--white); font-size: 24px; }
.service-list p { max-width: 750px; margin: 10px 0 0; color: rgba(255,255,255,.66); font-size: 13px; }
.service-fee { margin-top: 78px; padding-top: 54px; border-top: 1px solid rgba(255,255,255,.28); scroll-margin-top: 90px; }
.service-fee > h3 { margin: 0; font-size: 30px; }
.service-fee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 52px;
  margin-top: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.service-fee-copy h4 { margin: 0; color: var(--white); font-size: 24px; }
.service-fee-copy p { margin: 10px 0 0; color: rgba(255,255,255,.66); font-size: 13px; }
.service-fee .price-amount { min-width: 230px; }
.included { margin-top: 54px; }
.included h3 { margin: 0; font-size: 30px; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.2); }
.included-grid p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.included-grid p:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
.included-grid i { width: 30px; color: var(--gold-pale); font-size: 24px; text-align: center; }
.included-grid span { color: rgba(255,255,255,.8); font-size: 13px; }
.included-grid strong { color: var(--white); font-size: 18px; }

.engineer-network {
  padding: 104px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f9fe 100%);
}
.network-heading { max-width: 900px; }
.network-heading > p {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.engineer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.engineer-cards article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 34px;
  border: 1px solid #d9e4f1;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(8,43,92,.07);
}
.engineer-avatar {
  width: 72px;
  height: 72px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #eaf5ff;
  box-shadow: 0 6px 18px rgba(8,43,92,.14);
  object-fit: cover;
}
.engineer-label {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.engineer-profile h3 { margin: 8px 0 0; font-size: 20px; line-height: 1.55; }
.engineer-profile > p:last-of-type { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.engineer-profile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.engineer-profile li {
  padding: 5px 10px;
  border-radius: 999px;
  color: #185990;
  background: #eaf5ff;
  font-size: 10px;
  font-weight: 700;
}
.network-note { margin: 18px 0 0; color: #728095; font-size: 10px; }

.scenes { background: var(--cream); }
.scene-row {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 70px;
  margin-top: 70px;
}
.scene-row + .scene-row { margin-top: 100px; }
.scene-row img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}
.scene-row > div > span { color: var(--gold); font-size: 12px; font-weight: 900; }
.scene-row h3 { margin: 16px 0 0; font-size: 29px; line-height: 1.55; text-wrap: balance; }
.scene-row h3 span { display: inline-block; }
.scene-row p { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.scene-row ul { margin: 22px 0 0; padding: 0; list-style: none; }
.scene-row li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.scene-row li::before { margin-right: 10px; color: var(--gold); content: "✓"; }
.scope { padding: 94px 0; background: var(--sage); }
.scope-heading { max-width: 780px; }
.scope-heading h2 { word-break: keep-all; text-wrap: balance; }
.scope-heading > p:last-child { max-width: 940px; }
.scope-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 55px; }
.scope-columns > div { padding-top: 24px; border-top: 1px solid #afbed0; }
.scope-columns h3 { margin: 0; font-size: 20px; }
.scope-columns h3 i { margin-right: 8px; color: var(--forest); }
.scope-columns ul { margin: 20px 0 0; padding: 0; list-style: none; }
.scope-columns li { padding: 10px 0; border-bottom: 1px solid rgba(8,43,92,.14); color: var(--muted); font-size: 12px; }
.scope-cta { display: flex; justify-content: center; margin-top: 52px; }
.scope-cta .button { width: min(100%, 380px); }

.price-amount { text-align: center; }
.price-amount small, .price-amount em, .price-amount span { display: block; }
.price-amount small { font-size: 11px; }
.price-amount strong { color: var(--gold-pale); font-size: 76px; line-height: 1; }
.price-amount b { color: var(--gold-pale); font-size: 24px; }
.price-amount em { color: rgba(255,255,255,.7); font-size: 10px; font-style: normal; }
.price-amount span { margin-top: 10px; font-size: 11px; }
.button-gold { color: var(--white); background: var(--cta); }

.flow { padding: 96px 0; background: var(--paper); }
.flow-visual { margin: 48px 0 0; }
.flow-image-scroll { overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; }
.flow-image-scroll img { min-width: 900px; border-radius: 8px; }
.flow-visual figcaption { margin-top: 12px; color: var(--muted); text-align: center; font-size: 10px; }

.faq { padding: 96px 0; background: var(--sage); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-grid h2 { font-size: 38px; }
.faq-list { border-top: 1px solid #afbed0; }
.faq-list details { border-bottom: 1px solid #afbed0; }
.faq-list summary { padding: 22px 36px 22px 0; cursor: pointer; font-size: 13px; font-weight: 800; }
.faq-list p { margin: 0; padding: 0 28px 22px 0; color: var(--muted); font-size: 11px; }

.application { padding: 104px 0; background: var(--paper); }
.application-content { width: min(calc(100% - 48px), 640px); margin-inline: auto; }
.application-content h2 { font-size: 38px; }
.application-content > p:not(.kicker) { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8,43,92,.06);
}
.field, .field:first-child, .field:nth-child(4) { grid-column: 1; }
.field label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 10px; font-weight: 800; }
.field label em { color: #a76731; font-size: 8px; font-style: normal; }
.field input { width: 100%; height: 52px; padding: 0 13px; border: 1px solid var(--line); border-radius: 2px; outline: none; background: var(--white); }
.field input:focus { border-color: var(--forest); box-shadow: 0 0 0 2px rgba(8,43,92,.08); }
.field input.field-error, .consent input.field-error { outline: 2px solid #b95d45; }
.consent { display: flex; grid-column: 1 / -1; gap: 8px; color: var(--muted); font-size: 9px; cursor: pointer; }
.consent input { width: 15px; height: 15px; margin: 2px 0 0; }
.consent a { text-decoration: underline; }
.submit { grid-column: 1 / -1; width: 100%; }
.submit:disabled { cursor: wait; opacity: .7; }
.form-note, .form-status { grid-column: 1 / -1; margin: 0; color: var(--muted); text-align: center; font-size: 9px; }
.form-status.error { color: #a74432; }
.form-status.success { color: #14704a; }
.trap { position: absolute !important; overflow: hidden; width: 1px; height: 1px; clip: rect(0,0,0,0); white-space: nowrap; }

footer { padding: 32px 0; border-top: 1px solid var(--line); background: var(--cream); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; }
footer .brand img { width: 34px; height: 34px; }
footer .brand strong { font-size: 19px; }
.footer-inner > div { display: flex; justify-content: center; gap: 20px; font-size: 9px; }
.footer-inner > p { margin: 0; color: var(--muted); font-size: 9px; }
@media (max-width: 980px) {
  nav { display: none; }
  .hero { min-height: 760px; background-position: center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(6,35,75,.2), rgba(6,35,75,.08) 58%, rgba(6,35,75,0)); }
  .quiet-cards { grid-template-columns: 1fr; }
  .quiet-cards article { min-height: 0; }
  .scene-row { gap: 36px; }
  .price-panel { grid-template-columns: 1fr; text-align: center; }
  .application-content { max-width: 640px; }
}

@media (min-width: 701px) and (max-height: 860px) {
  .hero { min-height: calc(100svh - 72px); }
  .hero-inner { padding: 34px 0 26px; }
  h1 { margin-top: 16px; font-size: clamp(36px, 3.15vw, 46px); line-height: 1.25; }
  .hero-tagline { margin-top: 18px; font-size: 21px; }
  .hero-description { margin-top: 8px; line-height: 1.7; }
  .hero-facts { margin-top: 15px; }
  .hero-facts p { padding-top: 10px; padding-bottom: 10px; }
  .hero-cta { min-height: 56px; margin-top: 14px; }
  .hero-note { margin-top: 6px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 56px; }
  body { padding-bottom: 0; font-size: 14px; }
  .section-inner, .header-inner, .footer-inner, .hero-inner { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 56px; }
  .header-inner { gap: 10px; }
  .brand { gap: 7px; }
  .brand img { width: 30px; height: 30px; }
  .brand strong { font-size: 18px; }
  .header-cta { margin-left: auto; min-width: 124px; height: 36px; font-size: 10px; white-space: nowrap; }
  .hero {
    min-height: calc(100svh - 56px);
    background-position: 70% top;
    background-size: 650px auto;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6,35,75,.08) 0%, rgba(6,35,75,.16) 34%, rgba(6,35,75,.78) 68%, rgba(6,35,75,.98) 100%),
      linear-gradient(90deg, rgba(6,35,75,.42) 0%, rgba(6,35,75,.18) 72%, rgba(6,35,75,.06) 100%);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - 56px);
    padding: 88px 0 24px;
  }
  .eyebrow { max-width: 310px; font-size: 10px; line-height: 1.6; }
  h1 { max-width: 100%; margin-top: 12px; font-size: 27px; line-height: 1.34; }
  .hero-tagline { max-width: 330px; margin-top: 14px; font-size: 15px; }
  .hero-description { margin-top: 8px; font-size: 10px; line-height: 1.65; }
  .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 15px; }
  .hero-facts p { min-width: 0; padding: 10px 8px 10px 0; }
  .hero-facts p + p { padding-left: 8px; }
  .hero-facts i { display: none; }
  .hero-facts span { font-size: 8px; }
  .hero-facts strong { font-size: 15px; }
  .hero-facts small { font-size: 6px; line-height: 1.45; }
  .hero-cta { width: 100%; min-width: 0; min-height: 52px; margin-top: 12px; font-size: 13px; }
  .hero-note { display: none; }
  .chapter { padding: 56px 0; }
  .chapter-number { margin-bottom: 13px; }
  .phrase-nowrap { display: inline-block; }
  h2 { margin-top: 14px; font-size: 28px; line-height: 1.45; }
  .chapter-heading > p:last-child, .scope-heading > p:last-child { margin-top: 14px; font-size: 11px; }
  .quiet-cards { gap: 10px; margin-top: 26px; }
  .quiet-cards article { padding: 22px 20px; }
  .quiet-cards h3 { font-size: 16px; }
  .service-map {
    grid-template-columns: 1fr;
    margin-top: 38px;
    border: 0;
  }
  .service-map > div { padding: 22px 18px; border-top: 1px solid rgba(255,255,255,.2); }
  .service-map i { transform: rotate(90deg); font-size: 17px; }
  .service-map > div:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
  .direct-line { margin-top: 0; font-size: 10px; }
  .service-overview-figure { margin-top: 28px; }
  .service-overview-figure img { border-radius: 5px; }
  .service-overview-figure figcaption { text-align: left; font-size: 9px; line-height: 1.65; }
  .service-list { margin-top: 40px; }
  .service-list article { grid-template-columns: 42px 1fr; padding: 22px 0; }
  .service-list article > span { font-size: 22px; }
  .service-list h3 { font-size: 17px; }
  .service-list p { font-size: 11px; }
  .service-fee { margin-top: 42px; padding-top: 32px; }
  .service-fee > h3 { font-size: 21px; }
  .service-fee-row { grid-template-columns: 1fr; gap: 22px; margin-top: 20px; padding: 22px 0; }
  .service-fee-copy h4 { font-size: 18px; }
  .service-fee-copy p { font-size: 11px; }
  .service-fee .price-amount { min-width: 0; text-align: left; }
  .included { margin-top: 38px; }
  .included h3 { font-size: 21px; }
  .included-grid { grid-template-columns: 1fr; }
  .included-grid p:nth-child(odd) { border-right: 0; }
  .included-grid p { padding: 18px 10px; }
  .included-grid strong { font-size: 15px; }
  .engineer-network { padding: 58px 0; }
  .network-heading h2 span { display: block; }
  .network-heading > p { margin-top: 14px; font-size: 11px; }
  .engineer-cards { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .engineer-cards article { grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 18px; border-radius: 12px; }
  .engineer-avatar { width: 50px; height: 50px; }
  .engineer-profile h3 { font-size: 17px; }
  .engineer-profile > p:last-of-type { font-size: 11px; }
  .network-note { font-size: 9px; }
  .scene-row, .scene-row + .scene-row { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .scene-row + .scene-row { margin-top: 56px; }
  .scene-row img { height: auto; }
  .scene-row h3 { font-size: 20px; }
  .scope { padding: 56px 0; }
  .scope-columns { grid-template-columns: 1fr; gap: 42px; margin-top: 36px; }
  .scope-cta { margin-top: 36px; }
  .scope-cta .button { width: 100%; min-width: 0; min-height: 52px; font-size: 13px; }
  .price-amount strong { font-size: 58px; }
  .flow { padding: 56px 0; }
  .flow-visual { margin-top: 28px; }
  .flow-image-scroll {
    margin-right: -16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .flow-image-scroll img { min-width: 860px; }
  .flow-visual figcaption { text-align: left; font-size: 9px; }
  .faq { padding: 56px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-grid h2 { font-size: 28px; }
  .application { padding: 60px 0 72px; }
  .application-content { width: min(calc(100% - 32px), 640px); }
  .application-content h2 { font-size: 27px; }
  form { grid-template-columns: 1fr; padding: 20px 16px; border-radius: 12px; }
  .field, .field:first-child, .field:nth-child(4) { grid-column: 1; }
  .consent, .submit, .form-note, .form-status { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  footer .brand { justify-content: center; }
  .footer-inner > div { flex-wrap: wrap; }
}

@media (max-width: 374px) {
  .brand strong { font-size: 17px; }
  h1 { font-size: 24px; }
}

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

/* ── プライバシーポリシー ───────────────────────────── */
.privacy-page .wordmark {
  color: var(--forest);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.privacy-main {
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto;
  padding: 64px 0 96px;
}
.privacy-main h1 {
  max-width: none;
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.03em;
}
.privacy-main section { margin: 0 0 36px; }
.privacy-main h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -.01em;
}
.privacy-main p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.privacy-main p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.privacy-main .text-link {
  display: inline-block;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .privacy-main { padding: 40px 0 64px; }
  .privacy-main h1 { font-size: 26px; margin-bottom: 28px; }
  .privacy-main h2 { font-size: 16px; }
}
