:root {
  --color-primary: #f3b73f;
  --color-goal: #d99a00;
  --color-primary-dark: #17805f;
  --color-primary-soft: #fff4dc;
  --color-accent: #7fa46a;
  --color-accent-soft: #edf5e8;
  --color-blue: #6d8f9e;
  --color-blue-soft: #edf5f7;
  --color-ink: #242b2e;
  --color-muted: #657277;
  --color-line: #e8eeeb;
  --color-surface: #ffffff;
  --color-section: #fffaf0;
  --color-footer: #252d30;
  --radius: 18px;
  --radius-large: 28px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-copy,
.concept-copy,
.service-card,
.button {
  min-width: 0;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
}

h1 span,
.concept-copy h2 strong {
  color: #e0a91f;
}

h1 em {
  color: var(--color-ink);
  font-style: normal;
}

h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 900;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.section {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  text-decoration: none;
}

.brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-kidsdoor {
  height: 30px;
  max-width: 170px;
}

.brand-logo-kfp {
  height: 30px;
  max-width: 190px;
}

.brand-separator {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
}

.header-nav a {
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta::after {
  content: ">";
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-cta:hover {
  background: var(--color-ink);
  color: #fff;
}

.nav-cta:hover::after {
  transform: translateX(4px);
}

.hero {
  padding: 52px 0 54px;
  background: linear-gradient(180deg, #fffbf3 0%, #ffffff 100%);
}

.hero .container {
  width: min(1280px, calc(100% - 48px));
}

.hero-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: #fffaf0;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  display: none;
  pointer-events: none;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.018);
  transform-origin: center;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4.4vw, 58px);
  top: clamp(12px, 2.2vw, 28px);
  max-width: min(760px, 72%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.45vw, 58px);
  line-height: 1.1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.92);
}

.hero-copy h1 span {
  font-size: 0.92em;
  white-space: nowrap;
}

.hero-copy h1 em {
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: none;
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  white-space: nowrap;
}

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 40px;
  align-items: center;
  margin-top: 28px;
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-all;
  transition: background-color 180ms ease, color 180ms ease;
}

.button::after {
  content: ">";
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 180ms ease;
}

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

.button:hover::after {
  transform: translateX(4px);
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-ink);
}

.button-secondary {
  border-color: var(--color-primary);
  background: #fff;
  color: var(--color-primary-dark);
}

.button-light {
  background: #fff;
  color: var(--color-primary-dark);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.section-visual {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-large);
  background: transparent;
}

.section-visual img {
  width: 100%;
  height: auto;
}

.card-dot {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.card-dot.blue {
  background: var(--color-blue);
}

.card-dot.yellow {
  background: var(--color-accent);
  color: var(--color-ink);
}

.logo-band {
  padding: 28px 0;
  background: #fffdf8;
  overflow: hidden;
}

.logo-band-label {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto 18px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  --logo-shift: 20px;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  animation: logo-scroll 32s linear infinite;
}

.logo-item {
  display: inline-grid;
  width: 206px;
  min-width: 206px;
  min-height: 58px;
  place-items: center;
  color: #8a96a5;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  filter: none;
  opacity: 1;
}

.logo-item img {
  width: auto;
  max-width: 184px;
  max-height: 48px;
  object-fit: contain;
}

.logo-item-kfp {
  width: 206px;
  min-width: 206px;
}

.logo-item-kfp img {
  max-width: 184px;
  max-height: 44px;
}

.logo-item-kidsdoor {
  width: 206px;
  min-width: 206px;
}

.logo-item-kidsdoor img {
  max-width: 184px;
  max-height: 48px;
}

.logo-item-sakai {
  width: 206px;
  min-width: 206px;
}

.logo-item-sakai img {
  max-width: 184px;
  max-height: 48px;
}

.logo-item-hanamaru img {
  max-width: 184px;
  max-height: 50px;
}

.logo-item-yoshinoya img {
  max-width: 184px;
  max-height: 48px;
}

.logo-item-motorboat img {
  max-width: 184px;
  max-height: 50px;
}

.logo-item-jreast img {
  max-width: 184px;
  max-height: 50px;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--logo-shift)));
  }
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.concept-copy p,
.product-copy p,
.goal-meter p,
.contact-copy p:not(.eyebrow),
.trust p:not(.eyebrow) {
  color: var(--color-muted);
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  font-size: 17px;
}

.concept {
  background: #fff;
}

.project-heading {
  max-width: 920px;
}

.project-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.relationship-map {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-large);
  background: var(--color-section);
}

.map-node {
  position: absolute;
  display: grid;
  width: 170px;
  min-height: 118px;
  place-items: center;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.map-node strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.map-node small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}


.node-icon img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
}

.stat-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.node-center .node-icon img {
  filter: none;
}

.node-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-weight: 900;
}

.node-restaurant {
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.node-partner {
  bottom: 44px;
  left: 34px;
}

.node-family {
  right: 34px;
  bottom: 44px;
}

.node-center {
  top: 206px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  border-color: rgba(47, 200, 95, 0.5);
}

.node-center .node-icon {
  background: var(--color-primary);
  color: #fff;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(47, 200, 95, 0.48);
  transform-origin: left center;
}

.line-partner-center {
  width: 150px;
  left: 192px;
  bottom: 156px;
  transform: rotate(-24deg);
}

.line-center-family {
  width: 168px;
  right: 190px;
  bottom: 160px;
  transform: rotate(22deg);
}

.line-center-restaurant {
  width: 100px;
  left: calc(50% - 1px);
  top: 164px;
  transform: rotate(90deg);
}

.line-restaurant-family {
  width: 242px;
  right: 83px;
  top: 185px;
  background: rgba(63, 127, 217, 0.36);
  transform: rotate(61deg);
}

.map-label {
  position: absolute;
  z-index: 3;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.label-support {
  left: 184px;
  bottom: 178px;
}

.label-ticket {
  right: 152px;
  bottom: 184px;
}

.label-meal {
  right: 104px;
  top: 258px;
  color: var(--color-blue);
}

.concept-copy p {
  margin: 0;
  font-size: 17px;
}

.concept-copy p + p {
  margin-top: 20px;
}

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

.concept-platforms {
  margin-top: 56px;
}

.concept-platforms h3,
.release-copy h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

.platform-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 30px;
  border-radius: 18px;
  background: #fff;
}

.platform-visual {
  display: grid;
  width: 132px;
  height: 110px;
  place-items: center;
  margin: 0 0 14px;
}

.platform-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.platform-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.platform-card h4 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.4;
}

.platform-card p:not(.platform-label) {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.platform-button {
  width: fit-content;
  min-height: 42px;
  justify-self: end;
  padding-inline: 16px;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-ink);
  font-size: 14px;
}

.platform-button:hover {
  background: var(--color-primary);
  color: var(--color-ink);
}

.platform-button-sub {
  border-color: var(--color-primary-soft);
  background: var(--color-primary-soft);
}

.platform-button-sub:hover {
  border-color: var(--color-primary);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
}

.release-card[hidden] {
  display: none;
}

.release-photo-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff6df 0%, #f7f1e7 100%);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.release-label {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.release-copy p:not(.release-label) {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.release-button {
  width: fit-content;
  min-height: 44px;
  margin-top: 16px;
  padding-inline: 18px;
  background: var(--color-primary-soft);
  color: var(--color-ink);
  font-size: 14px;
}

.problem {
  background: #fef6ea;
}

.problem-visual,
.benefits-visual,
.impact-visual {
  margin-bottom: 28px;
}

.problem-visual {
  width: min(100%, 640px);
  margin-inline: auto;
  margin-bottom: 38px;
  background: #fef6ea;
}

.benefits-visual {
  width: min(100%, 640px);
  margin-inline: auto;
  margin-bottom: 42px;
  background: transparent;
}

.problem-visual img {
  transform: scale(1.065);
  transform-origin: center;
}

.stats-card {
  padding: 34px 32px;
  border-radius: var(--radius-large);
  background: #fff;
}

.stats-card h3 {
  text-align: center;
}

.stats-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.stat-item {
  display: grid;
  min-height: 210px;
  align-content: start;
  justify-items: center;
  padding: 10px 14px;
  text-align: center;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--color-line);
}

.stat-icon {
  display: grid;
  width: 132px;
  height: 96px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.stat-item.compare .stat-icon {
  background: transparent;
  color: var(--color-accent);
}

.stat-item.muted .stat-icon {
  background: transparent;
  color: var(--color-blue);
}

.stat-item strong {
  display: block;
  margin-top: 24px;
  color: var(--color-ink);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.stat-item strong span {
  margin-left: 2px;
  font-size: 0.52em;
  font-weight: 800;
}

.stat-item p {
  margin: 16px 0 0;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.source {
  color: var(--color-muted);
  font-size: 13px;
}

.source a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source a:hover {
  color: var(--color-primary-dark);
}

.stats-card .source {
  margin: 18px 0 0;
  text-align: right;
}

.model {
  margin: 0 16px;
  border-radius: var(--radius-large);
  background: var(--color-section);
}

.model .section-heading {
  max-width: 100%;
}

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

.flow-step {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
}

.flow-step span {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
}

.flow-step p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.message-strip {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-radius: 18px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
}

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

.method-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 28px 22px;
  border-radius: 18px;
  background: #fff;
}

.method-illustration {
  display: grid;
  width: 100%;
  min-height: 118px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: transparent;
}

.method-illustration img {
  width: min(100%, 118px);
  height: auto;
  object-fit: contain;
}

.method-card h3 {
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.25;
  white-space: nowrap;
}

.method-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.supporter-spotlight {
  margin-top: 46px;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.supporter-spotlight-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.supporter-spotlight-heading h3 {
  font-size: clamp(22px, 2.4vw, 32px);
}

.supporter-spotlight-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

.supporter-list {
  display: grid;
  border-radius: 18px;
  background: #fff;
}

.supporter-row {
  display: grid;
  grid-template-columns: 88px minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.supporter-row + .supporter-row {
  border-top: 1px solid var(--color-line);
}

.supporter-row-head {
  padding-block: 14px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.supporter-type {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.supporter-row h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  white-space: nowrap;
}

.supporter-row p:not(.supporter-type) {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(12px, 0.82vw, 13px);
  font-weight: 700;
  line-height: 1.65;
  white-space: nowrap;
}

.product-stack {
  display: grid;
  margin-top: 72px;
  gap: 34px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.product-row.reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.product-row.reverse .product-copy {
  order: 2;
}

.product-row.reverse .product-visual {
  order: 1;
}

.product-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.product-badge.blue {
  background: var(--color-blue-soft);
  color: var(--color-blue);
}

.product-badge.yellow {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.product-copy p {
  margin: 14px 0 0;
}

.product-visual {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 20px;
}

.visual-delivery {
  background: #42b984;
}

.visual-ticket {
  background: var(--color-blue);
}

.visual-partner {
  background: var(--color-accent);
}

.box-shape,
.card-shape,
.phone-shape,
.ticket-shape,
.circle-link {
  position: absolute;
  display: grid;
  place-items: center;
  background: #fff;
}

.box-shape {
  width: 130px;
  height: 96px;
  left: 76px;
  bottom: 56px;
  border-radius: 16px;
}

.card-shape {
  width: 190px;
  height: 136px;
  right: 62px;
  top: 48px;
  border-radius: 18px;
}

.phone-shape {
  width: 112px;
  height: 190px;
  left: 86px;
  top: 42px;
  border-radius: 28px;
}

.ticket-shape {
  width: 176px;
  height: 74px;
  right: 58px;
  bottom: 68px;
  border-radius: 16px;
  color: var(--color-blue);
  font-weight: 900;
}

.small-label {
  position: absolute;
  right: 34px;
  top: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.visual-ticket .small-label {
  color: var(--color-blue);
}

.visual-partner .small-label {
  color: var(--color-accent);
}

.circle-link {
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.circle-link.one {
  left: 76px;
  top: 68px;
}

.circle-link.two {
  right: 92px;
  top: 56px;
}

.circle-link.three {
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
}

.benefits {
  background: #fff;
}

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

.benefit-card {
  background: #fff;
}

.benefit-card {
  padding: 0;
}

.persona {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.benefit-copy {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.impact {
  background: #fff;
}

.impact-visual {
  max-width: 860px;
  margin-inline: auto;
}

.goal-meter {
  width: 100%;
}

.goal-meter > span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
}

.goal-meter > strong {
  display: block;
  margin-top: 8px;
  color: var(--color-goal);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.goal-meter p {
  margin: 12px 0 0;
}

.goal-meter .goal-note {
  color: var(--color-muted);
  font-size: 13px;
}

.goal-progress {
  margin-top: 28px;
}

.goal-progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.goal-progress-track {
  position: relative;
  overflow: hidden;
  height: 14px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--color-primary-soft);
}

.goal-progress-track span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary) 0%, #e2a71e 100%);
}

.has-scroll-animations .goal-progress-track span {
  transform: scaleX(0);
  transform-origin: left center;
}

.has-scroll-animations .goal-progress.is-visible .goal-progress-track span {
  animation: goal-progress-fill 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes goal-progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-scroll-animations .goal-progress-track span,
  .has-scroll-animations .goal-progress.is-visible .goal-progress-track span {
    animation: none;
    transform: none;
  }
}

.final-cta {
  padding: 56px 0;
  background: #fff;
}

.final-cta-inner {
  padding: 64px 32px;
  border-radius: 24px;
  background: var(--color-primary);
  color: var(--color-ink);
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--color-primary-dark);
}

.final-cta h2 {
  color: var(--color-ink);
}

.final-cta-actions {
  justify-content: center;
  margin-top: 28px;
}

.faq {
  background: var(--color-section);
}

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

details {
  border-radius: 14px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

details p a {
  color: var(--color-primary-dark);
  font-weight: 900;
}

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-visual {
  margin-top: 28px;
}

.form-shell {
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.zoho-form {
  display: block;
  width: 100%;
  min-height: 1100px;
  height: 1100px;
  border: 0;
  overflow: hidden;
}

.form-placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-muted);
  text-align: center;
}

.form-placeholder p {
  margin: 0;
  padding: 8px;
  font-size: 14px;
  font-weight: 900;
}

.site-footer {
  padding: 52px 0;
  background: var(--color-footer);
  color: #dbe6f1;
}

.footer-inner {
  display: block;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .concept-grid,
  .project-story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-story {
    gap: 30px;
  }

  .contact-copy {
    position: static;
  }

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

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

  .supporter-row {
    grid-template-columns: 96px minmax(180px, 0.8fr) minmax(0, 1fr);
  }

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

  .stat-item:nth-child(4) {
    border-left: 0;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
  }

  .product-row.reverse .product-copy,
  .product-row.reverse .product-visual {
    order: initial;
  }
}

@media (max-width: 820px) {
  .container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .section {
    padding: 72px 0;
  }

  .concept {
    padding-top: 56px;
  }

  .project-heading {
    margin-bottom: 24px;
  }

  .project-heading h2 {
    font-size: clamp(24px, 7vw, 30px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .project-story {
    gap: 22px;
  }

  .concept-visual {
    max-width: 100%;
  }

  .header-inner {
    min-height: 66px;
  }

  .header-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-copy {
    max-width: min(560px, calc(100% - 48px));
  }

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

  .hero-lead {
    font-size: 16px;
    white-space: normal;
  }

  .button {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .platform-button,
  .release-button {
    width: fit-content;
    max-width: 100%;
  }

  .hero-actions {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .benefit-grid,
  .platform-grid,
  .release-card,
  .method-grid,
  .supporter-spotlight-heading,
  .supporter-row,
  .flow,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .supporter-spotlight {
    padding: 22px;
  }

  .supporter-row {
    gap: 10px;
    align-items: start;
    padding: 20px 0;
  }

  .supporter-row h4,
  .supporter-row p:not(.supporter-type) {
    white-space: normal;
  }

  .supporter-row-head {
    display: none;
  }

  .supporter-row:first-child {
    padding-top: 0;
  }

  .supporter-row:last-child {
    padding-bottom: 0;
  }

  .method-card {
    min-height: auto;
  }

  .platform-card {
    min-height: auto;
  }

  .stat-item + .stat-item,
  .stat-item:nth-child(4) {
    border-left: 0;
    border-top: 0;
  }

  .stat-item {
    min-height: auto;
    padding: 26px 8px;
  }

  .stat-icon {
    width: 118px;
    height: 86px;
  }

  .logo-band-label {
    width: calc(100vw - 32px);
  }

  .logo-track {
    --logo-shift: 12px;
    gap: 24px;
    animation-duration: 26s;
  }

  .logo-item {
    width: 152px;
    min-width: 152px;
    min-height: 52px;
  }

  .logo-item img {
    max-width: 146px;
    max-height: 42px;
  }

  .logo-item-kfp,
  .logo-item-kidsdoor,
  .logo-item-sakai {
    width: 152px;
    min-width: 152px;
  }

  .logo-item-kfp img {
    max-width: 146px;
    max-height: 38px;
  }

  .logo-item-kidsdoor img {
    max-width: 146px;
    max-height: 42px;
  }

  .logo-item-sakai img {
    max-width: 146px;
    max-height: 42px;
  }

  .logo-item-hanamaru img {
    max-width: 146px;
    max-height: 44px;
  }

  .logo-item-jreast img {
    max-width: 154px;
    max-height: 44px;
  }

  .model {
    margin: 0;
    border-radius: 0;
  }

  .relationship-map {
    min-height: auto;
    padding: 18px;
  }

  .map-node {
    position: static;
    width: 100%;
    min-height: auto;
    margin-bottom: 12px;
    transform: none;
  }

  .map-node:last-of-type {
    margin-bottom: 0;
  }

  .map-line,
  .map-label {
    display: none;
  }

  .product-visual {
    min-height: 230px;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 560px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-lead,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .brand-logos {
    gap: 8px;
  }

  .brand-logo-kidsdoor {
    height: 26px;
    max-width: 132px;
  }

  .brand-logo-kfp {
    height: 20px;
    max-width: 132px;
  }

  .brand-separator {
    font-size: 14px;
  }

  .hero-stage {
    min-height: 0;
    aspect-ratio: 1.18;
    border-radius: 22px;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-stage img {
    object-position: 70% center;
  }

  .hero-copy {
    left: 10px;
    top: 14px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .hero-lead {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(17px, 4.45vw, 30px);
    line-height: 1.14;
  }

  .hero-lead,
  .hero-actions,
  .hero-actions .button {
    max-width: min(100%, 320px);
  }

  .container {
    width: calc(100% - 64px);
    max-width: calc(100vw - 64px);
  }

  .header-nav {
    display: none;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  .mobile-break {
    display: block;
  }

  .stats-card,
  .platform-card,
  .benefit-card,
  .flow-step {
    padding: 22px;
  }

  .zoho-form {
    min-height: 1310px;
    height: 1310px;
  }

  .platform-visual {
    width: 104px;
    height: 88px;
  }

  .release-photo-placeholder {
    min-height: 150px;
  }

  .final-cta-inner {
    padding: 44px 22px;
  }

}
