:root {
  --green: #009844;
  --deep: #06351f;
  --mint: #eaf8ef;
  --line: #dfe9e2;
  --gold: #ffd43b;
  --text: #151a18;
  --muted: #68746d;
  --soft: #f8faf7;
  --shadow: 0 16px 40px rgba(21, 56, 35, .09);
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

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

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(222, 232, 224, .8);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 0;
  line-height: 1.2;
  flex: 0 0 auto;
}

.brand-logo {
  font-size: 23px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .02em;
}

.brand-logo::first-letter {
  color: var(--green);
}

.brand-sub {
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid var(--green);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 152, 68, .18);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #10b981, #0d9488);
  overflow: hidden;
  position: relative;
}

.button-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0%   { left: -100%; }
  30%  { left: 130%; }
  100% { left: 130%; }
}

.button-outline {
  color: var(--green);
  background: #fff;
}

.button.small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 12px;
}

.menu-button {
  display: none;
}

.line-header-button {
  display: none;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    url("assets/desktop-top.jpg") center / cover no-repeat;
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .52fr) minmax(0, .48fr);
  align-items: center;
  gap: 28px;
}

.hero-copy {
  padding: 62px 0 58px;
  max-width: 610px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.25;
  font-weight: 900;
}

.hero h1 span,
h2 span,
.coach-name strong,
.result-grid strong {
  color: var(--green);
}

.lead {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

.lead::first-line {
  font-weight: 500;
}

.guun {
  font-style: normal;
  font-weight: 900;
  font-size: 1em;
  color: var(--green);
  letter-spacing: 0.02em;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 14px;
  margin-bottom: 30px;
}

.hero-points div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 76px;
  padding: 10px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  color: #20352a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: 2px solid var(--green);
  border-radius: 6px;
  position: relative;
}

.icon::after,
.icon::before {
  content: "";
  position: absolute;
  background: var(--green);
}

.beginner {
  border: 0;
  border-radius: 0;
}

.beginner::before,
.beginner::after {
  width: 16px;
  height: 24px;
  top: 3px;
  border-radius: 12px 12px 12px 2px;
}

.beginner::before {
  left: 3px;
  background: var(--green);
  transform: rotate(-32deg);
  transform-origin: 100% 100%;
}

.beginner::after {
  right: 3px;
  background: var(--gold);
  transform: rotate(32deg);
  transform-origin: 0 100%;
}

.chart::after { width: 17px; height: 12px; left: 5px; bottom: 5px; background: linear-gradient(90deg, var(--green) 2px, transparent 2px 5px, var(--green) 5px 7px, transparent 7px 10px, var(--green) 10px 12px); }
.person::after { width: 10px; height: 10px; border-radius: 50%; left: 8px; top: 5px; }
.person::before { width: 18px; height: 8px; border-radius: 10px 10px 0 0; left: 4px; bottom: 5px; }
.bag::after { width: 15px; height: 12px; border-radius: 3px; left: 5px; bottom: 5px; }
.bag::before { width: 9px; height: 6px; border: 2px solid var(--green); border-bottom: 0; background: transparent; left: 8px; top: 6px; border-radius: 8px 8px 0 0; }
.car::after { width: 18px; height: 8px; border-radius: 7px 7px 3px 3px; left: 4px; top: 10px; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.button-microcopy {
  margin: 0;
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  letter-spacing: 0.03em;
}

.hero-actions .button {
  min-width: 240px;
}

.hero-visual {
  display: none;
  min-height: 480px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 70px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  filter: saturate(1.04) brightness(1.03);
}

.mobile-hero-image {
  display: none;
}

.badge {
  position: absolute;
  right: 34px;
  bottom: 52px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #2f2b09;
  text-align: center;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 14px 26px rgba(151, 122, 0, .22);
}

.badge strong {
  font-size: 21px;
}

.section {
  padding: 58px 0;
}

.section h2 {
  margin: 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.45;
}

.section-line {
  width: 34px;
  height: 3px;
  margin: 14px auto 30px;
  border-radius: 99px;
  background: var(--green);
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.worry-card,
.price-card,
.voice-grid article,
.result-grid article,
.access-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.worry-card {
  min-height: 126px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 22px 18px;
  border-color: #f2df98;
  text-align: center;
}

.worry-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.illust {
  width: 86px;
  height: 72px;
  position: relative;
}

.face::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 23px;
  top: 8px;
  border: 2px solid #233;
  border-radius: 50%;
  background: #fff;
}

.face::after {
  content: "";
  width: 62px;
  height: 34px;
  position: absolute;
  left: 12px;
  bottom: 0;
  border-radius: 28px 28px 6px 6px;
  background: #ccecf2;
  border: 2px solid #233;
}

.slice::before {
  content: "";
  width: 58px;
  height: 28px;
  position: absolute;
  left: 15px;
  top: 24px;
  border-top: 3px dashed var(--green);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.slice::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 6px;
  bottom: 12px;
  border: 2px solid #555;
  border-radius: 50%;
  background: #fff;
}

.score::before {
  content: "100";
  position: absolute;
  left: 23px;
  top: 12px;
  color: #c2a500;
  font-size: 28px;
  font-weight: 800;
}

.score::after {
  content: "";
  width: 72px;
  height: 18px;
  position: absolute;
  left: 7px;
  bottom: 8px;
  background: linear-gradient(135deg, transparent 16%, var(--green) 16% 100%);
}

.reasons {
  padding-top: 24px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.reason-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 51, 35, .08);
}

.reason-grid img,
.photo-fallback,
.reason-icon-card {
  width: 100%;
  height: clamp(104px, 9vw, 136px);
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.reason-grid article:nth-child(3) img {
  object-position: center;
}

.reason-grid h3 {
  min-height: 74px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.photo-fallback {
  background: #edf5ef;
  position: relative;
}

.reason-icon-card {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #edf8f1, #f7fbf8);
}

.reason-icon-card svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clubs::before,
.clubs::after {
  content: "";
  width: 18px;
  height: 92px;
  position: absolute;
  left: 43%;
  top: 6px;
  border-left: 4px solid #727b73;
  border-bottom: 18px solid #a7aaa5;
  border-radius: 0 0 12px 12px;
  transform: rotate(-18deg);
}

.clubs::after {
  left: 55%;
  transform: rotate(16deg);
}

.building {
  background:
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(180deg, #bdd8f3, #f1f7fc 55%, #d8ead8);
}

.building::after {
  content: "";
  width: 72px;
  height: 92px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: linear-gradient(#9baab7, #e6edf1);
  box-shadow: -58px 18px 0 -8px #c9d4db, 58px 22px 0 -12px #bac8d1;
}

.parking {
  background: linear-gradient(150deg, #d9efe0, #f5fbf6 54%, #cdd8ce);
}

.parking::after {
  content: "";
  width: 116px;
  height: 46px;
  position: absolute;
  left: 50%;
  top: 42%;
  border-radius: 24px 30px 10px 10px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-bottom: 12px solid #dfe4e0;
  box-shadow: -34px 32px 0 -24px #222, 34px 32px 0 -24px #222;
}

.coach-section {
  background: linear-gradient(180deg, #fff, #fbfdfb);
}

.coach-heading {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .25em;
  flex-wrap: wrap;
}

.coach-heading span {
  display: inline-block;
}

.coaches-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}

.coach-divider {
  width: 60px;
  height: 2px;
  background: var(--line);
  margin: 0 auto;
}

.coach-grid-reverse {
  direction: rtl;
}

.coach-grid-reverse > * {
  direction: ltr;
}

.coach-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--green);
}

.coach-name-en {
  margin: -12px 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.coach-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 62px;
}

.coach-photo {
  min-height: 420px;
  position: relative;
}

.coach-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 10%;
  border-radius: 16px;
  border: 1px solid #cfe9d6;
  background: #f4f7f5;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: rgba(229, 248, 235, .92);
  color: var(--green);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 117, 52, .08);
}

.bubble strong {
  font-size: 25px;
  line-height: 1.35;
}

.b1 { left: 0; bottom: 32px; }
.b2 { left: 132px; bottom: 82px; }
.b3 { left: 92px; bottom: -18px; }

.coach-copy h2 {
  text-align: left;
  margin-bottom: 14px;
}

.coach-copy p {
  margin: 0 0 18px;
}

.coach-name {
  font-weight: 800;
}

.check-list,
.access-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.access-list li {
  position: relative;
  padding-left: 30px;
  margin: 6px 0;
  font-weight: 700;
}

.check-list li::before,
.access-list li::before {
  content: "";
  width: 14px;
  height: 8px;
  position: absolute;
  left: 2px;
  top: .72em;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.results {
  padding-top: 16px;
}

.section h2 small {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.results-heading {
  display: grid;
  justify-items: center;
  gap: 4px;
  line-height: 1.35;
}

.results-heading small {
  display: block;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.result-grid article {
  min-height: 140px;
  padding: 24px;
  text-align: center;
}

.result-grid span {
  display: block;
  margin-bottom: 10px;
  color: #3d473f;
  font-weight: 800;
}

.result-grid p {
  margin: 0;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.3;
}

.result-grid b {
  padding: 0 13px;
  color: #222;
}

.result-grid em,
.price-card .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 31px;
  margin-top: 10px;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #262100;
  font-style: normal;
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.flow-note {
  max-width: 860px;
  margin: 12px auto 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
  text-align: left;
}

.flow-grid article {
  position: relative;
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  box-shadow: 0 12px 28px rgba(21, 56, 35, .07);
}

.flow-grid article:not(:last-child)::after {
  display: none;
}

.flow-grid span {
  width: fit-content;
  display: inline-grid;
  place-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e7f6ed;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.flow-grid h3 {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  line-height: 1.45;
}

.flow-grid p {
  margin: 0;
  color: #22342c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.price {
  padding-top: 26px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.price-accordion {
  max-width: 860px;
  display: grid;
  gap: 14px;
  margin: 24px auto 0;
}

.price-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-panel.trial {
  border-color: #e2bd25;
  background: linear-gradient(135deg, #fff, #fffdf2);
}

.price-panel summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.price-panel summary::-webkit-details-marker {
  display: none;
}

.price-panel summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.price-panel[open] summary::after {
  transform: rotate(225deg);
}

.price-panel summary span {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.price-panel summary span em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--gold);
  color: #262100;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  vertical-align: middle;
}

.price-panel summary strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edf8f1;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.price-panel.trial summary strong {
  background: #fff3bf;
  color: #8a6a00;
}

.price-panel summary small {
  font-size: 13px;
}

.price-panel-body {
  padding: 0 22px 22px;
  color: #4f5b54;
  font-weight: 700;
}

.price-panel-body p {
  margin: 0;
}

.plan-note {
  margin-bottom: 12px !important;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff8dd;
  color: #8a6d00;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
}

.value-note {
  margin-bottom: 12px !important;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef8f1;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #edf2ee;
}

.price-list dt {
  color: var(--green);
  font-weight: 900;
}

.price-list dd {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.price-list dd small {
  display: block;
  margin-left: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.price-card {
  min-height: 170px;
  padding: 28px 32px;
}

.price-card h3 {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 18px;
}

.price-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin: 6px 0;
  font-size: 34px;
  line-height: 1.25;
}

.price-card small {
  font-size: 13px;
}

.price-card > span {
  color: #343b35;
  font-size: 13px;
  font-weight: 800;
}

.price-card.trial {
  position: relative;
  border-color: #e2bd25;
  background: linear-gradient(135deg, #fff, #fffdf2);
}

.price-card.trial::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 15%, transparent 16%),
    repeating-linear-gradient(42deg, transparent 0 8px, rgba(60,80,60,.13) 9px 10px),
    #eef2ee;
  border: 1px solid #d9dfd9;
}

.note {
  margin: 18px 0 0;
  text-align: center;
  color: #636d66;
  font-size: 13px;
  font-weight: 700;
}

/* worry resolve */
.worry-resolve {
  margin: 28px 0 0;
  text-align: center;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}

.worry-resolve strong {
  color: var(--green);
}

/* section bridge */
.section-bridge {
  text-align: center;
  color: #444;
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.8;
  white-space: nowrap;
}

/* recommended badge */
.price-card.recommended {
  border-color: var(--green);
  position: relative;
}

.recommend-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* trial note */
.trial-note {
  margin: 8px 0 0 !important;
  font-size: 12px !important;
  color: #9a7c00 !important;
  font-weight: 700 !important;
}

/* voice stars */
.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}

/* phone prompt */
.phone-prompt {
  margin: 12px 0 0;
  font-size: 12px;
  color: #777;
  font-weight: 700;
  line-height: 1.7;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.contact-button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid var(--green);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.line-contact {
  color: #fff;
  background: linear-gradient(135deg, #10b981, #0d9488);
  box-shadow: 0 10px 22px rgba(13, 148, 136, .18);
}

.phone-contact {
  color: var(--green);
  background: #fff;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.voice-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-color: #dfeae4;
}

.voice-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #92d3a5);
}

.voice-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  min-width: 74px;
  height: 42px;
  padding: 0 12px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #e6f7eb, #f7fbf8);
  border: 1px solid #d2ead9;
  color: var(--green);
  font-weight: 900;
  line-height: 1.1;
}

.avatar span {
  display: block;
  font-size: 13px;
}

.avatar small {
  display: block;
  margin-top: 1px;
  color: #405149;
  font-size: 10px;
  font-weight: 800;
}

.voice-type {
  margin: 7px 0 0 !important;
  color: var(--green) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

.voice-grid h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.voice-grid p {
  margin: 0;
  color: #56615a;
  font-size: 13px;
  line-height: 1.8;
}

.faq {
  background: linear-gradient(180deg, #fff, #f8fbf8);
}

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

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 11px;
  height: 11px;
  justify-self: end;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #56615a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.section-head-row h2 {
  text-align: left;
}

.access {
  padding-top: 24px;
}

.access-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.access-card {
  position: relative;
  z-index: 1;
  padding: 36px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.access-card h2 {
  text-align: left;
}

.access-card p {
  margin: 10px 0;
}

.phone {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.map-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  background: #eef5f0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.partners {
  padding-top: 24px;
  background: #fff;
}

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

.partner-card {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.partner-card img {
  width: 100%;
  max-width: 240px;
  max-height: 82px;
  object-fit: contain;
}

.cta-band {
  margin-top: 36px;
  padding: 34px 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(255,255,255,.9) 0 60px, transparent 61px),
    linear-gradient(90deg, #eff9d8, #fffbe6 45%, #d5f0d7);
  border-top: 1px solid #d8ead8;
  border-bottom: 1px solid #d8ead8;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.cta-grid p {
  margin: 0 0 4px;
  color: var(--green);
  font-weight: 900;
}

.cta-grid h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-actions .button {
  min-width: 230px;
}

.cta-actions .button-microcopy {
  width: 100%;
  margin: 0;
  text-align: center;
}

.site-footer {
  padding: 34px 0;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  font-weight: 700;
}

.footer-grid p {
  margin: 0;
  color: #88918c;
}

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

@media (max-width: 1180px) {
  .container {
    width: calc(100% - 40px);
  }

  .nav {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
    font-size: 12px;
  }

  .nav-actions .button.small {
    padding-inline: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 4.4vw, 58px);
  }

  .lead {
    font-size: 22px;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 210px;
  }

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

  .reason-grid img,
  .photo-fallback {
    height: clamp(136px, 15vw, 170px);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

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

  .hero {
    background: linear-gradient(180deg, #fff, #f0f8ee);
  }

  .nav {
    justify-content: space-between;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: block;
    width: min(100%, 700px);
    margin: 0 auto;
    padding: 18px 0 18px;
  }

  .hero-copy h1,
  .hero-copy .lead {
    display: none;
  }

  .hero-visual {
    display: block;
    min-height: 0;
    aspect-ratio: 2979 / 1617;
    order: -1;
    margin: 0;
    border-bottom-left-radius: 0;
  }

  .hero-visual img {
    display: none;
  }

  .hero-visual .mobile-hero-image {
    display: block;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  .badge {
    display: none;
  }

  .hero-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .coach-grid {
    gap: 36px;
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 18px;
  }

  .flow-grid article:not(:last-child)::after {
    display: none;
  }

  .price-card {
    padding: 24px;
  }

  .price-card strong {
    font-size: 29px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 28px, 640px);
  }

  .nav {
    min-height: 62px;
    justify-content: space-between;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .line-header-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border: 2px solid var(--green);
    border-radius: 8px;
    color: var(--green);
    background: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero {
    background: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    display: block;
    padding: 18px 0 18px;
  }

  .hero-visual {
    display: block;
    position: static;
    overflow: visible;
    border-radius: 0;
    min-height: 0;
    margin: 0 -14px;
    order: -1;
  }

  .hero-visual img {
    display: none;
  }

  .hero-visual .mobile-hero-image {
    display: block;
    position: static;
    width: calc(100% + 28px);
    height: auto;
    inset: auto;
    object-fit: unset;
    filter: none;
  }

  .hero-copy h1,
  .hero-copy .lead {
    display: none;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: 50px;
  }

  .lead {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .hero-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 18px;
  }

  .hero-points div {
    min-width: 0;
    min-height: 68px;
    padding: 8px 4px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    font-size: clamp(8px, 2.1vw, 10px);
    line-height: 1.15;
  }

  .hero-points span {
    max-width: 100%;
    display: block;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-actions {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .hero-actions .button {
    width: min(100%, 420px);
    min-width: 0;
  }

  .hero-visual {
    display: block;
    position: static;
    overflow: visible;
    border-radius: 0;
    min-height: 0;
    margin: 0 -14px;
    order: -1;
  }

  .hero-visual img {
    display: none;
  }

  .hero-visual .mobile-hero-image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .badge {
    display: none;
  }

  .badge strong {
    font-size: 13px;
  }

  .section {
    padding: 42px 0;
  }

  .section h2 {
    font-size: 22px;
  }

  .worry-grid,
  .reason-grid,
  .result-grid,
  .price-grid,
  .voice-grid,
  .access-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .worry-grid {
    gap: 10px;
  }

  .worry-card {
    min-height: 76px;
    display: grid !important;
    align-items: center;
    padding: 14px 16px;
    text-align: left;
    background: #fff8f6;
    border-color: #f5c4b0;
    border-left: 4px solid #e07050;
  }

  .worry-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #3a2a22;
    line-height: 1.5;
    flex: 1;
  }

  .illust {
    width: 40px;
    height: 40px;
    transform: scale(.65);
    transform-origin: left center;
  }

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

  .reason-grid h3 {
    min-height: 58px;
    font-size: 11px;
  }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .coach-heading {
    display: grid;
    justify-items: center;
    gap: 2px;
    line-height: 1.35;
  }

  .coach-photo {
    min-height: 320px;
  }

  .coach-copy h2 {
    text-align: center;
  }

  .bubble {
    width: 88px;
    height: 88px;
    font-size: 10px;
  }

  .bubble strong {
    font-size: 17px;
  }

  .b1 { left: 4px; bottom: 34px; }
  .b2 { right: 18px; left: auto; bottom: 70px; }
  .b3 { left: 50%; bottom: 2px; transform: translateX(-50%); }

  .flow-grid {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    gap: 14px;
    overflow-x: auto;
    padding: 16px 2px 8px;
  }

  .flow-grid article:not(:last-child)::after {
    right: -12px;
    top: 40px;
    width: 7px;
    height: 7px;
  }

  .flow-grid span {
    left: 0;
    top: -8px;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .flow-grid h3 {
    font-size: 10px;
  }

  .flow-grid p {
    font-size: 9px;
  }

  .price-card {
    min-height: 0;
    padding: 18px 20px;
  }

  .price-card strong {
    font-size: 25px;
  }

  .voice-grid {
    gap: 12px;
  }

  .section-head-row {
    justify-content: space-between;
  }

  .access-grid {
    gap: 0;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-card {
    min-height: 112px;
    padding: 18px 22px;
  }

  .partner-card img {
    max-width: 260px;
    max-height: 76px;
  }

  .access-card {
    padding: 24px;
  }

  .map-card {
    min-height: 230px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-grid h2 {
    font-size: 22px;
    white-space: nowrap;
  }

  .cta-actions {
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  .cta-actions .button {
    width: min(100%, 420px);
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-grid nav {
    display: none;
  }

  .mobile-fixed-cta {
    position: fixed;
    z-index: 30;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 2px solid #0d9488;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #0d9488);
    color: #fff;
    box-shadow: 0 14px 30px rgba(13, 148, 136, .35);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    overflow: hidden;
    padding: 10px 16px;
  }

  .cta-main {
    font-size: 16px;
    font-weight: 900;
  }

  .cta-sub {
    font-size: 11px;
    font-weight: 600;
    color: #fde68a;
    letter-spacing: 0.02em;
  }

  .mobile-fixed-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: shine 4s ease-in-out infinite;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .container {
    width: min(100% - 40px, 860px);
  }

  .nav .container,
  .nav {
    max-width: none;
  }

  .hero-visual {
    min-height: 280px;
    margin: 0;
  }

  .hero-copy {
    width: min(100%, 700px);
    margin: 0 auto;
  }

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

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

  .worry-card {
    min-height: 116px;
  }

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

  .reason-grid img,
  .photo-fallback {
    height: 132px;
  }

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

  .result-grid article {
    padding: 18px 12px;
  }

  .result-grid p {
    font-size: 24px;
  }

  .price-card {
    padding: 20px 16px;
  }

  .price-card strong {
    font-size: 24px;
  }

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

  .flow-grid h3 {
    font-size: 12px;
  }

  .flow-grid p {
    font-size: 10px;
  }

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

  .access-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 22px);
  }

  .brand-logo {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-points {
    gap: 2px;
  }

  .icon {
    width: 24px;
    height: 24px;
  }

  .hero-points div {
    font-size: 7.5px;
  }

  .reason-grid {
    gap: 8px;
  }

  .result-grid article {
    min-height: 104px;
    padding: 18px;
  }

  .result-grid p {
    font-size: 24px;
  }
}

@media (max-width: 720px) {
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reason-grid article {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    min-height: 98px;
  }

  .reason-grid img,
  .reason-icon-card,
  .photo-fallback {
    width: 116px;
    height: 98px;
    aspect-ratio: auto;
  }

  .reason-grid h3 {
    min-height: 0;
    justify-items: start;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
  }

  .reason-icon-card svg {
    width: 42px;
    height: 42px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .flow-grid article {
    min-height: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "num title"
      "num text";
    align-items: center;
    column-gap: 12px;
    padding: 18px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(21, 56, 35, .07);
  }

  .flow-grid article:not(:last-child)::after {
    display: none;
  }

  .flow-grid span {
    grid-area: num;
    align-self: start;
    width: 34px;
    height: 34px;
    padding: 0;
    font-size: 10px;
    z-index: 1;
  }

  .flow-grid h3 {
    grid-area: title;
    margin: 0 0 2px;
    font-size: 15px;
    line-height: 1.35;
  }

  .flow-grid p {
    grid-area: text;
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    display: block;
    position: static;
    min-height: 0;
    aspect-ratio: auto;
    overflow: hidden;
    margin: 0 -14px;
    order: -1;
  }

  .hero-visual img {
    display: none;
  }

  .hero-visual .mobile-hero-image {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    inset: auto;
    object-fit: contain;
    object-position: center;
    filter: none;
    background: #fff;
  }
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */

/* 初期状態（非表示） */
.anim,
.anim-left,
.anim-right,
.anim-scale {
  opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
}

.anim,
.anim-left,
.anim-right,
.anim-scale {
  transform: translateY(18px);
}

/* 表示状態 */
.anim.is-visible,
.anim-left.is-visible,
.anim-right.is-visible,
.anim-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* ストガー用ディレイ */
.stagger-1  { transition-delay: .04s !important; }
.stagger-2  { transition-delay: .08s !important; }
.stagger-3  { transition-delay: .12s !important; }
.stagger-4  { transition-delay: .16s !important; }
.stagger-5  { transition-delay: .16s !important; }
.stagger-6  { transition-delay: .16s !important; }

/* セクションラインのアニメーション */
.section-line {
  transform-origin: left;
  transform: none;
  transition: opacity .55s ease;
}
.section-line.is-visible {
  transform: none;
}

.badge {
  animation: none;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ヒーローポイントのホバー */
.hero-points div {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.hero-points div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,152,68,.15);
}

/* worry-card ホバー */
.worry-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.worry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,112,80,.15);
}

/* reason-grid ホバー */
.reason-grid article {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.reason-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* price-card ホバー */
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0,0,0,.12);
}

/* voice-grid ホバー */
.voice-grid article {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.voice-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

/* フロー番号のアニメーション */
.flow-grid article span {
  transition: transform 0.3s ease, color 0.3s ease;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
}
.flow-grid article:hover span {
  transform: none;
  color: #fff;
}

/* コーチ写真ズーム */
.coach-photo img {
  transition: transform 0.5s ease;
}
.coach-photo:hover img {
  transform: none;
}
