/* REMO LP — Figma変数: #0A3A6E #CB1818 #0A700F #F6F6F6 #222 */
:root {
  --blue: #0a3a6e;
  --blue-dark: #072d57;
  --red: #cb1818;
  --green: #0a700f;
  --bg: #f6f6f6;
  --white: #ffffff;
  --text: #222222;
  --muted: #5c5c66;
  --border: #cacaca;
  --container: min(68.75rem, 100% - 2rem);
  --narrow: min(50rem, 100% - 2rem);
  --font: "Noto Sans JP", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--blue);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: var(--white);
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--narrow);
}

/* ----- ボタン ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}

.btn:hover {
  opacity: 0.92;
}

/* 全ボタンリンク共通：ホバー時に少し白く発光 */
:is(
  .btn,
  .header__btn,
  .hero__cta-green,
  .reasons__btn,
  .plan-links-band__btn,
  .plan-cta-btn,
  .scene-card__btn,
  .cta-btn
):hover {
  filter: brightness(1.04) drop-shadow(0 0 0.35rem rgba(255, 255, 255, 0.28));
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--line {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--danger {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ----- ヘッダー（Figma 1:1902 / 1:2129 / 1:1964 / 1:1912 / 1:1911） ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f6f6f6;
}

.header__bar {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  max-width: 90rem;
  margin: 0 auto;
  min-height: 6.25rem;
  padding: 0 clamp(1rem, 2.5vw, 1.875rem);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.header__logo-mark {
  width: 4.3125rem;
  height: auto;
  flex-shrink: 0;
}

.header__logo-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.header__logo-remo {
  width: 8.584375rem;
  height: auto;
  display: block;
}

.header__logo-monthly {
  width: 4.98rem;
  height: auto;
  display: block;
  margin-left: 1.35rem;
}

.header__tagline {
  flex: 0 1 auto;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  text-decoration: none;
  max-width: 16.75rem;
}

.header__tagline:hover {
  color: var(--blue);
  text-decoration: underline;
}

.header__flex-spacer {
  flex: 1 1 auto;
  min-width: 0.5rem;
}

.header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.25rem;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.5rem;
  min-height: 3.875rem;
  padding: 0 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: none;
  box-sizing: border-box;
  transition: opacity 0.15s, transform 0.08s;
}

.header__btn:hover {
  opacity: 0.94;
}

.header__btn:active {
  transform: scale(0.99);
}

/* 1:1912 資料請求 */
.header__btn--doc {
  background: linear-gradient(180deg, #0f68c6 0%, #001a35 100%);
}

/* 1:1911 お問い合わせ */
.header__btn--contact {
  background: linear-gradient(180deg, #25ba2c 0%, #0c5b10 100%);
}

@media (max-width: 1100px) {
  .header__tagline {
    display: none;
  }
}

@media (max-width: 640px) {
  .header__bar {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .header__flex-spacer {
    display: none;
  }

  .header__actions {
    width: 100%;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .header__btn {
    width: auto;
    min-width: 0;
    flex: 1;
    min-height: 3rem;
    font-size: 0.6875rem;
    padding: 0.5rem;
  }
}

/* ----- 見出し ----- */
.heading-section {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}

.heading-section--light {
  color: var(--white);
}

.section__lead {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.88);
}

.section__cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ----- ヒーロー＋右フォーム（Figma Frame 7:21 / 背景1:22・車1:2158・CTA1:2179・フォーム7:3） ----- */
.hero {
  margin: 0;
  padding: 0;
}

.hero__shell {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero__city {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(90rem, calc(100% - 2rem));
  max-height: none;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero__city-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 90rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 1.875rem) clamp(4.5rem, 8vw, 6.25rem);
}

@media (min-width: 1100px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) 28.125rem;
    gap: 0 1rem;
    align-items: start;
  }
}

.hero__left {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__main {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero__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;
}

.hero__copy-main,
.hero__copy-price {
  line-height: 0;
}

.hero__copy-main {
  margin: 0 0 0.8rem;
  max-width: 45.1875rem;
}

.hero__copy-main img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__copy-price {
  margin: 0 0 1rem;
  max-width: 42.5rem;
}

.hero__copy-price img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__price-note {
  margin: -0.1rem 0 1.05rem;
  color: var(--blue);
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 26.875rem;
}

/* 1:1903 キャッチ pill */
.hero__catch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.25rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1.75rem;
  border-radius: 0;
  background: #f6f6f6;
}

.hero__catch-pill-text {
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
}

.hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.hero__eyebrow-line {
  width: min(24.8125rem, 100%);
  height: 0.96875rem;
  margin: 0 0 0.85rem;
  background: linear-gradient(180deg, rgba(10, 58, 110, 0.35) 0%, rgba(10, 58, 110, 0.08) 100%);
}

/* 見出し＋右コピー（1:2523–2524 / 1:2531・ハイライト 2528–2530 近似） */
.hero__head-row {
  display: grid;
  gap: 1rem 1.75rem;
  margin-bottom: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero__head-row {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem);
  }
}

.hero__h1 {
  margin: 0;
  line-height: 1.05;
}

.hero__h1-line {
  display: block;
  font-size: clamp(2.25rem, 5.2vw, 3.875rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.hero__intro {
  margin: 0;
  font-size: clamp(0.6875rem, 1.15vw, 0.8125rem);
  line-height: 1.75;
  color: var(--text);
}

.hero__intro-hl {
  display: inline;
  padding: 0.08em 0.2em;
  margin: 0 -0.05em;
  border-radius: 0.2rem;
  background: linear-gradient(180deg, rgba(15, 104, 198, 0.22) 0%, rgba(15, 104, 198, 0.12) 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* コミコミ＋価格（1:2174 / 1:1913–1916） */
.hero__price-band {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.hero__badge-komi {
  position: relative;
  width: clamp(8.5rem, 18vw, 11.125rem);
  height: auto;
  flex-shrink: 0;
  transform: rotate(-12deg);
  margin-bottom: 0.25rem;
}

.hero__badge-komi__img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__badge-komi__cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.hero__price-stack {
  flex: 1 1 12rem;
  min-width: 0;
}

.hero__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.hero__price-lbl,
.hero__price-yen {
  font-size: clamp(1.125rem, 2vw, 1.5625rem);
  font-weight: 700;
  color: var(--blue);
}

.hero__price-val {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hero__subline {
  margin: 0;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--text);
  line-height: 1.5;
}

/* 1:2179 緑CTA */
.hero__cta-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 5.25rem;
  padding: 0 1.5rem;
  max-width: 27.1875rem;
  width: 100%;
  border-radius: 0.625rem;
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f6f6f6;
  text-decoration: none;
  background: linear-gradient(180deg, #25ba2c 0%, #0c5b10 100%);
  box-shadow: 0 0.25rem 0.75rem rgba(12, 91, 16, 0.35);
  transition: opacity 0.15s, transform 0.08s;
}

.hero__cta-green:hover {
  opacity: 0.94;
}

.hero__cta-green__ico {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 0.25rem;
}

/* 車両 1:2158 */
.hero__car-col {
  display: none;
}

/* フォームカード 1:2218 */
.hero__form-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 28.125rem;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 1.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, #0f68c6 0%, #001a35 100%);
  color: #fff;
  box-shadow: 0 0.5rem 2rem rgba(0, 26, 53, 0.35);
}

.hero__form-float {
  position: absolute;
  top: -1.45rem;
  right: -0.1rem;
  width: 8.308rem;
  height: 8.308rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.hero__form-float__svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}

.hero__form-float__txt {
  position: relative;
  z-index: 1;
  margin-top: 3.15rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}

.hero__form-title {
  margin: 0 0 0.35rem;
  padding-right: 0;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__form-lead {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0.95;
}

.hero__form .form__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero__flabel {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.5625rem;
}

.hero__flabel-t {
  display: none;
}

.form-req {
  margin-left: 0.2em;
  font-size: 0.92em;
  font-weight: 700;
  color: #ffc9c9;
  white-space: nowrap;
}

.field-infield-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.field-infield-req {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  pointer-events: none;
  font-size: 0.75rem;
}

.hero__form .field-infield-wrap input {
  padding-right: 3.35rem;
}

.hero__form input,
.hero__form select {
  width: 100%;
  min-height: 3.125rem;
  padding: 0 0.65rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
}

.hero__form input::placeholder {
  color: #9e9e9e;
}

.hero__form select {
  color: #9e9e9e;
}

.hero__fcheck {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.35rem 0 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
}

.hero__fcheck input {
  width: 1.5625rem;
  height: 1.5625rem;
  min-height: 1.5625rem;
  margin-top: 0;
  flex-shrink: 0;
}

.hero__form-note {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  opacity: 0.88;
  line-height: 1.45;
  border-top: 1px solid #fff;
  padding-top: 0.45rem;
}

/* 7:3 送信：明るい青グラデ＋右シェブロン（ヘッダー資料請求ボタンと同系統） */
.hero__fsubmit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.125rem;
  margin-top: 0.25rem;
  border: none;
  border-radius: 0.625rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #f6f6f6;
  cursor: pointer;
  background: #1d65b3;
  box-shadow: none;
  transition: opacity 0.15s;
}

.hero__fsubmit:hover {
  opacity: 0.93;
}

.hero__fsubmit.is-disabled,
.doc-form__submit.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.hero__fsubmit.is-sending,
.doc-form__submit.is-sending {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

.hero__fsubmit.is-disabled:hover {
  opacity: 0.45;
}

.hero__fsubmit-label {
  flex: 0 1 auto;
  text-align: center;
}

.hero__fsubmit-ico {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 1279px) {
  .hero__copy-main {
    max-width: 40rem;
  }

  .hero__copy-price {
    max-width: 34rem;
  }

  .hero__price-note {
    max-width: 24rem;
    font-size: 0.875rem;
    margin: -0.1rem 0 0.75rem;
  }

  .hero__form-float {
    top: -0.55rem;
    right: 0.5rem;
    width: 5.8rem;
    height: 5.8rem;
  }

  .hero__city {
    width: min(90rem, calc(100% - 2rem));
    max-height: none;
    opacity: 1;
  }
}

@media (min-width: 1280px) {
  .hero__shell {
    min-height: 57rem;
  }

  .hero__layout {
    max-width: 90rem;
    grid-template-columns: 43.75rem 28.125rem;
    gap: 0 4.1875rem;
    align-items: start;
    justify-content: center;
    padding: 3.625rem 3.125rem 0;
    min-height: 55rem;
  }

  .hero__main {
    max-width: 43.75rem;
    margin-left: 7.6875rem;
  }

  .hero__copy-main {
    margin: 0 0 1.35rem;
    max-width: 45.1875rem;
  }

  .hero__copy-price {
    margin: 0 0 1.1rem;
    max-width: 42.5rem;
  }

  .hero__price-note {
    margin: -0.35rem 0 1.05rem 13.9rem;
    font-size: 1.1875rem;
    line-height: 1.2;
    text-align: left;
  }

  .hero__cta-green {
    width: 27.1875rem;
    max-width: 27.1875rem;
    min-height: 5.25rem;
    font-size: 1.375rem;
  }

  .hero__form-card {
    max-width: 28.125rem;
    min-height: 46.6875rem;
    margin: 0;
    padding: 2.55rem 1.5rem 1.55rem;
    box-shadow: none;
  }

  .hero__form .form__row2 {
    gap: 0.625rem;
  }

  .hero__flabel {
    margin-bottom: 0.625rem;
  }

  .hero__city {
    width: min(90rem, calc(100% - 2rem));
    max-height: none;
    opacity: 1;
  }
}

/* 下段・資料請求フォーム */
.form--light label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  color: var(--text);
}

.form--light .form__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form--light input,
.form--light select {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.65rem;
  font: inherit;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  background: var(--white);
  color: var(--text);
  box-sizing: border-box;
}

.form--light .form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.form--light .form__check input {
  width: auto;
  margin-top: 0.15rem;
}

/* ----- セクション共通 ----- */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--dark {
  background: var(--blue);
  color: var(--white);
}

.section--muted {
  background: var(--white);
}

/* ----- 選ばれる理由（Figma 8:22 / 1:1905・1:1977・1:2070） ----- */
.reasons {
  padding: clamp(3.25rem, 7vw, 5.75rem) clamp(1rem, 2.5vw, 1.875rem) clamp(3.5rem, 6vw, 5rem);
  background: linear-gradient(180deg, #0f68c6 0%, #001a35 100%);
  color: #fff;
}

.reasons__inner {
  max-width: 68.75rem;
  margin: 0 auto;
}

.reasons__h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02em;
}

.reasons__rule {
  max-width: 68.75rem;
  margin: 0 auto 1.25rem;
  height: 0.125rem;
  line-height: 0;
}

.reasons__rule-img {
  display: block;
  width: 100%;
  height: 0.125rem;
  object-fit: fill;
}

.reasons__lead {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}

.reasons__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 1.875rem);
  grid-template-columns: 1fr;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 640px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
  }
}

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

.reason-card__media {
  position: relative;
  margin: 0 auto 1.25rem;
  max-width: 15.3125rem;
}

.reason-card__img-wrap {
  aspect-ratio: 245 / 200;
  overflow: hidden;
  /* Figma Rectangle 304（マスク 1:1949）: 245×200 / rx=10 */
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.06);
}

.reason-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Ellipse 21（1:1952）60×60 / #0A700F ・数字（1:1953）Albert Sans Bold 28px 白 */
.reason-card__badge {
  position: absolute;
  top: -1.25rem;
  left: -1.875rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.22);
}

.reason-card__badge-num {
  font-family: "Albert Sans", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.reason-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.67;
  color: #fff;
  letter-spacing: 0.05em;
}

.reason-card__title-line {
  display: block;
}

.reason-card__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #fff;
  text-align: left;
}

.reasons__cta {
  text-align: center;
}

.reasons__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.4375rem;
  width: min(22.9375rem, 100%);
  padding: 0 1.5rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f6f6f6;
  text-decoration: none;
  background: linear-gradient(180deg, #25ba2c 0%, #0c5b10 100%);
  box-shadow: 0 0.25rem 0.75rem rgba(12, 91, 16, 0.35);
  transition: opacity 0.15s, transform 0.08s;
}

.reasons__btn:hover {
  opacity: 0.94;
}

.reasons__btn:active {
  transform: scale(0.99);
}

.reasons__btn-ico {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}

/* ----- 月額固定プラン（Figma 8:23 / 1:1965・1:1971–1976 等） ----- */
.plans-block {
  background: var(--white);
}

.plans-block__inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding-inline: clamp(1rem, 2.5vw, 1.875rem);
}

.plans-block__head {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.plans-block__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.65rem;
}

.plans-block__h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
}

.plans-block__tag {
  margin: 0;
  padding: 0.625rem 1.25rem;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f6f6f6;
  background: var(--blue);
}

.plans-block__rule {
  max-width: 68.75rem;
  margin: 0 auto 1rem;
  height: 0.125rem;
  line-height: 0;
}

.plans-block__rule-img {
  display: block;
  width: 100%;
  height: 0.125rem;
  object-fit: fill;
}

.plans-block__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.05em;
}

.plans-block__grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2.625rem);
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 900px) {
  .plans-block__grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
    align-items: start;
  }
}

.plan-offer {
  position: relative;
  width: 100%;
  max-width: 21.25rem;
  filter: drop-shadow(0 0 1.25rem rgba(0, 0, 0, 0.35));
}

.plan-offer__shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #fff;
}

.plan-offer__cap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem 0.625rem 0 0;
}

.plan-offer__cap--blue {
  background: var(--blue);
}

.plan-offer__cap--green {
  background: var(--green);
}

.plan-offer__name {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.plan-offer__body {
  padding: 1.25rem 1rem 1.5rem;
}

.plan-offer__photo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

/* Figma: scaleY(-1) + rotate(180deg) */
.plan-offer__photo-img {
  width: min(14.09rem, 100%);
  height: auto;
  aspect-ratio: 225 / 113;
  object-fit: cover;
  transform: scaleY(-1) rotate(180deg);
}

.plan-offer__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem 0.35rem;
  margin: 0 0 0.65rem;
}

.plan-offer__num {
  font-family: "Albert Sans", system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.4375rem);
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

.plan-offer__suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.plan-offer__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text);
}

.plan-offer__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.plan-offer__tags li::before {
  content: "\2713";
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
}

/* 名古屋で1番メダル（Figma 1:2446 書き出し・リボン＋文字込み1枚） */
.plan-offer__nagoya {
  position: absolute;
  left: -0.25rem;
  top: -0.9rem;
  z-index: 5;
  pointer-events: none;
  line-height: 0;
}

.plan-offer__nagoya-img {
  display: block;
  width: 5.8rem;
  height: auto;
}

@media (max-width: 899px) {
  .plan-offer__nagoya {
    left: 0.15rem;
    top: -0.72rem;
    transform: scale(0.92);
    transform-origin: top left;
  }
}

/* ----- 法人・代車 CTA 帯（Figma 8:24・注釈は白、ボタン行のみグラデ帯） ----- */
.plan-links-band {
  background: var(--white);
  padding: 2.1875rem clamp(1rem, 2.5vw, 1.875rem) 0;
}

.plan-links-band__inner {
  max-width: 68.75rem;
  margin: 0 auto;
  text-align: center;
}

.plan-links-band__note {
  margin: 0 auto;
  max-width: 45.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  color: #000;
}

.plan-links-band__bar {
  margin-top: 1.25rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 1.25rem clamp(1rem, 2.5vw, 1.875rem) 1.75rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, var(--bg) 0%, #ddd 100%);
}

.plan-links-band__bar-inner {
  max-width: 68.75rem;
  margin: 0 auto;
}

.plan-links-band__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
}

.plan-links-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: min(21.25rem, 100%);
  min-height: 3rem;
  padding: 0.25rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(180deg, #0f68c6 0%, #001a35 100%);
  box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.2);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.plan-links-band__btn:hover {
  filter: brightness(1.06);
}

.plan-links-band__btn:active {
  transform: translateY(1px);
}

.plan-links-band__btn-ico {
  font-size: 1.125rem;
  line-height: 1;
  color: var(--bg);
  font-weight: 400;
}

/* ----- プラン下グリーン CTA（Figma 8:25 / 1:2074・367×87） ----- */
.plan-cta-band {
  background: var(--white);
  padding: 1.8125rem clamp(1rem, 2.5vw, 1.875rem) 6.3125rem;
}

.plan-cta-band__inner {
  display: flex;
  justify-content: center;
}

.plan-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
  min-height: 5.4375rem;
  width: min(22.9375rem, 100%);
  padding: 0 1.5rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05625em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #25ba2c 0%, #0c5b10 100%);
  transition: opacity 0.15s ease, transform 0.08s ease;
}

.plan-cta-btn:hover {
  opacity: 0.94;
}

.plan-cta-btn:active {
  transform: scale(0.99);
}

.plan-cta-btn__ico {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--bg);
}

/* ----- 安心（Figma 8:26・ネイビー＋チェック＋写真） ----- */
.trust-f8__navy {
  background: var(--blue);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6.25rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.trust-f8__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.trust-f8__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.trust-f8__rule {
  max-width: 68.75rem;
  margin: 0 auto 0.85rem;
  line-height: 0;
}

.trust-f8__rule-img {
  display: block;
  width: 100%;
  height: 0.125rem;
  object-fit: fill;
}

.trust-f8__lead {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: var(--white);
}

.trust-f8__grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .trust-f8__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 35.625rem);
  }
}

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

.trust-f8__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.trust-f8__item:last-child {
  margin-bottom: 0;
}

/* Figma 1:2091 白□枠 ＋ 1:2096 赤チェック（Vector 49） */
.trust-f8__mark {
  position: relative;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  margin-top: 0.2rem;
  display: grid;
  place-items: center;
}

.trust-f8__mark-frame {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border: 2px solid var(--white);
  border-radius: 1px;
  pointer-events: none;
}

.trust-f8__check {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.625rem;
  height: auto;
}

.trust-f8__item-title {
  display: block;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.trust-f8__item-title-note {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.trust-f8__item-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.trust-f8__photo {
  border-radius: 0.625rem;
  overflow: hidden;
  line-height: 0;
}

.trust-f8__photo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 570 / 567;
  object-fit: cover;
  display: block;
}

.trust-f8__footnote {
  display: flex;
  gap: 0.25rem;
  align-items: flex-start;
  max-width: 32rem;
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.trust-f8__footnote-mark {
  flex-shrink: 0;
}

/* ----- 安心下・2枚区切り（Figma 1:16 / Frame 50:143・1440×379） ----- */
.trust-divider {
  --trust-div-x-top: 66.5%;
  --trust-div-x-bottom: 52.5%;
  width: 100%;
  background: var(--white);
  padding: 0 clamp(1rem, 2.5vw, 1.875rem) clamp(1.5rem, 3vw, 2.25rem);
}

.trust-divider__viewport {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  aspect-ratio: 1440 / 379;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-clip-path: none;
  clip-path: none;
}

.trust-divider__single {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 639px) {
  .trust-divider {
    --trust-div-x-top: 62%;
    --trust-div-x-bottom: 46%;
  }

  .trust-divider__viewport {
    aspect-ratio: 16 / 9;
    min-height: 10rem;
    max-height: 14rem;
  }
}

.fullbleed-img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.fullbleed-img img {
  width: 100%;
  display: block;
  max-height: 28rem;
  object-fit: cover;
}

.fullbleed-img--tight {
  margin-top: 0;
}

/* ----- 利用シーン（Figma 50:144） ----- */
.scenes-block__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.scenes-block__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

.scenes-block__rule {
  max-width: 68.75rem;
  margin: 0 auto 0.85rem;
  line-height: 0;
}

.scenes-block__rule-img {
  display: block;
  width: 100%;
  height: 0.125rem;
  object-fit: fill;
}

.scenes-block__lead {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: #000;
}

.scenes-block__grid {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 640px) {
  .scenes-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .scenes-block__grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
  }
}

.scene-card.scene-card--scenes {
  width: 100%;
  max-width: 21.25rem;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  .scene-card.scene-card--scenes {
    max-width: none;
    margin: 0;
  }
}

/* Figma 1:2294 系マスク 340×256・四隅角丸 10px（下辺は clip-path で確実にクリップ） */
.scene-card--scenes .scene-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 340 / 256;
  border-radius: 0.625rem;
  overflow: hidden;
  line-height: 0;
  isolation: isolate;
  transform: translateZ(0);
}

.scene-card--scenes .scene-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.625rem;
  -webkit-clip-path: inset(0 round 0.625rem);
  clip-path: inset(0 round 0.625rem);
}

.scene-card--scenes .scene-card__title {
  margin: 0;
  padding: 0.85rem 0.35rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #000;
  background: transparent;
}

.scene-card--scenes .scene-card__text {
  margin: 0;
  padding: 0 0.35rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  flex-grow: 1;
}

.scene-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  padding: 0.25rem 1rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(180deg, #0f68c6 0%, #001a35 100%);
  box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.2);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.scene-card__btn:hover {
  filter: brightness(1.06);
}

.scene-card__btn:active {
  transform: translateY(1px);
}

.scene-card__btn-ico {
  font-size: 1.125rem;
  line-height: 1;
  color: var(--bg);
  font-weight: 400;
}

/* ----- 3ステップ（Figma 50:145・グレー背景・ピル＋三角） ----- */
.steps-block {
  background: var(--bg);
  padding: clamp(3rem, 6.5vw, 5.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.steps-block__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.steps-block__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
}

.steps-block__rule {
  max-width: 68.875rem;
  margin: 0 auto 0.85rem;
  line-height: 0;
}

.steps-block__rule-img {
  display: block;
  width: 100%;
  height: 0.125rem;
  object-fit: fill;
}

.steps-block__lead {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: #000;
}

.steps-block__list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 68.875rem;
}

.steps-block__pill {
  display: flex;
  align-items: center;
  background: var(--blue);
  border-radius: 3.125rem;
  min-height: 6.4375rem;
  padding: 0.75rem clamp(1.25rem, 3vw, 3.5rem);
  box-sizing: border-box;
}

.steps-block__pill-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  width: 100%;
}

.steps-block__pill-title {
  flex: 1 1 16rem;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--white);
}

.steps-block__pill-sub {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.steps-block__pill-body {
  flex: 1 1 15rem;
  max-width: 25.55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.steps-block__pill-body p {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.steps-block__pill-body p:last-child {
  margin-bottom: 0;
}

.steps-block__arrow {
  display: flex;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  margin: 0;
  list-style: none;
}

.steps-block__arrow-img {
  display: block;
  width: 3.125rem;
  height: auto;
  transform: rotate(180deg);
}

.steps-block__note {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  text-align: center;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  color: var(--blue);
}

@media (max-width: 639px) {
  .steps-block__pill {
    min-height: 0;
    padding: 0.85rem 1rem;
    border-radius: 1.125rem;
    align-items: flex-start;
  }

  .steps-block__pill-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.35rem;
  }

  .steps-block__pill-title,
  .steps-block__pill-body {
    flex: 0 0 auto;
    width: 100%;
  }

  .steps-block__pill-body {
    max-width: none;
  }

  .steps-block__pill-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .steps-block__pill-body p {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .steps-block__arrow {
    padding: 0.65rem 0;
  }
}

/* ----- 3ステップ下バナー（Figma 50:146・対角2枚・1440×380） ----- */
.steps-banner {
  --steps-ban-x-top: 31.5%;
  --steps-ban-x-bottom: 50.5%;
  width: 100%;
  background: var(--white);
  padding: 0 clamp(1rem, 2.5vw, 1.875rem) clamp(1.5rem, 3vw, 2.25rem);
}

.steps-banner__viewport {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  aspect-ratio: 1440 / 380;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-clip-path: none;
  clip-path: none;
}

.steps-banner__single {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 639px) {
  .steps-banner {
    --steps-ban-x-top: 38%;
    --steps-ban-x-bottom: 52%;
  }

  .steps-banner__viewport {
    aspect-ratio: 16 / 9;
    min-height: 10rem;
    max-height: 15rem;
  }
}

/* ----- FAQ（Figma 50:177） ----- */
#faq {
  background: #fff;
}

.faq-head {
  margin-bottom: 0.25rem;
}

.faq-head__rule {
  margin: 0 auto 2rem;
  max-width: 100%;
  line-height: 0;
}

.faq-head__rule img {
  display: block;
  width: 100%;
  height: 2px;
}

.faq-list {
  margin: 0;
}

.faq-list__item {
  border-bottom: 1px solid #cacaca;
}

.faq-list__item:last-child {
  border-bottom: none;
}

.faq-list__summary {
  display: grid;
  grid-template-columns: 1.6875rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.45;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
}

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

.faq-list__summary:focus {
  outline: none;
}

.faq-list__summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-list__qbadge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6875rem;
  height: 1.5625rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
}

.faq-list__question {
  min-width: 0;
}

.faq-list__toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-list__toggle-icon {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
}

.faq-list__toggle-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  border-radius: 1px;
}

.faq-list__toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  border-radius: 1px;
}

.faq-list__item[open] .faq-list__toggle-icon::after {
  display: none;
}

.faq-list__answer {
  display: grid;
  grid-template-columns: 1.6875rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0 2.75rem 1.25rem 0;
}

.faq-list__abadge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-inline: auto;
  background: #d9d9d9;
  color: var(--blue);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 2px;
}

.faq-list__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.faq-list__body p {
  margin: 0;
}

.faq-list__body p + p {
  margin-top: 0.65rem;
}

.faq-list__note {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (max-width: 639px) {
  .faq-list__summary {
    grid-template-columns: 1.5rem 1fr auto;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.85rem 0;
  }

  .faq-list__qbadge {
    width: 1.5rem;
    height: 1.4rem;
    font-size: 0.6875rem;
  }

  .faq-list__answer {
    grid-template-columns: 1.5rem 1fr;
    gap: 0.5rem;
    padding-right: 2.5rem;
    padding-bottom: 1rem;
  }

  .faq-list__toggle {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* ----- 運営会社（Figma 50:178） ----- */
.section--company {
  background: var(--bg);
}

.company-head {
  margin-bottom: 0;
}

.company-head__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  text-align: center;
}

/* Vector 43 相当の太線（#0A3A6E 2px）の下〜先頭の細線（#CACACA）まで */
.company-head__rule {
  margin: 0 auto clamp(3.25rem, 7vw, 5rem);
  max-width: 100%;
  line-height: 0;
}

.company-head__rule img {
  display: block;
  width: 100%;
  height: 2px;
}

.company-profile {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.company-profile__row {
  display: grid;
  grid-template-columns: minmax(8rem, 10.25rem) 1fr;
  gap: 0.5rem 1.25rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.company-profile__label {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
}

.company-profile__value {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

.company-profile__value--stack .company-profile__lead,
.company-profile__value--stack .company-profile__sub {
  margin: 0;
}

.company-profile__value--stack .company-profile__lead + .company-profile__lead {
  margin-top: 0.25rem;
}

.company-profile__value--stack .company-profile__sub {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .company-profile__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }
}

/* ----- アクセス（Figma 50:180） ----- */
.section--access {
  background: var(--white);
}

.access-head {
  margin-bottom: 0;
}

.access-head__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  text-align: center;
}

.access-head__rule {
  margin: 0 auto clamp(3.25rem, 7vw, 5rem);
  max-width: 100%;
  line-height: 0;
}

.access-head__rule img {
  display: block;
  width: 100%;
  height: 2px;
}

.access-map {
  margin: 0;
}

.access-map__frame {
  position: relative;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--border);
}

.access-map__img {
  width: 100%;
  display: block;
  aspect-ratio: 800 / 360;
  border: 0;
}

/* Figma 1:2519 + 1:2522 相当の吹き出しは1枚画像（access-callout.png） */
.access-map__badge {
  position: absolute;
  right: clamp(-2rem, -4vw, -0.75rem);
  top: clamp(-2.25rem, -4vw, -1rem);
  width: auto;
  height: auto;
  max-width: min(9.75rem, 30vw);
  pointer-events: none;
  line-height: 0;
}

.access-map__badge-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 9.75rem;
}

.access-foot {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #000;
}

.access-foot p {
  margin: 0;
}

.access-foot p + p {
  margin-top: 0.125rem;
}

@media (max-width: 639px) {
  .access-map__badge {
    right: -0.5rem;
    top: -1.1rem;
    max-width: min(7.25rem, 34vw);
  }

  .access-map__badge-img {
    max-width: 7.25rem;
  }

  .access-foot {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

/* ----- CTAブロック ----- */
.section--cta {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
}

.cta {
  text-align: center;
}

.cta-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.15rem;
  padding: 0.625rem 1.25rem;
  background: #f6f6f6;
  color: var(--blue);
  border-radius: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.25rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--white);
}

.cta__rule {
  margin: 0 auto 1.55rem;
  line-height: 0;
}

.cta__rule img {
  display: block;
  width: 100%;
  height: 2px;
}

.cta__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: var(--white);
}

.cta-points {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-points__item {
  position: relative;
  padding-left: 1.15rem;
  color: var(--white);
  font-size: 1.375rem;
  line-height: 1.3;
}

.cta-points__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.72em;
  height: 0.72em;
  transform: translateY(-50%);
  background: url("../assets/images/cta-check.png") center / contain no-repeat;
}

.cta-btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 55.375rem;
  margin: 0 auto;
}

.cta-btn {
  min-height: 5.4375rem;
  padding: 1rem 1.5rem;
  border-radius: 0.625rem;
  border: 0;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.cta-btn > span {
  font-size: 1.3em;
  line-height: 1;
}

.cta-btn--phone {
  background: linear-gradient(180deg, #cb1818 0%, #911313 100%);
}

.cta-btn--line {
  background: linear-gradient(180deg, #25ba2c 0%, #0c5b10 100%);
}

@media (max-width: 899px) {
  .cta-banner {
    font-size: 1rem;
    padding: 0.55rem 1rem;
  }

  .cta__lead {
    line-height: 1.8;
    letter-spacing: 0.03em;
  }

  .cta-points {
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-points__item {
    font-size: 1rem;
  }

  .cta-btns {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 23.75rem;
  }

  .cta-btn {
    min-height: 4.2rem;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
  }
}

/* ----- 資料請求 ----- */
.section--doc {
  background: #fff;
}

/* 資料請求アンカー時に sticky ヘッダーで隠れないよう調整 */
#form-doc {
  scroll-margin-top: 7.25rem;
}

@media (max-width: 640px) {
  #form-doc {
    scroll-margin-top: 9.5rem;
  }
}

.doc {
  width: min(68.75rem, 100% - 2rem);
}

.doc-head {
  position: relative;
  text-align: center;
}

.doc-head__title {
  margin: 0;
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--blue);
}

.doc-head__rule {
  margin: 1.5rem 0 3.5rem;
  border-top: 2px solid var(--blue);
}

.doc-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 980px) {
  .doc-layout {
    grid-template-columns: minmax(0, 1fr) 28.125rem;
    gap: 2.9rem;
  }
}

.doc-showcase__lead {
  margin: 0 0 1.65rem;
  text-align: center;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
}

.doc-showcase__papers {
  display: flex;
  justify-content: center;
  min-height: 0;
}

.doc-showcase__paper {
  position: relative;
  width: min(18.875rem, 62vw);
  max-width: 100%;
  aspect-ratio: 302 / 427;
  background: #c5c5c5;
}

.doc-showcase__paper--back {
  display: none;
}

.doc-showcase__paper--front {
  left: auto;
  top: auto;
  border: 1px solid #fff;
  background-image: url("../assets/images/pamphlet-v2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.doc-card {
  border-radius: 0.625rem;
  padding: 1.75rem 1.5rem 2rem;
  background: linear-gradient(180deg, #0f68c6 0%, #001a35 100%);
}

.doc-card__hint {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

.doc-card__hint-wrap {
  position: relative;
}

.doc-card__badge {
  position: absolute;
  right: -2.5rem;
  top: -2.9rem;
  width: 5rem;
  height: 5rem;
  line-height: 0;
  pointer-events: none;
}

.doc-card__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.doc-form {
  display: grid;
  gap: 0.625rem;
}

.doc-form .field-infield-wrap input {
  padding-right: 3.35rem;
}

.doc-form .field-infield-wrap .field-infield-req {
  right: 0.8125rem;
}

.doc-form__row2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.doc-form input,
.doc-form select {
  width: 100%;
  min-height: 3.125rem;
  padding: 0 0.8125rem;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #333;
  font-size: 1rem;
}

.doc-form input::placeholder {
  color: #9e9e9e;
}

.doc-form select {
  color: #9e9e9e;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9e9e9e 50%), linear-gradient(135deg, #9e9e9e 50%, transparent 50%);
  background-position: calc(100% - 1rem) 1.375rem, calc(100% - 0.7rem) 1.375rem;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
}

.doc-form__check {
  margin-top: 0.25rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.doc-form__check input {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  margin: 0;
}

.doc-form__note {
  margin: 0;
  padding-top: 0.45rem;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.35;
}

.doc-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.125rem;
  border: 0;
  border-radius: 0.625rem;
  background: #1d65b3;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}

.doc-form__submit > span {
  font-size: 1.1em;
}

@media (max-width: 979px) {
  .doc-card__badge {
    right: -0.9rem;
    top: -2.35rem;
    width: 4.2rem;
    height: 4.2rem;
  }
}

/* ----- フッター ----- */
.footer {
  padding: 2rem 0;
  background: #fff;
  color: var(--text);
  text-align: center;
}

.footer__logo {
  margin: 0 auto 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.8;
}




