@charset "UTF-8";

/* =========================================================
   くるマッチ LP
   design: PC 1300 / content 1000  -  SP 420
   ========================================================= */

/* ---------- tokens ---------- */
:root {
  --navy: #002A60;
  --navy-deep: #01296C;
  --blue: #0058C9;
  --blue-mid: #155BB4;
  --green: #099F3B;
  --green-deep: #016527;
  --orange: #FE8505;
  --yellow: #FFF600;
  --yellow-bg: #FEEF06;
  --brown: #B44F02;
  --purple: #733D7C;
  --ink: #202020;

  --content: 1000px;
  --radius: 10px;
  --shadow-card: 0 3px 10px rgba(0, 40, 90, .10);
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Roboto Condensed", "Roboto", var(--font);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  line-height: 1.8;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
h1, h2, h3, p, ul, ol, figure, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: normal; }
[hidden] { display: none !important; }
.u-sp { display: none; }

/* ---------- layout ---------- */
.l-inner {
  width: min(var(--content), 100% - 40px);
  margin-inline: auto;
}

/* ---------- text colors ---------- */
.c-green  { color: var(--green-deep); }
.c-blue   { color: #0B4EA2; }
.c-orange { color: #F26B0F; }

/* =========================================================
   BUTTON
   ========================================================= */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  padding: 8px 46px 8px 20px;
  border: 3px solid #fff;
  border-radius: 10px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .28);
  transition: filter .2s, transform .2s;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn--mail { background: linear-gradient(180deg, #E60000 0%, #8B0000 100%); }
.btn--tel  { background: linear-gradient(180deg, #009BFF 0%, #0035FF 100%); }

.btn__body { display: block; }
.btn__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.25;
  white-space: nowrap;
}
.btn__icon { flex: none; display: block; width: 38px; }
.btn__icon svg { display: block; width: 100%; height: auto; }
.btn--tel .btn__icon { width: 30px; }

/* ＼ 簡単30秒で完了 ／ */
.btn__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.btn__sub::before,
.btn__sub::after {
  content: "";
  width: 2px;
  height: 1.15em;
  background: currentColor;
}
.btn__sub::before { rotate: -22deg; }
.btn__sub::after  { rotate: 22deg; }

.btn__note { display: block; margin-top: 3px; font-size: 16px; font-weight: 700; line-height: 1.3; white-space: nowrap; }

.btn__arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 14px;
  translate: 0 -50%;
}
.btn__arrow svg { display: block; width: 100%; height: auto; }

/* small (header) */
.btn--sm {
  min-height: 66px;
  padding: 6px 16px;
  border-width: 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.btn--sm.btn--mail { background: linear-gradient(180deg, #E80000 0%, #B00707 100%); }
.btn--sm.btn--tel  { background: linear-gradient(180deg, #16A0FF 0%, #005ACA 100%); }
.btn--sm .btn__main { font-size: 22px; gap: 9px; }
.btn--sm .btn__icon { width: 28px; }
.btn--sm.btn--tel .btn__icon { width: 22px; }
.btn--sm .btn__sub { font-size: 14px; gap: 10px; margin-bottom: 1px; }
.btn--sm .btn__note { font-size: 14px; margin-top: 1px; }
.btn--sm .btn__arrow { display: none; }

/* =========================================================
   HEADER
   ========================================================= */
.header { background: #fff; }
.header__inner {
  width: min(var(--content), 100% - 40px);
  margin-inline: auto;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo { flex: none; }
.header__logo img { width: 193px; }
.header__nav { display: flex; gap: 12px; }
.header__nav .btn--mail { width: 306px; }
.header__nav .btn--tel { width: 329px; }

/* =========================================================
   FIRST VIEW
   ========================================================= */
.fv { position: relative; overflow: hidden; }

.fv__sky {
  position: relative;
  padding: 32px 0 25px;
  background-color: #DCEFFF;
  background-image: url("../img/fvBg.png");
  background-repeat: no-repeat;
  background-position: center bottom -58px;
  background-size: max(100%, 1300px) auto;
}
.fv__watermark {
  position: absolute;
  top: 17px;
  left: calc(50% + 140px);
  z-index: 0;
  width: 270px;
  opacity: .9;
  pointer-events: none;
}
.fv__inner { position: relative; z-index: 3; }

.fv__ribbon {
  position: relative;
  display: inline-block;
  padding: 8px 22px;
  background: var(--blue);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.5;
}
.fv__ribbon em { color: var(--yellow); }
.fv__ribbon::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -12px;
  border-style: solid;
  border-width: 12px 9px 0 9px;
  border-color: var(--blue) transparent transparent transparent;
}

.fv__title { margin-top: 26px; }
.fv__title-1 { display: block; width: 405px; }
.fv__title-row { display: flex; align-items: center; margin-top: 4px; }
.fv__title-2 { width: 416px; }
.fv__title-3 { width: 171px; margin-left: 17px; }

.fv__lead {
  margin-top: 10px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
  text-shadow: 0 0 6px rgba(255, 255, 255, .9), 0 0 12px rgba(255, 255, 255, .75);
}

.fv__main {
  position: absolute;
  right: max(0px, calc(50% - 572px));
  bottom: -164px;
  z-index: 2;
  width: 597px;
  max-width: 52%;
}

/* grass band */
.fv__grass {
  position: relative;
  padding: 14px 0 39px;
  background:
    url("../img/fv_grass.png") center top / max(100%, 1300px) auto no-repeat,
    linear-gradient(180deg, #1F9E18 0%, #12800D 100%);
}

.medals { position: relative; z-index: 3; display: flex; gap: 19px; }
.medal {
  width: 139px;
  height: 139px;
  border-radius: 50%;
  background: var(--yellow);
  border: 5px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  text-align: center;
}
.medal__icon { width: 42px; margin-bottom: 4px; }
.medal__lead { font-size: 19px; font-weight: 900; letter-spacing: -.04em; }
.medal__main {
  margin-top: 4px;
  font-size: 33px;
  font-weight: 900;
  font-style: italic;
  color: #111;
  letter-spacing: -.01em;
}
.medal__main small { font-size: 21px; }

.fv__ctablock {
  position: relative;
  z-index: 3;
  margin-top: 45px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .35);
}
.fv__ctablock .cta__ttl { text-shadow: none; }
.fv__cta { position: relative; z-index: 3; display: flex; gap: 21px; margin-top: 18px; }

/* =========================================================
   悩み
   ========================================================= */
.nayami { background: #F0F8FE; padding: 74px 0 80px; }

/* 見出し左右の斜めドット装飾 */
.deco-dots { position: relative; }
.deco-dots::before,
.deco-dots::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 52px;
  translate: 0 -50%;
  background-image:
    radial-gradient(circle, #2C7FCF 2.6px, transparent 3.1px),
    radial-gradient(circle, #2C7FCF 2.6px, transparent 3.1px);
  background-repeat: repeat-y, repeat-y;
  background-size: 9px 15px, 9px 15px;
  background-position: 2px 0, 19px 7px;
  rotate: 16deg;
}
.deco-dots::before { right: 100%; margin-right: 20px; rotate: -16deg; }
.deco-dots::after  { left: 100%;  margin-left: 20px; }

.nayami__ttl { text-align: center; }
.nayami__ttl-inner {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
}
.nayami__ttl-row { display: inline-flex; align-items: flex-start; }
.nayami__ttl-row::before,
.nayami__ttl-row::after { display: none; }
.nayami__ttl-1 { width: 268px; margin-top: 8px; }
.nayami__ttl-2 { width: 162px; margin-inline: 16px 11px; }
.nayami__ttl-3 { width: 266px; margin-top: 8px; }

.nayami__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 26px;
  margin-top: 40px;
}
.ncard {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 171px;
  padding: 20px 8px 20px 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.ncard__check { flex: none; width: 32px; }
.ncard__check svg { display: block; width: 100%; height: auto; }
.ncard__text {
  flex: 1 1 auto;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
}
.ncard__text em { color: var(--orange); }
.ncard__img {
  flex: none;
  width: 192px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
}

/* =========================================================
   サポート
   ========================================================= */
.support {
  padding: 75px 0 96px;
  background: #fff url("../img/support_grid.png") left top repeat;
}
.support__badge {
  width: fit-content;
  margin-inline: auto;
  padding: 7px 40px;
  background: var(--blue);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.support__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}
.support__ttl-1 { width: 203px; }
.support__ttl-2 { width: 252px; margin-inline: 14px 24px; }
.support__ttl-3 { width: 371px; }

.support__body { position: relative; margin-top: 73px; }
.support__img {
  display: block;
  width: 600px;
  margin-left: auto;
  border-radius: 4px;
}
.support__card {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 2;
  width: 433px;
  padding: 34px 54px 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 40, 90, .12);
}
.support__card-logo { text-align: center; }
.support__card-logo img { width: 208px; }
.support__card-text {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 2px dotted #B9D4EC;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.support__card-text em { color: var(--blue); font-weight: 700; }

/* =========================================================
   4つの理由
   ========================================================= */
.reason {
  padding: 60px 0 66px;
  background: url("../img/reason_bg.png") center top / cover no-repeat, #C7E1FC;
}
.reason__ttl { text-align: center; }
.reason__ttl-1 { display: inline-block; }
.reason__ttl-1 img { display: block; width: 295px; }
.reason__ttl-2 { display: block; width: 515px; margin: 22px auto 0; }

.reason__pill {
  width: fit-content;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 12px 128px;
  background: #fff;
  border-radius: 999px;
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 60, 120, .12);
}

.reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 26px;
  margin-top: 46px;
}
.rcard {
  padding: 23px 24px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.rcard__ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
.rcard__ttl img { flex: none; width: 56px; }
.rcard__ttl em { color: var(--orange); }
.rcard__img {
  display: block;
  width: 100%;
  aspect-ratio: 440 / 221;
  object-fit: cover;
  margin-top: 8px;
  border-radius: 4px;
}
.rcard__text {
  margin-top: 13px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.42;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 50px 0 59px;
  background: var(--yellow-bg) url("../img/ctaBg.png") left top repeat;
  text-align: center;
}
.cta__sub {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.cta__ttl { margin-top: 4px; }
.cta__ttl img { width: 482px; }
.cta__btns { display: flex; gap: 14px; margin-top: 28px; }
.cta .btn { min-height: 96px; }

/* =========================================================
   ローンプラン
   ========================================================= */
.plan {
  padding: 76px 0 66px;
  background: var(--blue-mid) url("../img/plan_bg_grid.png") left top repeat;
  color: #fff;
  text-align: center;
}
.plan__sub { font-size: 24px; font-weight: 700; line-height: 1.5; }
.plan__ttl {
  position: relative;
  width: fit-content;
  margin: 2px auto 0;
  padding: 0 84px;
  color: var(--yellow);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .02em;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .18);
}
.plan__ttl::before,
.plan__ttl::after {
  content: "";
  position: absolute;
  top: 52%;
  width: 46px;
  height: 64px;
  translate: 0 -50%;
}
/* left : ＼＼ */
.plan__ttl::before {
  left: 6px;
  background:
    linear-gradient(to top right, transparent calc(50% - 3px), #fff calc(50% - 3px), #fff calc(50% + 3px), transparent calc(50% + 3px)) left / 22px 100% no-repeat,
    linear-gradient(to top right, transparent calc(50% - 3px), #fff calc(50% - 3px), #fff calc(50% + 3px), transparent calc(50% + 3px)) right / 22px 100% no-repeat;
}
/* right : ／／ */
.plan__ttl::after {
  right: 6px;
  background:
    linear-gradient(to bottom right, transparent calc(50% - 3px), #fff calc(50% - 3px), #fff calc(50% + 3px), transparent calc(50% + 3px)) left / 22px 100% no-repeat,
    linear-gradient(to bottom right, transparent calc(50% - 3px), #fff calc(50% - 3px), #fff calc(50% + 3px), transparent calc(50% + 3px)) right / 22px 100% no-repeat;
}
.plan__desc { margin-top: 16px; font-size: 18px; font-weight: 500; line-height: 1.55; }

.plan__box {
  margin-top: 43px;
  padding: 24px 23px;
  background: #fff;
  border-radius: 12px;
  color: var(--ink);
}
.plan__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pcard {
  display: flex;
  flex-direction: column;
  padding: 16px 14px 24px;
  border-radius: 8px;
  text-align: center;
}
.pcard--own     { background: #E4EEF9; }
.pcard--recover { background: #EAF6EC; }
.pcard--partner { background: #FBF2E6; }
.pcard--dealer  { background: #F3EBFD; }

.pcard__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 6px;
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .01em;
}
.pcard--own     .pcard__head { background: var(--navy-deep); }
.pcard--recover .pcard__head { background: var(--green-deep); }
.pcard--partner .pcard__head { background: var(--brown); }
.pcard--dealer  .pcard__head { background: var(--purple); }
.pcard__head-icon { flex: none; width: 20px; }
.pcard--recover .pcard__head-icon,
.pcard--dealer .pcard__head-icon { width: 26px; }
.pcard__head-icon svg { display: block; width: 100%; height: auto; }

.pcard__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 20px auto 0;
  background: #fff;
  border-radius: 50%;
}
.pcard__icon img { width: 52px; mix-blend-mode: multiply; }

.pcard__text {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dotted #C3CBD6;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

/* 価格事例 */
.plan__box--price { margin-top: 74px; padding-top: 51px; position: relative; }
.plan__pill {
  position: absolute;
  top: -21px;
  left: 50%;
  translate: -50% 0;
  padding: 7px 40px;
  background: var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.price__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price { border-radius: 8px; overflow: hidden; }
.price--blue   { background: #DEEBFC; }
.price--green  { background: #E5F5E9; }
.price--orange { background: #FCEEDF; }

.price__name {
  padding: 5px 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
.price--blue   .price__name { background: #005CDA; }
.price--green  .price__name { background: var(--green); }
.price--orange .price__name { background: var(--orange); }

.price__img { display: grid; place-items: center; height: 215px; padding: 0 12px; }
.price__img img { max-height: 157px; width: auto; object-fit: contain; }

.price__amount {
  margin: 0 12px 8px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.price__yen { font-size: 25px; }
.price__num { font-size: 33px; font-weight: 900; letter-spacing: -.01em; }
.price--blue   .price__yen, .price--blue   .price__num { color: #005CDA; }
.price--green  .price__yen, .price--green  .price__num { color: var(--green); }
.price--orange .price__yen, .price--orange .price__num { color: var(--orange); }

/* =========================================================
   お客様の声
   ========================================================= */
.voice { padding: 78px 0 72px; background: #FDFDEF; }
.voice__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.voice__ttl-img { width: 100px; }
.voice__ttl-body { display: block; }
.voice__ttl-ja {
  display: block;
  color: var(--green);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
}
.voice__ttl-en {
  display: block;
  margin-top: 6px;
  padding: 3px 10px;
  background: #202020;
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-align: center;
}

.voice__list { display: grid; gap: 17px; width: 714px; max-width: 100%; margin-inline: auto; }
.vcard {
  position: relative;
  padding: 24px 32px 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.vcard::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -18px;
  width: 220px;
  height: 244px;
  background: url("../img/logo_trans.png") center / contain no-repeat;
  pointer-events: none;
}
.vcard__head { position: relative; z-index: 2; display: flex; gap: 23px; }
.vcard__avatar { flex: none; width: 130px; height: 130px; object-fit: cover; border-radius: 4px; }
.vcard__meta { flex: 1 1 auto; align-self: center; }
.vcard__ttl {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
.vcard__profile {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dotted #B9B9B9;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.vcard__figure {
  position: relative;
  z-index: 2;
  margin-top: 35px;
}
.vcard__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #E4E4E4;
  border-radius: 4px;
}

/* =========================================================
   ご相談の流れ
   ========================================================= */
.step {
  padding: 66px 0 84px;
  background: repeating-linear-gradient(90deg, #fff 0 3px, #EAF4FD 3px 6px);
}
.step__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 76px;
}
.step__cars { width: 289px; }
.step__cars--r { width: 296px; }
.step__ttl-img { flex: none; width: 271px; }

.step__list { width: 704px; max-width: 100%; margin-inline: auto; }
.scard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px 30px 28px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.scard + .scard { margin-top: 31px; }
.scard + .scard::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  translate: -50% 0;
  border-style: solid;
  border-width: 13px 11px 0 11px;
  border-color: var(--orange) transparent transparent transparent;
}
.scard__num {
  flex: none;
  min-width: 104px;
  padding: 4px 10px;
  text-align: center;
  background: var(--green);
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  white-space: nowrap;
}
.scard__img {
  flex: none;
  display: grid;
  place-items: center;
  width: 133px;
  height: 133px;
  margin-right: 30px;
  border-radius: 50%;
  background: #E7F2FD;
}
.scard__img img { width: 104px; }
.scard__body { flex: 1 1 auto; }
.scard__ttl {
  padding-bottom: 10px;
  border-bottom: 2px dotted #B9B9B9;
  color: var(--green);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
.scard__text { margin-top: 12px; font-size: 17px; font-weight: 500; line-height: 1.7; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 64px 0 86px; background: #fff; text-align: center; }
.faq__ttl { margin-bottom: 108px; }
.faq__ttl-en {
  display: block;
  color: #BBD9F7;
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
}
.faq__ttl-ja {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
}

.faq__list { display: grid; gap: 18px; text-align: left; }
.qa {
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
  overflow: hidden;
}
.qa__q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 16px 26px;
  text-align: left;
}
.qa__mark {
  flex: none;
  width: 26px;
  color: var(--orange);
  font-family: "Roboto", var(--font);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.qa__mark--a { color: #0B4EA2; }
.qa__q .qa__text { flex: 1 1 auto; font-size: 18px; font-weight: 500; line-height: 1.6; }
.qa__toggle { flex: none; width: 20px; transition: rotate .3s; }
.qa__toggle svg { display: block; width: 100%; height: auto; }
.qa__q[aria-expanded="true"] .qa__toggle { rotate: 180deg; }
.qa__q[aria-expanded="true"] .qa__toggle svg path { stroke: var(--orange); }

.qa__a {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 26px 24px;
}
.qa__a .qa__text { flex: 1 1 auto; font-size: 18px; font-weight: 500; line-height: 1.7; }


/* =========================================================
   仮審査受付フォーム
   ========================================================= */
.entry {
  padding: 91px 0 76px;
  background: #FEEF06;
  text-align: center;
}
.entry__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.entry__ttl-lead {
  padding: 6px 0;
  border-top: 3px double #202020;
  border-bottom: 3px double #202020;
  color: #202020;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
}
.entry__ttl-lead em { color: #D80000; font-style: italic; }
.entry__ttl-main {
  position: relative;
  z-index: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
  filter: drop-shadow(3px 4px 2px rgba(0, 0, 0, .28));
}
.entry__ttl-main::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: var(--navy);
  -webkit-text-stroke: 8px var(--navy);
}

.entry__lead {
  margin-top: 40px;
  color: #202020;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.entry__lead em { color: #D80000; }

.entry__card {
  width: 880px;
  max-width: 100%;
  margin: 68px auto 0;
  padding: 75px 115px 55px;
  background: #fff;
  border-top: 6px solid transparent;
  border-image: repeating-linear-gradient(90deg,
      #FE8102 0 36.67px, #0159CA 36.67px 73.33px, #26AA0B 73.33px 110px) 6;
  text-align: left;
}

/* ハニーポット（視覚・支援技術どちらからも隠す） */
.fm__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fm__row + .fm__row { margin-top: 20px; }

/* 番号つき設問 */
.fm__q {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.fm__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

/* 通常ラベル */
.fm__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.fm__req {
  display: inline-block;
  padding: 2px 9px;
  background: #990000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* 入力欄 */
.fm__input,
.fm__select select {
  width: 100%;
  height: 49px;
  padding: 0 18px;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
  background: #fff;
  color: #202020;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
}
.fm__input::placeholder { color: #B5B5B5; }
.fm__input:focus,
.fm__select select:focus { outline: 2px solid #0058C9; outline-offset: 1px; }

.fm__select { position: relative; }
.fm__select select {
  appearance: none;
  padding-right: 66px;
  cursor: pointer;
}
.fm__select::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 52px;
  width: 1px;
  background: #D0D0D0;
  pointer-events: none;
}
.fm__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 8px 0 8px;
  border-color: #D0D0D0 transparent transparent transparent;
  translate: 0 -50%;
  pointer-events: none;
}

.fm__error { margin-top: 6px; color: #D80000; font-size: 14px; font-weight: 700; line-height: 1.5; }
.fm__input.is-error,
.fm__select select.is-error { border-color: #D80000; background: #FFF6F6; }

.fm__foot {
  margin-top: 34px;
  padding-top: 40px;
  border-top: 2px solid #F0F0F0;
  text-align: center;
}
.fm__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 485px;
  max-width: 100%;
  min-height: 77px;
  padding: 10px 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, #E30101 0%, #8E0000 100%);
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .22);
  transition: filter .2s, transform .2s;
}
.fm__btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.fm__btn-arrow { position: absolute; top: 50%; right: 28px; width: 12px; translate: 0 -50%; }
.fm__btn-arrow svg { display: block; width: 100%; height: auto; }


/* =========================================================
   会社概要
   ========================================================= */
.company { padding: 68px 0 59px; background: #EAF4FD; text-align: center; }
.company__ttl { display: flex; align-items: baseline; justify-content: center; gap: 38px; }
.company__ttl-en {
  color: #B7D3F0;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.4;
}
.company__ttl-ja { color: var(--navy); font-size: 25px; font-weight: 700; line-height: 1.4; }

.company__table {
  width: 100%;
  margin-top: 72px;
  border-collapse: separate;
  border-spacing: 0 1px;
  text-align: left;
}
.company__table th,
.company__table td {
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}
.company__table th { width: 199px; background: #C9DEFB; font-weight: 700; }
.company__table td { background: #fff; }

/* =========================================================
   サンクスページ
   ========================================================= */
.header__inner--solo { justify-content: flex-start; }
.header__logo a { display: block; }

.thanks {
  padding: 95px 0 93px;
  background: #FEEF06;
}
.thanks__card {
  width: 880px;
  max-width: 100%;
  margin-inline: auto;
  padding: 72px 60px 60px;
  background: #fff;
  border-top: 6px solid transparent;
  border-image: repeating-linear-gradient(90deg,
      #FE8102 0 36.67px, #0159CA 36.67px 73.33px, #26AA0B 73.33px 110px) 6;
  text-align: center;
}
.thanks__ttl {
  color: var(--orange);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .01em;
}
.thanks__body { margin-top: 48px; font-size: 17px; font-weight: 500; line-height: 1.7; }
.thanks__body p + p { margin-top: 27px; }

.thanks__info {
  margin-top: 55px;
  padding-top: 60px;
  border-top: 2px solid #F0F0F0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}
.thanks__info a { text-decoration: none; }
.thanks__logo { margin-top: 30px; }
.thanks__logo img { width: 185px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 29px 20px; background: var(--blue); color: #fff; text-align: center; }
.footer__copy { font-size: 13px; font-weight: 500; line-height: 1.6; }

/* =========================================================
   SP 固定CTA
   ========================================================= */
.fixedcta { display: none; }

/* =========================================================
   RESPONSIVE  ( ~1099px : PC縮小 )
   ========================================================= */
@media (max-width: 1099px) and (min-width: 768px) {
  .fv__main { max-width: 46%; }
  .fv__watermark { display: none; }
  .plan__ttl { font-size: 42px; }
  .voice__ttl-ja { font-size: 38px; }
  .reason__pill { padding-inline: 60px; }
  .faq__ttl { margin-bottom: 60px; }
  .step__ttl { gap: 16px; }
  .step__cars { width: 190px; }
  .step__cars--r { width: 195px; }
}

/* =========================================================
   RESPONSIVE  ( SP : ~767px )  design width 420
   ========================================================= */
@media (max-width: 767px) {
  body { line-height: 1.75; }
  .u-sp { display: inline; }
  .l-inner { width: 100%; padding-inline: 20px; }


  /* --- header --- */
  .header__inner { height: 75px; justify-content: center; padding-inline: 20px; }
  .header__logo img { width: 150px; }
  .header__nav { display: none; }

  /* --- fv --- */
  .fv__sky {
    padding: 21px 0 4px;
    background-size: 200% auto;
    background-position: 60% bottom -20px;
  }
  .fv__watermark { display: none; }
  .fv__ribbon { display: block; padding: 5px 10px; font-size: 15px; text-align: center; }
  .fv__ribbon::after { left: 30px; bottom: -9px; border-width: 9px 7px 0 7px; }
  .fv__title { margin-top: 25px; text-align: center; }
  .fv__title-1 { display: inline-block; width: min(257px, 67.6%); }
  .fv__title-row { justify-content: center; }
  .fv__title-2 { width: min(258px, 67.9%); }
  .fv__title-3 { width: min(107px, 28.2%); margin-left: min(12px, 3.2%); }
  .fv__lead {
    margin-top: 20px;
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 270px;
    text-shadow: 0 0 4px #fff, 0 0 8px #fff;
  }
  .fv__main {
    right: 0;
    bottom: -35px;
    width: 235px;
    max-width: 58%;
  }

  .fv__grass { padding: 5px 0 27px; background-size: 170% auto; }
  .medals { justify-content: space-between; gap: 8px; }
  .medal { width: 116px; height: 116px; border-width: 5px; }
  .medal__icon { width: 34px; margin-bottom: 3px; }
  .medal__lead { font-size: 15.5px; }
  .medal__main { font-size: 27px; margin-top: 2px; }
  .medal__main small { font-size: 17px; }
  .fv__ctablock { margin-top: 33px; }
  .fv__ctablock .cta__ttl img { width: 282px; }
  .fv__cta { flex-direction: column; gap: 19px; margin-top: 21px; }

  /* --- 悩み --- */
  .nayami { padding: 40px 0 44px; }
  .nayami__ttl-inner { display: block; }
  .nayami__ttl-inner::before, .nayami__ttl-inner::after { display: none; }
  .nayami__ttl-row::before, .nayami__ttl-row::after { display: block; }
  .nayami__ttl-1 { display: block; width: 218px; margin: 0 auto 2px; }
  .nayami__ttl-2 { width: 122px; margin-inline: 0 10px; }
  .nayami__ttl-3 { width: 190px; margin-top: 6px; }
  .deco-dots::before, .deco-dots::after {
    width: 22px; height: 40px;
    background-size: 8px 13px, 8px 13px;
    background-position: 1px 0, 14px 6px;
  }
  .deco-dots::before { margin-right: 6px; }
  .deco-dots::after { margin-left: 6px; }
  .nayami__list { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .ncard { min-height: 0; gap: 10px; padding: 16px 14px; }
  .ncard__check { width: 26px; }
  .ncard__text { font-size: 14px; line-height: 1.7; }
  .ncard__img { width: 134px; height: 90px; }

  /* --- サポート --- */
  .support { padding: 44px 0 48px; }
  .support__badge { padding: 4px 22px; font-size: 15px; }
  .support__ttl { display: block; text-align: center; margin-top: 16px; }
  .support__ttl > img { display: block; margin: 2px auto 0; }
  .support__ttl-1 { width: 168px; }
  .support__ttl-2 { width: 216px; }
  .support__ttl-3 { width: 305px; }
  .support__body { margin-top: 22px; }
  .support__img { width: 100%; margin-left: 0; }
  .support__card {
    position: static;
    width: calc(100% - 32px);
    margin: -46px auto 0;
    padding: 24px 22px 26px;
  }
  .support__card-logo img { width: 178px; }
  .support__card-text { margin-top: 18px; padding-top: 18px; font-size: 13.5px; line-height: 1.85; }

  /* --- 4つの理由 --- */
  .reason { padding: 44px 0 48px; background-size: 200% auto; }
  .reason__ttl-1 img { width: 236px; }
  .reason__ttl-2 { width: 296px; margin-top: 8px; }
  .reason__pill { margin-top: 20px; padding: 8px 20px; font-size: 15px; }
  .reason__list { grid-template-columns: 1fr; gap: 16px; margin-top: 26px; }
  .rcard { padding: 16px 16px 20px; }
  .rcard__ttl { gap: 10px; font-size: 19px; }
  .rcard__ttl img { width: 42px; }
  .rcard__img { margin-top: 12px; aspect-ratio: 348 / 196; }
  .rcard__text { margin-top: 12px; font-size: 13px; line-height: 1.75; }

  /* --- CTA --- */
  .cta { padding: 26px 0 30px; }
  .cta__sub { font-size: 15px; }
  .cta__ttl img { width: 296px; }
  .cta__btns { flex-direction: column; gap: 12px; margin-top: 16px; }
  .cta .btn { min-height: 66px; }

  /* --- ローンプラン --- */
  .plan { padding: 44px 0 48px; }
  .plan__sub { font-size: 16px; }
  .plan__ttl { padding: 0 40px; font-size: 27px; }
  .plan__ttl::before, .plan__ttl::after { width: 26px; height: 36px; }
  .plan__ttl::before { left: 4px; }
  .plan__ttl::after { right: 4px; }
  .plan__desc { margin-top: 10px; font-size: 13.5px; line-height: 1.7; }
  .plan__desc br { display: none; }

  .plan__box { margin-top: 24px; padding: 14px; border-radius: 10px; }
  .plan__list { grid-template-columns: 1fr; gap: 12px; }
  .pcard {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-areas: "head head" "icon text";
    align-items: center;
    gap: 0 6px;
    padding: 12px 14px 18px;
  }
  .pcard__head { grid-area: head; font-size: 15px; padding: 6px; }
  .pcard__icon { grid-area: icon; width: 90px; height: 90px; margin: 16px 0 0; }
  .pcard__icon img { width: 56px; }
  .pcard__text {
    grid-area: text;
    margin-top: 16px;
    padding-top: 0;
    border-top: 0;
    font-size: 13px;
  }

  .plan__box--price { margin-top: 26px; padding-top: 32px; }
  .plan__pill { top: -17px; padding: 5px 26px; font-size: 15px; }
  .price__list { grid-template-columns: 1fr; gap: 14px; }
  .price__name { font-size: 17px; }
  .price__img { height: 156px; }
  .price__amount { font-size: 17px; }
  .price__yen { font-size: 20px; }
  .price__num { font-size: 26px; }

  /* --- お客様の声 --- */
  .voice { padding: 40px 0 48px; }
  .voice__ttl { gap: 10px; margin-bottom: 24px; }
  .voice__ttl-img { width: 68px; }
  .voice__ttl-ja { font-size: 30px; }
  .voice__ttl-en { font-size: 11px; margin-top: 4px; }
  .voice__list { width: 100%; gap: 14px; }
  .vcard { padding: 16px 14px 18px; }
  .vcard::after { width: 150px; height: 166px; right: -22px; }
  .vcard__head { gap: 12px; }
  .vcard__avatar { width: 86px; height: 86px; }
  .vcard__ttl { font-size: 14px; line-height: 1.55; }
  .vcard__profile { margin-top: 8px; padding-top: 8px; font-size: 12.5px; }
  .vcard__figure { margin-top: 14px; }

  /* --- ご相談の流れ --- */
  .step { padding: 36px 0 44px; }
  .step__ttl { gap: 0; margin-bottom: 24px; }
  .step__cars { display: none; }
  .step__ttl-img { width: 200px; }
  .step__list { width: 100%; }
  .scard {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-areas: "num  ttl" "img  text";
    align-items: center;
    gap: 4px 10px;
    padding: 16px 16px 20px;
  }
  .scard + .scard { margin-top: 34px; }
  .scard + .scard::before { top: -24px; border-width: 11px 9px 0 9px; }
  .scard__num { grid-area: num; justify-self: start; min-width: 0; font-size: 15px; padding: 3px 10px; }
  .scard__img { grid-area: img; width: 92px; height: 92px; margin-right: 0; }
  .scard__img img { width: 74px; }
  .scard__ttl { grid-area: ttl; font-size: 19px; padding-bottom: 8px; }
  .scard__text { grid-area: text; margin-top: 0; font-size: 12.5px; line-height: 1.7; }
  .scard__text br { display: none; }
  .scard__body { display: contents; }

  /* --- FAQ --- */
  .faq { padding: 36px 0 44px; }
  .faq__ttl { margin-bottom: 24px; }
  .faq__ttl-en { font-size: 42px; }
  .faq__ttl-ja { font-size: 21px; }
  .faq__list { gap: 10px; }
  .qa__q { gap: 10px; padding: 14px 16px; }
  .qa__mark { width: 18px; font-size: 20px; }
  .qa__q .qa__text { font-size: 13.5px; }
  .qa__toggle { width: 15px; }
  .qa__a { gap: 10px; padding: 0 16px 16px; }
  .qa__a .qa__text { font-size: 13.5px; }

  /* --- 会社概要 --- */
  .company { padding: 36px 0 44px; }
  .company__ttl { gap: 12px; }
  .company__ttl-en { font-size: 18px; }
  .company__ttl-ja { font-size: 17px; }
  .company__table { margin-top: 22px; }
  .company__table th, .company__table td { padding: 8px 12px; font-size: 12.5px; }
  .company__table th { width: 96px; }

  /* --- footer --- */
  .footer { padding: 18px 20px; }
  .footer__copy { font-size: 11px; }
  body { padding-bottom: 74px; }

  /* --- 固定CTA --- */
  .fixedcta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: var(--yellow-bg);
  }
  .fixedcta__btn {
    position: relative;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 6px 22px 6px 10px;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
  }
  .fixedcta__btn--mail { background: linear-gradient(180deg, #E60000 0%, #8B0000 100%); }
  .fixedcta__btn--tel  { background: linear-gradient(180deg, #009BFF 0%, #0035FF 100%); }
  .fixedcta__icon { flex: none; width: 22px; }
  .fixedcta__btn--tel .fixedcta__icon { width: 19px; }
  .fixedcta__icon svg { display: block; width: 100%; height: auto; }
  .fixedcta__arrow { position: absolute; top: 50%; right: 10px; width: 8px; translate: 0 -50%; }
  .fixedcta__arrow svg { display: block; width: 100%; height: auto; }

  /* --- 仮審査受付フォーム --- */
  .entry { padding: 30px 0 25px; }
  .entry__ttl { gap: 16px; }
  .entry__ttl-lead { font-size: 19px; padding: 4px 0; }
  .entry__ttl-main { font-size: 34px; }
  .entry__ttl-main::before { -webkit-text-stroke-width: 6px; }
  .entry__lead { margin-top: 16px; font-size: 13.5px; line-height: 1.7; }
  .entry__lead br { display: none; }
  .entry__card { margin-top: 22px; padding: 20px 12px 22px; }
  .fm__row + .fm__row { margin-top: 10px; }
  .fm__q { gap: 8px; margin-bottom: 8px; font-size: 15px; }
  .fm__num { width: 26px; height: 26px; font-size: 15px; }
  .fm__label { gap: 8px; margin-bottom: 6px; font-size: 14px; }
  .fm__req { padding: 1px 7px; font-size: 11px; }
  .fm__input, .fm__select select { height: 40px; padding: 0 14px; font-size: 16px; }
  .fm__select select { padding-right: 54px; }
  .fm__select::before { right: 42px; }
  .fm__select::after { right: 15px; border-width: 8px 7px 0 7px; }
  .fm__error { font-size: 12.5px; }
  .fm__foot { margin-top: 18px; padding-top: 20px; }
  .fm__btn { width: 100%; min-height: 55px; padding: 8px 40px; font-size: 18px; }
  .fm__btn-arrow { right: 20px; width: 10px; }

  /* --- サンクスページ --- */
  .thanks { padding: 30px 0 21px; }
  .thanks .l-inner { padding-inline: 14px; }
  .thanks__card { padding: 24px 16px 26px; }
  .thanks__ttl { font-size: 19px; }
  .thanks__body { margin-top: 20px; font-size: 13.5px; }
  .thanks__body p + p { margin-top: 18px; }
  .thanks__info { margin-top: 24px; padding-top: 24px; font-size: 13.5px; }
  .thanks__logo { margin-top: 16px; }
  .thanks__logo img { width: 148px; }
  .is-thanks { padding-bottom: 0; }

  /* --- button (SP) --- */
  .btn { min-height: 66px; padding: 6px 34px 6px 12px; border-width: 2px; }
  .btn__main { font-size: 20px; gap: 8px; }
  .btn__icon { width: 26px; }
  .btn--tel .btn__icon { width: 21px; }
  .btn__sub { font-size: 13px; gap: 10px; }
  .btn__note { font-size: 12px; margin-top: 1px; }
  .btn__arrow { right: 14px; width: 10px; }
}

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
