:root {
  --ink: #2f261f;
  --muted: #6f6258;
  --green-900: #295a3d;
  --green-800: #346849;
  --green-100: #edf5e8;
  --cream: #fffaf0;
  --cream-strong: #fbf0d7;
  --line: rgba(74, 54, 35, 0.14);
  --shadow: 0 20px 50px rgba(56, 45, 29, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  font-family:
    "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 244, 205, 0.72), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, #fff 45%, #fffaf2 100%);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
strong,
small,
summary {
  overflow-wrap: break-word;
}

p,
h1,
h2,
h3,
strong,
small {
  line-break: strict;
}

.hero-copy,
.guide-content,
.faq-list,
.dictionary > div,
.cta > div {
  min-width: 0;
}

.mobile-break {
  display: none;
}

.mobile-only {
  display: none;
}

.title-line {
  white-space: nowrap;
}

.nowrap {
  white-space: nowrap;
}

.content-width {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 64px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(22px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(53, 77, 48, 0.1);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 30px;
  flex: 0 0 34px;
}

.brand-mark span {
  position: absolute;
  display: block;
  background: #6c4b2f;
  border-radius: 999px;
}

.brand-mark span:nth-child(1) {
  width: 14px;
  height: 14px;
  left: 10px;
  bottom: 1px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3),
.brand-mark span:nth-child(4),
.brand-mark span:nth-child(5) {
  width: 9px;
  height: 11px;
}

.brand-mark span:nth-child(2) {
  left: 0;
  top: 11px;
  transform: rotate(-28deg);
}

.brand-mark span:nth-child(3) {
  left: 8px;
  top: 1px;
  transform: rotate(-10deg);
}

.brand-mark span:nth-child(4) {
  right: 8px;
  top: 1px;
  transform: rotate(10deg);
}

.brand-mark span:nth-child(5) {
  right: 0;
  top: 11px;
  transform: rotate(28deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 42px);
  color: #33281f;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-block: 8px;
  white-space: nowrap;
}

.nav-links a:hover {
  border-color: rgba(45, 91, 61, 0.36);
}

.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.header-button {
  padding: 0 24px;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 8px 24px rgba(38, 87, 56, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  min-height: 660px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 4px;
  left: -8vw;
  height: 110px;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(137, 173, 89, 0.34), transparent 66%),
    linear-gradient(7deg, transparent 37%, rgba(181, 205, 128, 0.2) 38%, transparent 64%);
  border-radius: 50% 50% 0 0;
}

.ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 22px;
  padding: 0 32px;
  color: #fff;
  background: var(--green-800);
  font-size: 1.04rem;
  font-weight: 800;
}

.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  border-block: 22px solid transparent;
}

.ribbon::before {
  left: -22px;
  border-right: 22px solid var(--green-800);
}

.ribbon::after {
  right: -22px;
  border-left: 22px solid var(--green-800);
}

.hero h1 {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(2.55rem, 3.45vw, 3.35rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 540px;
  margin: 26px 0 32px;
  color: #3d342d;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 700;
  line-height: 2;
}

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

.hero-trust article,
.article-card,
.guide-steps a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(57, 46, 31, 0.08);
}

.hero-trust article {
  display: grid;
  place-items: center;
  gap: 9px;
  min-height: 128px;
  padding: 18px 10px;
  border-radius: 18px;
  text-align: center;
}

.hero-trust strong {
  font-size: 0.92rem;
  line-height: 1.55;
}

.mini-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fbecd4;
}

.book-icon::before {
  content: "";
  position: absolute;
  inset: 10px 11px;
  border: 3px solid #5e7e48;
  border-top: 0;
  transform: skewY(-12deg);
}

.pages-icon::before {
  content: "";
  position: absolute;
  inset: 11px 9px;
  border: 3px solid #6c8da4;
  border-radius: 5px;
}

.heart-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 13px;
  background: #e9958d;
  transform: rotate(45deg);
  border-radius: 4px;
}

.heart-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 7px;
  background:
    radial-gradient(circle at 6px 6px, #e9958d 0 9px, transparent 10px),
    radial-gradient(circle at 14px 6px, #e9958d 0 9px, transparent 10px);
  transform: rotate(45deg);
}

.primary-button {
  min-width: min(100%, 460px);
  margin-top: 24px;
  padding-inline: 32px;
  color: #fff;
  background: linear-gradient(180deg, #3b764f, #28603f);
  box-shadow: 0 16px 34px rgba(39, 96, 61, 0.28);
  font-size: 1.08rem;
}

.primary-button::after,
.secondary-button::after,
.text-link::after {
  content: "›";
  margin-left: 10px;
  font-size: 1.4em;
  line-height: 0;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-visual img {
  width: min(460px, 86%);
  filter: drop-shadow(0 20px 24px rgba(63, 47, 30, 0.13));
}

.speech-bubble {
  position: absolute;
  top: 118px;
  right: -56px;
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  margin: 0;
  color: #6c3b34;
  background: #ffe1df;
  border-radius: 52% 48% 48% 54%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.42;
  text-align: center;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 28px;
  border-top: 18px solid transparent;
  border-right: 32px solid #ffe1df;
  border-bottom: 8px solid transparent;
  transform: rotate(-8deg);
}

.floating {
  position: absolute;
  opacity: 0.65;
}

.doodle-chart {
  left: 35px;
  bottom: 154px;
  width: 62px;
  height: 54px;
  border-bottom: 4px solid #95c6da;
  border-left: 4px solid #95c6da;
}

.doodle-chart::before {
  content: "";
  position: absolute;
  inset: auto 6px 5px 8px;
  height: 36px;
  background: linear-gradient(90deg, #f4b2a2 0 20%, transparent 20% 30%, #f1c45c 30% 50%, transparent 50% 60%, #9ac37b 60% 80%, transparent 80%);
}

.doodle-pig {
  right: 58px;
  bottom: 72px;
  width: 88px;
  height: 56px;
  border-radius: 45% 55% 50% 50%;
  background: #f4b7b3;
}

.doodle-pig::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f4b7b3;
}

.doodle-pie {
  right: 0;
  bottom: 180px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    conic-gradient(#7eb0d4 0 70deg, transparent 70deg 100deg, #d8e9f5 100deg 360deg);
  border: 4px solid #91bee0;
}

.guide-panel,
.faq,
.dictionary,
.cta {
  display: grid;
  gap: 36px;
  border: 1px solid rgba(73, 111, 66, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 240, 200, 0.55), transparent 44%),
    linear-gradient(180deg, rgba(245, 250, 235, 0.93), rgba(255, 250, 236, 0.9));
  box-shadow: var(--shadow);
}

.guide-panel {
  grid-template-columns: 250px 1fr;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
}

.guide-teacher {
  width: min(100%, 235px);
  justify-self: center;
}

.eyebrow {
  margin: 0 0 9px;
  color: #53713b;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-content h2,
.faq h2,
.dictionary h2,
.cta h2 {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.guide-content p,
.faq-list > p:not(.eyebrow),
.dictionary p,
.cta p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.guide-steps a {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 194px;
  padding: 22px 16px;
  border-radius: 22px;
  text-align: center;
}

.guide-steps a:hover,
.article-card:hover {
  transform: translateY(-3px);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-inline: auto;
  border-radius: 50%;
  font-weight: 900;
}

.gold {
  color: #79531a;
  background: #ffeab0;
}

.pink {
  color: #8c4c58;
  background: #ffe0df;
}

.green {
  color: #376b3c;
  background: #e4f3df;
}

.blue {
  color: #376073;
  background: #ddecf6;
}

.purple {
  color: #654a82;
  background: #efe4f5;
}

.guide-steps strong {
  font-size: 1rem;
}

.guide-steps small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--green-800);
  font-weight: 900;
}

.centered {
  justify-content: center;
  width: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--green-800);
}

.section-title span {
  width: 48px;
  height: 20px;
  background:
    radial-gradient(circle at 12px 12px, #b6cc78 0 5px, transparent 6px),
    linear-gradient(26deg, transparent 45%, #b6cc78 46% 56%, transparent 57%);
  opacity: 0.8;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 2.8rem);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.article-card {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 18px;
  border-radius: var(--radius-sm);
  transition: transform 160ms ease;
}

.article-card h3 {
  min-height: 70px;
  margin: 18px 0 10px;
  font-size: 1.3rem;
  line-height: 1.32;
}

.article-card img {
  align-self: end;
  justify-self: center;
  max-height: 135px;
  object-fit: contain;
}

.article-card p {
  margin: 16px 0 12px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.7;
}

.article-card small {
  align-self: end;
  justify-self: start;
  padding: 6px 10px;
  color: var(--muted);
  background: #f2efe6;
  border-radius: 999px;
  font-weight: 800;
}

.tag {
  justify-self: start;
  padding: 5px 10px;
  color: #fff;
  background: var(--green-800);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.chart-card {
  align-self: end;
  justify-self: center;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 130px;
  height: 128px;
  padding: 18px 18px 16px;
  border: 5px solid #e7d7b6;
  border-radius: 14px;
  background: #fffaf0;
  overflow: hidden;
}

.chart-card span {
  flex: 1;
  border-radius: 6px 6px 0 0;
}

.chart-card span:nth-child(1) {
  height: 30px;
  background: #f2a394;
}

.chart-card span:nth-child(2) {
  height: 48px;
  background: #f1c85b;
}

.chart-card span:nth-child(3) {
  height: 66px;
  background: #a1c979;
}

.chart-card span:nth-child(4) {
  height: 82px;
  background: #85b7d2;
}

.dictionary {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  margin-top: 10px;
  padding: clamp(26px, 4vw, 44px);
}

.word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.word-list a {
  padding: 13px 18px;
  border: 1px solid rgba(52, 104, 73, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-800);
  font-weight: 900;
}

.faq {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(26px, 4vw, 48px);
}

.faq-list details {
  border-top: 1px solid rgba(68, 66, 49, 0.16);
}

.faq-list details:last-of-type {
  border-bottom: 1px solid rgba(68, 66, 49, 0.16);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 56px;
  cursor: pointer;
  color: #2f3c2d;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::before {
  content: "Q";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  color: #fff;
  background: var(--green-800);
  border-radius: 50%;
}

.faq-list summary::after {
  content: "+";
  margin-left: auto;
  color: var(--green-800);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0 0 18px 44px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 150px;
  align-items: end;
  gap: 0;
}

.faq-visual img {
  position: relative;
  z-index: 1;
  max-height: 245px;
  object-fit: contain;
  justify-self: end;
}

.faq-board {
  display: grid;
  gap: 9px;
  align-self: center;
  min-height: 210px;
  padding: 24px 22px;
  color: #fff9e9;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    #426f4d;
  border: 7px solid #b58756;
  border-radius: 10px;
  box-shadow: 0 16px 22px rgba(69, 50, 29, 0.16);
  font-weight: 900;
  line-height: 1.45;
}

.faq-board strong {
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 249, 233, 0.42);
  font-size: 1.05rem;
}

.faq-board span {
  font-size: 0.95rem;
}

.cta {
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  margin-top: 44px;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at right, rgba(246, 213, 123, 0.22), transparent 28%),
    linear-gradient(180deg, #39764e, #215438);
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-avatar {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: #fff6e7;
}

.cta-avatar img {
  width: 116px;
  margin-top: 18px;
}

.secondary-button {
  min-width: 320px;
  margin-top: 18px;
  padding-inline: 30px;
  color: var(--green-800);
  background: #fff;
  box-shadow: 0 14px 28px rgba(13, 55, 31, 0.2);
}

.mini-book {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 118px;
  height: 160px;
  color: #466c3f;
  background: #fff8d8;
  border: 5px solid #efe3bd;
  border-radius: 8px;
  box-shadow: 0 16px 26px rgba(12, 50, 28, 0.2);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  transform: rotate(5deg);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 34px;
}

.promise-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
}

.promise-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--green-100);
  font-weight: 900;
}

.promise-strip strong {
  font-size: 0.93rem;
}

.promise-strip small {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 32px;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 72px);
  color: #fff;
  background: #2f6b48;
}

.site-footer .brand-mark span {
  background: rgba(255, 255, 255, 0.9);
}

.site-footer small,
.footer-note {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 800;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 240, 200, 0.5), transparent 24rem),
    linear-gradient(180deg, rgba(248, 251, 240, 0.94), rgba(255, 250, 236, 0.88));
  border-bottom: 1px solid rgba(74, 96, 59, 0.08);
}

.guide-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -18px;
  left: -10vw;
  height: 92px;
  background:
    radial-gradient(ellipse at center, rgba(139, 175, 89, 0.28), transparent 68%),
    linear-gradient(3deg, transparent 38%, rgba(181, 205, 128, 0.2) 39%, transparent 67%);
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
  min-height: 330px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #4a4038;
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green-800);
}

.guide-hero-copy h1 {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.guide-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #3d342d;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.95;
}

.guide-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.guide-hero-visual img {
  width: min(300px, 84%);
  filter: drop-shadow(0 18px 24px rgba(63, 47, 30, 0.12));
}

.guide-hero-visual .doodle-chart {
  left: 8px;
  bottom: 82px;
}

.guide-hero-visual .doodle-pig {
  right: 16px;
  bottom: 114px;
  transform: scale(0.72);
}

.guide-hero-visual .doodle-pie {
  left: 22px;
  top: 44px;
  transform: scale(0.72);
}

.compact-title {
  margin-bottom: 24px;
}

.compact-title h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
}

.mini-title {
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.mini-title span {
  width: 30px;
  height: 14px;
}

.mini-title h2 {
  font-size: clamp(1.18rem, 2vw, 1.35rem);
}

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

.flow-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(57, 46, 31, 0.08);
  text-align: center;
}

.flow-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--green-800);
  background: #fffaf0;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.step-label {
  display: grid;
  gap: 0;
  margin: 0;
  color: #53713b;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-align: left;
}

.step-label strong {
  font-size: 2rem;
  line-height: 1;
}

.flow-card h3,
.worry-grid h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.flow-card p:not(.step-label),
.worry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.75;
}

.guide-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 34px;
}

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

.worry-grid article {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(57, 46, 31, 0.07);
}

.question-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #53713b;
  background: #dcebc8;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
}

.question-icon.yen {
  color: #ad741e;
  background: #ffe4b8;
}

.question-icon.balance {
  color: #b45a5f;
  background: #ffe0df;
}

.question-icon.rain {
  color: #4e7892;
  background: #ddecf6;
}

.worry-grid a {
  align-self: end;
  color: var(--green-800);
  font-size: 0.88rem;
  font-weight: 900;
}

.worry-grid a::after {
  content: "›";
  margin-left: 8px;
}

.note-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  align-items: end;
  gap: 18px;
  min-height: 250px;
  padding: 26px 26px 0;
  border: 8px solid #44714c;
  border-bottom: 10px solid #b58756;
  border-radius: 12px 12px 6px 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 249, 232, 0.88)),
    #fffaf0;
  box-shadow: 0 18px 36px rgba(57, 46, 31, 0.12);
}

.note-board p {
  margin: 0 0 30px;
  color: #3d342d;
  font-weight: 800;
  line-height: 2;
}

.note-board img {
  width: 150px;
  align-self: end;
}

.starter-articles {
  padding-top: 30px;
}

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

.starter-list a {
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto auto;
  gap: 6px 14px;
  align-items: center;
  min-height: 116px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(57, 46, 31, 0.07);
}

.starter-list img,
.starter-list .mini-chart {
  grid-row: span 2;
  width: 90px;
  max-height: 92px;
  object-fit: contain;
}

.starter-list strong {
  align-self: end;
  font-size: 0.98rem;
  line-height: 1.45;
}

.starter-list span:not(.chart-card) {
  align-self: start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.55;
}

.mini-chart {
  transform: scale(0.72);
  transform-origin: left center;
}

.guide-bottom-cta {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 34px;
  padding: 20px 26px;
  border: 1px solid rgba(216, 181, 105, 0.35);
  border-radius: 18px;
  background:
    radial-gradient(circle at left, rgba(255, 239, 190, 0.8), transparent 22rem),
    rgba(255, 250, 236, 0.94);
  box-shadow: 0 14px 30px rgba(57, 46, 31, 0.08);
}

.guide-bottom-cta img {
  width: 110px;
  justify-self: center;
}

.guide-bottom-cta h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.35;
}

.guide-bottom-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.guide-bottom-actions {
  display: flex;
  gap: 12px;
}

.guide-bottom-actions .secondary-button,
.outline-button {
  min-width: 190px;
  min-height: 50px;
  padding-inline: 24px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  border: 1px solid rgba(52, 104, 73, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  white-space: nowrap;
}

.outline-button::after {
  content: "›";
  margin-left: 10px;
  font-size: 1.4em;
  line-height: 0;
}

.page-hero,
.article-hero,
.simple-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-top: 30px;
  margin-bottom: 34px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(73, 111, 66, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 240, 200, 0.58), transparent 42%),
    linear-gradient(180deg, rgba(245, 250, 235, 0.93), rgba(255, 250, 236, 0.92));
  box-shadow: var(--shadow);
}

.page-hero > *,
.article-hero > *,
.simple-page > *,
.article-teaser > *,
.coming-soon > *,
.policy-grid article,
.legal-page,
.article-body,
.article-body section,
.number-grid article {
  min-width: 0;
}

.page-hero h1,
.article-hero h1,
.simple-page h1,
.legal-page h1 {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.24;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow),
.article-hero p,
.simple-copy > p,
.legal-page > p,
.coming-soon p {
  color: #3d342d;
  font-weight: 700;
  line-height: 1.9;
}

.page-hero img,
.article-hero img {
  width: min(240px, 100%);
  justify-self: center;
  filter: drop-shadow(0 18px 24px rgba(63, 47, 30, 0.11));
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-pills a {
  padding: 10px 16px;
  color: var(--green-800);
  border: 1px solid rgba(52, 104, 73, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.article-index {
  margin-bottom: 34px;
}

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

.article-teaser {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(57, 46, 31, 0.08);
}

.featured-teaser {
  grid-column: 1 / -1;
  grid-template-columns: 180px 1fr;
  min-height: 230px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at left, rgba(255, 234, 176, 0.5), transparent 22rem),
    rgba(255, 255, 255, 0.88);
}

.article-teaser .tag {
  position: absolute;
  top: 16px;
  left: 16px;
}

.article-teaser img,
.article-teaser .mini-icon {
  width: 100px;
  max-height: 110px;
  justify-self: center;
  object-fit: contain;
}

.featured-teaser img {
  width: 160px;
  max-height: 180px;
}

.article-teaser h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-teaser p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.article-teaser small {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-800);
  font-weight: 900;
}

.coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(216, 181, 105, 0.35);
  border-radius: 18px;
  background: rgba(255, 250, 236, 0.94);
  box-shadow: 0 14px 30px rgba(57, 46, 31, 0.08);
}

.coming-soon h2,
.policy-grid h2,
.article-body h2,
.legal-page h2 {
  margin: 0;
  color: var(--green-800);
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.coming-soon ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.article-page {
  padding-bottom: 34px;
}

.article-hero {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.article-meta span {
  padding: 7px 11px;
  color: var(--muted);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.toc-card,
.teacher-mini,
.article-callout,
.article-next,
.article-notice,
.profile-card,
.policy-grid article,
.legal-page {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(57, 46, 31, 0.08);
}

.toc-card,
.teacher-mini {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
}

.toc-card strong {
  color: var(--green-800);
}

.toc-card a {
  color: #3d342d;
  font-weight: 800;
}

.teacher-mini img {
  width: 118px;
  justify-self: center;
}

.teacher-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.75;
}

.article-body {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.article-body section {
  scroll-margin-top: 110px;
}

.article-body p,
.article-body li,
.legal-page p,
.legal-page li {
  color: #3d342d;
  font-weight: 700;
  line-height: 1.95;
  overflow-wrap: anywhere;
}

.article-body section:not(.article-callout):not(.article-next):not(.article-notice) {
  padding-bottom: 2px;
}

.article-callout,
.article-next,
.article-notice {
  padding: clamp(22px, 4vw, 30px);
  border-radius: 18px;
}

.article-callout {
  background:
    radial-gradient(circle at right, rgba(255, 234, 176, 0.5), transparent 20rem),
    rgba(255, 250, 236, 0.95);
}

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

.number-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--green-100);
}

.number-grid strong {
  color: var(--green-800);
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.number-grid span,
.source-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.source-note a {
  color: var(--green-800);
  border-bottom: 1px solid rgba(52, 104, 73, 0.35);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.article-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at left, rgba(220, 235, 200, 0.7), transparent 20rem),
    rgba(255, 255, 255, 0.9);
}

.article-next .secondary-button {
  min-width: 210px;
  box-shadow: none;
  background: var(--green-800);
  color: #fff;
}

.article-notice {
  background: rgba(246, 241, 230, 0.72);
}

.simple-page {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.profile-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
}

.profile-card img {
  width: 150px;
  justify-self: center;
}

.profile-card strong {
  color: var(--green-800);
  font-size: 1.2rem;
}

.profile-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.policy-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
}

.policy-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--green-100);
  font-weight: 900;
}

.policy-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.legal-page {
  margin-top: 30px;
  margin-bottom: 34px;
  padding: clamp(26px, 5vw, 56px);
  border-radius: var(--radius-lg);
}

.legal-page section {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.updated {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 3px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero-trust {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .guide-panel,
  .faq,
  .dictionary,
  .cta {
    grid-template-columns: 1fr;
  }

  .guide-hero-inner,
  .guide-two-column,
  .guide-bottom-cta,
  .page-hero,
  .article-hero,
  .article-layout,
  .simple-page,
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .article-hero,
  .simple-page {
    text-align: center;
  }

  .category-pills,
  .article-meta {
    justify-content: center;
  }

  .article-aside {
    position: static;
    order: 2;
  }

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

  .guide-hero-copy {
    text-align: center;
  }

  .breadcrumb,
  .guide-hero-copy p:not(.eyebrow) {
    justify-content: center;
    margin-inline: auto;
  }

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

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

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

  .article-index-grid,
  .policy-grid,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .guide-bottom-actions {
    justify-content: center;
  }

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

  .guide-teacher,
  .faq-visual,
  .mini-book,
  .cta-avatar {
    justify-self: center;
  }

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

@media (max-width: 680px) {
  .content-width,
  .section-pad {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding-block: 42px;
  }

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

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .header-button {
    display: none;
  }

  .nav-links {
    gap: 20px;
    font-size: 0.82rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .ribbon {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 44px);
    margin-inline: auto;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.35;
    max-width: 100%;
  }

  .title-line {
    white-space: normal;
  }

  .mobile-break {
    display: inline;
  }

  .mobile-only {
    display: inline;
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.85;
  }

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

  .hero-trust article {
    grid-template-columns: 48px 1fr;
    min-height: 82px;
    text-align: left;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-visual img {
    width: min(320px, 88%);
  }

  .speech-bubble {
    display: none;
  }

  .doodle-chart,
  .doodle-pig,
  .doodle-pie {
    display: none;
  }

  .guide-panel,
  .faq,
  .dictionary,
  .cta {
    border-radius: 20px;
    padding: 24px 18px;
  }

  .guide-hero {
    padding-top: 28px;
  }

  .guide-hero-inner {
    gap: 18px;
    min-height: auto;
  }

  .breadcrumb {
    margin-bottom: 18px;
    font-size: 0.76rem;
  }

  .guide-hero-copy h1 {
    font-size: 1.88rem;
    line-height: 1.25;
  }

  .guide-hero-copy p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .guide-hero-visual {
    min-height: 260px;
  }

  .guide-hero-visual img {
    width: min(260px, 82%);
  }

  .flow-grid,
  .worry-grid,
  .starter-list,
  .article-teaser,
  .featured-teaser {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .article-hero,
  .simple-page,
  .legal-page {
    margin-top: 18px;
    border-radius: 20px;
    padding: 24px 18px;
  }

  .page-hero h1,
  .article-hero h1,
  .simple-page h1,
  .legal-page h1 {
    font-size: 1.78rem;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .category-pills {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .category-pills a,
  .article-teaser h3,
  .article-teaser p,
  .article-body h2,
  .article-body h3,
  .number-grid strong,
  .number-grid span,
  .source-note,
  .coming-soon li {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .category-pills a {
    padding-inline: 8px;
    text-align: center;
  }

  .article-index,
  .article-index-grid,
  .article-teaser,
  .article-teaser > div,
  .article-body,
  .article-body section,
  .number-grid,
  .number-grid article {
    width: 100%;
    max-width: 100%;
  }

  .article-teaser {
    padding: 20px 16px;
    text-align: center;
    overflow: hidden;
  }

  .article-teaser .tag {
    position: static;
    justify-self: center;
    margin-bottom: 6px;
  }

  .featured-teaser img,
  .article-teaser img,
  .article-teaser .mini-icon {
    width: 112px;
  }

  .article-layout {
    gap: 22px;
  }

  .article-body p,
  .article-body li,
  .legal-page p,
  .legal-page li,
  .page-hero p:not(.eyebrow),
  .article-hero p,
  .simple-copy > p,
  .coming-soon p {
    font-size: 0.92rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .article-next .secondary-button {
    width: 100%;
  }

  .flow-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .flow-card p:not(.step-label),
  .worry-grid p,
  .note-board p,
  .starter-list strong,
  .starter-list span:not(.chart-card) {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .step-label {
    text-align: center;
  }

  .mini-title {
    justify-content: center;
    text-align: center;
  }

  .note-board {
    grid-template-columns: 1fr;
    padding: 22px 20px 0;
    text-align: left;
  }

  .note-board p {
    margin-bottom: 8px;
  }

  .note-board img {
    width: 140px;
    justify-self: center;
  }

  .starter-list a {
    grid-template-columns: 82px 1fr;
    min-height: 104px;
    padding: 14px;
  }

  .starter-list img,
  .starter-list .mini-chart {
    width: 78px;
    max-height: 82px;
  }

  .guide-bottom-cta {
    padding: 20px 18px;
    text-align: center;
  }

  .guide-bottom-cta img {
    width: 86px;
  }

  .guide-bottom-actions {
    flex-direction: column;
    width: 100%;
  }

  .guide-bottom-actions .secondary-button,
  .outline-button {
    width: 100%;
    min-width: 0;
  }

  .guide-steps,
  .article-grid,
  .promise-strip {
    grid-template-columns: 1fr;
  }

  .guide-steps a {
    min-height: 150px;
  }

  .article-card {
    min-height: auto;
  }

  .article-card h3 {
    min-height: 0;
  }

  .faq-visual {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-board {
    width: min(100%, 300px);
    min-height: 0;
    justify-self: center;
  }

  .faq-visual img {
    max-height: 220px;
    justify-self: center;
  }

  .secondary-button,
  .primary-button {
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .site-footer nav a {
    overflow-wrap: anywhere;
    word-break: break-all;
  }
}
