:root {
  --brand-green: #1d9e3b;
  --brand-blue: #167b1a;
  --brand-slate: #5b5b5b;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --bg: #f4ffec;
  --bg-2: #f9f9f9;
  --card: #ffffff;
  --line: #e2e2e2;
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 18px 38px rgba(0, 0, 0, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "M PLUS Rounded 1c", "Roboto", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 460px at 8% -12%, rgba(29, 158, 59, 0.18), transparent 60%),
    radial-gradient(900px 380px at 94% -10%, rgba(29, 158, 59, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

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

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 20px 110px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(244, 255, 236, 0.92);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand-blue);
}

.logo img {
  width: 300px;
  height: auto;
}

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

.nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--brand-blue);
  border-color: var(--brand-green);
}

.hero {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 30px;
}

.hero-text {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-text::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 59, 0.2), transparent 62%);
}

.hero-text--wide {
  padding: 44px 40px;
  background: linear-gradient(135deg, rgba(22, 123, 26, 0.16), rgba(29, 158, 59, 0.18));
}

.hero-text--wide::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 123, 26, 0.16), transparent 60%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(29, 158, 59, 0.12);
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 13px;
}

.hero-title {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.2;
  margin: 14px 0;
}

.hero-em {
  display: block;
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--brand-blue);
  margin-top: 8px;
}

.hero-lead {
  margin: 18px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-keywords span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(29, 158, 59, 0.2);
  font-size: 12px;
  color: var(--brand-blue);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
a.asrevo {
    display: block;
    width: 50%;
    margin: 50px auto 50px;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    background-color: #1b9533;
    border-radius: 28px;
    color: #ffffff;
    padding: 5px 5px 9px 5px;
    font-family: 'M PLUS Rounded 1c';
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-green));
  color: #fff;
  box-shadow: 0 12px 22px rgba(29, 158, 59, 0.22);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(22, 123, 26, 0.4);
  color: var(--brand-blue);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  background: linear-gradient(145deg, rgba(22, 123, 26, 0.12), rgba(29, 158, 59, 0.12));
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.hero-visual img {
  border-radius: 20px;
}

.hero-form {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(29, 158, 59, 0.2);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.stats {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(22, 123, 26, 0.12);
}

.stat strong {
  display: block;
  font-size: 20px;
  color: var(--brand-blue);
}

.section {
  margin-top: 64px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.section-title h2 {
  margin: 0;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
}

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

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

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

.media-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.media-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}


.media-body {
  padding: 18px 20px 20px;
}

.media-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.media-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.badge {
display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(29, 158, 59, 0.16);
    font-size: 15px;
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(29, 158, 59, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 12px;
}

.pricing {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid rgba(22, 123, 26, 0.12);
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 59, 0.12), transparent 60%);
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-blue);
  margin: 10px 0;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
}

.price-highlight {
  background: rgba(29, 158, 59, 0.1);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  margin-top: 10px;
  color: var(--brand-blue);
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid rgba(29, 158, 59, 0.2);
}

.step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-green);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border-left: 4px solid var(--brand-blue);
}

.faq-item h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

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

.cta-band {
  margin-top: 60px;
  background: linear-gradient(120deg, rgba(22, 123, 26, 0.12), rgba(29, 158, 59, 0.16));
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  gap: 14px;
  align-items: center;
}

.cta-band h3 {
  margin: 0;
  font-size: 22px;
}

.footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(29, 158, 59, 0.12);
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer strong {
  color: var(--ink);
}

.footer-note {
  font-size: 13px;
  color: var(--muted);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-visual,
.hero-form,
.section {
  animation: floatIn 0.7s ease both;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
