:root {
  --bg: #f7f3ee;
  --bg-soft: #f2ece3;
  --bg-hero: #efe7dd;
  --bg-surface: #fffdf9;
  --bg-muted: #f3ece4;
  --text: #171310;
  --text-sub: #4c443e;
  --text-note: #6b635b;
  --line: #e2d8cb;
  --cta: #945326;
  --cta-hover: #7f451d;
  --accent-sage: #5e7e6a;
  --accent-sage-soft: #e7efe7;
  --head-row: #d2c3b2;
  --head-label: #c9b9a7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 80% -20%, #ffffff 0%, var(--bg) 55%);
  color: var(--text);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  background: var(--bg-hero);
  padding: 84px 0 76px;
}

.badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dde9df;
  color: #2d4a38;
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.28;
  color: var(--text);
}

h1,
h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 900px;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-sub);
}

.section {
  padding: 68px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-strong-cta {
  background: var(--accent-sage);
  color: #fff;
}

.section-strong-cta h2 {
  color: #fff;
  margin-bottom: 18px;
}

.final-cta {
  background: #e8dfd4;
}

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

.card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.card-muted {
  background: var(--bg-muted);
}

.bullets {
  margin: 14px 0 0;
  padding-left: 1.15rem;
}

.bullets.compact {
  margin-top: 8px;
}

.plan-cards {
  margin: 18px 0 12px;
}

.plan .price {
  margin: 6px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
}

.plan .plan-sub {
  margin: 4px 0 0;
  font-weight: 700;
}

.recommended {
  border-color: #cad8ce;
}

.pill {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-sage);
  color: #fff;
  font-size: 0.72rem;
  vertical-align: middle;
}

.table-title {
  margin: 16px 0 10px;
  font-size: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.94rem;
}

thead th {
  background: var(--head-row);
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 12px 14px;
}

thead th:first-child {
  background: var(--head-label);
  width: 260px;
}

tbody th,
tbody td {
  border-top: 1px solid #efe6dc;
  text-align: left;
  padding: 10px 14px;
  vertical-align: top;
}

tbody th {
  background: #f2e6d9;
  font-weight: 700;
}

.col-strong {
  background: var(--accent-sage-soft);
}

.steps {
  margin: 14px 0 0;
  padding-left: 1.35rem;
}

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

.photo-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-surface);
  padding: 12px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.photo-box span {
  font-weight: 700;
  font-size: 0.9rem;
}

.photo-box em {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ece7df;
  color: #6c655e;
  flex: 1;
  min-height: 88px;
  font-style: normal;
  font-size: 0.82rem;
}

.photo-box.real {
  min-height: 250px;
}

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

.ba-item {
  margin: 0;
  display: grid;
  gap: 6px;
}

.ba-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5e564f;
}

.ba-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ece7df;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-sub);
}

.cta-row {
  margin-top: 18px;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 13px 22px;
  transition: background-color 0.2s ease;
}

.cta:hover {
  background: var(--cta-hover);
}

.note {
  color: var(--text-note);
  font-size: 0.9rem;
  margin: 8px 0 0;
}

@media (max-width: 960px) {
  .split-2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 64px 0 56px;
  }

  .section {
    padding: 54px 0;
  }

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}
