:root {
  --blue: #0054c8;
  --blue-dark: #002f8f;
  --blue-soft: #e6f6ff;
  --orange: #ff6b00;
  --orange-dark: #e95400;
  --yellow: #ffe642;
  --pink: #f45ca1;
  --pink-soft: #ffe6f2;
  --cream: #fff7df;
  --ink: #17233a;
  --muted: #52627a;
  --line: #d9e7f8;
  --shadow: 0 18px 45px rgba(0, 74, 170, 0.14);
  --radius: 8px;
  font-family: "Arial", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 84, 200, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #3cb7ff);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 84, 200, 0.24);
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: #1e2a3c;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.primary-cta,
.center-cta,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(180deg, #ff8a16 0%, var(--orange) 70%, var(--orange-dark) 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.34);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.header-cta {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.mobile-sticky-cta {
  display: none;
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 58px 32px;
}

.hero {
  min-height: 790px;
  padding-top: 42px;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 92% 17%, rgba(255, 232, 242, 0.72) 0 16%, transparent 30%),
    radial-gradient(circle at 7% 13%, rgba(218, 244, 255, 0.9) 0 14%, transparent 34%),
    linear-gradient(180deg, #f5fbff 0%, #fff 76%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 555px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 820px);
  min-width: 0;
  padding: 10px 0 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 0 16px;
  color: var(--orange-dark);
  background: var(--cream);
  border: 2px solid #ffd276;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: #082a78;
  font-size: 52px;
  font-weight: 1000;
  line-height: 1.06;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  display: inline-block;
  color: var(--yellow);
  font-size: 1.22em;
  font-style: normal;
  -webkit-text-stroke: 5.5px var(--blue);
  paint-order: stroke fill;
  text-shadow:
    0 5px 0 rgba(0, 47, 143, 0.16),
    0 12px 18px rgba(0, 84, 200, 0.18);
}

.mobile-break {
  display: none;
}

.hero-mobile-scene-wrap {
  display: none;
}

.hero-lead {
  width: min(100%, 560px);
  margin: 22px 0 16px;
  color: #26384f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 640px);
  gap: 10px;
  margin: 18px 0 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  border: 2px solid #fff;
  border-radius: 7px;
  box-shadow: 0 8px 14px rgba(0, 84, 200, 0.16);
  font-size: 14px;
  font-weight: 900;
}

.hero-note {
  margin: 12px 0 0 18px;
  color: var(--orange-dark);
  font-size: 14px;
}

.hero-scene-wrap {
  position: relative;
  position: absolute;
  top: -18px;
  right: -120px;
  z-index: 2;
  width: min(76vw, 1040px);
  height: 610px;
  min-width: 0;
  pointer-events: none;
}

.hero-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: drop-shadow(0 30px 52px rgba(0, 58, 150, 0.16));
}

.hero-scene-wrap::before {
  position: absolute;
  inset: 0 auto 0 -2px;
  z-index: 1;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, #f5fbff 0%, rgba(245, 251, 255, 0.74) 46%, transparent 100%);
  pointer-events: none;
}

.photo-card {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 8px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-family {
  left: 0;
  bottom: 66px;
  width: 270px;
  height: 220px;
}

.photo-card-phone {
  right: 0;
  top: 22px;
  width: 210px;
  height: 240px;
  transform: rotate(4deg);
}

.sns-card {
  position: absolute;
  right: 12px;
  bottom: 66px;
  z-index: 4;
  width: 170px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.decor-cloud-a {
  right: 28%;
  top: 80px;
  width: 250px;
  opacity: 0.55;
}

.decor-balls {
  right: 4%;
  top: 170px;
  width: 220px;
  opacity: 0.74;
}

.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1130px;
  margin: -4px auto 0;
}

.stat-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px 16px;
  align-items: center;
  min-height: 122px;
  padding: 18px 22px;
  background: #fff;
  border: 3px solid rgba(0, 84, 200, 0.13);
  border-radius: var(--radius);
  box-shadow:
    0 18px 44px rgba(0, 58, 150, 0.17),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.stat-icon {
  grid-row: span 3;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border: 2px solid #bde2ff;
  border-radius: 50%;
}

.stat-icon svg {
  width: 36px;
  height: 36px;
}

.stat-card p,
.stat-card small {
  margin: 0;
  color: #33506e;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  font-weight: 1000;
  line-height: 1;
}

.stat-card strong span {
  font-size: 48px;
  letter-spacing: 0;
}

.disclaimer {
  position: relative;
  z-index: 2;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 36px;
  font-weight: 1000;
  line-height: 1.28;
  text-wrap: balance;
}

.section-heading h2 em {
  color: var(--pink);
  font-style: normal;
}

.section-heading p:not(.section-kicker) {
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.recommend,
.solution,
.voices,
.flow {
  background:
    linear-gradient(135deg, rgba(255, 230, 66, 0.1) 0 25%, transparent 25% 50%, rgba(255, 230, 66, 0.08) 50% 75%, transparent 75%) 0 0/34px 34px,
    linear-gradient(180deg, #fff 0%, #f3fbff 100%);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.facility-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
  border-radius: var(--radius);
  box-shadow:
    0 14px 30px rgba(0, 74, 170, 0.14),
    0 0 0 2px var(--line);
}

.facility-card::after {
  position: absolute;
  inset: auto 10px 64px;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 999px;
}

.facility-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.facility-card strong {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px;
  color: var(--blue-dark);
  font-size: 14px;
  text-align: center;
}

.problems {
  background:
    linear-gradient(180deg, #fff 0%, #eef9ff 100%);
}

.problem-grid,
.solution-grid,
.reason-grid,
.voice-grid,
.effect-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.problem-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 160px;
  padding: 20px 14px;
  place-items: center;
  background: #fff;
  border: 3px solid #d5e9ff;
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(0, 74, 170, 0.12);
  text-align: center;
}

.problem-grid article::before {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  content: "!";
  background: var(--orange);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 1000;
}

.problem-grid span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: var(--blue-soft);
  border: 3px solid #bde2ff;
  border-radius: 50%;
}

.problem-grid span:not(.problem-icon)::after {
  display: block;
  width: 20px;
  height: 20px;
  margin: 12px auto;
  content: "";
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.problem-icon svg {
  width: 58px;
  height: 58px;
}

.problem-icon svg > circle:first-child {
  fill: var(--blue-soft);
  stroke: #bde2ff;
  stroke-width: 4;
}

.problem-icon svg circle:not(:first-child),
.problem-icon svg path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-icon svg circle:not(:first-child) {
  fill: var(--blue);
}

.problem-icon svg path:nth-of-type(n + 2),
.problem-icon svg circle:nth-of-type(n + 3),
.problem-icon svg rect {
  stroke: var(--orange);
}

.problem-icon svg rect {
  fill: #fff;
}

.problem-icon svg path:last-child {
  stroke: var(--yellow);
}

.solution-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
}

.experience-photo {
  overflow: hidden;
  margin: 0;
  border: 8px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-photo img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

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

.solution-grid article,
.reason-grid article {
  position: relative;
  min-height: 130px;
  padding: 22px 20px 20px;
  background: #fff;
  border: 2px solid #cfe4ff;
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0, 74, 170, 0.1);
}

.solution-grid article {
  counter-increment: solution;
}

.solution-grid article::before {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  color: #fff;
  content: counter(solution, decimal-leading-zero);
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  font-size: 13px;
  font-weight: 1000;
}

.solution-grid strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.solution-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.case-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
  border-radius: var(--radius);
  box-shadow:
    var(--shadow),
    0 0 0 2px #d7eaff;
}

.case-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--blue));
}

.case-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.case-card div {
  padding: 16px;
}

.case-card h3 {
  min-height: 54px;
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 1000;
  line-height: 1.35;
}

.case-card p {
  min-height: 72px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.case-card strong {
  display: grid;
  min-height: 68px;
  align-content: center;
  justify-items: center;
  padding: 10px 12px;
  color: var(--orange);
  background: #fff7ec;
  border: 2px solid #ffd7b5;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 1000;
  text-align: center;
}

.case-card strong span {
  font-size: 42px;
  line-height: 1;
}

.case-card small {
  color: var(--muted);
}

.center-cta {
  display: flex;
  width: min(100%, 560px);
  margin: 28px auto 0;
}

.effect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.effect-grid article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  place-items: center;
  background: #fff;
  border: 3px solid #d9e9ff;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0, 74, 170, 0.12);
}

.effect-grid span {
  color: var(--orange);
  font-size: 36px;
  font-weight: 1000;
}

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

.voice-grid blockquote {
  margin: 0;
  padding: 22px;
  background: #fff;
  border: 2px solid #d9e9ff;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0, 74, 170, 0.08);
}

.voice-grid blockquote::before {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  content: "“";
  font-size: 58px;
  font-weight: 1000;
  line-height: 0.6;
  text-shadow: 0 2px 0 var(--blue);
}

.voice-grid p {
  margin: 0 0 14px;
  color: #2b3a4f;
  font-weight: 800;
  line-height: 1.7;
}

.voice-grid cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.simulation {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 25%, transparent 25% 50%, rgba(255, 255, 255, 0.08) 50% 75%, transparent 75%) 0 0/38px 38px,
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.simulation .section-kicker {
  color: var(--blue-dark);
  background: var(--yellow);
  border-color: #fff;
}

.simulation-inner {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
}

.simulation-copy h2 {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 36px;
  font-weight: 1000;
  line-height: 1.35;
}

.simulation-copy p {
  margin: 0;
  font-weight: 800;
  line-height: 1.9;
}

.sim-panel {
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 3px solid #fff;
  border-radius: var(--radius);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(255, 255, 255, 0.4);
}

.sim-panel h3 {
  margin: 0 0 14px;
  color: var(--blue);
}

.sim-panel ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sim-panel li,
.sim-panel div {
  padding: 10px 12px;
  background: #f3f8ff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
}

.sim-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.sim-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sim-panel dt,
.sim-panel dd {
  margin: 0;
}

.sim-panel dd {
  color: var(--orange);
}

.cta-on-blue {
  border: 3px solid #fff;
}

.model-reasons {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
}

.model-table {
  overflow: hidden;
  background: #fff;
  border: 3px solid #d9e9ff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.model-table div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.model-table div:last-child {
  border-bottom: 0;
}

.model-table span {
  color: var(--muted);
}

.model-table strong {
  color: var(--orange);
}

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

.reason-grid article {
  display: flex;
  align-items: center;
  min-height: 88px;
  color: var(--blue-dark);
  border-left: 6px solid var(--orange);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  padding: 0;
  margin: 0 auto;
  counter-reset: flow-step;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 132px;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 3px solid #d9e9ff;
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(0, 74, 170, 0.12);
  counter-increment: flow-step;
}

.flow-list li::before {
  position: absolute;
  right: 14px;
  bottom: 4px;
  z-index: 0;
  color: rgba(0, 84, 200, 0.07);
  content: counter(flow-step, decimal-leading-zero);
  font-size: 66px;
  font-weight: 1000;
  line-height: 1;
}

.flow-list span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-dark);
  background: #e9f5ff;
  border: 2px solid #bde2ff;
  border-left: 7px solid var(--orange);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 1000;
}

.flow-list strong {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.55;
}

.faq {
  background: #f6fbff;
}

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

details {
  background: #fff;
  border: 2px solid #d9e9ff;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0, 74, 170, 0.06);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 20px 18px 54px;
  color: var(--blue-dark);
  font-weight: 1000;
}

summary::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  content: "Q";
  background: var(--blue);
  border-radius: 50%;
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 230, 66, 0.12) 0 25%, transparent 25% 50%, rgba(255, 230, 66, 0.1) 50% 75%, transparent 75%) 0 0/42px 42px,
    linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
  max-width: 620px;
  justify-self: end;
}

.contact-copy h2 {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 36px;
  font-weight: 1000;
  line-height: 1.35;
}

.contact-heading-line {
  display: block;
}

.contact-copy p:not(.section-kicker) {
  font-weight: 800;
  line-height: 1.8;
}

.contact-benefits {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  padding: 14px 16px 14px 44px;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(255, 230, 66, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.contact-benefits li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--orange);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 1000;
}

.contact-form {
  display: grid;
  width: min(100%, 620px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  justify-self: start;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.24);
}

.form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: linear-gradient(180deg, #fff8dc, #fff);
  border: 3px solid #ffd276;
  border-radius: var(--radius);
  text-align: center;
}

.form-head span {
  display: inline-grid;
  width: 58px;
  min-height: 28px;
  place-items: center;
  justify-self: center;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 1000;
}

.form-head strong {
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 1000;
}

.form-head small {
  color: var(--muted);
  font-size: 13px;
}

.contact-form label {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 1000;
}

.contact-form label.form-wide,
.form-note,
.form-status,
.privacy-consent,
.field-error,
.contact-form button {
  grid-column: 1 / -1;
}

.field-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 4px;
  padding: 0 7px;
  color: #fff;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1;
  vertical-align: middle;
}

.field-required {
  background: #e5482d;
}

.field-optional {
  color: var(--muted);
  background: #e8eef5;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 2px solid #cfe3fb;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 86px;
  padding-block: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 84, 200, 0.12);
  outline: none;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #d92d20;
  background: #fff7f6;
}

.field-error {
  margin: -2px 0 0;
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px 16px;
  border: 2px solid;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
}

.form-status-success {
  color: #176b3a;
  background: #effaf3;
  border-color: #78cf99;
}

.form-status-error {
  color: #b42318;
  background: #fff4f2;
  border-color: #f4a69a;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.contact-form .privacy-consent input {
  flex: 0 0 auto;
  width: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.privacy-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 2px solid #bde2ff;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
}

.contact-form button {
  width: 100%;
  min-height: 62px;
  margin-top: 4px;
  cursor: pointer;
  font-size: 17px;
}

.contact-form button:disabled {
  cursor: not-allowed;
  background: #8090a6;
  box-shadow: none;
  opacity: 0.82;
}

.contact-cloud {
  position: absolute;
  bottom: -80px;
  left: 2%;
  width: 360px;
  opacity: 0.5;
}

.review-pins {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 0;
  pointer-events: none;
}

.review-pin {
  position: absolute;
  display: block;
  width: var(--mark-size, 72px);
  height: var(--mark-size, 72px);
  color: #fff;
  cursor: pointer;
  background: rgba(220, 38, 38, 0.08);
  border: 5px solid rgba(220, 38, 38, 0.96);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
  font: inherit;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.review-pin span {
  position: absolute;
  top: -16px;
  right: -16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: rgba(220, 38, 38, 0.98);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 47, 143, 0.22);
  font-size: 14px;
  font-weight: 1000;
}

.review-pin.is-active {
  background: rgba(255, 230, 66, 0.14);
  box-shadow:
    0 0 0 5px rgba(255, 230, 66, 0.82),
    0 12px 26px rgba(220, 38, 38, 0.24);
}

.review-tool {
  position: fixed;
  right: auto;
  bottom: 18px;
  left: 50%;
  z-index: 130;
  width: min(920px, calc(100vw - 32px));
  color: var(--ink);
  font-size: 14px;
  transform: translateX(-50%);
}

.review-tool-toggle {
  display: none;
  width: 128px;
  min-height: 44px;
  margin-left: auto;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 47, 143, 0.24);
  font: inherit;
  font-weight: 1000;
}

.review-composer {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid #cfe4ff;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 47, 143, 0.2);
  backdrop-filter: blur(14px);
}

.review-tool.is-collapsed {
  right: 18px;
  left: auto;
  width: auto;
  transform: none;
}

.review-tool.is-collapsed .review-composer {
  display: none;
}

.review-tool.is-collapsed .review-tool-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-composer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-composer-head strong,
.review-comment span {
  display: block;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 1000;
}

.review-composer-head span {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.review-head-actions,
.review-mark-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.review-mark-row {
  padding-top: 2px;
}

.review-ghost,
.review-add,
.review-copy,
.review-list-item {
  min-height: 38px;
  padding: 0 14px;
  color: var(--blue);
  cursor: pointer;
  background: #fff;
  border: 2px solid #bde2ff;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
}

.review-add {
  min-width: 142px;
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.review-add[aria-pressed="true"] {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.review-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  overflow: auto;
}

.review-list:empty {
  display: none;
}

.review-list-item {
  min-width: 58px;
}

.review-list-item.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.review-input-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
  align-items: end;
}

.review-comment {
  display: grid;
  gap: 6px;
}

.review-comment textarea {
  width: 100%;
  min-height: 66px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid #cfe4ff;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  resize: vertical;
}

.review-comment textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 84, 200, 0.12);
  outline: none;
}

.review-copy {
  min-height: 66px;
  color: #fff;
  background: linear-gradient(180deg, #ff8a16 0%, var(--orange) 70%, var(--orange-dark) 100%);
  border-color: var(--orange);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.24);
}

.review-comment textarea:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.review-mark-mode {
  cursor: crosshair;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 18px;
  }

  .site-nav {
    display: none;
  }

  .hero-inner,
  .solution-layout,
  .simulation-inner,
  .model-reasons,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 870px;
  }

  .hero-scene-wrap {
    top: 330px;
    right: 50%;
    width: min(118vw, 940px);
    height: 520px;
    transform: translateX(50%);
  }

  .facility-grid,
  .case-grid,
  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-copy,
  .contact-form {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .site-header {
    position: static;
    padding: 4px 16px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 8px;
  }

  .header-cta {
    display: none;
  }

  .section-band {
    padding: 36px 16px;
  }

  .hero {
    padding-top: 8px;
    padding-bottom: 12px;
    background:
      radial-gradient(circle at 86% 19%, rgba(255, 225, 239, 0.82) 0 17%, transparent 34%),
      radial-gradient(circle at 10% 14%, rgba(218, 244, 255, 0.92) 0 18%, transparent 36%),
      linear-gradient(180deg, #f7fcff 0%, #fff 78%);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .eyebrow,
  .section-kicker {
    width: 100%;
    justify-content: center;
    padding: 0 10px;
    text-align: center;
    min-height: 22px;
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 27px;
    line-height: 0.98;
  }

  .hero h1 em {
    font-size: 1.13em;
    -webkit-text-stroke: 2.3px var(--blue);
  }

  .mobile-break {
    display: block;
  }

  .hero-lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 6px 0;
    font-size: 11.5px;
    line-height: 1.32;
    overflow-wrap: anywhere;
  }

  .hero-badges {
    display: none;
  }

  .hero-scene-wrap {
    display: none;
  }

  .hero-scene-wrap::before {
    display: none;
  }

  .hero-mobile-scene-wrap {
    display: block;
    width: calc(100% + 56px);
    height: 155px;
    margin: 5px -38px 0 -18px;
    overflow: hidden;
    border-radius: 0;
  }

  .hero-mobile-scene {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
    filter: drop-shadow(0 18px 30px rgba(0, 58, 150, 0.13));
  }

  .primary-cta {
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-note {
    display: none;
  }

  .photo-card-family {
    width: 180px;
    height: 140px;
    bottom: 40px;
  }

  .photo-card-phone {
    top: 0;
    right: 0;
    width: 130px;
    height: 150px;
  }

  .sns-card {
    width: 112px;
    right: 10px;
    bottom: 18px;
  }

  .hero-stats,
  .facility-grid,
  .problem-grid,
  .solution-grid,
  .case-grid,
  .effect-grid,
  .voice-grid,
  .faq-grid,
  .flow-list,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 6px;
  }

  .stat-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 74px;
    padding: 5px 4px;
    text-align: center;
    border-width: 2px;
    box-shadow: 0 10px 24px rgba(0, 58, 150, 0.12);
  }

  .stat-icon {
    grid-row: auto;
    width: 26px;
    height: 26px;
    margin: 0 auto;
  }

  .stat-icon svg {
    width: 17px;
    height: 17px;
  }

  .stat-card p,
  .stat-card small {
    font-size: 9px;
    line-height: 1.1;
  }

  .stat-card strong {
    font-size: 11px;
    line-height: 1.05;
  }

  .stat-card strong span {
    font-size: 22px;
  }

  .disclaimer {
    display: none;
  }

  .section-heading h2,
  .simulation-copy h2,
  .contact-copy h2 {
    font-size: 27px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 25px;
    line-height: 1.28;
  }

  .section-heading p:not(.section-kicker) {
    font-size: 13px;
    line-height: 1.65;
  }

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

  .facility-card img {
    height: 96px;
  }

  .facility-card strong {
    min-height: 48px;
    padding: 8px;
    font-size: 12px;
  }

  .problem-grid article,
  .solution-grid article,
  .reason-grid article {
    min-height: 0;
    padding: 16px;
  }

  .experience-photo img {
    min-height: 240px;
  }

  .case-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    min-height: 190px;
  }

  .case-card img {
    height: 100%;
  }

  .case-card div {
    padding: 14px;
  }

  .case-card h3 {
    min-height: 0;
    font-size: 15px;
  }

  .case-card p {
    min-height: 0;
    font-size: 11px;
    line-height: 1.45;
  }

  .case-card strong {
    min-height: 48px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .case-card strong span {
    font-size: 28px;
  }

  .effect-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .effect-grid article {
    min-height: 84px;
    padding: 10px 6px;
    text-align: center;
  }

  .effect-grid span {
    font-size: 22px;
  }

  .effect-grid strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .simulation-inner,
  .model-reasons,
  .contact {
    gap: 16px;
  }

  .sim-panel {
    padding: 16px;
  }

  .sim-panel li,
  .sim-panel div {
    padding: 8px 10px;
    font-size: 12px;
  }

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

  .flow-list li {
    min-height: 118px;
    gap: 8px;
    padding: 14px 12px;
  }

  .flow-list span {
    min-height: 30px;
    padding: 0 9px;
    border-left-width: 5px;
    font-size: 12px;
  }

  .flow-list strong {
    font-size: 14px;
    line-height: 1.45;
  }

  summary {
    padding: 15px 16px 15px 50px;
    font-size: 14px;
  }

  details p {
    padding: 0 16px 16px 50px;
    font-size: 13px;
  }

  .contact-benefits {
    gap: 8px;
    margin-top: 16px;
  }

  .contact-copy,
  .contact-form {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .contact-heading-question {
    display: block;
  }

  .contact-benefits li {
    padding: 12px 12px 12px 40px;
    font-size: 13px;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
    padding: 16px;
  }

  .form-head {
    padding: 14px;
  }

  .form-head strong {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 44px;
  }

  .review-tool {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    font-size: 13px;
    transform: none;
  }

  .review-tool-toggle {
    width: 118px;
    min-height: 42px;
  }

  .review-composer {
    max-height: 58vh;
    overflow: auto;
    padding: 10px;
  }

  .review-composer-head {
    align-items: flex-start;
  }

  .review-composer-head strong,
  .review-comment span {
    font-size: 15px;
  }

  .review-pin {
    border-width: 4px;
  }

  .review-pin span {
    top: -13px;
    right: -13px;
    width: 27px;
    height: 27px;
    font-size: 13px;
  }

  .review-mark-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-list {
    max-height: 40px;
  }

  .review-input-row {
    grid-template-columns: 1fr;
  }

  .review-comment textarea {
    min-height: 72px;
  }

  .review-copy {
    min-height: 44px;
  }
}
