:root {
  --green-900: #004229;
  --green-800: #005b38;
  --green-700: #087047;
  --green-100: #edf7f1;
  --green-50: #f7fbf7;
  --gold-500: #f6c338;
  --gold-600: #dea71f;
  --ink: #1f2c28;
  --text: #35413d;
  --muted: #67756f;
  --line: #dce8df;
  --shadow: 0 14px 30px rgba(15, 68, 43, 0.09);
  --soft-shadow: 0 8px 22px rgba(17, 62, 41, 0.07);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container.narrow {
  width: min(980px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 91, 56, 0.12);
  box-shadow: 0 2px 14px rgba(12, 57, 36, 0.05);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--green-800);
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0;
}

.brand-company {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #202b27;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: #26312e;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 25px 0 23px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.header-phone {
  display: grid;
  gap: 1px;
  color: var(--green-800);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.phone-icon {
  display: none;
}

.header-cta {
  min-width: 92px;
  min-height: 58px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  background: var(--green-700);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green-800);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(249, 253, 250, 0.97) 45%, rgba(232, 244, 235, 0.82) 100%);
  border-bottom: 1px solid rgba(0, 91, 56, 0.08);
}

.hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 48px;
  align-items: stretch;
}

.hero-copy {
  padding: 72px 0 64px;
  align-self: center;
}

.area-pill {
  width: fit-content;
  margin: 0 0 28px;
  padding: 9px 24px;
  color: var(--green-800);
  border: 2px solid rgba(0, 91, 56, 0.35);
  background: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.hero h1 {
  margin: 0;
  color: #111c18;
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  font-size: clamp(44px, 4.3vw, 66px);
  font-weight: 500;
}

.hero h1 strong {
  display: block;
  margin-top: 8px;
  color: var(--green-800);
  font-size: clamp(48px, 4.85vw, 75px);
  font-weight: 700;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #303b37;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.hero-mobile-photo {
  display: none;
}

.hero-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 570px;
}

.hero-point {
  min-height: 150px;
  padding: 21px 12px 17px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 7px;
  background: #fff;
  border: 1px solid rgba(0, 91, 56, 0.13);
  border-radius: 999px 999px 12px 12px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.point-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(8, 112, 71, 0.2);
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
}

.hero-point strong {
  color: var(--green-800);
  font-size: 16px;
  line-height: 1.3;
}

.hero-point span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}

.btn {
  min-height: 62px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.phone-card:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  min-width: 300px;
  color: #171914;
  background: linear-gradient(180deg, #ffdc56 0%, var(--gold-500) 58%, #edb42e 100%);
  border: 1px solid rgba(164, 119, 14, 0.18);
  box-shadow: 0 12px 22px rgba(221, 166, 33, 0.27);
}

.btn-outline {
  min-width: 230px;
  color: var(--green-800);
  background: #fff;
  border: 1.5px solid rgba(0, 91, 56, 0.26);
  box-shadow: var(--soft-shadow);
}

.btn-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: inherit;
  font-size: 19px;
  line-height: 1;
}

.phone-card {
  min-height: 62px;
  padding: 10px 22px 11px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1px;
  color: var(--green-800);
  background: #fff;
  border: 1.5px solid rgba(0, 91, 56, 0.22);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  line-height: 1.15;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.phone-card-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.phone-card strong {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.phone-card span:last-child {
  font-size: 11px;
  font-weight: 800;
  color: #4f5d58;
}

.hero-photo {
  position: relative;
  margin: 0;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100px;
  width: 210px;
  background: linear-gradient(90deg, rgba(247, 251, 247, 0.95), rgba(247, 251, 247, 0));
  pointer-events: none;
}

.hero-photo img {
  width: min(100%, 560px);
  height: 560px;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: 78px 0;
}

.section:nth-of-type(odd):not(.hero) {
  background: #fff;
}

.worries,
.cases,
.voices {
  background: #fff;
}

.risk,
.flow,
.faq {
  background: linear-gradient(180deg, #f9fcfa 0%, var(--green-50) 100%);
}

.section-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 38px;
  padding: 0 80px;
  color: #202b27;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  border-top: 2px dotted rgba(48, 91, 72, 0.45);
}

.section-title::before {
  left: 0;
}

.section-title::after {
  right: 0;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.mini-card {
  min-height: 178px;
  padding: 22px 14px 18px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  background: linear-gradient(180deg, #fff 0%, #f7faf7 100%);
  border: 1px solid rgba(0, 91, 56, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.card-icon,
.large-icon,
.step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: #eef7f1;
  border: 2px solid rgba(8, 112, 71, 0.16);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.mini-card h3 {
  margin: 0;
  color: #2c3935;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.65;
}

.section-note {
  margin: 28px auto 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.section-note.green {
  color: var(--green-700);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.info-card,
.photo-card,
.voice-card,
.step-card,
.faq-list details {
  background: #fff;
  border: 1px solid rgba(0, 91, 56, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.info-card {
  min-height: 226px;
  padding: 24px 18px 22px;
  text-align: center;
}

.large-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 17px;
  border-radius: 16px;
  font-size: 18px;
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.info-card p {
  margin: 0;
  color: #3f4c48;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reason-card {
  min-height: 252px;
  padding-inline: 26px;
}

.reason-card p {
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.photo-card {
  overflow: hidden;
  text-align: center;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.photo-card h3 {
  min-height: 58px;
  margin: 0;
  padding: 13px 10px 12px;
  display: grid;
  place-items: center;
  color: #2d3834;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.fine-print {
  margin: 22px 0 0;
  color: #68756f;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

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

.step-card {
  position: relative;
  min-height: 210px;
  padding: 20px 16px;
  text-align: center;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 11px solid var(--green-700);
  transform: translateY(-50%);
}

.step-label {
  display: block;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.step-card h3 {
  margin: 7px 0 13px;
  color: var(--green-800);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.step-icon {
  margin: 0 auto 13px;
}

.step-card p {
  margin: 0;
  color: #3f4b46;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

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

.voice-card {
  min-height: 202px;
  padding: 24px 24px 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    linear-gradient(#fff 0 0) center 37px / 44px 24px no-repeat,
    radial-gradient(circle at 50% 35%, #7f927f 0 15px, transparent 16px),
    linear-gradient(180deg, #dde8dc 0%, #f6faf6 100%);
  border: 1px solid rgba(8, 112, 71, 0.12);
}

.voice-card h3 {
  margin: 0 0 10px;
  color: var(--green-800);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.voice-card p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.voice-card strong {
  display: block;
  color: #3f4b46;
  font-size: 13px;
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  overflow: hidden;
  box-shadow: none;
}

.faq-list summary {
  min-height: 58px;
  padding: 14px 58px 14px 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2a3733;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--green-700);
  font-size: 24px;
  font-weight: 500;
  transform: translateY(-50%);
}

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

.faq-list summary span,
.faq-list p span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green-800);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 58px 18px 24px;
  display: flex;
  gap: 14px;
  color: #4a5752;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(0, 66, 41, 0.98), rgba(0, 91, 56, 0.97) 55%, rgba(0, 48, 30, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.final-cta-inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 36px;
  align-items: end;
}

.final-content {
  padding-bottom: 58px;
}

.final-content h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

.final-content h2 span {
  color: #ffd84d;
  font-size: 1.14em;
}

.final-checks {
  margin: 26px 0 34px;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.final-checks li {
  position: relative;
  padding-left: 31px;
  color: #ecf7ef;
  font-size: 17px;
  font-weight: 900;
}

.final-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #ffe071;
  border: 1px solid rgba(255, 224, 113, 0.7);
  font-size: 13px;
  line-height: 1;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
}

.btn-large {
  min-width: 330px;
  min-height: 74px;
  font-size: 19px;
}

.final-phone {
  min-width: 330px;
}

.final-photo {
  margin: 0;
  align-self: end;
}

.final-photo img {
  width: 270px;
  height: 286px;
  object-fit: cover;
  object-position: center top;
}

.site-footer {
  background: #fff;
}

.footer-inner {
  padding: 50px 0 42px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  gap: 72px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-company p {
  margin: 13px 0 0;
  color: #42504b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 14px 34px;
  align-content: start;
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a {
  color: #2f3a36;
}

.footer-nav a:hover {
  color: var(--green-700);
}

.copyright {
  margin: 0;
  padding: 14px;
  color: #fff;
  background: var(--green-800);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1023px) {
  .container,
  .container.narrow {
    width: min(100% - 56px, 900px);
  }

  .header-inner {
    width: min(100% - 32px, 940px);
    gap: 18px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px 28px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 91, 56, 0.14);
    box-shadow: 0 18px 30px rgba(13, 55, 35, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(0, 91, 56, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-phone {
    font-size: 17px;
  }

  .header-cta {
    min-width: 84px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-inner {
    min-height: 520px;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 26px;
  }

  .hero-copy {
    padding: 56px 0;
  }

  .area-pill {
    margin-bottom: 22px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero h1 span {
    font-size: 42px;
  }

  .hero h1 strong {
    font-size: 48px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-points {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-point {
    min-height: 132px;
    padding: 18px 8px 14px;
  }

  .hero-point strong {
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .phone-card {
    width: 100%;
    min-width: 0;
  }

  .phone-card strong {
    font-size: 30px;
  }

  .hero-photo {
    min-height: 520px;
  }

  .hero-photo img {
    height: 500px;
  }

  .section {
    padding: 68px 0;
  }

  .section-title {
    margin-bottom: 34px;
    padding: 0 64px;
    font-size: 27px;
  }

  .worry-grid,
  .risk-grid,
  .reason-grid,
  .case-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .mini-card {
    min-height: 154px;
    grid-template-columns: 64px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .risk-grid .info-card:last-child,
  .voice-grid .voice-card:last-child {
    grid-column: 1 / -1;
  }

  .case-grid {
    gap: 20px;
  }

  .photo-card img {
    aspect-ratio: 1.55 / 1;
  }

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

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

  .step-card {
    min-height: 188px;
  }

  .final-cta {
    padding-top: 62px;
  }

  .final-cta-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
  }

  .final-content {
    padding-bottom: 50px;
  }

  .final-content h2 {
    font-size: 29px;
  }

  .final-checks {
    gap: 14px 24px;
  }

  .final-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
  }

  .final-photo img {
    width: 220px;
    height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container,
  .container.narrow {
    width: calc(100% - 36px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    width: calc(100% - 24px);
    height: 64px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-company {
    font-size: 10px;
  }

  .site-nav {
    top: 64px;
    padding-inline: 18px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
    width: 44px;
    height: 44px;
  }

  .hero {
    background: linear-gradient(180deg, #fff 0%, #f6fbf7 100%);
  }

  .hero-inner {
    min-height: 0;
    display: block;
  }

  .hero-copy {
    padding: 36px 0 48px;
  }

  .area-pill {
    margin: 0 auto 20px;
    padding: 8px 14px;
    font-size: 12px;
    text-align: center;
  }

  .hero h1 {
    text-align: center;
  }

  .hero h1 span {
    font-size: 36px;
  }

  .hero h1 strong {
    margin-top: 6px;
    font-size: 40px;
  }

  .hero-lead {
    margin-top: 17px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    text-align: left;
  }

  .hero-mobile-photo {
    display: block;
    margin: 24px auto 0;
    overflow: hidden;
    border: 1px solid rgba(0, 91, 56, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #eef7f1;
  }

  .hero-mobile-photo img {
    width: 100%;
    height: auto;
  }

  .hero-photo {
    display: none;
  }

  .hero-points {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
  }

  .hero-point {
    min-height: auto;
    padding: 14px 16px;
    grid-template-columns: 45px 1fr;
    justify-items: start;
    align-items: center;
    gap: 2px 12px;
    border-radius: 8px;
    text-align: left;
  }

  .point-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
  }

  .hero-point strong {
    font-size: 15px;
  }

  .hero-point span:last-child {
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 20px;
    max-width: none;
    gap: 10px;
  }

  .btn {
    min-height: 58px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .phone-card {
    min-height: 76px;
    padding: 12px 14px;
  }

  .phone-card strong {
    font-size: 31px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    width: 100%;
    margin-bottom: 28px;
    padding: 0 18px;
    font-size: 22px;
    line-height: 1.55;
  }

  .section-title::before,
  .section-title::after {
    width: 14px;
  }

  .worry-grid,
  .risk-grid,
  .reason-grid,
  .voice-grid,
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mini-card {
    min-height: 118px;
    padding: 18px 16px;
    grid-template-columns: 54px 1fr;
    gap: 13px;
  }

  .mini-card h3 {
    font-size: 14px;
  }

  .section-note {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.8;
  }

  .info-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .info-card p {
    text-align: left;
  }

  .reason-card p {
    text-align: left;
  }

  .risk-grid .info-card:last-child,
  .voice-grid .voice-card:last-child {
    grid-column: auto;
  }

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

  .photo-card h3 {
    min-height: 68px;
    padding: 11px 8px;
    font-size: 12px;
  }

  .flow-grid {
    gap: 12px;
  }

  .step-card {
    min-height: auto;
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 4px 14px;
    text-align: left;
  }

  .step-label {
    grid-column: 2;
  }

  .step-card h3 {
    grid-column: 2;
    margin: 0 0 4px;
  }

  .step-icon {
    grid-row: 1 / span 3;
    margin: 8px 0 0;
  }

  .step-card p {
    grid-column: 2;
  }

  .voice-card {
    min-height: 0;
    padding: 20px 18px;
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  .voice-card h3 {
    font-size: 15px;
  }

  .voice-card p {
    font-size: 13px;
  }

  .voice-card strong {
    text-align: left;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 13px 44px 13px 14px;
    gap: 8px;
    font-size: 14px;
  }

  .faq-list summary::after {
    right: 16px;
  }

  .faq-list p {
    padding: 0 18px 16px 14px;
    gap: 8px;
    font-size: 13px;
  }

  .final-cta {
    padding: 50px 0 0;
  }

  .final-cta-inner {
    display: block;
    min-height: 0;
  }

  .final-content {
    padding-bottom: 28px;
  }

  .final-content h2 {
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
  }

  .final-checks {
    margin: 22px 0 24px;
    display: grid;
    gap: 12px;
  }

  .final-checks li {
    font-size: 15px;
  }

  .final-actions {
    max-width: none;
    gap: 12px;
  }

  .btn-large,
  .final-phone {
    min-width: 0;
  }

  .final-photo {
    display: flex;
    justify-content: center;
  }

  .final-photo img {
    width: min(250px, 78vw);
    height: 238px;
    object-fit: cover;
    object-position: center top;
  }

  .footer-inner {
    padding: 38px 0 34px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .copyright {
    font-size: 11px;
  }
}

/* ============================
   ReCができること
   ============================ */
.section.can-do {
  background: var(--green-50);
}

.section.can-do .section-lead,
.section.contact-form .section-lead {
  text-align: center;
  color: var(--muted);
  margin: -8px auto 28px;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.8;
}

.can-do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.can-do-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  box-shadow: var(--soft-shadow);
  border-top: 4px solid var(--gold-500);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.can-do-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.can-do-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.can-do-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--green-900);
  letter-spacing: 0.02em;
}

.can-do-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
  text-align: left;
}

/* ============================
   問い合わせフォーム
   ============================ */
.section.contact-form {
  background: linear-gradient(180deg, var(--green-50) 0%, #fff 100%);
}

.lp-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  margin-top: 24px;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: var(--green-900);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.req {
  background: var(--green-700);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.form-row input,
.form-row textarea {
  font: inherit;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fafdf9;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #b1bbb5;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(8, 112, 71, 0.14);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
  text-align: center;
}

.form-actions {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  justify-items: center;
}

.form-actions .btn {
  width: 100%;
  max-width: 420px;
}

.form-phone {
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.lp-form.is-submitted {
  text-align: center;
  padding: 60px 32px;
}

.form-thanks {
  font-size: 17px;
  color: var(--green-900);
  font-weight: 700;
  margin: 0 0 8px;
}

.form-thanks-sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .can-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .can-do-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .can-do-card {
    padding: 24px 20px 20px;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas: "icon title" "text text";
    gap: 10px 14px;
    align-items: center;
    text-align: left;
  }

  .can-do-icon {
    width: 56px;
    height: 56px;
    margin: 0;
    font-size: 18px;
    grid-area: icon;
  }

  .can-do-card h3 {
    font-size: 15.5px;
    margin: 0;
    grid-area: title;
  }

  .can-do-card p {
    font-size: 13.5px;
    grid-area: text;
    margin-top: 4px;
  }

  .lp-form {
    padding: 26px 18px;
  }

  .form-row label {
    font-size: 14px;
  }

  .form-row input,
  .form-row textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .form-actions .btn,
  .form-phone {
    max-width: 100%;
  }
}

/* ============================================================
   PC版FVリニューアル v3（数値指定ベース・参考画像準拠）
   ============================================================ */
:root {
  --fv-green: #0F5132;
  --fv-green-light: #166534;
  --fv-green-deep: #093a23;
  --fv-gold: #D4A62A;
  --fv-gold-light: #E1B83B;
  --fv-gold-deep: #c99618;
  --fv-ivory: #FFFAF1;
  --fv-ink: #1F2937;
}

/* --- ヘッダー --- */
@media (min-width: 1024px) {
  .site-header .header-inner {
    gap: 28px;
  }

  .site-nav a {
    font-size: 14px;
    color: var(--fv-ink);
    font-weight: 600;
  }

  .site-nav a.active {
    color: var(--fv-green);
    border-bottom: 3px solid var(--fv-gold);
    padding-bottom: 4px;
  }
}

.site-header .header-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fv-green);
  text-decoration: none;
}

.site-header .tel-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fv-ivory);
  color: var(--fv-green);
}

.site-header .tel-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-header .tel-copy strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--fv-green);
  letter-spacing: 0.02em;
}

.site-header .tel-hours {
  font-size: 11px;
  color: #5b6b65;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.site-header .header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fv-green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(15, 81, 50, 0.25);
  transition: background 0.2s, transform 0.2s;
}

.site-header .header-cta:hover {
  background: var(--fv-green-deep);
  transform: translateY(-1px);
}

.site-header .header-cta .cta-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  flex-shrink: 0;
}

/* --- PC版FV全体 --- */
.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  max-height: 820px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(
    90deg,
    #fffaf1 0%,
    #fffaf1 42%,
    rgba(255, 250, 241, 0.88) 52%,
    rgba(255, 250, 241, 0.18) 72%,
    rgba(255, 250, 241, 0) 100%
  );
}

/* 右側ビジュアル */
.hero-visual {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,241,0.95) 0%, rgba(255,250,241,0.58) 28%, rgba(255,250,241,0.10) 58%, rgba(255,250,241,0) 100%),
    linear-gradient(120deg, transparent 0%, transparent 54%, rgba(15,81,50,0.55) 54%, rgba(15,81,50,0.76) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.98) contrast(0.98);
}

/* FV内コンテナ */
.hero .hero-inner {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  min-height: calc(100vh - 86px);
  max-height: 820px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  padding: 36px 64px 32px;
  z-index: 2;
  gap: 0;
}

/* 左コピー */
.hero .hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  grid-column: 1;
}

/* スマホ用画像はPCで非表示 */
.hero .hero-mobile-photo {
  display: none;
}

/* エリアラベル */
.hero .area-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 2px solid var(--fv-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--fv-green);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(15, 81, 50, 0.08);
  margin: 0 0 22px;
}

.hero .area-pill .pin-ico {
  color: var(--fv-gold);
  display: inline-flex;
}

/* 見出し */
.hero h1 {
  margin: 0;
  color: var(--fv-ink);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.04;
}

.hero h1 .main-line {
  display: block;
  font-size: clamp(38px, 3.8vw, 60px);
  margin-bottom: 4px;
  font-weight: 800;
}

.hero h1 .brand-line {
  display: block;
  font-size: clamp(78px, 7.4vw, 120px);
  line-height: 0.95;
  color: var(--fv-green);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* サブコピー */
.hero .hero-lead {
  margin: 18px 0 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--fv-ink);
  font-weight: 500;
}

.hero .hero-lead .accent {
  color: var(--fv-green);
  font-weight: 800;
  background: linear-gradient(transparent 62%, rgba(212, 166, 42, 0.28) 62%);
  padding: 0 2px;
}

/* 3カード */
.hero .hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 22px;
  max-width: 690px;
}

.hero .hero-point {
  min-height: 100px;
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 81, 50, 0.10);
  border: 1px solid rgba(15, 81, 50, 0.08);
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 12px;
  align-items: center;
}

.hero .hero-point-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid var(--fv-gold);
  color: var(--fv-gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  background: #fff;
  align-self: center;
}

.hero .hero-point > div {
  display: contents;
}

.hero .hero-point small {
  display: block;
  color: var(--fv-green);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  grid-column: 2;
}

.hero .hero-point strong {
  display: block;
  color: var(--fv-green);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  grid-column: 2;
}

.hero .hero-point span {
  display: block;
  grid-column: 2;
  font-size: 12px;
  color: #4b5563;
  margin-top: 3px;
  line-height: 1.4;
}

/* CTA */
.hero .hero-actions {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(240px, 340px);
  gap: 18px;
  align-items: center;
  max-width: 760px;
  margin: 0;
}

.hero .hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.hero .hero-actions .btn-primary {
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fv-gold-light), var(--fv-gold-deep));
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(201, 150, 24, 0.30);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.hero .hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(201, 150, 24, 0.4);
}

.hero .hero-actions .btn-outline {
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--fv-green);
  color: var(--fv-green);
  font-size: 18px;
  font-weight: 800;
}

.hero .hero-actions .btn-outline:hover {
  background: var(--fv-green);
  color: #fff;
  transform: translateY(-2px);
}

/* 補足訴求 */
.hero .hero-reassurance {
  margin: 16px 0 0;
  color: var(--fv-green);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-reassurance .shield-ico {
  color: var(--fv-green);
  display: inline-flex;
}

/* --- スマホ崩れ防止 --- */
@media (max-width: 768px) {
  .site-header .tel-copy {
    display: none;
  }

  .site-header .header-tel .tel-ico {
    width: 42px;
    height: 42px;
  }

  .site-header .header-cta {
    padding: 10px 14px;
    font-size: 12px;
    white-space: normal;
  }

  .site-header .header-cta .cta-ico {
    display: none;
  }

  .hero {
    min-height: 0;
    max-height: none;
    background: var(--fv-ivory);
  }

  .hero-visual {
    display: none;
  }

  .hero .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    padding: 24px 16px 36px;
  }

  .hero .hero-copy {
    max-width: 100%;
  }

  .hero .hero-mobile-photo {
    display: block;
    margin: 18px 0 22px;
  }

  .hero .hero-mobile-photo img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center top;
  }

  .hero .area-pill {
    font-size: 13px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .hero h1 .main-line {
    font-size: clamp(24px, 6.8vw, 32px);
  }

  .hero h1 .brand-line {
    font-size: clamp(64px, 18vw, 96px);
  }

  .hero .hero-lead {
    font-size: 15px;
    line-height: 1.85;
    margin: 18px 0;
  }

  .hero .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero .hero-point {
    min-height: 0;
    padding: 14px 16px;
  }

  .hero .hero-point-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .hero .hero-point strong {
    font-size: 20px;
  }

  .hero .hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-outline {
    height: 64px;
    font-size: 18px;
  }
}

/* --- タブレット中間調整 --- */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero .hero-inner {
    grid-template-columns: 60% 40%;
    padding: 48px 32px 40px;
  }

  .hero h1 .brand-line {
    font-size: clamp(80px, 11vw, 116px);
  }

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

  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-outline {
    height: 64px;
    font-size: 18px;
  }
}
