:root {
  --ink: #16211f;
  --muted: #44504d;
  --line: #d1dad7;
  --paper: #f6f6f2;
  --white: #ffffff;
  --teal: #0d7b72;
  --teal-dark: #08564f;
  --gold: #c18a2f;
  --coral: #c95f45;
  --navy: #213548;
  --sky: #e7f3f2;
  --soft: #edf7f5;
  --shadow: 0 14px 40px rgba(15, 32, 30, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 17px;
  line-height: 1.9;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

main {
  position: relative;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(13, 123, 114, 0.26);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 32, 31, 0.08);
  box-shadow: 0 6px 16px rgba(24, 32, 31, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(251, 250, 246, 0.2) 0%, rgba(13, 123, 114, 0.08) 100%);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/estre-comic.png");
  background-size: cover;
  background-position: center right;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 90, 84, 0.08), rgba(201, 95, 69, 0.08));
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.84) 36%, rgba(251, 250, 246, 0.34) 66%, rgba(251, 250, 246, 0.05) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.nowrap {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.primary,
button {
  color: var(--white);
  background: var(--teal);
}

.primary:hover,
button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(13, 123, 114, 0.24);
}

.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.secondary:hover,
.secondary:focus-visible {
  background: var(--soft);
  transform: translateY(-1px);
}

.official-link {
  gap: 10px;
}

.official-link::after {
  content: "";
  position: relative;
  order: 1;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.92;
}

.official-link::before {
  content: "";
  order: 2;
  width: 8px;
  height: 8px;
  margin-left: -21px;
  margin-right: 6px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(6px, -3px);
  opacity: 0.92;
  pointer-events: none;
}

.notice {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px clamp(18px, 6vw, 82px);
  background: var(--ink);
  color: var(--white);
  position: relative;
}

.notice::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  left: clamp(10px, 6vw, 64px);
  width: 4px;
  border-radius: 99px;
  background: var(--gold);
}

.notice span {
  color: rgba(255, 255, 255, 0.82);
}

.section,
.band {
  padding: 72px clamp(18px, 6vw, 82px);
  position: relative;
}

.page-hero {
  padding: 86px clamp(18px, 6vw, 82px) 64px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.comparison-hero {
  padding: 76px clamp(18px, 6vw, 82px) 60px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.comparison-hero h1 {
  max-width: 940px;
}

.comparison-hero > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero.compact {
  padding-bottom: 42px;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(68, 80, 77, 0.48);
}

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

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.band {
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.flow,
.article-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.flow-step,
.card,
.signup,
.cta-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.flow-step,
.card {
  padding: 30px;
}

.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.flow-step p,
.card p,
.signup p,
.cta-panel p {
  color: var(--muted);
}

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

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

.recommend-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.recommend-card.featured {
  border-color: rgba(13, 123, 114, 0.42);
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.recommend-card h3 {
  font-size: 22px;
}

.recommend-card p {
  margin: 0;
  color: var(--muted);
}

.recommend-card .button {
  margin-top: auto;
}

.recommend-rank {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list span {
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
  font-weight: 700;
}

.signup {
  padding: 24px;
}

.signup label {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.signup input {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.signup button {
  width: 100%;
  margin-top: 8px;
}

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

.team-grid div {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.trust-signals {
  margin: 20px 0 0;
}

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

.trust-badge {
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--soft));
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.trust-badge strong {
  display: block;
  color: var(--ink);
  margin-top: 4px;
  font-size: 21px;
  letter-spacing: 0;
}

.page-visual {
  width: min(820px, 100%);
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.page-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 7;
  object-fit: cover;
}

.article-figure {
  margin: 10px 0 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-figure img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  padding: clamp(32px, 4vw, 46px);
  background: linear-gradient(135deg, var(--white), var(--soft));
  border: 1px solid var(--line);
  border-radius: 14px;
}

.cta-panel + .cta-panel {
  margin-top: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 82px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-table .tag {
  margin-bottom: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr minmax(150px, 0.7fr);
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row > div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.table-row .button {
  width: fit-content;
}

.table-row > div:first-child {
  border-left: 0;
}

.table-head {
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.table-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.table-head span {
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline span {
  color: var(--teal);
  font-weight: 800;
}

.feature-list {
  margin: 22px 0;
  padding: clamp(30px, 4vw, 42px);
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-list ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.feature-list li {
  margin: 8px 0;
}

.readable {
  max-width: 900px;
}

.readable h2 {
  margin-top: 32px;
  font-size: 28px;
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 22px 88px;
}

.ad-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 12px;
  color: #72807c;
  font-size: 11px;
  line-height: 1.45;
  border: 1px solid rgba(114, 128, 124, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.site-disclosure {
  margin: 0;
  padding: 10px clamp(18px, 6vw, 82px);
  color: #72807c;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(24, 32, 31, 0.06);
  font-size: 11px;
  line-height: 1.5;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(32px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 245, 0.9)),
    radial-gradient(circle at top right, rgba(201, 95, 69, 0.12), transparent 34%);
  box-shadow: var(--shadow);
}

.lp-hero-copy h1 {
  font-size: clamp(29px, 3.5vw, 43px);
  max-width: 11.5em;
  line-height: 1.18;
  text-wrap: balance;
}

.lp-visual {
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.lp-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.quick-answer {
  padding: clamp(30px, 4vw, 42px);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-answer h2 {
  padding-left: 0;
  border-left: 0;
}

.rank-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rank-label {
  display: inline-flex;
  min-width: 190px;
  justify-content: center;
  padding: 9px 18px;
  color: var(--white);
  background: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.rank-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 4vw, 44px);
}

.rank-body h2 {
  padding-left: 0;
  border-left: 0;
}

.rank-button {
  width: 100%;
}

.reader-snapshot,
.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reader-snapshot div,
.conversion-strip div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.reader-snapshot strong,
.conversion-strip strong {
  display: block;
  margin: 3px 0 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.reader-snapshot span,
.conversion-strip p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.snapshot-label,
.conversion-strip span {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.conversion-strip span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.point-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.point-list li {
  position: relative;
  padding-left: 22px;
}

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

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

.criteria-card,
.fit-grid > div {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.criteria-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.compare-block,
.faq-section {
  padding-top: 8px;
}

.fit-grid {
  grid-template-columns: 1fr 1fr;
}

.final-cta {
  background: linear-gradient(135deg, var(--ink), var(--navy));
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .eyebrow {
  color: #f0c36b;
}

.article-page > section {
  padding: 0;
  margin: 34px 0;
}

.related-section {
  padding: clamp(30px, 4vw, 44px) !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.related-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.related-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.related-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.consultation-block {
  padding: clamp(34px, 4vw, 46px) !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #fbf8f1);
  box-shadow: var(--shadow);
}

.question-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: question;
}

.question-list li {
  counter-increment: question;
  position: relative;
  padding: 18px 22px 18px 64px;
  border: 1px solid rgba(193, 138, 47, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.question-list li::before {
  content: counter(question, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.decision-box {
  padding: clamp(34px, 4vw, 46px) !important;
  border: 1px solid rgba(13, 123, 114, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.decision-box h2 {
  max-width: 760px;
}

.decision-box > p:not(.eyebrow) {
  color: var(--muted);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.decision-grid div {
  position: relative;
  min-height: 104px;
  padding: 24px 22px 22px 58px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid rgba(13, 123, 114, 0.16);
  font-weight: 800;
  line-height: 1.55;
}

.decision-grid div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 29px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px var(--white);
}

.micro-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 28px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ec;
  box-shadow: var(--shadow);
}

.micro-cta strong,
.micro-cta span {
  display: block;
}

.micro-cta strong {
  font-size: 18px;
  line-height: 1.45;
}

.micro-cta span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin: 0 0 24px;
}

.article-hero-headline {
  position: relative;
  padding-bottom: 18px;
}

.article-hero-headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 82px;
  height: 4px;
  background: var(--gold);
}

.article-media-card {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-media-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.article-media-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.article-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 22px;
}

.floating-cta {
  position: sticky;
  bottom: 16px;
  z-index: 40;
  margin: 12px -12px 0;
  display: none;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta .button {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(13, 123, 114, 0.25);
}

.floating-cta .button.primary {
  color: var(--white);
}

.quick-links {
  margin-top: 18px;
}

.quick-links .button {
  min-height: 44px;
}

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

.prep-strip {
  margin: 22px 0 0;
  padding: 28px;
  border: 1px solid rgba(13, 123, 114, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(231, 243, 242, 0.88), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow);
}

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

.prep-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(13, 123, 114, 0.16);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15, 32, 30, 0.08);
}

.prep-card:hover,
.prep-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(13, 123, 114, 0.16);
}

.prep-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.prep-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.prep-card p,
.mini-note p {
  margin: 0;
  color: var(--muted);
}

.mini-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  background: rgba(231, 243, 242, 0.72);
}

.mini-note strong {
  display: block;
  margin-bottom: 6px;
}

.kpi-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.kpi-label {
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.kpi-value {
  margin: 4px 0 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.kpi-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-check-card {
  margin: 24px 0;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--white), var(--soft));
  border: 1px solid var(--line);
}

.mini-check-card h3 {
  margin: 0;
  font-size: 20px;
}

.mini-check-card p {
  margin: 8px 0 10px;
}

.mini-check-card ul {
  margin: 0;
  padding-left: 20px;
}

.mini-check-card li {
  color: var(--muted);
}

.article-bottom-bar {
  margin-top: 22px;
}

.article-page h1 {
  font-size: clamp(30px, 4.3vw, 46px);
  line-height: 1.2;
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(23px, 2.9vw, 33px);
}

.article-page p,
.article-page li {
  font-size: 17px;
  line-height: 2;
}

.article-page p {
  margin: 16px 0 0;
}

.article-page ul,
.article-page ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-page h2 {
  position: relative;
  padding-left: 14px;
  border-left: 4px solid var(--teal);
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-list li {
  border-top: 1px solid var(--line);
  padding: 26px 30px;
  background: var(--white);
}

.faq-list li:first-child {
  border-top: 0;
}

.faq-q {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.faq-a {
  margin: 8px 0 0;
  color: var(--muted);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--teal);
  font-weight: 700;
}

.hero-badge::before {
  content: "●";
  color: var(--gold);
  font-size: 11px;
}

.article-lead {
  color: var(--muted);
  font-size: 19px;
}

.estre-theme {
  --estre-ink: #33293a;
  --estre-muted: #6b5d70;
  --estre-pink: #e94f91;
  --estre-pink-dark: #c93475;
  --estre-purple: #8c49d7;
  --estre-lilac: #f3e5fb;
  --estre-blush: #fff1f8;
  --estre-line: #efb7d5;
  color: var(--estre-ink);
}

.estre-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(243, 229, 251, 0.78), rgba(255, 241, 248, 0.92) 48%, rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(0deg, rgba(233, 79, 145, 0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(140, 73, 215, 0.04) 0 1px, transparent 1px 34px);
  pointer-events: none;
}

.estre-theme .ad-disclosure {
  color: rgba(106, 88, 103, 0.72);
}

.estre-theme .eyebrow,
.estre-theme .snapshot-label {
  color: var(--estre-pink);
}

.estre-theme .lp-hero {
  position: relative;
  overflow: hidden;
  border-color: rgba(233, 79, 145, 0.28);
  background:
    radial-gradient(circle at 88% 18%, rgba(233, 79, 145, 0.22), transparent 25%),
    radial-gradient(circle at 13% 90%, rgba(140, 73, 215, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 248, 0.94) 54%, rgba(243, 229, 251, 0.92));
  box-shadow: 0 24px 60px rgba(149, 59, 130, 0.16);
}

.estre-theme .lp-hero::before,
.estre-theme .lp-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  transform: rotate(-28deg);
  pointer-events: none;
}

.estre-theme .lp-hero::before {
  right: -70px;
  top: -18px;
  width: 230px;
  height: 28px;
  background: linear-gradient(90deg, rgba(140, 73, 215, 0.62), rgba(233, 79, 145, 0.38));
}

.estre-theme .lp-hero::after {
  left: -82px;
  bottom: 28px;
  width: 230px;
  height: 24px;
  background: linear-gradient(90deg, rgba(233, 79, 145, 0.36), rgba(140, 73, 215, 0.28));
}

.estre-theme .lp-hero-copy,
.estre-theme .lp-visual {
  position: relative;
  z-index: 1;
}

.estre-theme .lp-hero-copy h1 {
  color: var(--estre-ink);
}

.estre-theme .article-lead,
.estre-theme .quick-answer p,
.estre-theme .rank-body p,
.estre-theme .criteria-card p,
.estre-theme .consultation-block p,
.estre-theme .fit-grid p,
.estre-theme .faq-a,
.estre-theme .cta-panel p {
  color: var(--estre-muted);
}

.estre-theme .hero-badge {
  border-color: rgba(233, 79, 145, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--estre-pink);
}

.estre-theme .hero-badge::before {
  color: var(--estre-purple);
}

.estre-theme .primary {
  background: linear-gradient(135deg, var(--estre-pink), var(--estre-purple));
  box-shadow: 0 16px 34px rgba(233, 79, 145, 0.24);
}

.estre-theme .primary:hover,
.estre-theme .primary:focus-visible {
  background: linear-gradient(135deg, var(--estre-pink-dark), #7632bd);
  box-shadow: 0 18px 38px rgba(233, 79, 145, 0.3);
}

.estre-theme .secondary {
  border-color: rgba(233, 79, 145, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

.estre-theme .secondary:hover,
.estre-theme .secondary:focus-visible {
  background: var(--estre-blush);
}

.estre-theme .lp-visual {
  border-color: rgba(233, 79, 145, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--estre-lilac));
}

.mood-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mood-visual figure {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(233, 79, 145, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(149, 59, 130, 0.12);
}

.mood-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.mood-visual figcaption {
  margin-top: 8px;
  color: var(--estre-pink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.estre-theme .quick-answer {
  border-left-color: var(--estre-pink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(149, 59, 130, 0.12);
}

.estre-theme .rank-card,
.estre-theme .reader-snapshot div,
.estre-theme .criteria-card,
.estre-theme .fit-grid > div,
.estre-theme .faq-list,
.estre-theme .cta-panel,
.estre-theme .related-section,
.estre-theme .related-card {
  border-color: rgba(233, 79, 145, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(149, 59, 130, 0.12);
}

.estre-theme .rank-label {
  background: linear-gradient(135deg, var(--estre-pink), var(--estre-purple));
}

.estre-theme .point-list li::before {
  background: var(--estre-pink);
  box-shadow: 0 0 0 4px rgba(233, 79, 145, 0.12);
}

.estre-theme .criteria-card span,
.estre-theme .conversion-strip span {
  background: linear-gradient(135deg, var(--estre-purple), var(--estre-pink));
}

.estre-theme h2 {
  border-left-color: var(--estre-pink);
}

.estre-theme .breadcrumbs {
  color: var(--estre-muted);
}

.estre-theme .breadcrumbs li + li::before {
  color: rgba(107, 93, 112, 0.48);
}

.estre-theme .breadcrumbs a:hover,
.estre-theme .breadcrumbs a:focus-visible,
.estre-theme .breadcrumbs [aria-current="page"] {
  color: var(--estre-ink);
}

.estre-theme .consultation-block {
  border-color: rgba(233, 79, 145, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), var(--estre-blush));
}

.estre-theme .question-list li {
  border-color: rgba(233, 79, 145, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.estre-theme .question-list li::before {
  color: var(--estre-pink);
}

.estre-theme .faq-list li {
  border-top-color: rgba(233, 79, 145, 0.16);
}

.estre-theme .cta-panel {
  background:
    radial-gradient(circle at top right, rgba(233, 79, 145, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 229, 251, 0.92));
}

.story-comic {
  padding: clamp(28px, 4vw, 42px) !important;
  border: 1px solid rgba(233, 79, 145, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 248, 0.9)),
    repeating-linear-gradient(0deg, rgba(140, 73, 215, 0.04) 0 1px, transparent 1px 24px);
  box-shadow: 0 18px 46px rgba(149, 59, 130, 0.12);
}

.story-comic-copy {
  max-width: 800px;
}

.story-comic-copy p:not(.eyebrow) {
  color: var(--estre-muted);
}

.comic-frame {
  position: relative;
  margin: 24px 0 0;
  padding: clamp(10px, 2vw, 16px);
  border: 1px solid rgba(233, 79, 145, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(149, 59, 130, 0.12);
}

.comic-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.comic-speech {
  position: absolute;
  max-width: min(230px, 38%);
  padding: 10px 12px;
  border: 2px solid rgba(233, 79, 145, 0.4);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--estre-ink);
  font-size: clamp(12px, 1.7vw, 17px);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(149, 59, 130, 0.16);
}

.speech-1 {
  left: 5%;
  top: 5%;
}

.speech-2 {
  right: 6%;
  top: 6%;
}

.speech-3 {
  left: 6%;
  bottom: 37%;
}

.speech-4 {
  right: 5%;
  bottom: 7%;
}

.comic-captions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.comic-captions div {
  padding: 16px 14px;
  border: 1px solid rgba(233, 79, 145, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.comic-captions span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--estre-purple), var(--estre-pink));
  font-size: 12px;
  font-weight: 900;
}

.comic-captions strong,
.comic-captions p {
  display: block;
}

.comic-captions strong {
  color: var(--estre-ink);
  font-size: 15px;
  line-height: 1.35;
}

.comic-captions p {
  margin: 4px 0 0;
  color: var(--estre-muted);
  font-size: 13px;
  line-height: 1.55;
}

.voice-proof {
  padding: clamp(30px, 4vw, 44px) !important;
  border: 1px solid rgba(233, 79, 145, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(233, 79, 145, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 229, 251, 0.86));
  box-shadow: 0 18px 46px rgba(149, 59, 130, 0.12);
}

.voice-proof > p:not(.eyebrow) {
  color: var(--estre-muted);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.voice-grid article {
  padding: 22px;
  border: 1px solid rgba(233, 79, 145, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.voice-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--estre-purple), var(--estre-pink));
  font-size: 12px;
  font-weight: 900;
}

.voice-grid strong {
  display: block;
  color: var(--estre-ink);
  font-size: 18px;
  line-height: 1.45;
}

.voice-grid p {
  margin: 8px 0 0;
  color: var(--estre-muted);
  font-size: 14px;
  line-height: 1.7;
}

.experience-check {
  padding: clamp(30px, 4vw, 44px) !important;
  border: 1px solid rgba(233, 79, 145, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(149, 59, 130, 0.12);
}

.experience-check .section-head {
  margin-bottom: 20px;
}

.experience-check .section-head p:last-child {
  color: var(--estre-muted);
}

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

.screenshot-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(233, 79, 145, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(149, 59, 130, 0.1);
}

.screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.screenshot-grid figcaption {
  padding: 10px 12px 12px;
  color: var(--estre-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.notice.inline {
  margin: 28px 0;
  border-radius: 8px;
  align-items: flex-start;
}

.page-hero p:last-child,
.article-lead,
.hero-actions + p {
  line-height: 1.9;
}

.notice strong {
  white-space: nowrap;
}

@media (max-width: 920px) {
  .flow,
  .article-grid,
  .related-grid,
  .recommend-grid,
  .team-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .table-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-overlay {
    background: rgba(251, 250, 246, 0.88);
  }

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

  .lp-hero,
  .rank-body,
  .criteria-grid,
  .fit-grid,
  .decision-grid,
  .reader-snapshot,
  .conversion-strip,
  .comic-captions,
  .voice-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .article-kpi-grid {
    grid-template-columns: 1fr;
  }

  .article-page > section {
    margin: 22px 0;
  }

  .lp-hero {
    padding-left: clamp(24px, 6vw, 38px);
    padding-right: clamp(24px, 6vw, 38px);
  }

  .lp-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(28px, 6.2vw, 38px);
  }
}

@media (max-width: 640px) {
  .site-header,
  .footer,
  .notice,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 10px;
    padding: 10px 16px 12px;
  }

  .floating-cta {
    display: block;
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    margin: 0;
    z-index: 60;
  }

  .floating-cta .button {
    min-height: 50px;
    max-width: 340px;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 22px 44px rgba(13, 123, 114, 0.24);
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 56px;
  }

  .flow,
  .article-grid,
  .prep-grid,
  .recommend-grid,
  .team-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row > div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .table-row > div:first-child {
    border-top: 0;
  }

  .hero-content {
    padding-top: 48px;
    width: min(720px, calc(100% - 24px));
  }

  .article-page {
    padding-top: 48px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .lp-hero,
  .rank-body,
  .quick-answer,
  .consultation-block,
  .decision-box,
  .criteria-card,
  .fit-grid > div,
  .reader-snapshot div,
  .conversion-strip div {
    padding: 24px;
  }

  .lp-hero {
    padding: 26px 24px;
  }

  .lp-hero-copy h1 {
    font-size: clamp(25px, 8.3vw, 33px);
    line-height: 1.2;
  }

  .ad-disclosure {
    display: block;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.55;
    border-radius: 14px;
  }

  .flow-step,
  .card,
  .related-card,
  .feature-list,
  .faq-list li {
    padding: 24px;
  }

  .question-list li {
    padding: 17px 18px 17px 56px;
  }

  .question-list li::before {
    left: 18px;
    top: 19px;
  }

  .decision-grid div {
    min-height: auto;
    padding: 20px 18px 20px 54px;
  }

  .decision-grid div::before {
    left: 18px;
    top: 25px;
  }

  .rank-label {
    width: 100%;
  }

  .article-page p,
  .article-page li {
    font-size: 16px;
  }

  .notice {
    flex-wrap: wrap;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .mood-visual {
    grid-template-columns: 1fr 1fr;
  }

  .comic-speech {
    max-width: 45%;
    padding: 8px 9px;
  }

  .quick-links .button {
    width: 100%;
  }

  .breadcrumbs {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .micro-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .micro-cta .button {
    width: 100%;
  }
}

.wakegai-body {
  background: #f6fbf4;
  overflow-x: hidden;
}

.wakegai-header .brand-mark,
.wakegai-body .primary {
  background: linear-gradient(180deg, #0f8b45, #006b38);
}

.wakegai-header .brand-mark {
  border-radius: 6px;
}

.wakegai-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 3px solid #0f8b45;
}

.wakegai-page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 20px 88px;
}

.wakegai-disclosure {
  margin: 0 0 10px;
  font-size: 10px;
  color: #7f8c83;
}

.wakegai-hero {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(26px, 5vw, 58px);
  overflow: hidden;
  border: 2px solid rgba(15, 139, 69, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(251, 215, 68, 0.16) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 86% 16%, rgba(255, 222, 68, 0.34), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f2fbef 58%, #fff8d9 100%);
  box-shadow: 0 18px 48px rgba(0, 75, 39, 0.11);
}

.wakegai-hero > *,
.wakegai-copy,
.wakegai-copy .hero-actions {
  min-width: 0;
  max-width: 100%;
}

.wakegai-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid #f2ca32;
  border-radius: 999px;
  color: #006b38;
  background: #fff7c4;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.wakegai-copy h1 {
  width: 100%;
  max-width: 620px;
  margin: 0;
  color: #123329;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.12;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.wakegai-lead {
  width: 100%;
  max-width: 680px;
  margin: 22px 0 0;
  color: #30443b;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.95;
  overflow-wrap: break-word;
  word-break: normal;
}

.wakegai-note {
  margin: 14px 0 0;
  color: #63736a;
  font-size: 12px;
  line-height: 1.6;
}

.wakegai-hero-proof {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.wakegai-hero-proof li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(15, 139, 69, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #24483a;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.wakegai-hero-proof li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0f8b45;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.wakegai-visual {
  margin: 0;
}

.wakegai-visual img,
.wakegai-split img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(15, 139, 69, 0.16);
  box-shadow: 0 18px 46px rgba(0, 75, 39, 0.14);
}

.wakegai-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 0;
}

.wakegai-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 0;
}

.wakegai-reassurance p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(15, 139, 69, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 75, 39, 0.05);
}

.wakegai-reassurance strong,
.wakegai-reassurance span {
  display: block;
}

.wakegai-reassurance strong {
  color: #006b38;
  font-size: 15px;
  line-height: 1.45;
}

.wakegai-reassurance span {
  margin-top: 6px;
  color: #52675c;
  font-size: 14px;
  line-height: 1.65;
}

.wakegai-strip div,
.wakegai-case-grid article,
.wakegai-flow-grid article {
  border: 1px solid rgba(15, 139, 69, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 75, 39, 0.06);
}

.wakegai-strip div {
  padding: 22px;
}

.wakegai-strip span,
.wakegai-flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 6px;
  color: #09351f;
  background: #ffd733;
  font-size: 13px;
  font-weight: 900;
}

.wakegai-strip strong,
.wakegai-case-grid strong,
.wakegai-flow-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.wakegai-strip p,
.wakegai-case-grid p,
.wakegai-flow-grid p {
  margin: 8px 0 0;
  color: #52675c;
  line-height: 1.75;
}

.wakegai-section,
.wakegai-situation,
.wakegai-split,
.wakegai-form-bridge,
.wakegai-flow,
.wakegai-phone-step,
.wakegai-warning,
.wakegai-faq,
.wakegai-cta {
  margin-top: clamp(28px, 5vw, 58px);
}

.wakegai-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.wakegai-section-head p:last-child {
  color: #52675c;
}

.wakegai-case-grid,
.wakegai-flow-grid {
  display: grid;
  gap: 14px;
}

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

.wakegai-flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.wakegai-case-grid article,
.wakegai-flow-grid article {
  padding: 24px;
}

.wakegai-situation {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(15, 139, 69, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f0faec);
  box-shadow: 0 14px 34px rgba(0, 75, 39, 0.07);
}

.wakegai-situation figure {
  margin: 0;
}

.wakegai-situation img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(15, 139, 69, 0.16);
  box-shadow: 0 18px 46px rgba(0, 75, 39, 0.12);
}

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

.wakegai-situation-grid p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(15, 139, 69, 0.15);
  border-radius: 8px;
  background: #ffffff;
}

.wakegai-situation-grid strong,
.wakegai-situation-grid span {
  display: block;
}

.wakegai-situation-grid strong {
  margin-bottom: 8px;
  color: #08723c;
  line-height: 1.45;
}

.wakegai-situation-grid span {
  color: #52675c;
  line-height: 1.75;
}

.wakegai-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(15, 139, 69, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 75, 39, 0.07);
}

.wakegai-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.wakegai-list li {
  position: relative;
  padding-left: 30px;
}

.wakegai-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #ffd733;
  box-shadow: 0 0 0 3px rgba(15, 139, 69, 0.15);
}

.wakegai-form-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 139, 69, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 215, 51, 0.16) 0 2px, transparent 2px 20px),
    #ffffff;
  box-shadow: 0 14px 34px rgba(0, 75, 39, 0.07);
}

.wakegai-form-bridge p {
  color: #52675c;
}

.wakegai-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 139, 69, 0.18);
  border-radius: 8px;
  background: #fff8d8;
}

.wakegai-inline-cta strong,
.wakegai-inline-cta span {
  display: block;
}

.wakegai-inline-cta strong {
  color: #123329;
  font-size: 16px;
  line-height: 1.45;
}

.wakegai-inline-cta span {
  margin-top: 4px;
  color: #52675c;
  font-size: 13px;
  line-height: 1.55;
}

.wakegai-inline-cta .button {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

.wakegai-ready-list {
  display: grid;
  gap: 12px;
}

.wakegai-ready-list p {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(15, 139, 69, 0.16);
  background: #f7fcf4;
}

.wakegai-ready-list span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #ffd733;
  color: #09351f;
  font-weight: 900;
}

.wakegai-ready-list strong {
  color: #123329;
  line-height: 1.35;
}

.wakegai-ready-list small {
  color: #52675c;
  font-size: 13px;
  line-height: 1.5;
}

.wakegai-phone-step {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  border: 1px solid rgba(15, 139, 69, 0.18);
  background: #fff9d8;
}

.wakegai-phone-step p:last-child {
  margin: 0;
  color: #46574f;
}

.wakegai-warning {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: linear-gradient(135deg, #006b38, #004326);
  color: #ffffff;
}

.wakegai-warning .eyebrow,
.wakegai-warning h2 {
  color: #ffffff;
}

.wakegai-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.wakegai-checks p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.wakegai-checks strong,
.wakegai-checks span {
  display: block;
}

.wakegai-checks strong {
  margin-bottom: 8px;
  color: #ffe25d;
}

.wakegai-faq details {
  margin-top: 12px;
  border: 1px solid rgba(15, 139, 69, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.wakegai-faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 850;
}

.wakegai-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #52675c;
}

.wakegai-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 215, 51, 0.13) 0 2px, transparent 2px 20px),
    linear-gradient(135deg, #0f8b45, #005f32);
  color: #ffffff;
}

.wakegai-cta .eyebrow,
.wakegai-cta h2 {
  color: #ffffff;
}

.wakegai-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.wakegai-cta .button {
  color: #15361f;
  background: #ffd733;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

.wakegai-sticky-cta {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(15, 139, 69, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(0, 75, 39, 0.18);
  backdrop-filter: blur(10px);
}

.wakegai-sticky-cta span {
  color: #123329;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.wakegai-sticky-cta .button {
  min-height: 42px;
  padding: 10px 16px;
  color: #15361f;
  background: #ffd733;
  white-space: nowrap;
}

.wakegai-story-body {
  background:
    linear-gradient(90deg, rgba(15, 139, 69, 0.04) 0 1px, transparent 1px 24px),
    #f7fbf2;
}

.wakegai-story-page {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 20px 88px;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  border-radius: 8px;
  border: 2px solid rgba(0, 107, 56, 0.18);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 215, 51, 0.44), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f1fae9 58%, #fff8d6 100%);
  box-shadow: 0 18px 48px rgba(0, 75, 39, 0.12);
}

.story-hero-copy,
.story-hero-copy .hero-actions,
.story-hero-visual {
  min-width: 0;
}

.story-hero-copy h1 {
  margin: 0;
  color: #143528;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.story-hero-copy p {
  color: #33483d;
}

.story-hero-copy > p:not(.wakegai-badge):not(.wakegai-note) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.95;
}

.story-hero-visual {
  margin: 0;
}

.story-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(15, 139, 69, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(0, 75, 39, 0.14);
}

.story-person,
.story-bridge,
.story-form,
.story-final-cta {
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 139, 69, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 75, 39, 0.07);
}

.story-person {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: #fff9d8;
}

.story-person p:last-child {
  margin: 0;
  color: #46574f;
  line-height: 1.85;
}

.story-comic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 5vw, 58px);
}

.comic-panel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 2px solid #123329;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 215, 51, 0.32), transparent 22%),
    #ffffff;
  box-shadow: 8px 8px 0 rgba(0, 107, 56, 0.16);
}

.comic-panel::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(15, 139, 69, 0.08);
}

.comic-panel span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #123329;
  border-radius: 999px;
  color: #123329;
  background: #ffd733;
  font-size: 20px;
  font-weight: 900;
}

.comic-panel div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.comic-speaker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #006b38;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.comic-panel h2 {
  margin: 0;
  color: #123329;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.35;
  letter-spacing: 0;
}

.comic-panel p:not(.comic-speaker) {
  margin: 14px 0 0;
  color: #45584f;
  line-height: 1.8;
}

.story-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.story-bridge p {
  color: #52675c;
  line-height: 1.85;
}

.story-target {
  margin-top: clamp(28px, 5vw, 58px);
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.story-card-grid article {
  padding: 22px;
  border: 1px solid rgba(15, 139, 69, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 75, 39, 0.06);
}

.story-card-grid strong {
  display: block;
  color: #006b38;
  font-size: 19px;
  line-height: 1.4;
}

.story-card-grid p {
  margin: 8px 0 0;
  color: #52675c;
  line-height: 1.7;
}

.story-form {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 215, 51, 0.16) 0 2px, transparent 2px 20px),
    #ffffff;
}

.story-form p {
  color: #52675c;
  line-height: 1.85;
}

.story-final-cta {
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 215, 51, 0.13) 0 2px, transparent 2px 20px),
    linear-gradient(135deg, #0f8b45, #005f32);
}

.story-final-cta .eyebrow,
.story-final-cta h2 {
  color: #ffffff;
}

.story-final-cta p {
  max-width: 720px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.story-final-cta .button {
  margin-top: 22px;
  color: #15361f;
  background: #ffd733;
}

@media (max-width: 920px) {
  .wakegai-hero,
  .wakegai-split,
  .wakegai-form-bridge,
  .wakegai-phone-step,
  .wakegai-cta {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .wakegai-strip,
  .wakegai-reassurance,
  .wakegai-case-grid,
  .wakegai-flow-grid,
  .wakegai-situation-grid,
  .wakegai-checks {
    grid-template-columns: 1fr 1fr;
  }

  .story-hero,
  .story-person,
  .story-bridge,
  .story-form {
    grid-template-columns: 1fr;
  }

  .story-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wakegai-inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .wakegai-inline-cta .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .wakegai-page {
    width: 100%;
    max-width: 100%;
    padding: 24px 14px 102px;
    overflow: hidden;
  }

  .wakegai-hero,
  .wakegai-situation,
  .wakegai-split,
  .wakegai-form-bridge,
  .wakegai-phone-step,
  .wakegai-warning,
  .wakegai-cta {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding: 20px;
  }

  .wakegai-copy h1 {
    font-size: clamp(28px, 8.6vw, 35px);
    line-height: 1.18;
  }

  .wakegai-copy,
  .wakegai-visual,
  .wakegai-split figure {
    min-width: 0;
  }

  .wakegai-page .hero-actions {
    width: min(100%, 302px);
    max-width: 302px;
  }

  .wakegai-page .hero-actions .button {
    width: 100% !important;
    max-width: 302px;
  }

  .wakegai-hero-proof li {
    padding: 11px 12px 11px 34px;
    font-size: 13px;
  }

  .wakegai-inline-cta {
    padding: 16px;
  }

  .wakegai-inline-cta .button {
    min-height: 46px;
    white-space: normal;
  }

  .wakegai-sticky-cta {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .wakegai-sticky-cta span {
    font-size: 12px;
  }

  .wakegai-sticky-cta .button {
    min-width: 112px;
    padding-inline: 12px;
  }

  .wakegai-visual img,
  .wakegai-split img {
    width: min(100%, 302px);
    max-width: 302px;
  }

  .wakegai-strip,
  .wakegai-reassurance,
  .wakegai-case-grid,
  .wakegai-flow-grid,
  .wakegai-situation-grid,
  .wakegai-checks {
    grid-template-columns: 1fr;
  }

  .wakegai-story-page {
    width: 100%;
    max-width: 100%;
    padding: 24px 14px 72px;
    overflow: hidden;
  }

  .story-hero,
  .story-person,
  .story-bridge,
  .story-form,
  .story-final-cta {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding: 20px;
  }

  .story-hero-copy h1 {
    font-size: clamp(28px, 8.4vw, 35px);
    line-height: 1.2;
  }

  .story-hero-copy .hero-actions {
    width: min(100%, 302px);
    max-width: 302px;
  }

  .story-hero-copy .hero-actions .button {
    width: 100% !important;
    max-width: 302px;
  }

  .story-hero-visual img {
    width: min(100%, 302px);
    max-width: 302px;
    margin: 0 auto;
  }

  .story-comic,
  .story-card-grid {
    grid-template-columns: 1fr;
  }

  .comic-panel {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 18px;
    box-shadow: 5px 5px 0 rgba(0, 107, 56, 0.16);
  }

  .comic-panel span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
