@charset "UTF-8";
/* =========================================================
   仲介手数料0円チェック LP — スミノエリノベ
   DESIGN_SPEC.md / IMPLEMENTATION_GUIDE.md 準拠
   ========================================================= */

/* ---------- 1. カラー・トークン ---------- */
:root {
  --navy-900: #002B61;
  --navy-800: #073B75;
  --navy-700: #0D4A8A;
  --text-main: #062A5A;
  --text-body: #333333;
  --white: #FFFFFF;
  --gray-050: #F8FAFC;
  --gray-100: #F2F4F7;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --blue-050: #F5FBFF;
  --blue-100: #EAF7FF;
  --cream-050: #FFFBF1;
  --cream-100: #FFF9E9;
  --yellow: #FFD400;
  --yellow-deep: #F6C800;
  --red: #ED1C24;
  --red-deep: #D9151D;
  --line-green: #06B83F;
  --line-green-hover: #079F38;

  --wrap: 1180px;
  --pad: 32px;
  --sec-pad: 80px;
  --card-gap: 16px;
  --radius-card: 12px;
  --radius-cta: 18px;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, .08);
  --border: 1px solid var(--gray-200);

  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-num: "Noto Sans JP", Arial, Helvetica, -apple-system, sans-serif;
}

/* ---------- 2. リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text-body);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
a { color: inherit; }
b, strong { font-weight: 900; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--navy-700);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.pc-only { display: inline; }
.sp-br { display: none; }

/* ---------- 3. LINE CTAボタン ---------- */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--line-green);
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  border-radius: var(--radius-cta);
  transition: background-color .2s ease, transform .2s ease;
}
.btn-line:hover { background: var(--line-green-hover); }
.btn-line:active { transform: translateY(1px); }

.btn-line__icon { flex: none; display: block; }
.btn-line__icon svg { width: 100%; height: auto; }
.btn-line__label { text-align: left; }
.btn-line__arrow { flex: none; width: 26px; }

/* ヘッダー内の小サイズ */
.btn-line--sm {
  gap: 10px;
  padding: 10px 18px;
  font-size: 15px;
  border-radius: 12px;
}
.btn-line--sm .btn-line__icon { width: 32px; }
.btn-line--sm .btn-line__label { white-space: nowrap; }

/* セクション内の大サイズ */
.btn-line--lg {
  width: min(720px, 100%);
  min-height: 64px;
  padding: 14px 28px;
  font-size: 22px;
  border-radius: 22px;
  box-shadow: 0 6px 0 rgba(4, 122, 43, .45), 0 10px 24px rgba(0, 0, 0, .16);
}
.btn-line--lg .btn-line__icon { width: 40px; }

.btn-line--hero { width: min(760px, 100%); }

.sec-cta { margin-top: 40px; text-align: center; }

/* ---------- 4. ヘッダー ---------- */
.site-header {
  background: var(--navy-900);
  color: #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding-block: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  text-decoration: none;
  color: #fff;
}
.brand__mark { width: 30px; flex: none; }
.brand__text { display: block; }
.brand__name {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .02em;
}
.brand__sub {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .34em;
  line-height: 1.4;
  color: rgba(255, 255, 255, .72);
}

.site-header__lead {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .28);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- 5. ファーストビュー ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fdfdfd;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .93) 42%, rgba(255, 255, 255, .68) 62%, rgba(255, 255, 255, .42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, 0) 30%);
}
.hero__skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  opacity: .32;
}
.hero__skyline svg { width: 100%; height: 100%; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
  padding-block: 40px 64px;
}

/* リボン */
.ribbon {
  display: inline-block;
  position: relative;
  padding: 9px 42px 9px 22px;
  background: var(--yellow);
  color: var(--text-main);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .01em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%);
}

/* 見出し */
.hero__title {
  margin-top: 14px;
  color: var(--text-main);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.hero__title-1 {
  display: block;
  font-size: 48px;
}
.hero__title-2 {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  position: relative;
  margin-top: 2px;
}
.hero__title-3 {
  font-size: 48px;
  padding-bottom: 12px;
  white-space: nowrap;
}

.zero {
  display: inline-flex;
  align-items: baseline;
  color: var(--red);
  font-family: var(--font-num);
  font-size: 112px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
}
.zero__yen {
  font-size: .58em;
  letter-spacing: 0;
  margin-left: .02em;
}

.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.spark { position: absolute; }
.spark--l { left: -28px; top: 22px; width: 44px; }
.spark--r { left: 176px; top: 14px; width: 76px; }

/* 比較カード */
.compare {
  margin-top: 20px;
  max-width: 560px;
  background: var(--white);
  border: 2px solid var(--navy-900);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.compare__head {
  background: var(--navy-900);
  color: #fff;
  padding: 9px 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
}
.compare__head b { color: var(--yellow); font-size: 20px; }
.compare__body { padding: 16px 18px 14px; }
.compare__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.compare__col { text-align: center; }
.compare__label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
}
.compare__price {
  color: var(--text-main);
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}
.compare__price b { font-size: 44px; letter-spacing: -.02em; }
.compare__price small { font-size: 11px; font-weight: 700; }
.compare__note {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.4;
}
.compare__arrow { width: 42px; }
.compare__tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  padding: 2px 14px;
  border-radius: 4px;
}
.compare__price--zero {
  color: var(--red);
  font-size: 34px;
  margin-top: 2px;
  line-height: 1;
}
.compare__price--zero b { font-size: 60px; letter-spacing: -.04em; }
.compare__price--zero small { font-size: 11px; }
.compare__result {
  margin-top: 10px;
  padding-top: 10px;
  border-top: var(--border);
  text-align: center;
  color: var(--text-main);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}
.compare__result b {
  color: var(--red);
  font-family: var(--font-num);
  font-size: 30px;
}

/* メリット3つ */
.merits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  max-width: 560px;
}
.merits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-inline: 6px;
  border-left: 1px solid rgba(6, 42, 90, .18);
  text-align: center;
}
.merits__item:first-child { border-left: 0; }
.merits__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy-900);
}
.merits__icon svg { width: 28px; }
.merits__icon--text {
  color: var(--yellow);
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.merits__text {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

/* 右カラム */
.hero__side {
  position: relative;
  padding-top: 6px;
}

/* 丸バッジ */
.badge-round {
  position: absolute;
  top: 0;
  left: 6px;
  z-index: 2;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, .85), 0 8px 22px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #fff;
  text-align: center;
  transform: rotate(-4deg);
}
.badge-round__1 { font-size: 15px; font-weight: 800; line-height: 1.2; }
.badge-round__2 {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.badge-round__2 b { font-family: var(--font-num); font-size: 38px; letter-spacing: -.02em; }
.badge-round__3 { font-size: 13px; font-weight: 800; line-height: 1.35; margin-top: 3px; }
.badge-round__icon { width: 30px; margin-top: 4px; }

/* スマホモック */
.phone {
  width: min(300px, 100%);
  margin-left: auto;
  margin-top: 74px;
}
.phone__frame {
  position: relative;
  padding: 12px;
  background: #22252B;
  border-radius: 38px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32), inset 0 0 0 2px #3A3E46;
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 22px;
  background: #22252B;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  background: #B8CBEA;
  border-radius: 28px;
  padding: 10px 12px 16px;
  min-height: 470px;
  overflow: hidden;
}
.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  margin-bottom: 16px;
  color: #33415C;
  font-size: 11px;
  font-weight: 700;
}
.phone__icons { width: 40px; }
.phone__time { font-family: var(--font-num); }

.chat { display: flex; flex-direction: column; gap: 10px; }
.chat__bubble {
  position: relative;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
  color: #1B2430;
}
.chat__bubble--user {
  align-self: flex-end;
  max-width: 88%;
  background: #DFF5C9;
  border-top-right-radius: 3px;
}
.chat__bubble--user::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7px;
  border: 7px solid transparent;
  border-top-color: #DFF5C9;
  border-right: 0;
}
.chat__card {
  align-self: flex-end;
  width: 88%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.chat__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.chat__card-body { padding: 9px 11px 11px; }
.chat__card-name { font-size: 13px; font-weight: 800; color: #1B2430; line-height: 1.4; }
.chat__card-price { font-size: 13px; font-weight: 800; color: #1B2430; line-height: 1.5; }
.chat__card-url {
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 500;
  color: #98A2B3;
  line-height: 1.4;
  word-break: break-all;
}
.chat__reply { display: flex; align-items: flex-start; gap: 7px; }
.chat__avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
}
.chat__avatar svg { width: 17px; }
.chat__bubble--shop {
  background: #fff;
  border-top-left-radius: 3px;
  max-width: calc(100% - 40px);
}
.chat__bubble--shop::after {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  border: 7px solid transparent;
  border-top-color: #fff;
  border-left: 0;
}

/* ---------- 6. セクション共通見出し ---------- */
.sec-title {
  text-align: center;
  color: var(--text-main);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .01em;
}
.sec-title em { font-style: normal; color: var(--red); }
.sec-title em.yellow { color: var(--yellow); }
.sec-title em.red { color: var(--red); }
.sec-title em.mark {
  background: linear-gradient(transparent 76%, rgba(255, 212, 0, .95) 76%);
}
.sec-title--light { color: #fff; }

.sec-title--deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.deco-line { flex: none; width: 60px; }
.deco-line--l { transform: rotate(-7deg); }
.deco-line--r { transform: rotate(7deg); }

/* ---------- 7. 3STEP ---------- */
.steps {
  background: var(--blue-100);
  padding-block: var(--sec-pad);
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr minmax(206px, 254px);
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
}
.steps__flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  gap: 8px;
  align-items: stretch;
}
.steps__arrow {
  align-self: center;
  width: 22px;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 14px 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.step-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 22px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 6px;
  white-space: nowrap;
}
.step-card__title {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}
.step-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 16px auto 14px;
}
.step-card__icon svg { width: 100%; height: auto; }
.step-card__note {
  margin-top: auto;
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.send-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.send-card__head {
  background: var(--navy-900);
  color: #fff;
  padding: 11px 12px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}
.send-card__list {
  flex: 1 1 auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.send-card__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}
.send-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--line-green);
  border-bottom: 3px solid var(--line-green);
  transform: rotate(-45deg);
}
.send-card__foot {
  padding: 11px 12px;
  background: var(--gray-100);
  text-align: center;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

/* ---------- 8. 料金比較（Savings） ---------- */
.savings {
  background: var(--cream-100);
  padding-block: var(--sec-pad);
}
.savings__grid {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 24px;
  align-items: start;
  margin-top: 40px;
}
.savings__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.save-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.save-card__head {
  background: var(--navy-900);
  color: #fff;
  padding: 10px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.save-card__head b { font-family: var(--font-num); font-size: 21px; letter-spacing: -.01em; }
.save-card__head b span { font-size: 15px; letter-spacing: 0; }
.save-card__body {
  flex: 1 1 auto;
  padding: 16px 12px 14px;
  text-align: center;
}
.save-card__label {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}
.save-card__before {
  margin-top: 2px;
  color: var(--text-main);
  font-family: var(--font-num);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}
.save-card__before b { font-size: 42px; letter-spacing: -.02em; }
.save-card__before small { font-size: 10px; font-weight: 700; }
.save-card__down {
  margin: 10px 0 8px;
  padding-top: 12px;
  border-top: var(--border);
  text-align: center;
}
.save-card__down span { display: inline-block; width: 20px; }
.save-card__after {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: var(--red);
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.save-card__after span { font-family: var(--font-jp); font-size: 13px; font-weight: 800; }
.save-card__after b { font-size: 46px; letter-spacing: -.03em; }
.save-card__foot {
  background: var(--yellow);
  color: var(--text-main);
  padding: 10px 8px;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
}

.savings__aside {
  position: relative;
  padding-top: 24px;
  text-align: center;
}
.savings__balloon {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}
.savings__coins { display: block; width: 190px; margin: -18px auto 0; }

.savings__disclaimer {
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

/* ---------- 9. なぜ0円になるのか ---------- */
.why {
  position: relative;
  background: var(--navy-900);
  padding-block: var(--sec-pad);
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.why > .wrap { position: relative; }
.why__lead {
  margin-top: 22px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}
.why__lead b { font-weight: 900; }
.why__zero {
  color: var(--red);
  font-family: var(--font-num);
  font-size: 24px;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--card-gap);
  align-items: stretch;
  margin-top: 32px;
}
.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 12px 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.why-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--cream-100);
}
.why-card__icon svg { width: 46px; }
.why-card__text {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.why-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 22px 20px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.why-note__head {
  color: var(--text-main);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}
.why-note__body {
  padding-top: 12px;
  border-top: var(--border);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

/* ---------- 10. 代表者紹介・会社情報 ---------- */
.rep { background: var(--white); padding-block: var(--sec-pad); }
.rep__inner {
  display: grid;
  grid-template-columns: 250px 1fr 300px;
  gap: 36px;
  align-items: start;
}
.rep__photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.rep__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% 18%;
}
.rep__title {
  color: var(--text-main);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
}
.rep__text {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}
.rep__text + .rep__text { margin-top: 6px; }
.rep__sign {
  margin-top: 24px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}
.rep__sign b { font-size: 17px; }

.company {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 34px;
  border-left: var(--border);
}
.company__row dt {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}
.company__icon { width: 22px; flex: none; }
.company__row dd {
  margin-top: 3px;
  padding-left: 31px;
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

/* ---------- 11. FAQ ---------- */
.faq { background: var(--white); padding-block: 0 var(--sec-pad); }
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: var(--card-gap);
  margin-top: 34px;
}
.faq-item { align-self: start; }

.faq-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 62px;
  padding: 14px 18px;
  text-align: left;
}
.faq-item__badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 800;
}
.faq-item__text {
  flex: 1 1 auto;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.faq-item__mark {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-item__mark::before,
.faq-item__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--navy-700);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}
.faq-item__mark::before { width: 18px; height: 2px; }
.faq-item__mark::after { width: 2px; height: 18px; }
.faq-item__q[aria-expanded="true"] .faq-item__mark::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__a {
  padding: 0 18px 16px 57px;
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}
.faq-item__a[hidden] { display: none; }

/* ---------- 12. 最終CTA ---------- */
.final {
  position: relative;
  background: var(--navy-900);
  padding-block: 44px;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.final__inner {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 224px;
  gap: 20px;
  align-items: center;
}
.final__seal {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px var(--yellow);
  color: var(--text-main);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  transform: rotate(-6deg);
}
.final__seal b { display: block; color: var(--red); font-size: 20px; }

.final__main { text-align: center; }
.final__title {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.final__title em {
  font-style: normal;
  color: #7BE38F;
  font-family: var(--font-num);
  font-size: 36px;
}
.final__tel {
  margin-top: 14px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.final__tel-lead { margin-right: 10px; }
.final__tel-note { font-weight: 500; white-space: nowrap; }
.final__tel a {
  color: #fff;
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, .45);
}

.final__side {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.final__phone { width: 58px; flex: none; }
.final__balloon {
  position: relative;
  flex: none;
  padding: 11px 14px;
  background: #fff;
  border-radius: 12px;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
.final__balloon::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #fff;
  border-left: 0;
}

/* ---------- 13. フッター ---------- */
.site-footer {
  background: var(--navy-900);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-block: 26px 30px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.brand--footer { justify-content: center; }
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
}
.site-footer__nav li { position: relative; padding-inline: 18px; }
.site-footer__nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .35);
}
.site-footer__nav a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.site-footer__nav a:hover { text-decoration: underline; }
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}
.site-footer__meta span { white-space: nowrap; }
.site-footer__meta span + span::before { content: "／"; }
.site-footer__copy {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 400;
}

/* ---------- 14. SP固定CTA ---------- */
.sticky-cta { display: none; }

/* =========================================================
   レスポンシブ
   ========================================================= */

/* ---- 中間PC：1024〜1179px ---- */
@media (min-width: 1024px) and (max-width: 1179px) {
  .steps__grid { grid-template-columns: 1fr 206px; }
  .step-card { padding-inline: 10px; }
  .rep__inner { grid-template-columns: 210px 1fr 258px; gap: 26px; }
  .company { padding-left: 24px; }
  .why__grid { grid-template-columns: 1fr 260px; }
  .savings__grid { grid-template-columns: 1fr 186px; }
  .savings__balloon { width: 150px; height: 150px; font-size: 15px; }
  .savings__coins { width: 168px; }
}

/* ---- Tablet：768〜1023px ---- */
@media (max-width: 1023px) {
  :root { --sec-pad: 64px; --pad: 24px; }

  .site-header__inner { min-height: 68px; }
  .site-header__lead { font-size: 13px; padding-left: 16px; }
  .btn-line--sm { font-size: 13px; padding: 9px 14px; }
  .btn-line--sm .btn-line__icon { width: 28px; }

  .hero__inner { grid-template-columns: 1fr; padding-block: 32px 52px; }
  .hero__side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
  }
  .badge-round { position: static; transform: rotate(-4deg); flex: none; }
  .phone { margin: 0; width: 280px; }

  .compare, .merits { max-width: none; }

  .steps__grid { grid-template-columns: 1fr; }
  .send-card { max-width: 560px; margin-inline: auto; width: 100%; }

  .savings__grid { grid-template-columns: 1fr; }
  .savings__aside {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
  }
  .savings__coins { margin: 0; width: 150px; }
  .savings__disclaimer { text-align: left; }

  .why__grid { grid-template-columns: 1fr; }

  .rep__inner { grid-template-columns: 210px 1fr; gap: 24px; }
  .company {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: var(--border);
  }

  .final__inner { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .final__seal { order: 2; }
  .final__main { order: 1; width: 100%; }
  .final__side { order: 3; }
}

/* ---- SP：〜767px ---- */
@media (max-width: 767px) {
  :root {
    --pad: 20px;
    --sec-pad: 56px;
    --card-gap: 14px;
  }

  body { font-size: 14px; }
  .pc-only { display: none; }
  .sp-br { display: inline; }

  /* ヘッダー */
  .site-header__inner {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 0;
    padding-block: 10px;
  }
  .brand__mark { width: 26px; }
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 7.5px; letter-spacing: .28em; }
  .site-header__lead {
    order: 3;
    flex-basis: 100%;
    padding-left: 0;
    border-left: 0;
    font-size: 11.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .88);
  }
  .btn-line--sm {
    margin-left: auto;
    gap: 7px;
    padding: 8px 12px;
    font-size: 11.5px;
    border-radius: 10px;
  }
  .btn-line--sm .btn-line__icon { width: 24px; }

  /* FV */
  .hero__bg > img { object-position: 70% 35%; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .92) 42%, rgba(255, 255, 255, .74) 72%, rgba(255, 255, 255, .6) 100%);
  }
  .hero__skyline { height: 74px; opacity: .4; }
  .hero__inner { padding-block: 22px 40px; }

  .ribbon {
    padding: 7px 30px 7px 14px;
    font-size: 15px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%);
  }
  .hero__title { margin-top: 10px; }
  .hero__title-1 { font-size: 34px; }
  .hero__title-3 { font-size: 34px; padding-bottom: 8px; }
  .zero { font-size: 86px; }
  .spark--l { left: -12px; top: 16px; width: 32px; }
  .spark--r { left: 136px; top: 12px; width: 58px; }

  .compare { margin-top: 16px; }
  .compare__head { font-size: 14px; padding: 8px 10px; }
  .compare__head b { font-size: 17px; }
  .compare__body { padding: 13px 12px 12px; }
  .compare__row { gap: 6px; }
  .compare__label { font-size: 12.5px; }
  .compare__price { font-size: 16px; }
  .compare__price b { font-size: 32px; }
  .compare__price small { font-size: 9px; }
  .compare__note { font-size: 9.5px; }
  .compare__arrow { width: 28px; }
  .compare__tag { font-size: 11.5px; padding: 2px 9px; }
  .compare__price--zero { font-size: 17px; }
  .compare__price--zero b { font-size: 42px; }
  .compare__result { font-size: 16px; margin-top: 8px; padding-top: 8px; }
  .compare__result b { font-size: 22px; }

  .merits { margin-top: 16px; }
  .merits__icon { width: 44px; height: 44px; }
  .merits__icon svg { width: 22px; }
  .merits__icon--text { font-size: 16px; }
  .merits__text { font-size: 12.5px; }

  .hero__side { gap: 14px; margin-top: 26px; flex-direction: column; }
  .badge-round { width: 158px; height: 158px; }
  .badge-round__1 { font-size: 13px; }
  .badge-round__2 { font-size: 16px; }
  .badge-round__2 b { font-size: 34px; }
  .badge-round__3 { font-size: 11.5px; }
  .phone { width: min(268px, 100%); }
  .phone__frame { padding: 10px; border-radius: 32px; }
  .phone__screen { min-height: 420px; border-radius: 24px; padding: 8px 10px 14px; }
  .chat__bubble { font-size: 12.5px; }
  .chat__card-name, .chat__card-price { font-size: 12px; }
  .chat__card-url { font-size: 10.5px; }

  /* 見出し */
  .sec-title { font-size: 24px; }
  .sec-title--deco { gap: 12px; }
  .deco-line { width: 38px; }

  /* 3STEP */
  .steps__grid { margin-top: 32px; gap: 14px; }
  .steps__flow {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .steps__arrow {
    justify-self: center;
    width: 26px;
    transform: rotate(90deg);
  }
  .step-card { padding: 26px 16px 18px; }
  .step-card__title { font-size: 16px; }
  .step-card__icon { width: 50px; height: 50px; margin: 12px auto 10px; }
  .step-card__note { font-size: 12px; }
  .send-card__head { font-size: 15px; }
  .send-card__list { padding: 14px 16px; gap: 10px; }
  .send-card__list li { font-size: 14px; }
  .send-card__foot { font-size: 12px; }

  .btn-line--lg {
    min-height: 60px;
    gap: 10px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 18px;
  }
  .btn-line--lg .btn-line__icon { width: 32px; }
  .btn-line--lg .btn-line__label { text-align: center; }
  .btn-line__arrow { width: 20px; }
  .sec-cta { margin-top: 28px; }

  /* 料金比較 */
  .savings__grid { margin-top: 30px; gap: 18px; }
  .savings__cards { grid-template-columns: 1fr; }
  .save-card { flex-direction: column; }
  .save-card__head { font-size: 13px; }
  .save-card__head b { font-size: 19px; }
  .save-card__body { padding: 14px 12px 12px; }
  .save-card__before b { font-size: 38px; }
  .save-card__after b { font-size: 42px; }
  .save-card__foot { font-size: 17px; }
  .savings__balloon { width: 132px; height: 132px; font-size: 14px; }
  .savings__coins { width: 118px; }
  .savings__disclaimer { font-size: 10.5px; }

  /* なぜ0円 */
  .why__lead { font-size: 14px; line-height: 1.85; text-align: left; }
  .why__lead br { display: none; }
  .why__zero { font-size: 19px; }
  .why__grid { margin-top: 24px; }
  .why__cards { grid-template-columns: 1fr; }
  .why-card {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 16px;
    text-align: left;
  }
  .why-card__icon { width: 56px; height: 56px; }
  .why-card__icon svg { width: 32px; }
  .why-card__text { font-size: 15px; }
  .why-note { padding: 18px 16px; }
  .why-note__head { font-size: 15.5px; }
  .why-note__body { font-size: 13px; }

  /* 代表 */
  .rep__inner { grid-template-columns: 1fr; gap: 20px; justify-items: center; }
  .rep__photo { width: min(230px, 70%); }
  .rep__body { width: 100%; }
  .rep__title { font-size: 21px; text-align: center; }
  .rep__text { font-size: 13.5px; line-height: 1.9; }
  .rep__sign { font-size: 13px; text-align: center; }
  .rep__sign b { font-size: 15px; }
  .company {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    padding-top: 18px;
  }
  .company__row dt { font-size: 14px; }
  .company__row dd { font-size: 13.5px; padding-left: 31px; }

  /* FAQ */
  .faq__grid { grid-template-columns: 1fr; margin-top: 26px; }
  .faq-item__q { min-height: 56px; padding: 13px 14px; gap: 10px; }
  .faq-item__badge { width: 23px; height: 23px; font-size: 12.5px; }
  .faq-item__text { font-size: 14px; }
  .faq-item__mark { width: 16px; height: 16px; }
  .faq-item__mark::before { width: 16px; }
  .faq-item__mark::after { height: 16px; }
  .faq-item__a { padding: 0 14px 14px 47px; font-size: 13.5px; }

  /* 最終CTA */
  .final { padding-block: 34px 32px; }
  .final__title { font-size: 21px; margin-bottom: 14px; }
  .final__title em { font-size: 26px; }
  .final__seal { width: 112px; height: 112px; font-size: 12px; }
  .final__seal b { font-size: 17px; }
  .final__tel { font-size: 12.5px; }
  .final__tel a { font-size: 18px; }
  .final__balloon { font-size: 12px; }
  .final__phone { width: 46px; }

  /* フッター */
  .site-footer { padding-bottom: 24px; }
  .site-footer__nav li { padding-inline: 12px; }
  .site-footer__nav a { font-size: 12.5px; }
  .site-footer__meta { font-size: 10.5px; gap: 0 2px; }
  .site-footer__copy { font-size: 11px; }

  /* SP固定CTA */
  body { padding-bottom: 86px; }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(0, 43, 97, .96);
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .18);
  }
  .btn-line--sticky {
    display: flex;
    width: 100%;
    min-height: 54px;
    gap: 10px;
    padding: 8px 14px;
    font-size: 16px;
    border-radius: 14px;
  }
  .btn-line--sticky .btn-line__icon { width: 28px; }
  .btn-line--sticky .btn-line__label { text-align: center; line-height: 1.35; }
}

/* ---- 小型SP：〜389px ---- */
@media (max-width: 389px) {
  :root { --pad: 16px; }
  .hero__title-1 { font-size: 30px; }
  .hero__title-3 { font-size: 30px; }
  .zero { font-size: 76px; }
  .spark--r { left: 122px; width: 54px; }
  .ribbon { font-size: 13.5px; }
  .compare__price b { font-size: 28px; }
  .compare__price--zero b { font-size: 38px; }
  .compare__result { font-size: 14.5px; }
  .compare__result b { font-size: 20px; }
  .merits__text { font-size: 11.5px; }
  .sec-title { font-size: 21px; }
  .btn-line--lg { font-size: 14.5px; }
  .btn-line--sticky { font-size: 14.5px; }
  .site-header__lead { font-size: 10.5px; }
  .btn-line--sm { font-size: 10.5px; padding: 7px 10px; }
}

/* ---- Large PC：1440px〜 ---- */
@media (min-width: 1440px) {
  :root { --pad: 48px; }
}

/* ---- 動きを減らす設定 ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}

/* ---- 印刷 ---- */
@media print {
  .sticky-cta { display: none !important; }
}
