/* ============================================================
   NYC 資金調達LP — Styles
   濃紺ベース / 白背景 / シアンアクセント / 端正・誠実
   ============================================================ */

:root {
  /* Brand colors */
  --navy:        #1d2046;  /* メインネイビー */
  --navy-deep:   #070c47;  /* ディープネイビー */
  --bluegreen:   #004f66;  /* ブルーグリーン */
  --cyan:        #1ec2de;  /* アクセントシアン */
  --gray-light:  #c6c6c6;  /* ライトグレー */
  --white:       #ffffff;

  /* Derived neutrals */
  --ink:         #14173a;  /* 本文 (黒に近いネイビー) */
  --ink-soft:    #3d4063;
  --paper:       #ffffff;
  --paper-2:     #f4f6f9;  /* 薄いグレー帯 */
  --line:        #e2e6ec;
  --line-navy:   rgba(255,255,255,0.14);
  --cyan-ink:    #0c8aa3;  /* 白背景上で読めるシアン文字 */

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Poppins", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* ---- Layout helpers ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 9vw, 128px);
}
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

.section--paper2 { background: var(--paper-2); }
.section--navy {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(30,194,222,0.10), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #161a3e 100%);
  color: #eef1f6;
}
.section--bluegreen {
  background: linear-gradient(150deg, var(--bluegreen) 0%, #013a4d 100%);
  color: #eaf6fa;
}

/* ---- Eyebrow / labels ---- */
.eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--cyan);
}
.section--navy .eyebrow,
.section--bluegreen .eyebrow { color: var(--cyan); }

/* ---- Headings ---- */
.h2 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.05;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 18px;
}
.section--navy .lead,
.section--bluegreen .lead { color: rgba(238,241,246,0.82); }

.measure { max-width: 70ch; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  background: rgba(7,12,71,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  height: 60px;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 21px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-header.is-scrolled .brand-logo { height: 19px; transition: height .35s ease; }
.brand .brand-sub {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav a:hover { color: #fff; }
.nav .nav-links { display: flex; gap: 26px; }

/* ---- Buttons ---- */
.btn {
  --bg: var(--cyan);
  --fg: #04222b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 28px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bg);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(30,194,222,0.28); }
.btn .arr { font-family: var(--font-en); font-weight: 600; }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--ghost {
  --bg: transparent; --fg: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); box-shadow: none; }
.btn--solid-navy { --bg: var(--navy); --fg: #fff; border-color: var(--navy); }
.btn--solid-navy:hover { box-shadow: 0 10px 26px rgba(29,32,70,0.3); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 64px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-copy { position: relative; z-index: 2; max-width: 660px; }

/* hero background illustration (blended into navy) */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg img {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(64%, 1060px);
  height: auto;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 32%),
    linear-gradient(180deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 32%),
    linear-gradient(180deg, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-composite: intersect;
}
.hero h1 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.32;
  letter-spacing: 0.005em;
  margin: 0 0 26px;
  color: #fff;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--cyan);
  white-space: nowrap;
}
.hero .sub {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 22px;
}
.hero .subcopy {
  font-size: 15px;
  line-height: 2.0;
  color: rgba(238,241,246,0.78);
  max-width: 52ch;
  margin: 0 0 34px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-note {
  margin: 22px 0 0;
  font-size: 11.5px;
  line-height: 1.75;
  color: rgba(238,241,246,0.5);
  max-width: 62ch;
}

/* trust row */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-navy);
}
.trust-item {
  padding: 22px 18px 4px 0;
  border-right: 1px solid var(--line-navy);
  padding-left: 18px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  color: var(--cyan);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.trust-num .unit { font-size: 0.56em; font-weight: 600; margin-left: 2px; color: #cfe9f0; }
.trust-num--amt {
  font-size: clamp(18px, 2vw, 23px);
  white-space: nowrap;
  color: #8fd9e8;
}
.trust-num--amt .amt-strong {
  color: var(--cyan);
  font-size: 1.28em;
  letter-spacing: 0.01em;
}
.trust-num--amt .unit { font-size: 0.62em; color: #8fd9e8; }
.trust-label {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(238,241,246,0.78);
}

/* hero visual */
.hero-visual { position: relative; z-index: 1; }

/* ---- Image placeholder ---- */
.ph {
  position: relative;
  border-radius: 6px;
  background-color: #11163a;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.045) 0 2px,
    transparent 2px 11px
  );
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ph--light {
  background-color: #eef1f5;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(29,32,70,0.05) 0 2px,
    transparent 2px 11px
  );
  border-color: var(--line);
}
.ph .ph-tag {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.62);
  background: rgba(7,12,71,0.55);
  padding: 6px 10px;
  margin: 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.12);
}
.ph--light .ph-tag {
  color: var(--ink-soft);
  background: rgba(255,255,255,0.75);
  border-color: var(--line);
}
.hero-visual .ph { aspect-ratio: 4/5; }
.hero-img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* ============================================================
   Problem (課題提起)
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.7;
}
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist .ck {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  display: grid;
  place-items: center;
}
/* worry / problem markers */
.worry-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cyan-ink);
  margin: 0 0 14px;
}
.checklist .qk {
  flex: none;
  width: 24px; height: 24px;
  margin-top: 1px;
  border-radius: 6px;
  background: #eef1f5;
  border: 1px solid #d3d9e2;
  color: var(--ink-soft);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.checklist--worry li { color: var(--ink); }

/* hero swappable image slot */
.hero-slot {
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* ============================================================
   Service definition
   ============================================================ */
.def-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.def-quote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  border-left: 3px solid var(--cyan);
  padding-left: 26px;
  max-width: 22ch;
}
.section--bluegreen .lead--on { color: rgba(234,246,250,0.88); }
.def-card .def-photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
}

/* full-bleed photo band */
.photo-band {
  width: 100%;
  line-height: 0;
  background: var(--navy-deep);
}
.photo-band img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 540px;
  object-fit: cover;
}

/* process 2-col with photo */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.process-photo { margin: 0; }
.process-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-navy);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.process-photo figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(238,241,246,0.62);
}

/* strength section photo */
.strength-photo {
  margin: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}
.strength-photo img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(20,23,58,0.10);
}

/* ============================================================
   Strengths (NYCの強み) + members
   ============================================================ */
.strength-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.strength-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
}
.strength-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}
.strength-list li:first-child {
  border-top: 1px solid var(--line);
}
.strength-list .idx {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  color: var(--cyan-ink);
  flex: none;
  width: 28px;
}
.strength-list .lead-item { font-weight: 700; color: var(--ink); }
.strength-list .lead-item .note { display:block; font-weight:400; font-size:13.5px; color: var(--ink-soft); margin-top:2px; }

.members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.member {
  background: var(--paper);
}
.member .ph { aspect-ratio: 1/1; margin-bottom: 18px; }
.member .m-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  margin-bottom: 4px;
}
.member .m-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.member .m-role {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* members — stacked bios */
.members-stack { display: grid; gap: clamp(28px, 3.5vw, 44px); }
.member-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  padding-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid var(--line);
}
.member-photo { aspect-ratio: 4/5; margin-bottom: 16px; background-repeat: no-repeat; background-size: cover; background-position: center 24%; }
.member-photo .ph-tag { display: none; }
.members-stack .member-row:nth-child(1) .member-photo { background-image: url("images/member-onoue.png"); }
.members-stack .member-row:nth-child(2) .member-photo { background-image: url("images/member-horiguchi.png"); }
.members-stack .member-row:nth-child(3) .member-photo { background-image: url("images/member-chiba.png"); }
.member-id .m-en {
  font-family: var(--font-en);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-ink); margin-bottom: 4px;
}
.member-id .m-name {
  font-size: 20px; font-weight: 700; margin-bottom: 9px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.m-badge {
  font-family: var(--font-jp);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--cyan-ink);
  border: 1px solid var(--cyan);
  border-radius: 3px; padding: 2px 8px;
}
.member-id .m-tag {
  font-size: 13px; line-height: 1.65; color: var(--ink-soft);
}
.career { list-style: none; margin: 4px 0 0; padding: 0; }
.career li {
  position: relative;
  padding: 0 0 18px 26px;
  font-size: 14px; line-height: 1.9; color: var(--ink-soft);
}
.career li:last-child { padding-bottom: 0; }
.career li::before {
  content: ""; position: absolute; left: 3px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #cfd6e0; z-index: 2;
}
.career li:not(:last-child)::after {
  content: ""; position: absolute; left: 6.5px; top: 14px;
  width: 1.5px; height: calc(100% - 8px); background: var(--line);
}
.career li.is-now, .career li.is-key { color: var(--ink); font-weight: 700; }
.strength-note {
  margin: 18px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.career li.is-now::before, .career li.is-key::before {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(30,194,222,0.16);
}

/* ============================================================
   Support menu (支援内容) — categorized
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.support-cat {
  padding: 30px 30px 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.support-cat:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20,23,58,0.08);
}
.support-cat .cat-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.support-cat .cat-no {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  color: var(--cyan-ink);
  letter-spacing: 0.08em;
}
.support-cat .cat-name { font-size: 18px; font-weight: 700; }
.support-cat ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.support-cat li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}
.support-cat li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.support-cat--full {
  grid-column: 1 / -1;
  background: var(--paper-2);
}

/* ============================================================
   Plans (プラン)
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-navy);
  border-radius: 8px;
  padding: 34px 30px 32px;
  position: relative;
}
.plan--feature {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  border-color: var(--cyan);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.plan .plan-rank {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.plan--feature .plan-rank { color: var(--cyan-ink); }
.plan .plan-name {
  font-size: 18.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.plan--feature .plan-name { color: var(--ink); }
.plan .plan-for {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(238,241,246,0.72);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-navy);
  min-height: 86px;
}
.plan--feature .plan-for { color: var(--ink-soft); border-color: var(--line); }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(238,241,246,0.9);
  padding-left: 22px;
  position: relative;
}
.plan--feature li { color: var(--ink); }
.plan li svg { position: absolute; left: 0; top: 5px; width: 13px; height: 13px; stroke: var(--cyan); }
.plan--feature li svg { stroke: var(--cyan-ink); }
.plan .badge {
  position: absolute;
  top: -12px; left: 30px;
  background: var(--cyan);
  color: #04222b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 3px;
}

/* ============================================================
   Target (対象顧客)
   ============================================================ */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.target-photo {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(20,23,58,0.10);
  margin-top: clamp(24px, 3vw, 36px);
}
.target-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.target-grid > .reveal[data-d="1"] { padding-top: clamp(8px, 4vw, 64px); }
.target-list li {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.7;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
  padding: 16px 20px;
}
.target-list li .tnum {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  color: var(--cyan-ink);
  flex: none;
}

/* ============================================================
   Process (支援プロセス)
   ============================================================ */
.process {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.proc-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  position: relative;
}
.proc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px; top: 50%;
  width: 1.5px; height: 100%;
  background: var(--line-navy);
}
.proc-num {
  position: relative;
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  background: var(--navy-deep);
  color: var(--cyan);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 17px;
  display: grid; place-items: center;
}
.proc-text { font-size: 16px; font-weight: 500; color: #eef1f6; }
.proc-text .pt-note { display:block; font-size:13px; font-weight:400; color: rgba(238,241,246,0.65); margin-top:2px; }

/* ============================================================
   Pricing (料金)
   ============================================================ */
.pricing-card {
  max-width: 760px;
}
.pricing-card .price-points {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; gap: 0;
}
.pricing-card .price-points li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
}
.pricing-card .price-points li:last-child { border-bottom: 1px solid var(--line); }
.pricing-card .pp-key {
  font-weight: 700;
  color: var(--ink);
}
.pricing-card .pp-key .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  margin-bottom: 4px;
}
.pricing-card .pp-val { color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-jp);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  padding: 26px 48px 26px 38px;
  position: relative;
  display: flex;
  line-height: 1.6;
}
.faq-q .q-mark {
  position: absolute;
  left: 0; top: 26px;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--cyan-ink);
  font-size: 17px;
}
.faq-q .q-toggle {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
}
.faq-q .q-toggle::before,
.faq-q .q-toggle::after {
  content: "";
  position: absolute;
  background: var(--cyan-ink);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-q .q-toggle::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-q .q-toggle::after  { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.is-open .q-toggle::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 48px 28px 38px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.faq-a-inner .a-mark {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--cyan-ink);
  margin-right: 10px;
}

/* ============================================================
   Final CTA + Form
   ============================================================ */
.cta-final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.cta-final h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 22px;
}
.cta-final .lead { color: rgba(238,241,246,0.82); }
.cta-mini-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.form-card {
  background: #fff;
  border-radius: 10px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field label .req {
  color: var(--cyan-ink);
  font-size: 11px;
  margin-left: 6px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-jp);
  font-size: 14.5px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfcfe;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(30,194,222,0.16);
  background: #fff;
}
.field.invalid input,
.field.invalid select { border-color: #d8584f; box-shadow: 0 0 0 3px rgba(216,88,79,0.12); }
.field .err { font-size: 11.5px; color: #c8493f; display: none; }
.field.invalid .err { display: block; }
.form-actions { grid-column: 1/-1; margin-top: 8px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--ink-soft); line-height: 1.6; }
.form-consent {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.privacy-link { color: var(--cyan-ink); text-decoration: underline; text-underline-offset: 2px; }
.plan-note {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(238,241,246,0.6);
  margin: -8px 0 18px;
}
.plan--feature .plan-note { color: var(--ink-soft); }
.plans-note {
  margin: 36px 0 0;
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(238,241,246,0.6);
  max-width: 80ch;
  padding-top: 22px;
  border-top: 1px solid var(--line-navy);
}
.footer-links { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(238,241,246,0.62); text-decoration: underline; text-underline-offset: 2px; }
.footer-links a:hover { color: #fff; }
.form-success {
  grid-column: 1/-1;
  display: none;
  background: #e9f8fb;
  border: 1px solid var(--cyan);
  border-radius: 6px;
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--bluegreen);
  line-height: 1.7;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(238,241,246,0.7);
  padding-block: 56px 40px;
  border-top: 1px solid var(--line-navy);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-navy);
}
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 42ch; margin: 0; }
.footer-disclaim {
  font-size: 12px;
  line-height: 1.85;
  color: rgba(238,241,246,0.5);
  max-width: 70ch;
  margin: 28px 0 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  font-size: 12px;
  color: rgba(238,241,246,0.45);
}

/* ============================================================
   Sticky bottom CTA (mobile-ish / appears on scroll)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(7,12,71,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-navy);
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(120%);
  transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sc-text { font-size: 13px; color: #eef1f6; font-weight: 500; }
.sticky-cta .sc-text strong { color: var(--cyan); font-weight: 700; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav .nav-links { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 8px; }
  .hero-img { aspect-ratio: 16/10; max-height: 320px; object-position: center 30%; }
  .hero-bg img { width: 128%; right: -32%; opacity: 0.16; }
  .hero { min-height: auto; }
  .problem-grid,
  .strength-top,
  .target-grid,
  .cta-final-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .def-card { grid-template-columns: 1fr; }
  .members { grid-template-columns: 1fr; max-width: 420px; }
  .member-row { grid-template-columns: 1fr; gap: 18px; }
  .member-photo { max-width: 240px; }
  .support-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .def-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust { grid-template-columns: 1fr; }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-navy);
    padding: 16px 0;
  }
  .trust-item:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .pricing-card .price-points li { grid-template-columns: 1fr; gap: 6px; }
  .sticky-cta .sc-text { display: none; }
  .sticky-cta { justify-content: stretch; }
  .sticky-cta .btn { flex: 1; }
}
