:root {
  --ink: #17201f;
  --muted: #68716f;
  --soft: #f1eee7;
  --paper: #fbfaf6;
  --green: #0d5f58;
  --green-dark: #092f31;
  --gold: #b98b38;
  --wine: #6d3131;
  --blue: #365f73;
  --line: rgba(23, 32, 31, 0.16);
  --shadow: 0 28px 80px rgba(12, 24, 24, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

body :where(h1, h2, h3, p, a, span, strong, small, li) {
  overflow-wrap: anywhere;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(23, 32, 31, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.header-tsurezure {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--green-dark);
  background: rgba(251, 250, 246, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.site-menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-mobile-menu {
  position: absolute;
  z-index: 40;
  top: 11px;
  right: auto;
  left: clamp(258px, 76vw, 326px);
  display: inline-flex;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  cursor: pointer;
  background: var(--green-dark);
  border: 1px solid rgba(9, 47, 49, 0.88);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(9, 47, 49, 0.18);
}

.hamburger-lines {
  display: grid;
  gap: 5px;
  width: 20px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  background: #fffefa;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-menu-toggle:checked + .site-mobile-menu .hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle:checked + .site-mobile-menu .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle:checked + .site-mobile-menu .hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-menu-panel {
  position: fixed;
  top: 66px;
  right: auto;
  left: 54px;
  display: none;
  gap: 6px;
  width: min(calc(100vw - 28px), 320px);
  padding: 10px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 22px 52px rgba(23, 32, 31, 0.16);
}

.site-menu-toggle:checked ~ .site-mobile-menu-panel {
  display: grid;
}

.site-mobile-menu-panel a {
  padding: 12px 14px;
  color: var(--green-dark);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
}

.site-mobile-menu-panel a:hover,
.site-mobile-menu-panel a:focus-visible,
.site-mobile-menu-panel a[aria-current="page"] {
  background: var(--soft);
}

.site-mobile-menu-panel .mobile-menu-primary {
  color: #fff;
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(420px, 62vh) auto;
  overflow: visible;
  padding: 72px 0 0;
  background: var(--paper);
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-content {
  position: relative;
  width: min(100%, 1180px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #2d3937;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(9, 47, 49, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(251, 250, 246, 0.78);
  border: 1px solid var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 720px);
  margin-top: 44px;
}

.trust-strip div {
  padding: 16px;
  background: rgba(251, 250, 246, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(23, 32, 31, 0.12);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 13px;
  color: var(--muted);
}

.trust-strip span {
  margin-top: 4px;
  font-weight: 900;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-head.compact {
  max-width: 760px;
}

.problem-grid,
.feature-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.problem-grid article,
.feature-grid article,
.price-grid article {
  padding: 28px;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 54px rgba(23, 32, 31, 0.1);
}

.problem-grid p,
.feature-grid p,
.price-grid p,
.proof p,
.split-copy p,
.faq p,
.contact p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: var(--wine);
  border-radius: 4px;
  font-weight: 900;
}

.service {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  max-width: 1220px;
  margin: 0 auto;
}

.split-copy {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 2px;
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 0.86em;
  left: 5px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(23, 48, 45, 0.11);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.features {
  background:
    linear-gradient(180deg, #fbfaf6 0%, #eef2ee 100%);
}

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

.feature-grid article {
  min-height: 210px;
  border-top: 4px solid var(--gold);
}

.mini-visual,
.compact-flow svg {
  display: grid;
  width: 64px;
  height: 54px;
  margin-bottom: 14px;
  place-items: center;
  background: #eef8f7;
  border: 1px solid rgba(13, 98, 93, 0.13);
  border-radius: 8px;
}

.mini-visual svg,
.compact-flow svg {
  width: 100%;
  height: 100%;
  padding: 10px;
  fill: none;
  stroke: var(--green);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow {
  background: #fffefa;
}

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

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

.flow-list li {
  min-height: 260px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.compact-flow li {
  min-height: 220px;
}

.flow-list span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 4px;
  font-weight: 900;
}

.compact-flow svg {
  margin-bottom: 14px;
}

.flow-list p {
  color: var(--muted);
}

.proof {
  background: linear-gradient(135deg, #092f31, #143f3f);
  color: #fff;
}

.proof .eyebrow {
  color: #d4ad63;
}

.proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.proof p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.pricing {
  background: var(--paper);
}

.price-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.price-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
}

.featured-price {
  background: #f5f1e7 !important;
  border-color: rgba(185, 139, 56, 0.42) !important;
}

.featured-price a {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

details {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 4px;
}

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

details p {
  padding: 0 24px 22px;
  margin: 0;
}

.club-link,
.profile-link {
  background: #fffefa;
}

.club-link-inner,
.profile-link-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 54px rgba(23, 32, 31, 0.1);
  align-items: center;
}

.club-link p:not(.eyebrow),
.profile-link p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.club-link .button,
.profile-link .button {
  white-space: nowrap;
}

.profile-card {
  grid-template-columns: 136px minmax(0, 1fr) auto;
}

.profile-link-portrait {
  overflow: hidden;
  width: 136px;
  background: #dfe7e8;
  border: 1px solid rgba(23, 48, 45, 0.12);
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(23, 32, 31, 0.12);
}

.profile-link-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: 50% 34%;
}

.profile-main {
  background: var(--paper);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(112px, 13vw, 156px) clamp(18px, 5vw, 72px) clamp(66px, 8vw, 98px);
}

.profile-photo-wrap {
  overflow: hidden;
  background: #dfe7e8;
  border: 1px solid rgba(23, 48, 45, 0.12);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.profile-hero > *,
.profile-copy,
.profile-message,
.profile-detail-grid article {
  min-width: 0;
}

.profile-photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: 50% 36%;
}

.profile-copy h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(38px, 4.2vw, 50px);
  overflow-wrap: break-word;
}

.profile-copy h1 span {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.24;
  max-width: 100%;
  overflow-wrap: break-word;
}

.profile-copy h1 .profile-no-break {
  display: inline-block;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
}

.profile-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3.2vw, 36px);
}

.profile-message {
  display: grid;
  gap: 16px;
  max-width: 700px;
}

.profile-message p,
.profile-signature {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.profile-message p {
  overflow-wrap: anywhere;
}

.profile-signature {
  margin-top: 30px;
  color: var(--ink);
  font-weight: 900;
}

.profile-details {
  background: var(--soft);
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.profile-detail-grid article {
  padding: clamp(28px, 5vw, 46px);
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 54px rgba(23, 32, 31, 0.1);
}

.profile-detail-grid h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.8vw, 42px);
}

.profile-list,
.profile-timeline {
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-list {
  display: grid;
  gap: 14px;
}

.profile-list li {
  position: relative;
  padding-left: 26px;
  font-size: 18px;
  font-weight: 900;
}

.profile-list-rich {
  gap: 18px;
}

.profile-list-rich li {
  display: grid;
  gap: 6px;
}

.profile-list-rich strong,
.profile-list-rich span {
  display: block;
}

.profile-list-rich span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.profile-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.profile-timeline {
  display: grid;
  gap: 18px;
}

.profile-timeline li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.profile-timeline span {
  color: var(--green);
  font-weight: 900;
}

.profile-timeline p {
  margin: 0;
  color: var(--muted);
}

.profile-contact {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 47, 49, 0.98), rgba(24, 49, 49, 0.98)),
    var(--green-dark);
}

.profile-contact .eyebrow {
  color: #d4ad63;
}

.profile-contact-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

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

.profile-contact .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 47, 49, 0.98), rgba(24, 49, 49, 0.98)),
    var(--green-dark);
}

.contact .eyebrow {
  color: #d4ad63;
}

.contact-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.contact p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.contact-actions {
  justify-content: center;
  margin-top: 30px;
}

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

.contact .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #102724;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

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

@keyframes faFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faPhotoSettle {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .section-head,
  .split,
  .proof-inner,
  .club-link-inner,
  .profile-link-inner,
  .profile-hero,
  .profile-detail-grid,
  .contact-inner,
  .profile-contact-inner {
    animation: faFadeUp 620ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hero-media img,
  .profile-photo-wrap img {
    animation: faPhotoSettle 1200ms ease-out both;
  }

  .problem-grid article,
  .feature-grid article,
  .price-grid article,
  .flow-list li,
  .club-link-inner,
  .profile-link-inner,
  .profile-detail-grid article,
  .button {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .problem-grid article:hover,
  .feature-grid article:hover,
  .price-grid article:hover,
  .flow-list li:hover,
  .club-link-inner:hover,
  .profile-link-inner:hover,
  .profile-detail-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(23, 32, 31, 0.14);
  }
}

@media (min-width: 961px) {
  .site-header > .site-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .header-tsurezure {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .site-header > .site-mobile-menu {
    display: inline-flex !important;
    position: absolute;
    z-index: 30;
    top: 11px;
    right: auto;
    left: clamp(258px, 76vw, 326px);
    margin-left: 0;
  }

  .split,
  .proof-inner,
  .club-link-inner,
  .profile-link-inner,
  .profile-hero,
  .profile-detail-grid {
    grid-template-columns: 1fr;
  }

  .profile-link-portrait {
    width: min(180px, 48vw);
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 14px;
  }

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

  .hero {
    grid-template-rows: minmax(310px, 54vh) auto;
    padding: 64px 0 0;
    background: var(--paper);
  }

  .hero-media {
    position: relative;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
  }

  .hero-content {
    max-width: none;
    padding: 28px 18px 40px;
  }

  .hero-lead {
    color: #34403d;
  }

  h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .trust-strip,
  .problem-grid,
  .feature-grid,
  .price-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .product-frame img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .problem-grid article,
  .feature-grid article,
  .price-grid article,
  .flow-list li {
    padding: 24px;
  }

  .profile-hero {
    padding: 92px 18px 50px;
    gap: 28px;
  }

  .profile-photo-wrap {
    width: min(260px, 72vw);
    margin: 0 auto;
  }

  .profile-photo-wrap img {
    aspect-ratio: 3 / 4;
    object-position: 50% 36%;
  }

  .profile-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.16;
  }

  .profile-copy h1 span {
    margin-top: 7px;
    font-size: clamp(18px, 4.8vw, 21px);
  }

  .profile-message p,
  .profile-signature,
  .profile-list li {
    font-size: 16px;
  }

  .profile-timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .profile-link .button {
    white-space: normal;
  }
}

@media (max-width: 360px) {
  .site-header > .site-mobile-menu {
    left: 258px;
  }

  .site-mobile-menu-panel {
    left: 14px;
    width: 292px;
  }
}

/* Key visual preview: fresher childcare-photo direction. */
:root {
  --soft: #eef7f4;
  --paper: #fbfefd;
  --green: #0d625d;
  --green-dark: #082f32;
  --gold: #8b6d32;
  --blue: #487584;
  --line: rgba(8, 47, 50, 0.14);
  --shadow: 0 28px 80px rgba(8, 47, 50, 0.18);
}

body {
  background:
    linear-gradient(180deg, #fbfefd 0%, #f6fbf9 42%, #fbfefd 100%);
}

.site-header {
  background: rgba(251, 254, 253, 0.92);
}

.hero {
  grid-template-rows: minmax(460px, 64vh) auto;
  background: #fbfefd;
}

.hero-media {
  background: #edf8f6;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 254, 253, 0.76) 0%, rgba(251, 254, 253, 0.18) 36%, rgba(251, 254, 253, 0) 68%),
    linear-gradient(180deg, rgba(251, 254, 253, 0) 62%, rgba(251, 254, 253, 0.72) 100%);
}

.hero-media img {
  object-position: 62% center;
}

.hero-content {
  margin-top: -120px;
  padding-top: 0;
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > .hero-lead,
.hero-content > .hero-actions {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}

.hero-content > h1 {
  text-shadow: 0 18px 38px rgba(255, 255, 255, 0.86);
}

.hero-lead {
  color: #263d3b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.service-path-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin-top: 42px;
}

.service-path-card {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(13, 98, 93, 0.18);
}

.service-path-card svg {
  width: 84px;
  height: 64px;
  margin-bottom: 4px;
  padding: 10px;
  background: #eff8f7;
  border: 1px solid rgba(13, 98, 93, 0.12);
  border-radius: 8px;
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-path-card strong {
  color: var(--green-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
}

.service-path-card span {
  color: #415551;
  font-size: 15px;
  font-weight: 800;
}

.intro {
  padding-top: clamp(76px, 9vw, 118px);
}

.problem-grid article,
.feature-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
  border-color: rgba(13, 98, 93, 0.13);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 38px;
  opacity: 0.14;
  background:
    linear-gradient(var(--green), var(--green)) 0 8px / 42px 3px no-repeat,
    linear-gradient(var(--green), var(--green)) 0 19px / 30px 3px no-repeat,
    radial-gradient(circle at 46px 28px, var(--green) 0 7px, transparent 8px);
  border: 2px solid var(--green);
  border-radius: 7px;
}

.problem-grid article {
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 12px;
}

.problem-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
}

.problem-visual .icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-weight: 900;
}

.problem-visual svg {
  width: 118px;
  height: 82px;
  padding: 12px;
  background: #eef8f7;
  border: 1px solid rgba(13, 98, 93, 0.13);
  border-radius: 8px;
  fill: none;
  stroke: var(--green);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-grid h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.problem-grid p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.service {
  background: linear-gradient(180deg, #eef7f4 0%, #f8fcfb 100%);
}

.flow + .faq {
  padding-top: clamp(56px, 7vw, 92px);
}

@media (max-width: 680px) {
  .section {
    padding: 38px 14px;
  }

  .section-head,
  .section-head.compact {
    margin-bottom: 20px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero {
    grid-template-rows: minmax(230px, 36vh) auto;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(251, 254, 253, 0) 48%, rgba(251, 254, 253, 0.82) 100%);
  }

  .hero-content {
    margin-top: -22px;
    padding: 18px 14px 24px;
  }

  .hero-content > h1 {
    margin-bottom: 8px;
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .hero-lead {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    width: calc(50% - 4px);
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  .service-path-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 14px;
  }

  .service-path-card {
    min-height: 0;
    align-content: start;
    gap: 3px;
    padding: 8px 5px;
    text-align: center;
  }

  .service-path-card svg {
    width: 38px;
    height: 30px;
    margin: 0 auto 2px;
    padding: 4px;
  }

  .service-path-card strong {
    font-size: 12px;
    line-height: 1.35;
  }

  .service-path-card span {
    font-size: 9.5px;
    line-height: 1.35;
    font-weight: 800;
  }

  .intro {
    padding-top: 34px;
  }

  .intro .section-head {
    margin-bottom: 16px;
  }

  .intro .section-head h2 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.24;
  }

  .intro .section-head p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.62;
  }

  .problem-grid article {
    min-height: 104px;
    gap: 4px;
    padding: 8px 5px;
    text-align: center;
  }

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

  .problem-visual {
    display: grid;
    justify-content: center;
    gap: 3px;
  }

  .problem-visual svg {
    width: 38px;
    height: 30px;
    margin: 0 auto;
    padding: 4px;
  }

  .problem-visual .icon {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    font-size: 9px;
  }

  .problem-grid h3 {
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .problem-grid p {
    min-height: 2.7em;
    font-size: 9px;
    line-height: 1.35;
    white-space: normal;
  }

  .features .section-head,
  .flow .section-head {
    margin-bottom: 14px;
  }

  .features .section-head h2,
  .flow .section-head h2 {
    margin-bottom: 0;
    font-size: 21px;
    line-height: 1.24;
  }

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

  .feature-grid article,
  .flow-list li {
    min-height: 128px;
    padding: 9px 5px;
    text-align: center;
    border-top-width: 3px;
  }

  .mini-visual,
  .compact-flow svg {
    width: 38px;
    height: 30px;
    margin: 0 auto 5px;
  }

  .mini-visual svg,
  .compact-flow svg {
    padding: 4px;
    stroke-width: 3.4;
  }

  .flow-list span {
    width: 22px;
    height: 22px;
    margin: 0 auto 4px;
    font-size: 9px;
  }

  .feature-grid h3,
  .flow-list h3 {
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .feature-grid p,
  .flow-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 8.5px;
    line-height: 1.35;
    overflow-wrap: normal;
  }

  .flow + .faq {
    padding-top: 32px;
  }
}
