:root {
  --ink: #202631;
  --muted: #65717d;
  --line: #e9edf1;
  --soft: #f7f9fb;
  --orange: #ff8f3d;
  --orange-dark: #f07822;
  --yellow: #ffd75d;
  --green: #4fcb91;
  --blue: #43c7ef;
  --pink: #ff93aa;
  --cream: #fff7e6;
  --shadow: 0 24px 60px rgba(40, 55, 70, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  background: #fffdf7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 0 7vw;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(233, 237, 241, .78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #6d7680;
  font-size: 12px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 22px 0;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--orange-dark);
}

.site-nav a.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #ffb23f);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(246, 139, 60, .24);
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff7df 0%, #f2fff7 48%, #edfaff 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, .98) 0%, rgba(255, 250, 237, .9) 35%, rgba(255, 255, 255, .36) 70%, rgba(255, 255, 255, .14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(245, 255, 250, .76));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1180px);
  margin: 0 auto;
  padding-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  color: #26805d;
  font-size: 13px;
  font-weight: 800;
  background: #e9fff3;
  border: 1px solid #bef1d4;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(79, 203, 145, .16);
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-question {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.hero-question span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: #3b2a16;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  background: #fff;
  border: 2px solid rgba(255, 183, 72, .72);
  border-radius: 999px;
  box-shadow: 0 12px 0 rgba(255, 214, 93, .42);
}

.hero-question span:nth-child(2) {
  border-color: rgba(79, 203, 145, .64);
  box-shadow: 0 12px 0 rgba(79, 203, 145, .22);
}

.hero-question span:nth-child(3) {
  border-color: rgba(67, 199, 239, .64);
  box-shadow: 0 12px 0 rgba(67, 199, 239, .22);
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 16px;
  color: #48525d;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.75;
}

.primary-button,
.secondary-button,
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ffb23f);
  box-shadow: 0 14px 0 rgba(224, 107, 25, .26), 0 22px 36px rgba(246, 139, 60, .26);
}

.primary-button:hover,
.phone-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.secondary-button {
  color: #55616d;
  background: #fff;
  border: 1px solid var(--line);
}

.micro-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #6a7681;
  font-size: 13px;
}

.micro-note span {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
}

.section {
  padding: 88px 7vw;
}

.section-heading {
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.45;
  letter-spacing: 0;
}

.section-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 76px;
  height: 2px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink));
  border-radius: 999px;
  transform: translateX(-50%);
  content: "";
}

.worries,
.voices {
  background:
    linear-gradient(180deg, #fffdf7, #f5fbff);
}

.data-section {
  padding-top: 76px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 215, 93, .28), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(67, 199, 239, .2), transparent 28%),
    #fffaf0;
}

.data-section .section-heading {
  margin-bottom: 44px;
}

.data-card {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 42px;
  padding: 42px;
  background: rgba(255, 255, 255, .92);
  border: 2px solid #fff0d5;
  border-radius: 8px;
  box-shadow: 0 18px 0 rgba(255, 215, 93, .24), 0 30px 58px rgba(44, 64, 84, .1);
}

.data-meter {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  aspect-ratio: 1;
  margin: 0 auto;
  color: var(--orange-dark);
  font-weight: 900;
  background:
    conic-gradient(var(--orange) 0 50%, #eaf8fd 50% 100%);
  border-radius: 50%;
  box-shadow: 0 14px 0 rgba(79, 203, 145, .18);
}

.data-meter::before {
  position: absolute;
  inset: 24px;
  background: #fff;
  border-radius: 50%;
  content: "";
}

.data-meter span {
  position: relative;
  z-index: 1;
  font-size: 42px;
  line-height: 1;
}

.data-content h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.55;
}

.data-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.data-content p + p {
  margin-top: 10px;
}

.card-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

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

.info-card,
.voice-card {
  min-height: 238px;
  padding: 38px;
  background: #fff;
  border: 2px solid #fff0d5;
  border-radius: 8px;
  box-shadow: 0 18px 0 rgba(255, 215, 93, .2), 0 28px 48px rgba(44, 64, 84, .08);
}

.info-card {
  display: grid;
  align-content: start;
}

.worry-illustration {
  width: min(100%, 210px);
  aspect-ratio: 1;
  margin: 0 auto 26px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #fff8ef;
  box-shadow: 0 12px 0 rgba(67, 199, 239, .14);
}

.icon-badge {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.icon-badge {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge.blue {
  color: var(--blue);
  background: #eefaff;
}

.icon-badge.orange {
  color: var(--orange);
  background: #fff4ea;
}

.icon-badge.green {
  color: var(--green);
  background: #eefbf4;
}

.info-card h3,
.reason h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.55;
}

.info-card p,
.reason p,
.voice-card p,
.form-heading p,
.cta-box p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reasons {
  background:
    linear-gradient(110deg, rgba(255, 245, 205, .86), rgba(222, 255, 237, .9) 50%, rgba(222, 247, 255, .92));
}

.reason-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  text-align: center;
}

.reason-illustration {
  width: min(100%, 230px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, .96);
  box-shadow: 0 14px 0 rgba(79, 203, 145, .14), 0 22px 36px rgba(35, 69, 86, .1);
}

.form-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 236, 155, .26), rgba(226, 255, 241, .42) 48%, rgba(224, 247, 255, .5)),
    #fffdfa;
}

.form-shell {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 2px solid #ffe7b7;
  border-radius: 8px;
  box-shadow: 0 18px 0 rgba(255, 215, 93, .24), var(--shadow);
}

.form-heading {
  padding: 42px 32px 34px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream), #effff7);
}

.form-heading h2 {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.38;
}

.contact-form {
  padding: 42px clamp(22px, 6vw, 62px) 50px;
}

.textarea-label,
.input-grid label {
  display: grid;
  gap: 8px;
  color: #4f5b66;
  font-size: 14px;
  font-weight: 800;
}

.input-grid label span {
  justify-self: start;
  display: inline-grid;
  place-items: center;
  min-height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  background: var(--pink);
  border-radius: 999px;
}

select,
input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 143, 61, .16);
}

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

.input-grid + .input-grid {
  margin-top: 18px;
}

.textarea-label {
  margin-top: 18px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: #5f6a75;
  font-size: 13px;
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--orange);
}

.form-error,
.form-success {
  min-height: 24px;
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.form-error {
  color: #c94b31;
}

.form-success {
  color: #219862;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.form-actions .primary-button {
  min-width: 250px;
}

.form-submit {
  min-width: min(100%, 360px);
}

.stars {
  margin-bottom: 18px;
  color: #f5bd33;
  font-size: 15px;
  letter-spacing: 1px;
}

.voice-card p {
  min-height: 98px;
  font-style: italic;
}

.voice-card span {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  background: #fff;
}

.cta-box {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 58px 32px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(120deg, #fff5d2, #effff6 62%, #e9f9ff);
  border: 2px solid #ffe7b7;
  border-radius: 8px;
  box-shadow: 0 18px 0 rgba(67, 199, 239, .12);
}

.cta-box::before,
.cta-box::after {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
}

.cta-box::before {
  top: -62px;
  left: -62px;
  background: rgba(246, 139, 60, .14);
}

.cta-box::after {
  right: -24px;
  bottom: -48px;
  background: rgba(75, 196, 237, .16);
}

.cta-box h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.8vw, 34px);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 20px;
}

.phone-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 25px rgba(85, 202, 139, .28);
}

.phone-button::before {
  margin-right: 8px;
  content: "☎";
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 52px;
  padding: 78px 7vw 34px;
  background: #f8fafc;
}

.site-footer p {
  max-width: 360px;
  margin-top: 24px;
}

.footer-links {
  display: flex;
  gap: 70px;
}

.footer-links div {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 120px;
  color: #727d87;
  font-size: 13px;
}

.footer-links strong {
  color: var(--ink);
  font-size: 13px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: #9ca6ae;
  font-size: 12px;
}

.sticky-contact {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(233, 237, 241, .92);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(35, 52, 68, .16);
  backdrop-filter: blur(16px);
}

.sticky-phone,
.sticky-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.sticky-phone {
  color: #35a86d;
  background: #eefbf4;
}

.sticky-phone::before {
  margin-right: 7px;
  content: "☎";
}

.sticky-button {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(246, 139, 60, .25);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 14px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .74));
  }

  .card-grid.three,
  .data-card,
  .reason-grid,
  .input-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .data-card {
    gap: 28px;
    text-align: center;
  }

  .info-card,
  .voice-card {
    min-height: auto;
  }

  .footer-links {
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 66px 20px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 40px);
  }

  h1 {
    font-size: 36px;
    line-height: 1.22;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-question {
    gap: 8px;
  }

  .data-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .data-card {
    padding: 30px 22px;
  }

  .data-meter {
    width: 170px;
  }

  .data-meter::before {
    inset: 19px;
  }

  .data-meter span {
    font-size: 34px;
  }

  .data-content h3 {
    font-size: 20px;
  }

  .data-content p {
    text-align: left;
  }

  .hero-question span {
    min-height: 40px;
    padding: 0 13px;
    font-size: 17px;
    box-shadow: 0 8px 0 rgba(255, 214, 93, .42);
  }

  .primary-button,
  .secondary-button,
  .phone-button {
    width: 100%;
    padding-inline: 18px;
  }

  .info-card,
  .voice-card {
    padding: 30px;
  }

  .reason-grid {
    gap: 38px;
  }

  .form-heading {
    padding: 34px 20px 28px;
  }

  .contact-form {
    padding: 36px 20px 42px;
  }

  .form-actions,
  .cta-actions {
    flex-direction: column;
  }

  .form-actions .primary-button {
    min-width: 0;
  }

  .footer-links {
    flex-direction: column;
  }

  .sticky-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .sticky-phone,
  .sticky-button {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 13px;
  }

  body {
    padding-bottom: 78px;
  }
}
