:root {
  --ink: #18251f;
  --ink-soft: #4a5a51;
  --green: #0d5b43;
  --green-dark: #07382b;
  --mint: #dff3e7;
  --coral: #ff6b4a;
  --yellow: #ffd36a;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: rgba(24, 37, 31, .14);
  --shadow: 0 24px 80px rgba(18, 36, 29, .16);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.sample-bar {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 7px 20px;
  color: #f8fff9;
  background: var(--green-dark);
  font-size: 12px;
  letter-spacing: 0;
}
.sample-bar strong { color: var(--yellow); }
.sample-bar span { min-width: 0; }
.sample-bar a {
  color: #f8fff9;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 240, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--green);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}
.brand-name { white-space: nowrap; }
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 700;
}
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--coral);
  transition: transform .25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.header-cta,
.button-primary {
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(255, 107, 74, .28);
}
.button-outline {
  border-color: rgba(13, 91, 67, .36);
  color: var(--green);
  background: rgba(255, 255, 255, .64);
}
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18, 36, 29, .18);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: min(820px, calc(100vh - 38px));
  padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 72px) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10vw 0 -10vw;
  height: 42%;
  background: var(--mint);
  z-index: -1;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero h1,
.section-head h2,
.feature-copy h2,
.consultation-copy h2,
.contact-copy h2,
.access-copy h2 {
  margin: 0;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}
.hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  text-wrap: balance;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 44px;
  display: grid;
  gap: 2px;
  width: min(300px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 60px rgba(10, 34, 24, .18);
  backdrop-filter: blur(18px);
}
.hero-card span {
  color: var(--coral);
  font-weight: 900;
}
.hero-card strong { font-size: 20px; }
.hero-card small { color: var(--ink-soft); }
.hero-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(980px, 100%);
  margin: clamp(36px, 5vw, 62px) auto 0;
  background: rgba(13, 91, 67, .18);
  border: 1px solid rgba(13, 91, 67, .18);
}
.hero-bottom div {
  padding: 22px clamp(16px, 3vw, 34px);
  background: var(--paper);
}
.hero-bottom strong,
.hero-bottom span {
  display: block;
}
.hero-bottom strong { font-weight: 900; }
.hero-bottom span { color: var(--ink-soft); font-size: 14px; }

.section {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 72px);
}
.section-head {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}
.section-head h2,
.feature-copy h2,
.consultation-copy h2,
.contact-copy h2,
.access-copy h2 {
  font-size: clamp(30px, 4.4vw, 56px);
  text-wrap: balance;
}
.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .65fr);
  align-items: end;
  gap: 44px;
  max-width: 1120px;
  text-align: left;
}
.section-head-row > p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.worry-grid,
.method-grid,
.course-grid,
.voice-grid {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.worry-grid { grid-template-columns: repeat(3, 1fr); }
.worry-card,
.method-card,
.course-card,
.voice-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}
.worry-card {
  padding: 28px;
  min-height: 250px;
}
.worry-card span,
.method-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}
.worry-card h3,
.method-card h3,
.course-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
}
.worry-card p,
.method-card p,
.course-card p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: var(--green-dark);
}
.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0 42px 42px 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}
.feature-copy {
  max-width: 620px;
}
.feature-copy .eyebrow { color: var(--yellow); }
.feature-copy p {
  color: rgba(255, 250, 240, .76);
  font-weight: 500;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.method { background: #f6f0e3; }
.method-grid { grid-template-columns: repeat(4, 1fr); }
.method-card {
  min-height: 284px;
  padding: 26px;
  background: var(--paper);
}

.course-grid { grid-template-columns: repeat(3, 1fr); }
.course-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 330px;
  background: var(--white);
}
.course-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--mint);
}
.course-tag {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.course-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 28px 0 0;
}
.course-card dt {
  color: var(--ink-soft);
  font-weight: 700;
}
.course-card dd {
  margin: 0;
  font-weight: 900;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 72px);
  background: var(--mint);
}
.consultation-copy {
  max-width: 600px;
}
.consultation-copy p:last-child,
.access-copy p,
.contact-copy p {
  color: var(--ink-soft);
  font-weight: 500;
}
.consultation-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 36px 0 0 36px;
  box-shadow: var(--shadow);
}

.results { background: var(--paper); }
.result-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 38px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: clamp(28px, 5vw, 56px);
  color: var(--paper);
  background: var(--green);
}
.result-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.16;
}
.result-panel .eyebrow { color: var(--yellow); }
.result-panel p { color: rgba(255, 250, 240, .74); }
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.result-stats div {
  padding: 20px 14px;
  text-align: center;
  background: rgba(255, 255, 255, .12);
}
.result-stats strong {
  display: block;
  color: var(--yellow);
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}
.result-stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}
.voice-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1120px;
}
.voice-card {
  padding: 28px;
  background: var(--white);
}
.voice-card p {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
.voice-card span {
  color: var(--green);
  font-weight: 900;
}

.price { background: #f6f0e3; }
.price-table {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--white);
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr .7fr .8fr;
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
}
.price-row:first-child { border-top: 0; }
.price-row-head {
  color: var(--paper);
  background: var(--green-dark);
  font-weight: 900;
}
.price-row strong {
  color: var(--coral);
  font-size: 22px;
}
.price-note {
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1120px;
  padding: 0;
  margin: 0 auto;
  background: var(--line);
  list-style: none;
}
.flow-list li {
  padding: 28px;
  background: var(--white);
}
.flow-list span {
  color: var(--coral);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}
.flow-list strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}
.flow-list p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.access {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: 24px;
  background: var(--mint);
}
.access-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .18) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, .18) 49% 51%, transparent 51%),
    var(--green);
  background-size: 74px 74px;
}
.map::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--coral);
}
.map span,
.map strong {
  position: absolute;
}
.map span {
  top: 32px;
  left: 32px;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
}
.map strong {
  bottom: 32px;
  right: 32px;
  font-size: 24px;
}

.contact {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: var(--green-dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
}
.contact .eyebrow { color: var(--yellow); }
.contact-copy p { color: rgba(255, 250, 240, .74); }
.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--paper);
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 37, 31, .2);
  border-radius: 0;
  padding: 14px 15px;
  background: var(--white);
}
.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: #061f18;
}
.footer p { margin: 4px 0 0; color: rgba(255, 250, 240, .68); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .nav {
    position: fixed;
    top: 106px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .25s var(--ease);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .header-cta { justify-self: end; }
  .menu-button { display: block; }
  .hero,
  .feature-band,
  .consultation,
  .result-panel,
  .access,
  .contact-inner,
  .section-head-row {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 56px;
  }
  .hero-media,
  .hero-media img {
    min-height: 420px;
  }
  .hero-card { left: 16px; bottom: 16px; }
  .hero-bottom,
  .worry-grid,
  .method-grid,
  .course-grid,
  .flow-list {
    grid-template-columns: 1fr 1fr;
  }
  .feature-photo img,
  .consultation-photo img {
    border-radius: 24px;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .nav { gap: 18px; }
  .hero {
    grid-template-columns: minmax(430px, .9fr) minmax(380px, 1.1fr);
  }
  .hero h1 { font-size: clamp(48px, 4.7vw, 58px); }
}

@media (max-width: 640px) {
  .sample-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 11px;
    line-height: 1.5;
  }
  .sample-bar span {
    width: 100%;
    overflow-wrap: anywhere;
  }
  .site-header {
    top: 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand-name { font-size: 14px; }
  .header-cta { display: none; }
  .nav { top: 112px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 44px 16px 0;
  }
  .hero h1 { font-size: clamp(35px, 9.8vw, 40px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-media,
  .hero-media img {
    min-height: 360px;
  }
  .hero-bottom,
  .worry-grid,
  .method-grid,
  .course-grid,
  .result-stats,
  .voice-grid,
  .flow-list,
  .price-row {
    grid-template-columns: 1fr;
  }
  .section,
  .feature-band,
  .consultation,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-head { text-align: left; }
  .result-panel { padding: 26px 18px; }
  .price-row { gap: 4px; }
  .footer { flex-direction: column; }
}
