:root {
  --bg: #f0f4f3;
  --surface: #ffffff;
  --text: #142824;
  --muted: #4d5f5a;
  --accent: #1f6b58;
  --accent-dark: #155043;
  --accent-soft: #e4f0ec;
  --line: #cdd9d4;
  --radius: 0.75rem;
  --shadow: 0 8px 28px rgba(20, 40, 36, 0.06);
  --max: 1240px;
}

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

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  font-size: 1.0625rem;
}

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

a:hover {
  color: var(--accent);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.wrap {
  width: min(var(--max), 94vw);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(20, 40, 36, 0.04);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--accent-dark);
}

.site-nav {
  display: flex;
  gap: 0.85rem 1.15rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-grid-reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-grid-reverse img {
    order: -1;
  }
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.2;
  max-width: 20ch;
  font-weight: 700;
}

.lead {
  margin-top: 1.15rem;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.lead-wide {
  max-width: 70ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 2.25rem 0 0;
}

.stat,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--accent-dark);
}

.stat span {
  font-size: 0.84rem;
  color: var(--muted);
}

section {
  padding: 3.25rem 0;
}

section.alt-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  font-size: 1.08rem;
  font-weight: 600;
}

.section-intro {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card h3 {
  margin-bottom: 0.45rem;
  color: var(--text);
}

.card h3 a {
  color: var(--accent-dark);
}

.card p {
  font-size: 0.94rem;
  color: var(--muted);
}

.card ul {
  margin-top: 0.55rem;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.card li {
  margin-bottom: 0.3rem;
}

.card-feature {
  padding: 1.35rem 1.4rem;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.6rem;
}

.note {
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--accent-dark);
  color: #fff !important;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent);
  color: #fff !important;
}

.btn-ghost {
  background: var(--surface);
  color: var(--accent-dark) !important;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--accent-dark);
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.93rem;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.site-footer {
  margin-top: 3rem;
  padding: 2.75rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.footer-grid h3 {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.site-footer a {
  color: var(--accent);
}

.site-footer p {
  margin-bottom: 0.45rem;
}

.page-main {
  padding: 2.75rem 0 1.5rem;
}

.page-main h1 {
  max-width: none;
  margin-bottom: 0.85rem;
}

.prose {
  max-width: 780px;
}

.prose-wide {
  max-width: none;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.45rem;
  margin-top: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-box a {
  color: var(--accent);
  font-weight: 600;
}

.page-figure {
  margin: 1.75rem 0;
}

.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.checklist li strong {
  color: var(--text);
}

.numbered-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  counter-reset: step;
  max-width: 720px;
}

.numbered-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem 0.9rem 3rem;
  font-size: 0.93rem;
  color: var(--muted);
  position: relative;
  counter-increment: step;
}

.numbered-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 0.85rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item h2 {
  color: var(--accent-dark);
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}
