:root {
  --text: #1f2933;
  --heading: #111827;
  --muted: #667085;
  --line: #e6e8ec;
  --soft: #f6f3ee;
  --soft2: #faf8f4;
  --accent: #9a6b38;
  --accent-dark: #5f4127;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.95;
  background: var(--white);
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

.lp {
  overflow: hidden;
}

.container {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 28px;
}

.narrow {
  width: min(100%, 840px);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(154, 107, 56, 0.14), transparent 34%),
    linear-gradient(180deg, #fbf7f0 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 96px 28px 88px;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 34px;
  color: var(--heading);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.24;
  letter-spacing: 0.03em;
  font-weight: 900;
}

.hero__lead {
  margin-bottom: 28px;
  color: var(--heading);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.65;
  font-weight: 800;
}

.hero__lead span {
  background: linear-gradient(transparent 62%, rgba(154, 107, 56, 0.24) 0);
}

.hero__text {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: 18px;
  color: #344054;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(95, 65, 39, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.button-dark {
  background: #111827;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.section {
  padding: 100px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.soft {
  background: var(--soft2);
}

h2 {
  margin-bottom: 32px;
  color: var(--heading);
  font-size: clamp(31px, 4.5vw, 58px);
  line-height: 1.45;
  letter-spacing: 0.03em;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

p {
  margin-bottom: 20px;
  font-size: 17px;
}

.catch {
  margin-top: 34px;
  color: var(--heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.75;
  font-weight: 800;
}

.catch strong {
  color: var(--accent-dark);
}

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

.card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--heading);
  font-weight: 700;
}

.list-box {
  margin-top: 34px;
  padding: 34px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid rgba(154, 107, 56, 0.2);
}

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

li {
  position: relative;
  padding-left: 1.45em;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 600;
}

li:last-child {
  margin-bottom: 0;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.statement {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
}

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

.benefit-grid > div {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.benefit-grid p {
  margin: 0;
  color: #475467;
  font-size: 15px;
}

.note {
  margin-top: 34px;
  padding: 24px 26px;
  border-left: 4px solid var(--accent);
  background: #fff;
  color: #475467;
  font-size: 15px;
}

.profile {
  background: #fff;
}

.price-section {
  background: var(--soft2);
}

.price-card {
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.06);
}

.price {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  font-weight: 900;
}

.price span {
  display: inline-block;
  margin-left: 8px;
  color: var(--accent-dark);
}

.cta {
  padding: 110px 0;
  background: #111827;
  color: #fff;
  text-align: center;
}

.cta .section-label {
  color: #d7b98b;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: #e5e7eb;
}

.cta .button {
  margin-top: 22px;
  background: #fff;
  color: #111827;
}

.sp-only {
  display: none;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 72px 22px 64px;
  }

  .container {
    padding: 0 22px;
  }

  .section {
    padding: 72px 0;
  }

  .cards,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .list-box,
  .price-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

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

  .hero__text {
    font-size: 16px;
  }

  .sp-only {
    display: block;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero__lead {
    font-size: 21px;
  }

  .button {
    width: 100%;
  }
}
