:root {
  --blue-900: #0b2f68;
  --blue-800: #123f87;
  --blue-700: #1856ad;
  --blue-100: #e9f3ff;
  --blue-50: #f5faff;
  --green-600: #12a66a;
  --green-500: #16bf7a;
  --orange-600: #ef6a3a;
  --ink: #142033;
  --muted: #5d6a7d;
  --line: #dce7f3;
  --white: #fff;
  --shadow: 0 18px 50px rgba(15, 46, 86, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.narrow {
  width: min(880px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 243, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-900);
  min-width: 228px;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  margin-top: 3px;
}

.brand-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.35;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 28px rgba(18, 166, 106, 0.26);
}

.btn-outline {
  color: var(--orange-600);
  background: var(--white);
  border-color: #f5b39a;
}

.btn-outline.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 13px;
}

.section {
  padding: 88px 0;
}

.section-band {
  background:
    radial-gradient(circle at 15% 5%, rgba(22, 191, 122, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.section-tint {
  background: var(--blue-50);
}

.hero {
  min-height: auto;
  padding: 70px 0 58px;
  display: flex;
  align-items: flex-start;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 42px;
  align-items: center;
}

.hero-grid > *,
.cta-panel > *,
.gift-grid > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--blue-900);
  line-height: 1.35;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(35px, 5vw, 58px);
  line-height: 1.22;
}

h2 {
  font-size: clamp(27px, 3.4vw, 42px);
}

h3 {
  font-size: 20px;
}

.lead {
  margin: 24px 0 0;
  color: #2e405c;
  font-size: 18px;
  line-height: 2;
}

.note {
  display: inline-block;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 10px 14px;
  color: var(--blue-900);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 0;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: right center;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mock-card {
  position: absolute;
  left: -30px;
  bottom: 26px;
  width: min(310px, 72%);
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mock-card span {
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
}

.mock-card strong {
  display: block;
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.45;
}

.mock-lines {
  height: 54px;
  margin-top: 12px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--blue-700) 0 42%, transparent 42%),
    linear-gradient(90deg, #b9d5f4 0 74%, transparent 74%),
    linear-gradient(90deg, #dce7f3 0 62%, transparent 62%);
  background-size: 100% 10px, 100% 10px, 100% 10px;
  background-position: 0 0, 0 22px, 0 44px;
  background-repeat: no-repeat;
}

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
}

.prose p {
  margin: 0 0 18px;
  color: #314158;
}

.message-box {
  margin-top: 26px;
  padding: 22px 24px;
  color: var(--blue-900);
  font-size: 19px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--green-600);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 46, 86, 0.08);
}

.centered {
  text-align: center;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 38px;
}

.section-head p:not(.section-label) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.worry-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 32px;
  align-items: center;
}

.person-illustration {
  position: relative;
  min-height: 310px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.face {
  position: absolute;
  left: 50%;
  top: 105px;
  width: 74px;
  height: 86px;
  transform: translateX(-50%);
  background: #f6cfc0;
  border: 4px solid var(--blue-800);
  border-radius: 48% 48% 44% 44%;
}

.face::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 110px;
  height: 58px;
  background: var(--blue-800);
  border-radius: 52% 52% 22% 22%;
}

.body {
  position: absolute;
  left: 50%;
  top: 188px;
  width: 160px;
  height: 110px;
  transform: translateX(-50%);
  background: #d8ebff;
  border: 4px solid var(--blue-800);
  border-radius: 42% 42% 0 0;
}

figure {
  margin: 0;
}

.section-image {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(15, 46, 86, 0.08);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worry-image {
  aspect-ratio: 4 / 3;
}

.card,
.feature-card,
.price-card,
.plan-card,
.maintenance-card,
.plan-guide-card,
.lead-form,
.gift-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(15, 46, 86, 0.08);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 34px;
  color: #2e405c;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-700);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.worry-grid .card {
  padding: 28px 32px;
}

.wide-copy {
  max-width: 900px;
  margin: 34px auto 0;
  color: #314158;
  text-align: center;
}

.split-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-card p {
  color: var(--muted);
}

.check-columns {
  columns: 2;
  column-gap: 34px;
}

.check-columns li {
  break-inside: avoid;
}

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

.feature-card {
  padding: 24px;
}

.feature-card p,
.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--blue-700);
  font-weight: 900;
  background: var(--blue-100);
  border-radius: 50%;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.centered-box {
  max-width: 780px;
  margin: 34px auto 0;
  text-align: center;
}

.dot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.dot-list li {
  position: relative;
  padding-left: 18px;
  color: #314158;
  font-weight: 700;
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  background: var(--green-600);
  border-radius: 50%;
}

.price-card {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding: 38px;
  text-align: center;
}

.ribbon {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 18px;
  color: #fff;
  font-weight: 900;
  background: var(--blue-700);
  border-radius: 999px;
}

.price-main {
  margin-top: 18px;
  color: var(--blue-800);
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
}

.price-main span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
}

.price-main small {
  font-size: 24px;
}

.price-sub {
  margin: 12px auto 24px;
  color: var(--muted);
  font-weight: 800;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  text-align: center;
}

.plan-card.featured {
  border: 2px solid var(--green-600);
  box-shadow: 0 20px 48px rgba(18, 166, 106, 0.18);
  transform: translateY(-10px);
}

.plan-card .ribbon {
  align-self: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.plan-card.featured .ribbon {
  background: var(--green-600);
}

.recommend-badge {
  position: absolute;
  left: 50%;
  top: -19px;
  margin: 0;
  padding: 5px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  background: var(--orange-600);
  border-radius: 999px;
  transform: translateX(-50%);
}

.plan-kicker {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.plan-card .price-main {
  margin-top: 14px;
  font-size: clamp(40px, 4.7vw, 58px);
}

.plan-summary {
  min-height: 84px;
  margin: 14px 0 18px;
  color: var(--blue-900);
  font-weight: 900;
}

.plan-card .price-list {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 18px;
}

.plan-card .price-list li {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
}

.plan-card .price-list li::before {
  top: 11px;
}

.plan-card .price-list li::after {
  top: 15px;
}

.plan-target {
  margin: auto 0 0;
  padding-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-notes {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.price-notes p {
  margin: 4px 0;
}

.subsection-head {
  max-width: 760px;
  margin: 0 auto 22px;
}

.subsection-head h3 {
  font-size: clamp(24px, 3vw, 32px);
}

.subsection-head p:not(.section-label) {
  margin: 12px 0 0;
  color: var(--muted);
}

.plan-details {
  max-width: 920px;
  margin: 64px auto 0;
}

.plan-detail {
  scroll-margin-top: 94px;
}

.plan-detail + .plan-detail {
  margin-top: 12px;
}

.plan-detail summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-right: 58px;
}

.plan-detail summary span {
  color: var(--blue-900);
}

.plan-detail summary strong {
  color: var(--blue-800);
  font-size: 20px;
  white-space: nowrap;
}

.plan-detail summary em {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  background: var(--orange-600);
  border-radius: 999px;
}

.plan-detail-body {
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
}

.plan-detail-body > p {
  padding: 18px 0 0;
}

.plan-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 10px;
}

.plan-detail .detail-note {
  margin-top: 12px;
  padding: 12px 14px;
  font-size: 13px;
  background: var(--blue-50);
  border-radius: 6px;
}

.plan-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.plan-guide-card {
  padding: 20px;
  border-top: 4px solid var(--green-600);
}

.plan-guide-card p {
  margin: 0 0 5px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 900;
}

.plan-guide-card h3 {
  font-size: 18px;
}

.plan-guide-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.benefit-grid .card {
  padding: 24px;
}

.num {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-600);
  font-size: 15px;
  font-weight: 900;
}

.option-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(15, 46, 86, 0.06);
}

.table-scroll-note {
  display: none;
}

.option-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.option-table th,
.option-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.option-table th {
  color: var(--blue-900);
  background: var(--blue-100);
}

.option-table td:first-child,
.option-table td:last-child {
  color: var(--blue-900);
  font-weight: 900;
}

.maintenance-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px 34px;
  padding: 30px;
  border-left: 6px solid var(--green-600);
}

.maintenance-label {
  margin: 0;
  color: var(--blue-900);
  font-weight: 900;
}

.maintenance-price {
  margin-top: 4px;
  color: var(--blue-800);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.2;
}

.maintenance-price small {
  font-size: 20px;
}

.maintenance-card p:not(.maintenance-label):not(.maintenance-note) {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.maintenance-list li {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
}

.maintenance-list li::before {
  top: 12px;
}

.maintenance-list li::after {
  top: 16px;
}

.maintenance-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  background: var(--blue-50);
  border-radius: 6px;
}

.option-heading {
  margin-top: 58px;
}

.compact-cta {
  padding: 62px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px 280px;
  gap: 32px;
  align-items: center;
  padding: 34px 38px;
  background: var(--blue-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p {
  margin: 14px 0 0;
}

.vertical {
  flex-direction: column;
  align-items: stretch;
  margin-top: 0;
}

.cta-photo {
  overflow: hidden;
  align-self: stretch;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.gift-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.gift-card {
  padding: 34px;
}

.gift-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gift-card h3 {
  margin: 18px 0 12px;
  color: var(--green-600);
}

.gift-card p {
  color: var(--muted);
}

.lead-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
  overflow: hidden;
  border-top: 5px solid var(--green-600);
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.lead-form::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -72px;
  width: 180px;
  height: 180px;
  background: rgba(22, 191, 122, 0.1);
  border-radius: 50%;
}

.lead-form-head {
  position: relative;
  padding-bottom: 2px;
  text-align: center;
}

.lead-form-head .form-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  background: rgba(22, 191, 122, 0.1);
  border-radius: 999px;
}

.lead-form-head h3 {
  color: var(--blue-900);
  font-size: 26px;
  line-height: 1.45;
}

.lead-form-head p {
  margin-top: 8px;
  font-size: 14px;
}

.form-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  background: var(--blue-50);
  border-radius: 6px;
}

.form-highlights span {
  position: relative;
  padding-left: 19px;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 800;
}

.form-highlights span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-weight: 900;
}

.lead-form label span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lead-form label em {
  padding: 1px 7px;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  background: var(--orange-600);
  border-radius: 999px;
}

.privacy-consent {
  display: flex !important;
  gap: 9px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-size: 12px;
  font-weight: 700 !important;
  line-height: 1.7;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: auto;
  margin-top: 3px;
}

.privacy-consent span {
  display: block !important;
}

.privacy-consent a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #8793a3;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(24, 86, 173, 0.12);
}

.lead-form .privacy-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: auto;
  margin-top: 3px;
  padding: 0;
  box-shadow: none;
}

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

.lead-form .form-submit {
  width: 100%;
  margin-top: 2px;
}

.lead-form .form-note {
  padding-top: 2px;
  font-size: 12px;
  line-height: 1.7;
}

.lead-form .form-note a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form .form-error {
  padding: 12px 14px;
  border: 1px solid #f3b4a1;
  border-radius: 10px;
  color: #9b321b;
  background: #fff5f1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.company-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.company-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
}

.company-list div:last-child {
  border-bottom: 0;
}

.company-list dt,
.company-list dd {
  margin: 0;
  padding: 12px 16px;
}

.company-list dt {
  color: var(--blue-900);
  font-weight: 900;
  background: var(--blue-50);
}

.company-list a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.flow-list article {
  position: relative;
  min-height: 206px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 900;
  background: var(--blue-700);
  border-radius: 50%;
}

.flow-list h3 {
  font-size: 17px;
}

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

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

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 46, 86, 0.05);
}

summary {
  position: relative;
  padding: 18px 56px 18px 22px;
  color: var(--blue-900);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-700);
  font-size: 24px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 47, 104, 0.96), rgba(18, 63, 135, 0.96)),
    url("assets/hero-recruitment-page.png") center/cover;
}

.final-cta h2,
.final-cta .section-label {
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  margin: 18px auto 0;
}

.centered-row {
  justify-content: center;
}

.postscript {
  padding: 58px 0 72px;
  background: #fff;
}

.postscript h2 {
  font-size: 26px;
}

.postscript p {
  margin: 16px 0 0;
  color: #314158;
}

.site-footer {
  padding: 28px 0;
  color: #fff;
  background: var(--blue-900);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand,
.footer-brand small,
.footer-brand strong {
  color: #fff;
}

.footer-brand .brand-logo {
  padding: 4px;
  background: #fff;
  border-radius: 8px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 800;
}

.legal-main {
  min-height: calc(100vh - 76px);
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 15% 5%, rgba(22, 191, 122, 0.1), transparent 28%),
    var(--blue-50);
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.legal-intro h1 {
  font-size: clamp(30px, 4vw, 48px);
}

.legal-intro p:not(.section-label) {
  margin: 16px 0 0;
  color: var(--muted);
}

.legal-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-table {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-table div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.legal-table div:last-child {
  border-bottom: 0;
}

.legal-table dt,
.legal-table dd {
  margin: 0;
  padding: 15px 18px;
}

.legal-table dt {
  color: var(--blue-900);
  font-weight: 900;
  background: var(--blue-50);
}

.legal-table dd {
  color: #314158;
}

.legal-card a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 23px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 12px 0 0;
  color: #314158;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: #314158;
}

.legal-card li + li {
  margin-top: 5px;
}

.legal-note {
  margin-top: 26px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  background: var(--blue-50);
  border-radius: 6px;
}

.legal-updated {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.thanks-main {
  min-height: calc(100vh - 76px);
  padding: 84px 0 100px;
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 191, 122, 0.14), transparent 28%),
    linear-gradient(180deg, #fff, var(--blue-50));
}

.thanks-card {
  padding: 44px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.thanks-card > p:not(.section-label) {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
}

.thanks-card > .btn {
  margin-top: 26px;
}

.thanks-card .thanks-note {
  font-size: 12px;
}

.thanks-subcard {
  max-width: 640px;
  margin: 34px auto 0;
  padding: 22px;
  text-align: left;
  background: var(--blue-50);
  border-radius: 7px;
}

.thanks-subcard h2 {
  font-size: 22px;
}

.thanks-subcard p {
  margin: 8px 0 0;
  color: var(--muted);
}

.mobile-sticky-cta {
  display: none;
}

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

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

  .hero-grid,
  .two-column,
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .feature-grid,
  .benefit-grid,
  .plan-guide {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .plan-card.featured {
    transform: none;
  }

  .maintenance-card {
    grid-template-columns: 1fr;
  }

  .maintenance-note {
    grid-column: auto;
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-photo {
    min-height: 300px;
  }
}

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

  .container,
  .narrow {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small,
  .header-actions {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    overflow: hidden;
  }

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

  .hero-visual {
    padding: 0 4px;
  }

  h1 {
    font-size: 30px;
    word-break: break-all;
  }

  h2 {
    font-size: 27px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .cta-row,
  .centered-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .hero-copy .lead,
  .note,
  .btn {
    word-break: break-all;
  }

  .hero-visual img {
    height: 360px;
  }

  .mock-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .worry-grid,
  .split-card {
    grid-template-columns: 1fr;
  }

  .split-card {
    padding: 24px;
  }

  .check-columns,
  .price-list,
  .plan-detail-list,
  .maintenance-list {
    columns: auto;
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .benefit-grid,
  .dot-list,
  .flow-list,
  .plan-guide {
    grid-template-columns: 1fr;
  }

  .price-card,
  .plan-card,
  .maintenance-card,
  .gift-card,
  .lead-form,
  .cta-panel {
    padding: 24px;
  }

  .gift-visual {
    aspect-ratio: 4 / 3;
  }

  .cta-photo {
    min-height: 240px;
  }

  .table-scroll-note {
    display: block;
    margin: -8px 0 12px;
    color: var(--muted);
    font-size: 12px;
  }

  .plan-details {
    margin-top: 46px;
  }

  .plan-detail summary {
    display: block;
  }

  .plan-detail summary strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
  }

  .plan-detail summary em {
    margin-left: 4px;
  }

  .company-list div {
    grid-template-columns: 1fr;
  }

  .company-list dt {
    padding-bottom: 4px;
  }

  .company-list dd {
    padding-top: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding: 48px 0 62px;
  }

  .thanks-main {
    padding: 48px 0 62px;
  }

  .thanks-card {
    padding: 26px 22px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-table div {
    grid-template-columns: 1fr;
  }

  .legal-table dt {
    padding-bottom: 7px;
  }

  .legal-table dd {
    padding-top: 7px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  body {
    padding-bottom: 74px;
  }
}

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

  .btn {
    min-height: 52px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }

  .mobile-sticky-cta .btn {
    min-height: 44px;
    font-size: 12px;
  }
}
