:root {
  --color-text: #222;
  --color-muted: #686868;
  --color-bg: #ededed;
  --color-panel: #fff;
  --color-dark: #2f2f2f;
  --color-line: rgba(34, 34, 34, 0.16);
  --color-accent: #d9b45f;
  --color-accent-soft: #f6ecd4;
  --line-green: #06c755;
  --line-green-dark: #05a948;
  --container: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 96px;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}

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

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

p,
h1,
h2,
h3,
ul,
dl,
dd {
  margin: 0;
}

p,
li,
dd,
h1,
h2,
h3,
a,
span {
  line-break: strict;
  word-break: normal;
}

.prose p,
.hero__lead p,
.section-cta p,
.worry-list li,
.analysis-text p,
.analysis-steps li,
.profile-card__summary,
.profile-list dd,
.profile-card__note p,
.price-note,
.final-cta__text p,
.cta-note {
  text-wrap: pretty;
}

h1,
h2,
h3,
.section-title,
.video-story__message {
  text-wrap: balance;
}

.u-nowrap {
  white-space: nowrap;
}

.hero-title__line {
  display: block;
}

ul {
  padding: 0;
  list-style: none;
}

.line-cta {
  display: inline-flex;
  flex-wrap: wrap;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  column-gap: 0.25em;
  row-gap: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--line-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.line-cta:hover {
  background: var(--line-green-dark);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.34);
  transform: translateY(-1px);
}

.line-cta--secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.line-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.section {
  padding: 68px 0;
}

.section__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section-title {
  margin-bottom: 30px;
  font-size: clamp(26px, 7.5vw, 34px);
  line-height: 1.32;
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 14px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  background: #171717 url("placeholders/hero-match.jpg") center / cover no-repeat;
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.28));
  content: "";
}

.hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 82px 18px 92px;
}

.hero__copy {
  width: min(100%, 760px);
}

.hero__badge,
.analysis-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--color-accent-soft);
  color: #2b2618;
  font-size: 12px;
  line-height: 1.35;
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(29px, 7.8vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.hero__lead {
  display: grid;
  gap: 12px;
  max-width: 670px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.78;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.hero__actions,
.analysis-actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__actions--single,
.analysis-actions--single,
.final-cta__actions--single {
  display: grid;
  justify-items: start;
}

.cta-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.worries {
  background: #f4f4f4;
}

.worries__grid {
  display: grid;
  gap: 24px;
}

.worry-list {
  display: grid;
  gap: 10px;
}

.worry-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: #fff;
  font-size: 15px;
  line-height: 1.72;
}

.worry-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--line-green);
  border-radius: 50%;
  content: "";
}

.worry-list li::after {
  position: absolute;
  top: 22px;
  left: 23px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-green);
  content: "";
}

.worries__note {
  display: grid;
  gap: 13px;
  padding: 24px 20px;
  border-left: 6px solid #252525;
  background: #fff;
  font-size: 15px;
  line-height: 1.9;
}

.section-cta {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 22px 18px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(34, 34, 34, 0.06);
}

.section-cta p {
  font-size: 14px;
  line-height: 1.8;
}

.section-cta .line-cta {
  width: 100%;
}

.philosophy,
.authority {
  background: linear-gradient(315deg, #ddd 0%, #f2f2f2 100%);
}

.philosophy__inner,
.authority__inner,
.risk__inner,
.final-cta__inner {
  max-width: 800px;
  padding-left: 20px;
  border-left: 6px solid #252525;
}

.philosophy h2,
.authority h2,
.risk h2,
.future h2,
.coaching h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(23px, 6vw, 30px);
  line-height: 1.45;
}

.prose {
  display: grid;
  gap: 16px;
  font-size: 15px;
  line-height: 1.88;
}

.prose .lead {
  padding-top: 10px;
  font-size: clamp(20px, 5.8vw, 27px);
  line-height: 1.55;
}

.coaching {
  background: #ededed;
}

.coaching__inner {
  display: grid;
  gap: 28px;
}

.coaching__copy {
  max-width: 700px;
}

.coaching__copy p:last-child {
  font-size: 15px;
  line-height: 1.9;
}

.coaching-points {
  display: grid;
  gap: 16px;
}

.point-card {
  padding: 22px 20px;
  background: #fff;
  border-radius: 6px;
}

.point-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.point-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.45;
}

.point-card p {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.8;
}

.profile {
  background: #e8e8e8;
}

.profile-card {
  display: grid;
  gap: 24px;
  padding: 24px 18px 30px;
  background: var(--color-panel);
  text-align: center;
}

.profile-card__image {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
}

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

.name-ja {
  font-size: 22px;
  line-height: 1.35;
}

.name-kana {
  color: #444;
  font-size: 12px;
  line-height: 1.5;
}

.profile-card__summary {
  font-size: 16px;
  line-height: 1.8;
}

.profile-list {
  display: grid;
  max-width: 720px;
  margin: 4px auto 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}

.profile-list div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
}

.profile-list div:first-child {
  border-top: 0;
}

.profile-list dt {
  color: #333;
  font-size: 15px;
}

.profile-list dd {
  font-size: 14px;
  line-height: 1.85;
}

.profile-card__note {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.risk {
  background: #f4f4f4;
}

.video-story {
  background: #ededed;
}

.video-story__inner {
  display: grid;
  gap: 22px;
}

.video-story__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 14px;
  background: #fff;
  color: #333;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.06);
}

.video-story h2 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: clamp(24px, 7.2vw, 32px);
  line-height: 1.42;
}

.video-story__media {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.video-story__player {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
}

.tiktok-frame,
.play-video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.12);
}

.tiktok-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-video {
  display: block;
  object-fit: cover;
}

.video-story__body {
  display: grid;
  gap: 20px;
}

.video-story__message {
  padding: 18px 20px;
  border-left: 6px solid #252525;
  background: #fff;
  font-size: clamp(21px, 6vw, 28px);
  line-height: 1.55;
  box-shadow: 0 12px 30px rgba(34, 34, 34, 0.06);
}

.risk__inner {
  border-left-color: #7d6a3d;
}

.risk .lead {
  padding: 16px 18px;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.future {
  background: #ededed;
}

.future__inner {
  display: grid;
  gap: 28px;
}

.future-points {
  display: grid;
  gap: 14px;
}

.free-analysis {
  background:
    linear-gradient(315deg, rgba(246, 236, 212, 0.9), rgba(244, 244, 244, 0.96)),
    #f4f4f4;
}

.analysis-panel {
  padding: 24px 18px 26px;
  border: 2px solid rgba(217, 180, 95, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.1);
}

.analysis-panel__header {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.analysis-panel h2 {
  font-size: clamp(29px, 8.8vw, 36px);
  line-height: 1.24;
}

.analysis-panel__body {
  display: grid;
  gap: 20px;
}

.analysis-text {
  display: grid;
  gap: 13px;
  font-size: 15px;
  line-height: 1.86;
}

.analysis-cases {
  padding: 22px 18px;
  border-radius: 6px;
  background: #2f2f2f;
  color: #fff;
}

.analysis-cases p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.analysis-cases ul {
  display: grid;
  gap: 9px;
  font-size: 14px;
  line-height: 1.65;
}

.analysis-cases li::before {
  margin-right: 8px;
  color: var(--color-accent);
  content: "/";
}

.analysis-steps {
  margin-top: 22px;
  padding: 20px 18px;
  border-radius: 8px;
  background: var(--color-accent-soft);
}

.analysis-steps p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.65;
}

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

.analysis-steps li {
  min-height: 42px;
  border-radius: 6px;
  padding: 9px 10px;
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
}

.analysis-message {
  margin-top: 22px;
  padding: 18px;
  border-radius: 6px;
  background: var(--color-accent-soft);
  font-size: 15px;
  line-height: 1.85;
}

.analysis-notes {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  color: #575757;
  font-size: 12px;
  line-height: 1.7;
}

.analysis-actions .line-cta--secondary,
.final-cta .line-cta--secondary {
  border-color: rgba(34, 34, 34, 0.18);
  background: #333;
}

.analysis-actions .line-cta--secondary:hover,
.final-cta .line-cta--secondary:hover {
  background: #444;
}

.price {
  background: var(--color-dark);
  color: #fff;
}

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

.section-heading h2 {
  font-size: clamp(30px, 8vw, 36px);
  line-height: 1.2;
}

.section-heading p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.price-table {
  display: grid;
  gap: 10px;
}

.price-row {
  display: grid;
  min-height: 88px;
  align-items: start;
  gap: 7px;
  padding: 20px;
  background: #fff;
  color: #4a4a4a;
  font-size: 15px;
}

.price-row strong {
  display: block;
  color: #222;
  font-size: 26px;
  line-height: 1.2;
  white-space: nowrap;
}

.price-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.price-note--soft {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.final-cta {
  background: linear-gradient(315deg, #ddd 0%, #f2f2f2 100%);
}

.final-cta p:not(.section-kicker) {
  font-size: 15px;
  line-height: 1.88;
}

.final-cta__text {
  display: grid;
  gap: 12px;
}

.final-cta__text p + p,
.final-cta__actions .cta-note {
  margin-top: 0;
}

.final-cta p:not(.section-kicker) + p {
  margin-top: 12px;
}

.final-cta .final-cta__text p + p,
.final-cta .final-cta__actions .cta-note {
  margin-top: 0;
}

.final-cta__actions .cta-note {
  color: #555;
  text-shadow: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(34, 34, 34, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #333;
  font-size: 13px;
}

.fixed-line-cta {
  position: fixed;
  z-index: 45;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25em;
  row-gap: 0;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--line-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 12px 30px rgba(6, 199, 85, 0.36);
}

.site-footer {
  padding: 72px 20px 24px;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer-nav {
  display: grid;
  gap: 16px;
  width: fit-content;
  margin: 0 auto 56px;
  text-align: left;
}

.footer-nav a {
  font-size: 14px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    background-position: 50% center;
  }

  .hero__inner {
    min-height: 100svh;
  }

  .hero__lead br {
    display: none;
  }

  .hero__actions .line-cta,
  .analysis-actions .line-cta,
  .final-cta__actions .line-cta {
    width: 100%;
  }

  .analysis-actions,
  .final-cta__actions {
    gap: 10px;
  }
}

@media (max-width: 359px) {
  .line-cta {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
  }

  .u-nowrap--mobile-wrap {
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 29px;
  }
}

@media (max-width: 340px) {
  .hero-title {
    font-size: 27px;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

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

  .hero,
  .hero__inner {
    min-height: 800px;
  }

  .hero__copy {
    transform: translateY(18px);
  }

  .section {
    padding: 92px 0;
  }

  .section__inner {
    width: min(100% - 56px, var(--container));
  }

  .section-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 24px;
    text-align: left;
  }

  .section-cta .line-cta {
    width: auto;
    min-width: 220px;
  }

  .worries__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
  }

  .coaching__inner {
    grid-template-columns: 0.84fr 1.16fr;
    align-items: start;
  }

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

  .philosophy__inner,
  .authority__inner,
  .risk__inner,
  .final-cta__inner {
    padding-left: 28px;
  }

  .future__inner {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .future-points {
    grid-template-columns: 1fr;
  }

  .video-story__inner {
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    grid-template-areas:
      "media intro"
      "media body";
    align-items: start;
    gap: 26px 44px;
  }

  .video-story__intro {
    grid-area: intro;
  }

  .video-story__media {
    grid-area: media;
    position: sticky;
    top: 24px;
  }

  .video-story__body {
    grid-area: body;
  }

  .profile-card {
    grid-template-columns: minmax(260px, 360px) 1fr;
    align-items: center;
    padding: 34px 56px 40px;
    text-align: left;
  }

  .profile-card__image {
    margin: 0;
  }

  .profile-list {
    margin-right: 0;
    margin-left: 0;
  }

  .profile-list div {
    grid-template-columns: 110px 1fr;
    gap: 24px;
    padding: 18px 0;
  }

  .profile-list dt {
    text-align: center;
  }

  .profile-card__note {
    margin-right: 0;
    margin-left: 0;
  }

  .analysis-panel {
    padding: 40px;
  }

  .analysis-panel__body {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: start;
  }

  .section-heading--row {
    display: flex;
    align-items: baseline;
    gap: 28px;
  }

  .hero__actions--single .line-cta,
  .analysis-actions--single .line-cta,
  .final-cta__actions--single .line-cta {
    min-width: 280px;
  }

  .price-row {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    font-size: 16px;
  }

  .price-row strong {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
}
