:root {
  --blue: #0068bd;
  --blue-dark: #005fad;
  --blue-light: #00a9e8;
  --green: #81c600;
  --yellow: #ffea00;
  --ink: #111;
  --pale: #f2f7ff;
  --gray: #f5f5f5;
  --shadow: 0 4px 10px rgba(0, 55, 100, .18);
  --content: 1028px;
  --content-wide: 1174px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  background: #fff;
  padding-top: 68px;
  padding-bottom: 0;
}
body.is-menu-open { overflow: hidden; }
body.is-menu-open .fixed-cta { display: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
.section-width { width: min(var(--content), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 115px 0; }
.sp-only { display: none; }
section { scroll-margin-top: 68px; }

.site-header {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}
.site-header__inner {
  height: 100%;
  padding: 0 30px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__brand { display: flex; align-items: center; gap: 24px; font-weight: 800; }
.site-header__brand img { width: 271px; height: 60px; object-fit: contain; }
.site-header__brand span { font-size: 18px; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.site-nav a:hover { color: var(--blue); }
.menu-button { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  height: 656px;
  color: #fff;
  background: var(--blue);
  overflow: hidden;
}
.hero__visual {
  position: absolute;
  inset: 0;
  background: url("assets/hero-pc.png") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 150' preserveAspectRatio='none'%3E%3Cpath fill='%230068bd' d='M0 18 C250 45 750 45 1000 18 L1000 150 L0 150Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
}
.hero__card {
  position: absolute;
  z-index: 2;
  top: 47px;
  left: max(calc((100% - 1288px) / 2), 20px);
  width: 500px;
  min-height: 570px;
  color: #111;
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 9px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
  overflow: hidden;
}
.hero__card h1 {
  margin: 0;
  min-height: 118px;
  padding: 0 48px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--blue);
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
}
.hero-rate { width: 100%; margin: 0; padding: 18px 58px 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.hero-rate__label { box-sizing: border-box; width: 100px; min-height: 88px; padding: 0 7px 1px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--blue); border: 2px solid var(--blue); border-radius: 4px; text-align: center; font-size: 16px; font-weight: 900; line-height: 1.2; }
.hero-rate__label strong { display: block; margin-top: 5px; padding-top: 6px; border-top: 2px solid var(--blue); }
.hero-rate__label small { display: block; margin-top: 3px; color: var(--blue); font-size: 10px; font-weight: 900; }
.hero-rate__number { white-space: nowrap; text-align: right; font-size: 36px; font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.hero-rate__number strong { font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 90px; font-weight: 900; letter-spacing: -.02em; }
.hero-rate__number span { font-size: 36px; font-weight: 900; letter-spacing: -.04em; }
.hero-limit { display: flex; align-items: flex-start; justify-content: center; gap: 20px; margin: 0 40px; padding: 0 0 15px; border-bottom: 4px dotted #d8d8d8; }
.hero-limit span { flex: 1; text-align: center; font-size: 24px; font-weight: 900; white-space: nowrap; line-height: 1.1; }
.hero-limit span:first-child { border-right: 0; }
.hero-limit small { display: grid; min-height: 31px; min-width: 0; margin: 0 auto 2px; place-items: center; color: var(--blue); background: #fff; border: 2px solid var(--blue); border-radius: 3px; font-size: 15px; font-weight: 900; line-height: 1; }
.hero-limit strong { font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 60px; font-weight: 900; letter-spacing: -.02em; }
.hero__buttons { padding: 14px 40px 20px; display: grid; gap: 16px; }
.hero__buttons .action-button { min-height: 64px; font-size: 20px; }
.action-button {
  position: relative;
  min-height: 58px;
  padding: 12px 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 3px 4px rgba(0,0,0,.2);
}
.action-button--apply { color: #fff; background: var(--green); border: 3px solid #fff; }
.action-button--loan { color: var(--blue); background: #fff; border: 2px solid var(--blue); font-weight: 500; }
.action-button__icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); font-size: 26px; }
.action-button__icon {
  width: 48px;
  height: 34px;
  font-size: 0;
  color: currentColor;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.action-button__icon::before,
.action-button__icon::after {
  content: none;
}
.action-button--apply .action-button__icon {
  background-image: url("assets/icon-apply-white.svg");
}
.action-button--loan .action-button__icon {
  left: 27px;
  width: 32px;
  height: 32px;
  background-image: url("assets/icon-calculator-blue.svg");
}
.action-button__arrow {
  position: absolute; right: 16px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: url("assets/icon-arrow-circle-blue.svg") center / contain no-repeat;
  border-radius: 0; font-size: 0; line-height: 1;
}
.action-button__arrow::before {
  content: none;
}
.action-button--apply .action-button__arrow { background-image: url("assets/icon-arrow-circle-green.svg"); }
.action-button__label--sp {
  display: none;
}
.hero__prime {
  position: absolute;
  z-index: 3;
  top: 31px;
  left: max(calc((100% - 1288px) / 2 + 435px), 445px);
  width: 198px; height: 198px;
  padding: 34px 18px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-sizing: border-box;
  color: var(--blue);
  background: url("assets/prime-bubble.svg") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  text-align: center;
  line-height: 1.2;
}
.hero__prime small { color: #111; font-size: 16px; font-weight: bold; line-height: 1.3; }
.hero__prime strong { margin-bottom: 6px; color: var(--blue); font-size: 28px; line-height: 1.1; font-weight: bold;}
.hero__prime span { color: var(--blue); font-size: 16px; font-weight: bold; }
.hero__benefits {
  position: absolute;
  z-index: 3;
  right: max(calc((100% - 1280px) / 2), .5%);
  bottom: 18px;
  display: flex;
  transform: translateX(clamp(0px, calc((100vw - 1200px) * .5), 80px));
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
.hero__benefits span { min-width: 180px; padding: 0 26px; border-right: 2px solid rgba(255,255,255,.75); font-size: 24px; }
.hero__benefits span:first-child { font-size: 40px; }
.hero__benefits strong { font-size: 30px; font-weight: 900; }
.hero__benefits em { display: block; font-style: normal; }
.hero__benefits span:last-child { border-right: 0; }

.manga-section { padding: 140px 0 136px; background: var(--pale); }
.manga-card {
  position: relative;
  width: min(972px, calc(100% - 40px));
  padding: 91px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.manga-grid {
  width: 790px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 380px);
  gap: 30px;
}
.manga-panel {
  position: relative;
  width: 380px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #000;
  border: 2px solid #000;
  border-radius: 4px;
}
.manga-panel img { width: 100%; height: 100%; object-fit: cover; }
.manga-panel__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #000;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.speech-bubble {
  position: absolute; z-index: 2; top: -80px; left: -86px;
  width: 171px; height: 171px;
  display: grid; place-items: center;
  color: var(--yellow);
  background: url("assets/speech-bubble.svg") center / contain no-repeat;
  font-size: 22px; font-weight: 900; line-height: 1.2; text-align: center;
}
.speech-bubble::after { content: none; }

.about { padding: 72px 0 60px; text-align: center; }
.section-label {
  position: relative;
  width: 328px;
  min-height: 108px;
  margin: 0;
  padding: 0 24px 20px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: url("assets/section-label-bubble.png") center / contain no-repeat;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1;
}
.section-label::before,
.section-label::after { content: none; }
.about h2 { margin: 0 0 24px; color: var(--blue); font-size: 40px; }
.section-lead { margin-bottom: 70px; font-size: 18px; font-weight: 500; }
.use-grid { display: grid; grid-template-columns: repeat(4, 238px); justify-content: center; gap: 26px; }
.use-card {
  position: relative;
  min-height: 234px;
  padding: 44px 34px 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  color: #111; background: #fff; border: 3px solid var(--blue); border-radius: 12px; box-shadow: 0 6px 0 rgba(0,85,207,.3);
}
.use-card__check { position: absolute; top: -21px; width: 42px; height: 42px; display: block; overflow: hidden; color: transparent; background: url("assets/icon-check-blue.png") center / contain no-repeat; border-radius: 50%; font-size: 0; }
.use-card img { width: 101px; height: 101px; object-fit: contain; }
.use-card h3 { margin: 20px 0 0; font-size: 20px; line-height: 1; }

.features { padding: 105px 0 42px; color: #fff; background: var(--blue); text-align: center; }
.features__eyebrow { margin-bottom: 10px; font-size: 20px; font-weight: 700; }
.features h2 {
  width: min(483px, 100%);
  height: 109px;
  margin: 0 auto 65px;
  background: url("assets/features-heading-4.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 1;
}
.features h2 small,
.features h2 strong {
  display: none;
}
.features h2::before,
.features h2::after {
  content: none;
}
.feature-grid { display: grid; grid-template-columns: repeat(2, 400px); justify-content: center; gap: 50px 56px; padding: 0; }
.feature-card {
  position: relative;
  width: 400px; min-height: 336px; padding: 42px 38px 28px;
  display: flex; flex-direction: column; align-items: center;
  color: #111; background: #fff; border: 3px solid var(--blue); border-radius: 10px; box-shadow: 0 5px 0 rgba(0,0,0,.25);
}
.feature-card__number {
  position: absolute; left: -28px; top: -28px;
  width: 77px; height: 77px; display: grid; place-items: center;
  color: var(--blue);
  background: url("assets/feature-bubble.svg") center / contain no-repeat;
  font-size: 24px;
  font-weight: bold;
}
.feature-card img { height: 130px; width: auto; object-fit: contain; margin-bottom: 15px; }
.feature-card small { font-weight: 700; font-size: 18px;}
.feature-card__copy { margin: 10px 0 0; font-size: 22px; font-weight: 700; line-height: 1.5; }
.feature-card__copy strong { color: var(--blue-light); font-size: 27px; }
.feature-card__split { width: 100%; display: grid; grid-template-columns: 192px 127px; justify-content: center; gap: 14px; }
.feature-card__split p { margin: 10px 0 0; font-size: 24px; font-weight: 700; line-height: 1; white-space: nowrap; }
.feature-card__split p + p { border-left: 0; }
.feature-card__split span { min-height: 30px; margin-bottom: 10px; padding: 0 12px; display: grid; place-items: center; color: #fff; background: var(--blue-light); border-radius: 4px; font-size: 18px; font-weight: 500; letter-spacing: .05em; }
.feature-card__split strong { color: var(--blue-light); font-size: 36px; line-height: 1; }

.rate { padding: 55px 0 54px; background: var(--pale); }
.rate-heading {
  position: relative;
  min-height: 200px;
  margin-bottom: 60px;
  padding: 75px 40px 0;
  background: transparent;
  text-align: center;
  filter: drop-shadow(0 0 10px rgba(0, 85, 207, .16));
}
.rate-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #bdd6e8;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.rate-heading::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  background: #fff;
  clip-path: polygon(23px 0, calc(100% - 23px) 0, 100% 23px, 100% calc(100% - 23px), calc(100% - 23px) 100%, 23px 100%, 0 calc(100% - 23px), 0 23px);
}
.rate-heading > * { position: relative; z-index: 1; }
.rate-heading > span { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 486px; min-height: 53px; padding: 17px 10px 0; color: var(--yellow); background: var(--blue); clip-path: polygon(0 0,100% 0,88% 100%,12% 100%); font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 21px; font-weight: 700; line-height: 1; }
.rate-heading p { margin-bottom: 0px; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 30px; font-weight: 700; line-height: 1; }
.rate-heading h2 { margin: 0; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 50px; font-weight: 700; line-height: 1; }
.rate-heading h2 strong { font-size: 64px; font-weight: 700; }
.rate-heading h2 em { color: var(--blue); font-style: normal; }
.base-rate { min-height: 100px; margin-bottom: 25px; padding: 28px 78px; display: flex; align-items: center; justify-content: center; gap: 16px; background: #e9f2ff; font-weight: 700; }
.base-rate > span { font-size: 26px; line-height: 1.5; white-space: nowrap; }
.base-rate p { margin: 0; display: flex; align-items: flex-end; gap: 8px; font-size: 26px; line-height: 1.5; white-space: nowrap; }
.base-rate b { min-width: 142px; min-height: 43px; padding: 0 18px; display: inline-grid; place-items: center; background: #fff; border: 2px solid #111; border-radius: 4px; font-size: 24px; line-height: 1.3; }
.base-rate strong { font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 60px; font-weight: 900; line-height: 1; }
.rate-arrows { display: grid; grid-template-columns: 1fr 1fr; justify-items: center; }
.rate-arrows span { width: 0; height: 0; border-left: 23px solid transparent; border-right: 23px solid transparent; border-top: 25px solid var(--blue); }
.rate-arrows span:last-child { border-top-color: var(--blue-light); }
.rate-grid { display: grid; grid-template-columns: repeat(2, 500px); gap: 27px; margin-top: 30px; }
.rate-card { position: relative; overflow: visible; width: 500px; min-height: 616px; border-radius: 10px; background: #fff; }
.rate-card h3 { box-sizing: border-box; min-height: 129px; margin: 0; padding: 0 40px; display: grid; place-items: center; color: #fff; background: var(--blue); border: 2px solid var(--blue); border-bottom: 0; border-radius: 5px 5px 0 0; font-size: 26px; font-weight: 700; text-align: center; line-height: 1.5; }
.rate-card--standard { border: 2px solid var(--blue); }
.rate-card--prime { border: 5px solid var(--blue-light); box-shadow: 0 0 10px rgba(0,113,180,.4); }
.rate-card--prime h3 { min-height: 129px; margin: -5px -5px 0; padding: 0 40px; background: var(--blue-light); border: 5px solid var(--blue-light); border-bottom: 0; border-color: var(--blue-light); }
.rate-card__body { min-height: 487px; padding: 49px 45px 40px; text-align: center; }
.rate-card__body > small { font-size: 18px; font-weight: 700; line-height: 1.3; }
.rate-card__body > p { margin: 23px 0; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 38px; font-weight: 900; line-height: 1; }
.rate-card__body > p strong { color: var(--blue); font-size: 90px; font-weight: 900; letter-spacing: -3px; }
.rate-card--prime .rate-card__body > p strong { color: var(--blue-light); }
.rate-card__body > span { display: inline-block; min-width: 284px; padding: 17px 20px; background: #f2f2f2; border-radius: 50px; font-size: 20px; font-weight: 700; line-height: 1; }
.rate-card__link { position: relative; width: 406px; min-height: 68px; margin: 84px auto 0; padding: 0 70px; display: flex; align-items: center; justify-content: center; color: #fff; background: #333; border: 2px solid #fff; border-radius: 8px; box-shadow: 0 3.6px 3.6px rgba(0,0,0,.2); font-size: 20px; font-weight: 500; line-height: 1; }
.rate-card__link-icon {
  position: absolute;
  left: 21px;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  background: url("assets/icon-rate-conditions.svg") center / contain no-repeat;
}
.rate-card__link-icon::before,
.rate-card__link-icon::after {
  content: none;
}
.rate-card__link-arrow {
  position: absolute;
  right: 17px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  background: url("assets/icon-rate-conditions-arrow.svg") center / contain no-repeat;
}
.prime-label { min-width: 324px; color: var(--blue-light); background: rgba(0,75,183,.1) !important; border: 3px solid var(--blue-light); font-size: 24px !important; font-weight: 900 !important; }
.rate-card h4 { margin: 38px 0 24px; font-size: 18px; line-height: 1; }
.rate-card ul { width: 402px; margin: 0 auto; padding: 0; list-style: none; text-align: left; }
.rate-card li { display: flex; align-items: center; gap: 7px; font-size: 18px; font-weight: 500; line-height: 1; color: #333; }
.rate-card li + li { margin-top: 10px; }
.rate-card li::before { content: ""; display: block; flex: 0 0 22px; width: 22px; height: 22px; margin-right: 0; background: url("assets/icon-prime-condition.svg") center / contain no-repeat; }
.rate-card .note { display: block; margin-top: 22px; font-size: 12px; font-weight: 400; text-align: left; white-space: nowrap; }
.recommend-badge {
  position: absolute; z-index: 2; top: -43px; right: -64px;
  width: 126px; height: 126px;
  display: grid; place-items: center;
  color: #111;
  background: url("assets/recommend-badge.svg") center / contain no-repeat;
  font-size: 16px; font-weight: 900; line-height: 1.2; text-align: center;
}

.comparison { padding-bottom: 58px; text-align: center; }
.comparison .section-width { width: min(1028px, calc(100% - 40px)); }
.comparison__eyebrow { margin-bottom: 24px; font-size: 24px; font-weight: 700; line-height: 1; }
.comparison h2 {
  min-height: 75px;
  margin: 0 0 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.comparison h2 > span {
  width: 398px;
  min-height: 75px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  border: 3px dashed var(--blue);
  border-radius: 4px;
  font-weight: 700;
}
.comparison-title-word {
  display: inline-block;
  white-space: nowrap;
  transform: scaleX(.91);
  transform-origin: center;
}
.comparison-tables { width: 1028px; max-width: 100%; margin-inline: auto; display: grid; grid-template-columns: 578px 450px; }
.comparison-table { position: relative; min-width: 0; }
.comparison-table h3 { min-height: 69px; margin: 0; display: grid; place-items: center; background: #d9d9d9; font-size: 20px; font-weight: 500; line-height: 1.5; }
.comparison-table--dealer h3 { margin-left: 128px; border: 3px solid #fff; }
.comparison-table--bank::after { content: ""; position: absolute; z-index: 3; inset: 0; border: 5px solid var(--blue); pointer-events: none; }
.comparison-table--bank h3 { background: #fff; font-size: 24px; font-weight: 700; }
.comparison-row { min-height: 206px; display: grid; align-items: stretch; }
.comparison-table--dealer .comparison-row { grid-template-columns: 128px 450px; }
.comparison-table--bank .comparison-row { grid-template-columns: 1fr; }
.comparison-row b { display: grid; place-items: center; color: #fff; background: var(--blue); border: 3px solid #fff; font-size: 20px; font-weight: 500; line-height: 1.5; }
.comparison-table--bank .comparison-row b { display: none; }
.comparison-row p {
  position: relative;
  min-height: 206px;
  margin: 0;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow: hidden;
  color: #333;
  background: #f2f2f2;
  border: 2px solid #fff;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.comparison-row p::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 45px;
  transform: translateX(-50%);
  pointer-events: none;
}
.comparison-table--dealer .comparison-row p::before {
  width: 133px;
  height: 116px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='133' height='116' viewBox='0 0 133 116'%3E%3Cpath d='M66.5 6 L126 110 H7 Z' fill='none' stroke='%23e0e0e0' stroke-width='10' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.comparison-table--bank .comparison-row p::before {
  width: 116px;
  height: 116px;
  border: 10px solid var(--blue);
  border-radius: 50%;
  opacity: .1;
}
.comparison-row strong,
.comparison-row small { position: relative; z-index: 1; width: 100%; display: block; }
.comparison-row strong { color: #000; font-size: 22px; font-weight: 500; line-height: 1.3; }
.comparison-row small { margin-top: 0; color: #333; font-size: 16px; font-weight: 500; line-height: 1.5; }
.comparison-table--bank .comparison-row p { background: #f2f7fd; }
.comparison-table--bank .comparison-row strong { color: var(--blue); font-size: 22px; font-weight: 700; }
.comparison-table--bank .comparison-row strong span { text-decoration: underline; text-decoration-thickness: .07em; text-underline-offset: .12em; }
.comparison__note { margin: 50px 0 0; font-size: 12px; font-weight: 400; line-height: 1; }

@media (min-width: 901px) {
  /* 左右の表を同じ行トラックに載せ、片側の文章量が増えても行がずれないようにする */
  @supports (grid-template-rows: subgrid) {
    .comparison-tables { grid-template-rows: repeat(6, auto); }
    .comparison-table {
      display: grid;
      grid-row: 1 / span 6;
      grid-template-rows: subgrid;
    }
    .comparison-table--dealer { grid-column: 1; }
    .comparison-table--bank { grid-column: 2; }
  }
}

.flow { padding-bottom: 62px; background: #f3f3f3; text-align: center; }
.flow__eyebrow { margin: 0; font-size: 20px; font-weight: 700; }
.flow h2 { position: relative; display: inline-block; margin: 0 0 30px; font-size: 46px; }
.flow h2::before,
.flow h2::after {
  content: "";
  position: absolute;
  top: -28px;
  width: 38px;
  height: 38px;
  background:
    linear-gradient(var(--blue), var(--blue)) 50% 0 / 4px 24px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 0 50% / 24px 4px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 50% / 24px 4px no-repeat;
  opacity: .9;
}
.flow h2::before { left: -70px; transform: rotate(-18deg); }
.flow h2::after { right: -70px; transform: rotate(18deg); }
.flow__subtitle { position: relative; margin-bottom: 70px; padding: 17px; color: #fff; background: var(--blue); border-radius: 8px; font-weight: 700; }
.flow__subtitle::after { content: ""; position: absolute; bottom: -18px; left: 50%; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 20px solid var(--blue); }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; }
.flow-card { position: relative; min-width: 0; }
.flow-card__number { position: absolute; left: -5px; top: 12px; color: #ddd; font-size: 35px; font-style: italic; }
.flow-card img { width: 218px; margin: auto; }
.flow-card h3 { min-height: 58px; margin: 20px -15px 12px; color: var(--blue); font-size: 16px; }
.flow-card p { min-height: 115px; font-size: 12px; line-height: 1.7; text-align: left; }
.flow-card p small { display: block; margin-top: 10px; }
.flow-card__actor { display: block; padding: 6px; background: #fff; border-radius: 20px; font-size: 12px; font-weight: 700; }
.flow-card__badge { position: absolute; top: 5px; right: -8px; width: 78px; height: 78px; display: grid; place-items: center; color: var(--yellow); background: var(--blue-light); border-radius: 50%; font-size: 13px; line-height: 1.3; }
.trial-cta { position: relative; min-height: 215px; margin-top: 100px; padding: 45px 250px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--blue); border: 10px double #fff; border-radius: 10px; box-shadow: 0 0 0 4px var(--blue); }
.trial-cta > div { width: 450px; }
.trial-cta p { margin-bottom: 15px; font-weight: 700; }
.trial-cta__car { position: absolute; left: 45px; width: 205px; }
.trial-cta__person { position: absolute; right: 20px; bottom: 0; width: 216px; }

@media (min-width: 901px) {
  .flow {
    padding: 139px 0 85px;
    background: #f2f2f2;
    text-align: center;
  }
  .flow__eyebrow {
    position: relative;
    margin: 0 0 22px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }
  .flow__eyebrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -55px;
    width: 93px;
    height: 37px;
    transform: translateX(-50%);
    background: url("assets/flow-heading-rays.svg") center / contain no-repeat;
  }
  .flow h2 {
    margin: 0 0 37px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }
  .flow h2::before,
  .flow h2::after { content: none; }
  .flow__subtitle {
    width: 1028px;
    min-height: 63px;
    margin: 0 auto 78px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
  }
  .flow__subtitle::after {
    bottom: -16px;
    left: 50%;
    width: 42px;
    height: 23px;
    margin-left: 0;
    border: 0;
    transform: translateX(-50%) rotate(180deg);
    background: url("assets/flow-subtitle-arrow.svg") center / 100% 100% no-repeat;
  }
  .flow-grid {
    width: 1028px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 218px);
    justify-content: center;
    gap: 52px;
  }
  .flow-card {
    position: relative;
    width: 218px;
    min-height: 456px;
    min-width: 0;
  }
  .flow-card__number {
    left: -5px;
    top: -1px;
    color: rgba(0,0,0,.1);
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    transform: skewX(-10deg);
  }
  .flow-card img {
    width: 218px;
    height: 218px;
    margin: 0 auto;
    object-fit: contain;
  }
  .flow-card h3 {
    min-height: 28px;
    margin: 40px -30px 21px;
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
  }
  .flow-card p {
    min-height: 73px;
    margin: 0 0 24px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
  }
  .flow-card p small {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.5;
  }
  .flow-card__actor {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 33px;
    padding: 0;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 50px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .flow-card:nth-child(even) .flow-card__actor { color: var(--blue); }
  .flow-card__badge {
    top: -26px;
    right: -21px;
    width: 99px;
    height: 99px;
    padding: 29px 8px 0;
    display: block;
    color: #fff;
    background: none;
    border-radius: 0;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    isolation: isolate;
  }
  .flow-card__badge::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url("assets/flow-badge-01.svg") center / contain no-repeat;
    transform: scaleX(-1);
  }
  .flow-card:nth-child(2) .flow-card__badge::before { background-image: url("assets/flow-badge-02.svg"); }
  .flow-card__badge span {
    color: var(--yellow);
    font-size: 20px;
    line-height: 1.1;
  }
  .trial-cta {
    width: 1028px;
    min-height: 210px;
    margin: 94px auto 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
  }
  .trial-cta::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 10px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 8px;
    pointer-events: none;
  }
  .trial-cta > div {
    position: relative;
    z-index: 2;
    width: 450px;
  }
  .trial-cta p {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }
  .trial-cta p::before,
  .trial-cta p::after {
    content: "";
    width: 18px;
    height: 23px;
    background: url("assets/flow-cta-slash-left.svg") center / contain no-repeat;
  }
  .trial-cta p::before { transform: scaleX(-1); }
  .trial-cta p::after { background-image: url("assets/flow-cta-slash-right.svg"); }
  .trial-cta .action-button {
    width: 450px;
    min-height: 76px;
    padding: 0 70px;
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0,0,0,.2);
    font-size: 22px;
    line-height: 1;
  }
  .trial-cta .action-button__icon {
    left: 22px;
    width: 42px;
    height: 42px;
  }
  .trial-cta .action-button__arrow {
    right: 19px;
    width: 38px;
    height: 38px;
  }
  .trial-cta__car {
    z-index: 2;
    left: 47px;
    top: 52px;
    width: 204px;
  }
  .trial-cta__person {
    z-index: 2;
    right: 36px;
    top: 0;
    bottom: auto;
    width: 216px;
  }
}

.overview { padding-bottom: 16px; }
.section-rule { position: relative; text-align: center; }
.section-rule::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 2px solid var(--blue); }
.section-rule span { position: relative; padding: 10px 35px; color: #111; background: #fff; border: 2px solid var(--blue); border-radius: 24px; font-weight: 700; }
.overview h2 { margin: 35px 0 65px; font-size: 44px; text-align: center; }
.overview-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.overview-cards article { min-height: 207px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; border: 2px solid var(--blue); border-radius: 6px; overflow: hidden; text-align: center; }
.overview-cards span { width: 100%; padding: 15px; color: #fff; background: var(--blue); font-size: 18px; }
.overview-cards small { margin-top: 24px; font-size: 25px; font-weight: 700; }
.overview-cards strong { margin: auto; color: var(--blue-light); font-size: 43px; line-height: 1.25; }
.overview-cards em { font-size: 22px; font-style: normal; }
.overview-date { margin: 35px 0 20px; font-size: 11px; text-align: right; }
.product-table { margin: 0; border-top: 1px solid #ddd; }
.product-table > div { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid #ddd; }
.product-table dt { padding: 30px 20px; display: grid; place-items: center; color: #fff; background: var(--blue); font-weight: 700; text-align: center; }
.product-table dd { margin: 0; padding: 30px; }
.product-table ul { margin: 0; padding-left: 20px; }
.product-table li::marker { color: var(--blue); }
.product-table small { font-size: 11px; }
.purpose-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.purpose-tags span { padding: 8px 14px; background: #f5f5f5; font-weight: 700; }
.product-table aside { padding: 15px; background: #f5f5f5; }
.inline-link-text { margin-top: 10px; }
.inline-link { color: var(--blue); font-weight: 700; text-decoration: underline; text-decoration-color: currentColor; }
.inline-link__icon { display: inline-block; width: 6px; height: 6px; margin-left: 5px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); vertical-align: 2px; }

@media (min-width: 901px) {
  .overview {
    padding: 90px 0;
    background: #fff;
  }
  .overview .section-width {
    width: 1028px;
  }
  .section-rule {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-rule::before {
    top: 25px;
    border-top: 2px solid var(--blue);
  }
  .section-rule span {
    width: 384px;
    min-height: 50px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 2px solid var(--blue);
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }
  .overview h2 {
    margin: 41px 0 74px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }
  .overview-cards {
    width: 1028px;
    margin-inline: auto;
    grid-template-columns: repeat(4, 242px);
    gap: 20px;
  }
  .overview-cards article {
    position: relative;
    min-height: 207px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #f2f7fd;
    border: 2px solid var(--blue);
    border-radius: 10px;
  }
  .overview-cards span {
    width: calc(100% + 4px);
    min-height: 52px;
    margin: -2px -2px 0;
    flex: 0 0 auto;
    padding: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
  }
  .overview-cards small {
    margin-top: 25px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
  }
  .overview-cards strong {
    margin: 10px 0 0;
    color: var(--blue-light);
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
  }
  .overview-cards em,
  .overview-cards__comma {
    font-size: 30px;
    font-style: normal;
    line-height: 1;
  }
  .overview-cards article:nth-child(n+3) strong {
    width: 100%;
    min-height: 85px;
    margin-top: 30px;
    display: grid;
    place-items: center;
    font-size: 38px;
    line-height: 1.2;
    text-align: center;
  }
  .overview-date {
    margin: 52px 0 14px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
  }
  .product-table {
    position: relative;
    width: 1028px;
    margin: 0;
    border-top: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
  }
  .product-table::before {
    content: none;
  }
  .product-table > div {
    position: relative;
    display: grid;
    grid-template-columns: 200px 828px;
    border-bottom: 0;
  }
  .product-table > div::after,
  .product-table > div:first-child::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    pointer-events: none;
  }
  .product-table > div::after {
    bottom: 0;
    border-bottom: 1px solid #ddd;
  }
  .product-table > div:first-child::before {
    top: 0;
    border-top: 1px solid #ddd;
  }
  .product-table > div:nth-child(1) { min-height: 72px; }
  .product-table > div:nth-child(2) { min-height: 168px; }
  .product-table > div:nth-child(3) { min-height: 229px; }
  .product-table > div:nth-child(4) { min-height: 214px; }
  .product-table > div:nth-child(5),
  .product-table > div:nth-child(6) { min-height: 106px; }
  .product-table > div:nth-child(7) { min-height: 140px; }
  .product-table dt {
    min-width: 0;
    min-height: 0;
    padding: 0 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .product-table dd {
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 30px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }
  .product-table > div:first-child dd {
    padding: 24px 30px;
    display: flex;
    align-items: center;
  }
  .product-table > div:nth-child(5) dd,
  .product-table > div:nth-child(6) dd,
  .product-table > div:nth-child(7) dd {
    padding-bottom: 18px;
  }
  .product-table > div:nth-child(2) dd {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-table dd strong {
    font-weight: 400;
  }
  .product-table > div:nth-child(4) dd strong {
    font-weight: 700;
  }
  .product-table dd p {
    margin: 0;
  }
  .product-table dd br {
    content: "";
    display: block;
    margin-top: 10px;
  }
  .product-table ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
  }
  .product-table li {
    position: relative;
    padding-left: 11px;
  }
  .product-table li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
  }
  .product-table li::marker {
    content: "";
  }
  .product-table small {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
  }
  .product-table > div:nth-child(4) dd p,
  .product-table > div:nth-child(4) dd ul {
    margin-top: 4px;
  }
  .purpose-tags {
    width: 769px;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .purpose-tags span {
    min-height: 31px;
    padding: 0 12px;
    display: grid;
    place-items: center;
    background: #f2f7fd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }
  .product-table aside {
    width: 769px;
    min-height: 76px;
    padding: 18px 16px 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.5;
  }
  .product-table aside br {
    display: block;
    margin-top: 4px;
  }
}

.contact { padding: 95px 0; background: var(--pale); }
.contact-card { width: min(var(--content-wide), calc(100% - 40px)); overflow: hidden; background: #fff; border-radius: 10px; box-shadow: var(--shadow); }
.contact-card__body { min-height: 258px; padding: 45px 106px 28px; display: flex; align-items: center; justify-content: space-between; }
.contact-card__body small { font-size: 22px; font-weight: 700; line-height: 1; }
.contact-card__body h2 { margin: 30px 0 0; color: var(--blue); font-size: 36px; line-height: 1.5; }
.contact-card__body img { width: 389px; image-rendering: auto; }
.contact-card__actions { padding: 37px 127px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: var(--blue); }
.contact-card__actions .action-button { min-height: 76px; font-size: 22px; }

.site-footer { padding: 37px 20px 0; text-align: center; }
.site-footer__links { display: flex; justify-content: center; gap: 30px; margin-bottom: 70px; font-size: 13px; }
.site-footer img { width: 320px; margin: auto; }
.site-footer address { margin-top: 10px; font-size: 11px; font-style: normal; }
.site-footer > small { margin-top: 80px; padding: 25px; display: block; color: #bbb; background: #f5f5f5; }
.external-link-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex: 0 0 12px;
  background: url("assets/icon-external-blue.svg") center / contain no-repeat;
}
.external-link-icon::before,
.external-link-icon::after {
  content: none;
}

.fixed-cta {
  position: fixed; z-index: 50; left: 0; right: 0; bottom: 0;
  min-height: 146px; padding: 20px max(calc((100% - 914px) / 2), 20px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  color: #fff; background: var(--blue-dark); box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.fixed-cta__item { position: relative; padding-top: 22px; }
.fixed-cta__item > span { position: absolute; z-index: 2; top: 0; left: 50%; transform: translateX(-50%); min-width: 260px; padding: 4px 20px; color: var(--blue); background: var(--yellow); border-radius: 25px; font-size: 18px; font-weight: 700; text-align: center; line-height: 1.3; }
.fixed-cta .action-button { min-height: 76px; font-size: 22px; }
.fixed-cta .action-button__icon { width: 42px; height: 42px; }
.fixed-cta__button-label { display: inline-block; }
.fixed-cta__label-break,
.fixed-cta__button-break { display: none; }

@media (min-width: 901px) {
  body {
    padding-bottom: 176px;
  }
  .fixed-cta {
    min-height: 146px;
    padding: 23px max(calc((100% - 914px) / 2), 20px);
    grid-template-columns: 450px 450px;
    justify-content: center;
    gap: 20px;
    background: #005fad;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
  }
  .fixed-cta__item {
    width: 450px;
    min-height: 100px;
    padding-top: 24px;
  }
  .fixed-cta__item > span {
    min-height: 41px;
    min-width: 0;
    padding: 9px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #0068bd;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
  }
  .fixed-cta__item:first-child > span {
    width: 254px;
    background-image: url("assets/fixed-cta-label-small.svg");
  }
  .fixed-cta__item:nth-child(2) > span {
    width: 328px;
    background-image: url("assets/fixed-cta-label-large.svg");
  }
  .fixed-cta .action-button {
    width: 450px;
    min-height: 76px;
    padding: 0 70px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    font-size: 22px;
    line-height: 1;
  }
  .fixed-cta .action-button__icon {
    left: 22px;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }
  .fixed-cta .action-button__arrow {
    right: 19px;
    width: 38px;
    height: 38px;
  }
  .contact {
    min-height: 598px;
    padding: 95px 0;
    background: #f2f7fd;
  }
  .contact-card {
    width: 1174px;
    min-height: 408px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 55, 100, .18);
  }
  .contact-card__body {
    min-height: 258px;
    padding: 45px 106px 28px;
    justify-content: flex-start;
    gap: 20px;
  }
  .contact-card__body > div {
    width: 540px;
    flex: 0 0 540px;
    text-align: center;
  }
  .contact-card__body small {
    display: block;
    width: 404px;
    height: 19px;
    margin: 22px 0 0 56px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }
  .contact-card__body h2 {
    width: 540px;
    margin: 30px 0 0;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .contact-card__body img {
    width: 389px;
    height: 184px;
    flex: 0 0 389px;
    object-fit: contain;
  }
  .contact-card__actions {
    min-height: 150px;
    padding: 37px 127px;
    grid-template-columns: 450px 450px;
    gap: 20px;
  }
  .contact-card__actions .action-button {
    width: 450px;
    min-height: 76px;
    padding: 0 70px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    font-size: 22px;
    line-height: 1;
  }
  .contact-card__actions .action-button__icon {
    left: 22px;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }
  .contact-card__actions .action-button__arrow {
    right: 19px;
    width: 38px;
    height: 38px;
  }
  .site-footer {
    min-height: 385px;
    padding: 89px 0 0;
    background: #fff;
    text-align: center;
  }
  .site-footer__links {
    width: 455px;
    min-height: 16px;
    margin: 0 auto 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 14px;
    line-height: 1;
  }
  .site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    white-space: nowrap;
  }
  .site-footer__links a:not(:last-child) {
    margin-right: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(0, 0, 0, .25);
  }
  .site-footer img {
    width: 321px;
    height: 70px;
    margin: 0 auto;
    object-fit: contain;
  }
  .site-footer address {
    width: 282px;
    margin-inline: auto;
    margin-top: 10px;
    font-size: 14px;
    line-height: 26.4px;
  }
  .site-footer > small {
    min-height: 70px;
    margin-top: 58px;
    padding: 0;
    display: grid;
    place-items: center;
    color: rgba(0, 0, 0, .2);
    background: #f2f2f2;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --content: 350px;
    --sp-content: min(350px, calc(100vw - 40px));
    --sp-inner: min(310px, calc(100vw - 80px));
  }
  html,
  body { max-width: 100%; overflow-x: hidden; }
  body { padding-top: 54px; padding-bottom: 118px; font-size: 14px; }
  .pc-only { display: none; }
  .sp-only { display: initial; }
  section { scroll-margin-top: 54px; }
  .section-width { width: min(var(--content), calc(100% - 40px)); }
  .section-pad { padding: 75px 0; }
  .about { padding: 32px 0 34px; }

  .site-header { height: 54px; box-shadow: none; }
  .site-header__inner { padding: 0 8px 0 20px; }
  .site-header__brand { gap: 10px; white-space: nowrap; }
  .site-header__brand img { width: 169px; height: 38px; }
  .site-header__brand span { font-size: 16px; font-weight: 800; letter-spacing: .02em; }
  .site-nav { display: none; }
  .menu-button {
    width: 38px; height: 38px; padding: 9px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    background: #fff; border: 1px solid var(--blue); border-radius: 4px;
  }
  .menu-button:focus,
  .menu-button:focus-visible { outline: none; box-shadow: none; }
  .menu-button span { width: 18px; height: 2px; background: var(--blue); border-radius: 2px; transition: .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; z-index: 60; inset: 54px 0 0;
    padding: 38px 22px 55px;
    display: block; overflow-y: auto;
    background: #fff;
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu__nav { display: grid; gap: 0; border-top: 2px dotted #d4d4d4; }
  .mobile-menu__nav a {
    min-height: 68px;
    padding: 0 13px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dotted #d4d4d4;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .01em;
  }
  .mobile-menu__nav span {
    width: 28px;
    height: 28px;
    display: block;
    background: url("assets/icon-arrow-circle-blue.svg") center / contain no-repeat;
    font-size: 0;
  }
  .mobile-menu__nav span::before {
    content: none;
  }
  .mobile-menu__actions { margin-top: 44px; display: grid; gap: 16px; }
  .mobile-menu__actions .action-button {
    min-height: 54px;
    padding: 10px 54px;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
  }
  .mobile-menu__actions .action-button--apply { border: 0; }
  .mobile-menu__actions .action-button--loan { border: 2px solid var(--blue); box-shadow: 0 3px 5px rgba(0, 80, 140, .25); }
  .mobile-menu__actions .action-button__icon {
    left: 16px;
    top: 50%;
    width: 48px;
    height: 34px;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mobile-menu__actions .action-button__icon::before,
  .mobile-menu__actions .action-button__icon::after {
    content: none;
  }
  .mobile-menu__actions .action-button--apply .action-button__icon {
    background-image: url("assets/icon-apply-white.svg");
  }
  .mobile-menu__actions .action-button--loan .action-button__icon {
    width: 32px;
    height: 32px;
    left: 20px;
    background-image: url("assets/icon-calculator-blue.svg");
  }
  .mobile-menu__actions .action-button__arrow {
    right: 15px;
    width: 28px;
    height: 28px;
    background: url("assets/icon-arrow-circle-blue.svg") center / contain no-repeat;
    border-radius: 0;
  }
  .mobile-menu__actions .action-button--apply .action-button__arrow {
    background-image: url("assets/icon-arrow-circle-green.svg");
  }
  .mobile-menu__actions .action-button__arrow::before {
    content: none;
  }
  .mobile-menu__links {
    margin-top: 58px;
    display: grid;
    gap: 21px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
  .mobile-menu__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .external-link-icon {
    position: relative;
    width: 12px;
    height: 12px;
    display: inline-block;
    flex: 0 0 12px;
    background: url("assets/icon-external-blue.svg") center / contain no-repeat;
  }
  .external-link-icon::before {
    content: none;
  }
  .external-link-icon::after {
    content: none;
  }

  .hero { height: 884px; overflow: visible; background: #fff; color: #111; }
  .hero__visual { height: 410px; background-image: url("assets/hero-sp.png"); background-size: cover; background-position: center top; }
  .hero::after { top: 287px; bottom: auto; height: 110px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 110' preserveAspectRatio='none'%3E%3Cpath fill='%230068bd' d='M0 0 C250 28 750 28 1000 0 L1000 110 L0 110Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat; }
  .hero__benefits { z-index: 4; left: 8px; right: 8px; bottom: auto; top: 316px; height: 68px; color: #fff; transform: none; }
  .hero__benefits span { min-width: 0; padding: 0 10px; flex: 1; font-size: 18px; line-height: 1.2; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .hero__benefits span:first-child { font-size: 28px; line-height: 1.1; }
  .hero__benefits strong { display: block; font-size: 20px; line-height: 1.1; }
  .hero__benefits em { line-height: 1.15; }
  .hero__benefits span:last-child em { font-size: 16px; line-height: 1.1; }
  .hero__card { top: 408px; left: 8px; width: calc(100% - 16px); height: auto; min-height: 0; border: 2px solid var(--blue); border-radius: 10px; box-shadow: 0 3px 5px rgba(0,0,0,.45); }
  .hero__card h1 { min-height: 86px; padding: 13px 15px 10px; display: grid; place-items: center; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 24px; font-weight: 900; line-height: 1.3; }
  .hero-rate { width: auto; margin: 0; align-items: flex-end; justify-content: space-between; gap: 10px; padding: 14px 24px 10px; }
  .hero-rate__label { width: 78px; min-height: 70px; padding: 0 5px 1px; border-width: 1.5px; border-radius: 3px; font-size: 13px; line-height: 1; }
  .hero-rate__label strong { margin-top: 5px; padding-top: 5px; border-top-width: 1px; font-size: 13px; }
  .hero-rate__label small { margin-top: 4px; font-size: 10px; }
  .hero-rate__number { font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 36px; font-weight: 900; line-height: 1; letter-spacing: -.06em; }
  .hero-rate__number strong { font-size: 86px; letter-spacing: -.03em; }
  .hero-rate__number span { font-size: 36px; letter-spacing: -.04em; }
  .hero-limit { display: grid; grid-template-columns: minmax(0, 1fr) auto; justify-content: space-between; gap: 18px; margin: 0 24px; padding: 0 0 13px; border-bottom: 3px dotted #d8d8d8; }
  .hero-limit span { min-width: 0; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 22px; line-height: 1; }
  .hero-limit small { display: grid; min-height: 24px; margin-bottom: 2px; color: var(--blue); background: #fff; border: 1.5px solid var(--blue); border-radius: 3px; font-family: "Noto Sans JP", sans-serif; font-size: 12px; }
  .hero-limit strong { font-size: 42px; letter-spacing: -.02em; }
  .hero__buttons { padding: 14px 24px 18px; gap: 10px; }
  .hero__buttons .action-button { min-height: 58px; font-size: 16px; border-radius: 7px; }
  .hero__prime { top: 165px; left: auto; right: 7px; width: 136px; height: 136px; padding: 23px 13px 12px; }
  .hero__prime small { font-size: 12px; }
  .hero__prime strong { margin-bottom: 4px; font-size: 20px; }
  .hero__prime span { font-size: 12px; }

  .action-button { min-height: 58px; padding: 11px 45px; }
  .action-button__icon { left: 17px; width: 32px; height: 32px; transform: translateY(-50%) scale(.76); transform-origin: left center; }
  .action-button__arrow { right: 12px; width: 27px; height: 27px; font-size: 0; }

  .manga-section { padding: 55px 0 70px; }
  .manga-section { height: 1365px; padding: 21px 0; }
  .manga-card { width: 350px; height: 1324px; padding: 33px 23px 27px; }
  .manga-grid { width: 304px; grid-template-columns: 304px; gap: 16px; }
  .manga-panel { width: 304px; }
  .manga-panel__number { width: 32px; height: 32px; font-size: 16px; }
  .speech-bubble {
    top: -58px;
    left: auto;
    right: -38px;
    width: 118px;
    height: 118px;
    isolation: isolate;
    background: none;
    font-size: 16px;
  }
  .speech-bubble::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("assets/speech-bubble.svg") center / contain no-repeat;
    transform: scaleX(-1);
  }

  .section-label { width: 182px; min-height: 60px; margin: 0; padding: 0 12px 12px; display: inline-grid; font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif; font-size: 16px; line-height: 1; }
  .about h2 { margin: 0 0 16px; color: var(--blue); font-size: 28px; font-weight: 700; line-height: 1.3; }
  .about h2::first-line { font-size: 35px; }
  .section-lead { margin-bottom: 43px; font-size: 16px; font-weight: 500; line-height: 1.8; white-space: nowrap; }
  .use-grid { grid-template-columns: repeat(2, 166px); justify-content: center; gap: 20px 14px; }
  .use-card { min-height: auto; padding: 44px 10px 25px; border-width: 2px; border-radius: 10px; box-shadow: 0 4px 0 rgba(0,85,207,.3); }
  .use-card__check { top: -15px; width: 30px; height: 30px; }
  .use-card img { width: 71px; height: 71px; }
  .use-card h3 { margin-top: 14px; font-size: 16px; line-height: 1; }

  .features { padding: 40px 0 40px; }
  .features__eyebrow { font-size: 13px; }
  .features h2 { width: min(320px, 100%); height: 72px; margin-bottom: 35px; }
  .feature-grid { grid-template-columns: 1fr; gap: 30px; padding: 0; }
  .feature-card { width: auto; height: auto; min-height: 249px; padding: 29px 25px 18px; }
  .feature-card__number { left: -12px; top: -12px; width: 61px; height: 61px; font-size: 20px; }
  .feature-card img { height: 112px; margin-bottom: 10px; }
  .feature-card small { font-size: 16px; }
  .feature-card__copy { font-size: 18px; }
  .feature-card__copy strong { font-size: 24px; }
  .feature-card__split { grid-template-columns: 1.45fr 1fr; gap: 8px; }
  .feature-card__split p { font-size: 18px; }
  .feature-card__split span { min-height: 22px; margin-bottom: 8px; padding: 0 6px; font-size: 14px; }
  .feature-card__split strong { font-size: 28px; }

  .rate { padding: 40px 0; }
  .rate-heading { min-height: 130px; margin-bottom: 20px; padding: 48px 15px 0; filter: drop-shadow(0 0 6px rgba(0, 85, 207, .14)); }
  .rate-heading::before { clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px); }
  .rate-heading::after { clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px); }
  .rate-heading > span { width: 280px; min-height: 37px; padding-top: 12px; clip-path: polygon(0 0,100% 0,90% 100%,10% 100%); font-size: 16px; }
  .rate-heading p { margin-bottom: 0%; font-size: 18px; line-height: 1; }
  .rate-heading h2 { font-size: 28px; line-height: 1; white-space: nowrap; }
  .rate-heading h2 strong { font-size: 42px; }
  .base-rate { position: relative; width: calc(100% + 2px); min-height: 126px; margin: 0 -1px 10px; padding: 24px 12px 25px; display: block; background: #e9f2ff; text-align: center; }
  .base-rate > span { display: block; margin-bottom: 18px; font-size: 18px; font-weight: 700; line-height: 1.4; white-space: nowrap; }
  .base-rate p { margin: 0; display: flex; align-items: flex-end; justify-content: center; gap: 5px; font-size: 18px; font-weight: 700; line-height: 1.4; white-space: nowrap; }
  .base-rate b { min-width: 80px; min-height: 35px; padding: 0 6px; display: inline-grid; place-items: center; border: 2px solid #111; border-radius: 4px; font-size: 16px; line-height: 1.3; }
  .base-rate strong { font-size: 44px; line-height: 1; }
  .rate-arrows { grid-template-columns: 1fr; gap: 430px; height: 465px; margin-bottom: -465px; }
  .rate-arrows span { border-left-width: 15px; border-right-width: 15px; border-top-width: 16px; }
  .rate-arrows span:last-child { display: none; }
  .rate-grid { grid-template-columns: 350px; justify-content: center; gap: 25px; margin-top: 30px; }
  .rate-card { width: 350px; min-height: 0; border-radius: 7px; }
  .rate-card h3 { min-height: 90px; padding: 0 30px; border-width: 1.4px; border-radius: 7px 7px 0 0; font-size: 20px; line-height: 1.4; }
  .rate-card--standard { border-width: 1.4px; }
  .rate-card--prime { border-width: 3.5px; box-shadow: 0 0 7px rgba(0,113,180,.4); }
  .rate-card--prime h3 { min-height: 88px; margin: -3.5px -3.5px 0; padding: 0 30px; border-width: 3.5px; border-bottom: 0; font-size: 20px; line-height: 1.4; }
  .rate-card__body { min-height: 0; padding: 33px 23px 39px; }
  .rate-card--standard .rate-card__body { height: auto; }
  .rate-card--prime .rate-card__body { height: auto; min-height: 343px; padding: 35px 23px 18px; }
  .rate-card__body > small { font-size: 16px; }
  .rate-card__body > p { margin: 16px 0; font-size: 28px; }
  .rate-card__body > p strong { font-size: 64px; letter-spacing: -2px; }
  .rate-card__body > span { min-width: 199px; padding: 12px 14px; font-size: 14px; }
  .rate-card__link { width: 290px; min-height: 52px; margin-top: 30px; padding: 0 44px; border-radius: 6px; font-size: 14px; line-height: 1; white-space: nowrap; box-shadow: 0 2.52px 2.52px rgba(0,0,0,.2); }
  .rate-card__link-icon { left: 15px; width: 26px; height: 26px; }
  .rate-card__link-arrow { right: 14px; width: 24px; height: 24px; }
  .prime-label { min-width: 226px; min-height: 36px; padding: 0 14px !important; display: inline-grid !important; place-items: center; font-size: 16px !important; border-width: 2.1px; }
  .rate-card h4 { margin: 26px 0 18px; font-size: 14px; }
  .rate-card ul { width: 304px; }
  .rate-card li { gap: 5px; font-size: 13px; line-height: 1; }
  .rate-card li + li { margin-top: 7px; }
  .rate-card li::before { flex-basis: 15.4px; width: 15.4px; height: 15.4px; }
  .rate-card .note { width: 304px; margin: 13px auto 0; font-size: 11px; line-height: 1.35; white-space: normal; }
  .recommend-badge { top: -24px; right: -30px; width: 86px; height: 86px; font-size: 12px; }

  .comparison .section-width { width: min(350px, calc(100% - 40px)); }
  .comparison__eyebrow { margin-bottom: 10px; font-size: 16px; font-weight: 700; line-height: 1; }
  .comparison { padding: 37px 0; }
  .comparison h2 {
    width: 316px;
    min-height: 44px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 26px;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0;
  }
  .comparison h2 > span {
    width: 204px;
    min-height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border-width: 1.8px;
    border-radius: 4px;
  }
  .comparison-title-word { transform: scaleX(.91); }
  .comparison-tables { width: 100%; grid-template-columns: 1fr; gap: 20px; }
  .comparison-table { width: 100%; }
  .comparison-table h3 { min-height: 48px; font-size: 16px; font-weight: 500; line-height: 1.5; }
  .comparison-table--dealer h3 { margin-left: 0; border: 1.8px solid #fff; }
  .comparison-table--bank::after { border-width: 3px; }
  .comparison-table--bank h3 { font-size: 16px; font-weight: 700; }
  .comparison-table--dealer .comparison-row,
  .comparison-table--bank .comparison-row { min-height: 130px; grid-template-columns: 76px minmax(0, 1fr); }
  .comparison-table--bank .comparison-row b { display: grid; }
  .comparison-row b { margin-left: 0; border-width: 1.8px; font-size: 14px; font-weight: 500; line-height: 1.5; }
  .comparison-row p {
    height: 130px;
    min-height: 130px;
    padding: 0 16px;
    gap: 16px;
    border-width: 1px;
  }
  .comparison-row p::before {
    display: block;
    width: 80px;
    height: 80px;
    top: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 7 L75 73 H5 Z' fill='none' stroke='%23e0e0e0' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .comparison-table--dealer .comparison-row p::before {
    width: 80px;
    height: 80px;
    top: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 7 L75 73 H5 Z' fill='none' stroke='%23e0e0e0' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .comparison-row strong { width: 222px; font-size: 16px; font-weight: 700; line-height: 1.3; }
  .comparison-row small { width: 242px; margin-top: 0; font-size: 12px; font-weight: 400; line-height: 1.5; }
  .comparison-table--bank .comparison-row p { padding: 0 16px; border-width: 1.2px; }
  .comparison-table--bank .comparison-row p::before {
    width: 80px;
    height: 80px;
    top: 25px;
    border-width: 6px;
    background: none;
    opacity: .1;
  }
  .comparison-table--bank .comparison-row strong {
    width: 226px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }
  .comparison-table--bank .comparison-row small { width: 242px; font-size: 12px; font-weight: 500; }
  .comparison-table--bank .comparison-row strong span { text-decoration-thickness: .07em; text-underline-offset: .12em; }
  .comparison__note { margin-top: 19px; font-size: 12px; font-weight: 400; line-height: 1.5; }

  .flow {
    padding: 40px 0 52px;
    background: #f2f2f2;
    text-align: center;
  }
  .flow .section-width { width: 350px; }
  .flow__eyebrow {
    position: relative;
    margin: 38px 0 13px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .flow__eyebrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -38px;
    width: 64px;
    height: 25px;
    transform: translateX(-50%);
    background: url("assets/flow-heading-rays.svg") center / contain no-repeat;
  }
  .flow h2 {
    margin: 0 0 20px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }
  .flow h2::before,
  .flow h2::after { content: none; }
  .flow__subtitle {
    width: 350px;
    min-height: 80px;
    margin: 0 auto 20px;
    padding: 0 26px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
  .flow__subtitle::after {
    bottom: -15px;
    left: 50%;
    width: 28px;
    height: 16px;
    margin-left: 0;
    border: 0;
    transform: translateX(-50%) rotate(180deg);
    background: url("assets/flow-subtitle-arrow.svg") center / 100% 100% no-repeat;
  }
  .flow-grid {
    width: 350px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .flow-card {
    position: relative;
    width: 350px;
    height: 207px;
    min-height: 207px;
    padding: 43px 0 0 157px;
    text-align: left;
  }
  .flow-card:nth-child(2) {
    height: 208px;
    min-height: 208px;
  }
  .flow-card:nth-child(3) {
    height: 195px;
    min-height: 195px;
    padding-top: 24px;
  }
  .flow-card:nth-child(4) {
    height: 186px;
    min-height: 186px;
  }
  .flow-card__number {
    left: 0;
    top: 19px;
    color: rgba(0,0,0,.1);
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    transform: skewX(-10deg);
  }
  .flow-card:nth-child(3) .flow-card__number { top: 0; }
  .flow-card img {
    position: absolute;
    left: 0;
    top: 43px;
    width: 134px;
    height: 134px;
    margin: 0;
    object-fit: contain;
  }
  .flow-card:nth-child(3) img { top: 24px; }
  .flow-card h3 {
    width: 193px;
    min-height: 0;
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }
  .flow-card:nth-child(3) h3 {
    width: 216px;
    margin-left: -11px;
  }
  .flow-card p {
    width: 193px;
    min-height: 0;
    margin: 0 0 18px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
  }
  .flow-card p small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
  }
  .flow-card__actor {
    position: absolute;
    left: 157px;
    top: 174px;
    width: 193px;
    min-height: 33px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #000;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }
  .flow-card:nth-child(2) .flow-card__actor { top: 175px; }
  .flow-card:nth-child(3) .flow-card__actor { top: 158px; }
  .flow-card:nth-child(4) .flow-card__actor { top: 153px; }
  .flow-card:nth-child(even) .flow-card__actor { color: var(--blue); }
  .flow-card__badge {
    left: 71px;
    right: auto;
    top: 0;
    width: 80px;
    height: 80px;
    padding: 23px 6px 0;
    display: block;
    color: #fff;
    background: none;
    border-radius: 0;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    isolation: isolate;
  }
  .flow-card__badge::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url("assets/flow-badge-01.svg") center / contain no-repeat;
    transform: scaleX(-1);
  }
  .flow-card:nth-child(2) .flow-card__badge::before { background-image: url("assets/flow-badge-02.svg"); }
  .flow-card__badge span {
    color: var(--yellow);
    font-size: 16px;
    line-height: 1.1;
  }
  .trial-cta {
    width: 352px;
    min-height: 158px;
    margin: 43px auto 0;
    padding: 0;
    display: block;
    overflow: visible;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
  }
  .trial-cta::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 4px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 8px;
    pointer-events: none;
  }
  .trial-cta > div {
    position: relative;
    z-index: 2;
    width: 290px;
    margin-inline: auto;
    padding-top: 27px;
  }
  .trial-cta p {
    position: relative;
    width: 290px;
    min-height: 38px;
    margin: 0 0 16px;
    padding: 0 30px;
    display: block;
    color: #fff;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }
  .trial-cta p::before,
  .trial-cta p::after {
    content: "";
    position: absolute;
    top: -2px;
    width: 22px;
    height: 43px;
    background: url("assets/flow-cta-slash-left.svg") center / contain no-repeat;
  }
  .trial-cta p::before {
    left: 0;
    transform: scaleX(-1);
  }
  .trial-cta p::after {
    right: 0;
    background-image: url("assets/flow-cta-slash-right.svg");
  }
  .trial-cta .action-button {
    width: 290px;
    min-height: 52px;
    padding: 0 44px;
    border: 3px solid #fff;
    border-radius: 6px;
    box-shadow: 0 2.52px 2.52px rgba(0,0,0,.2);
    font-size: 16px;
    line-height: 1;
  }
  .trial-cta .action-button__icon {
    left: 15px;
    width: 27px;
    height: 27px;
  }
  .trial-cta .action-button__arrow {
    right: 12px;
    width: 28px;
    height: 28px;
  }
  .trial-cta__car {
    z-index: 2;
    left: -10px;
    top: -29px;
    width: 83px;
  }
  .trial-cta__person {
    z-index: 2;
    right: -13px;
    top: 128px;
    bottom: auto;
    width: 94px;
  }

  .overview {
    padding: 28px 0 60px;
    background: #fff;
  }
  .overview .section-width {
    width: 350px;
  }
  .section-rule {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-rule::before {
    top: 18px;
    border-top: 1px solid var(--blue);
  }
  .section-rule span {
    width: 286px;
    min-height: 35px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--blue);
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .overview h2 {
    margin: 25px 0 18px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }
  .overview-cards {
    width: 350px;
    height: 300px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 170px);
    gap: 10px;
  }
  .overview-cards article {
    position: relative;
    width: 170px;
    height: 145px;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #f2f7fd;
    border: 1.4px solid var(--blue);
    border-radius: 7px;
    text-align: center;
  }
  .overview-cards span {
    width: calc(100% + 2.8px);
    min-height: 36.4px;
    margin: -1.4px -1.4px 0;
    flex: 0 0 auto;
    padding: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .overview-cards small {
    margin-top: 18px;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }
  .overview-cards strong {
    margin: 6px 0 0;
    color: var(--blue-light);
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
  }
  .overview-cards em,
  .overview-cards__comma {
    font-size: 20px;
    font-style: normal;
    line-height: 1;
  }
  .overview-cards article:nth-child(n+3) strong {
    width: 100%;
    min-height: 60px;
    margin-top: 21px;
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 1.2;
  }
  .overview-date {
    margin: 32px 0 11px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
  }
  .product-table {
    width: 350px;
    margin: 0;
    border: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
  }
  .product-table::before { content: none; }
  .product-table > div {
    display: block;
    border: 0;
  }
  .product-table > div::before,
  .product-table > div::after {
    content: none;
  }
  .product-table dt {
    width: 350px;
    min-height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .product-table dd {
    width: 350px;
    min-height: 0;
    margin: 0;
    padding: 20px;
    color: #000;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .product-table > div:nth-child(1) dd {
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
  }
  .product-table > div:nth-child(2) dd { height: 178px; }
  .product-table > div:nth-child(3) dd { height: 300px; }
  .product-table > div:nth-child(4) dd { height: 209px; }
  .product-table > div:nth-child(5) dd,
  .product-table > div:nth-child(6) dd { height: 124px; }
  .product-table > div:nth-child(7) dd { height: 177px; }
  .product-table > div:last-child dd {
    border-bottom: 0;
  }
  .product-table dd strong {
    font-weight: 400;
  }
  .product-table > div:nth-child(4) dd strong {
    font-weight: 700;
  }
  .product-table dd br {
    content: "";
    display: block;
    margin-top: 11px;
  }
  .product-table ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
  }
  .product-table li {
    position: relative;
    padding-left: 11px;
  }
  .product-table li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
  }
  .product-table li::marker {
    content: "";
  }
  .product-table small {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
  }
  .purpose-tags {
    width: 310px;
    height: 150px;
    margin: 0 0 19px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
  }
  .purpose-tags span {
    min-height: 30px;
    padding: 0 12px;
    display: grid;
    place-items: center;
    background: #f2f7fd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .product-table aside {
    width: 310px;
    height: 91px;
    padding: 18px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.5;
  }
  .product-table aside br {
    display: block;
    margin-top: 8px;
  }

  .contact {
    height: 480px;
    padding: 20px 0;
    background: #f2f7fd;
  }
  .contact-card {
    width: 350px;
    height: 440px;
    border-radius: 10px;
  }
  .contact-card__body {
    height: 276px;
    min-height: 276px;
    padding: 32px 0 0;
    display: block;
    text-align: center;
  }
  .contact-card__body > div {
    width: 315px;
    margin-inline: auto;
  }
  .contact-card__body small {
    width: 296px;
    height: 19px;
    margin: 0 auto;
    display: block;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }
  .contact-card__body h2 {
    width: 315px;
    margin: 21px auto 0;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
  }
  .contact-card__body img {
    width: 254px;
    margin: 4px auto 0;
  }
  .contact-card__actions {
    height: 164px;
    padding: 23px 30px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-card__actions .action-button--apply { order: 1; }
  .contact-card__actions .action-button--loan { order: 2; }
  .contact-card__actions .action-button {
    width: 290px;
    min-height: 52px;
    padding: 0 44px;
    border-radius: 6px;
    box-shadow: 0 2.52px 2.52px rgba(0, 0, 0, .2);
    font-size: 16px;
    line-height: 1;
  }
  .contact-card__actions .action-button__label--pc {
    display: none;
  }
  .contact-card__actions .action-button__label--sp {
    display: inline;
  }
  .contact-card__actions .action-button__icon {
    left: 15px;
    width: 26px;
    height: 26px;
    transform: translateY(-50%);
  }
  .contact-card__actions .action-button__arrow {
    right: 14px;
    width: 24px;
    height: 24px;
  }

  .site-footer {
    height: 412px;
    padding: 52px 0 0;
    background: #fff;
  }
  .site-footer__links {
    width: 390px;
    height: 116px;
    margin: 0 auto 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    font-size: 14px;
    line-height: 1;
  }
  .site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }
  .site-footer img {
    width: 285px;
    height: 62px;
    margin: 0 auto;
    object-fit: contain;
  }
  .site-footer address {
    width: 242px;
    margin: 15px auto 0;
    font-size: 12px;
    line-height: 26.4px;
    white-space: nowrap;
  }
  .site-footer > small {
    min-height: 58px;
    margin: 29px 0 0;
    padding: 0;
    display: grid;
    place-items: center;
    color: rgba(0, 0, 0, .2);
    background: #f2f2f2;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }

  .fixed-cta {
    min-height: 118px;
    padding: 12px 20px;
    grid-template-columns: 170px 170px;
    justify-content: center;
    gap: 10px;
    background: #005fad;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
  }
  .fixed-cta__item {
    width: 170px;
    min-height: 94px;
    padding-top: 36px;
  }
  .fixed-cta__item > span {
    width: 158px;
    min-width: 0;
    max-width: none;
    min-height: 44px;
    padding: 4px 0 8px;
    display: block;
    color: #0068bd;
    background: url("assets/fixed-cta-label-sp.svg") center / 100% 100% no-repeat;
    border: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }
  .fixed-cta__label-break,
  .fixed-cta__button-break { display: block; }
  .fixed-cta .action-button {
    width: 170px;
    min-height: 58px;
    padding: 0 38px 0 10px;
    gap: 0;
    text-align: center;
    border-radius: 7.2px;
    box-shadow: 0 3.024px 3.024px rgba(0, 0, 0, .2);
    font-size: 14px;
    line-height: 1.3;
  }
  .fixed-cta__button-label {
    width: 112px;
    text-align: left;
    white-space: nowrap;
  }
  .fixed-cta .action-button--loan .fixed-cta__button-label {
    transform: translateX(-6px);
  }
  .fixed-cta .action-button__icon { display: none; }
  .fixed-cta .action-button__arrow { top: 50%; right: 12px; width: 22px; height: 22px; transform: translateY(-50%); font-size: 0; }

  .section-width,
  .comparison .section-width,
  .flow .section-width,
  .overview .section-width {
    width: var(--sp-content);
    max-width: calc(100vw - 40px);
  }
  .section-lead { white-space: normal; }

  .manga-section,
  .contact,
  .site-footer {
    height: auto;
  }
  .manga-card,
  .contact-card {
    width: var(--sp-content);
    height: auto;
  }
  .manga-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .manga-panel { width: 100%; }
  .speech-bubble { right: clamp(-38px, -7vw, -20px); }

  .use-grid,
  .overview-cards {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .overview-cards {
    height: auto;
  }
  .overview-cards article {
    width: auto;
    height: auto;
    min-height: 145px;
  }
  .overview-cards strong { font-size: clamp(34px, 10.7vw, 42px); }

  .rate-grid {
    grid-template-columns: minmax(0, var(--sp-content));
  }
  .rate-card,
  .rate-card ul,
  .rate-card .note {
    width: 100%;
  }
  .rate-card__link {
    width: min(290px, 100%);
  }

  .comparison h2 {
    width: 100%;
    gap: clamp(4px, 2vw, 8px);
    font-size: clamp(22px, 6.6vw, 26px);
  }
  .comparison h2 > span {
    width: clamp(170px, 58vw, 204px);
  }
  .comparison-table--dealer .comparison-row,
  .comparison-table--bank .comparison-row {
    grid-template-columns: clamp(62px, 20vw, 76px) minmax(0, 1fr);
  }
  .comparison-row p {
    height: auto;
    padding: 16px clamp(10px, 4vw, 16px);
    gap: 14px;
  }
  .comparison-row strong,
  .comparison-row small,
  .comparison-table--bank .comparison-row strong,
  .comparison-table--bank .comparison-row small {
    width: 100%;
    white-space: normal;
  }

  .flow__subtitle,
  .flow-grid,
  .flow-card {
    width: 100%;
  }
  .flow-card {
    --flow-left: clamp(112px, 40vw, 157px);
    height: auto;
    padding-left: var(--flow-left);
    padding-bottom: 45px;
  }
  .flow-card h3,
  .flow-card p {
    width: 100%;
    white-space: normal;
  }
  .flow-card:nth-child(3) h3 {
    width: 100%;
    margin-left: 0;
  }
  .flow-card img {
    width: clamp(96px, 34vw, 134px);
    height: clamp(96px, 34vw, 134px);
  }
  .flow-card__actor {
    left: var(--flow-left);
    width: calc(100% - var(--flow-left));
  }
  .flow-card__badge {
    left: clamp(58px, 20vw, 71px);
  }
  .trial-cta {
    width: var(--sp-content);
  }
  .trial-cta > div {
    width: min(318px, calc(100% - 32px));
    padding-top: 28px;
  }
  .trial-cta p {
    width: 100%;
    min-height: 42px;
    margin-bottom: 12px;
    padding: 0 clamp(20px, 7vw, 28px);
    display: grid;
    place-items: center;
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.35;
  }
  .trial-cta p::before,
  .trial-cta p::after {
    width: clamp(18px, 5.6vw, 22px);
    height: clamp(36px, 11vw, 43px);
  }
  .trial-cta .action-button {
    width: min(300px, 100%);
    padding-right: clamp(34px, 10.5vw, 42px);
    padding-left: clamp(34px, 10.5vw, 42px);
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 1;
    white-space: nowrap;
  }
  .trial-cta .action-button__icon {
    left: clamp(12px, 3.85vw, 15px);
    width: clamp(24px, 6.92vw, 27px);
    height: clamp(24px, 6.92vw, 27px);
  }
  .trial-cta .action-button__arrow {
    right: clamp(10px, 3.08vw, 12px);
    width: clamp(24px, 7.18vw, 28px);
    height: clamp(24px, 7.18vw, 28px);
  }
  .trial-cta__car { left: 0; }
  .trial-cta__person { right: 0; }

  .product-table,
  .product-table dt,
  .product-table dd {
    width: 100%;
  }
  .product-table dd,
  .product-table > div:nth-child(1) dd,
  .product-table > div:nth-child(2) dd,
  .product-table > div:nth-child(3) dd,
  .product-table > div:nth-child(4) dd,
  .product-table > div:nth-child(5) dd,
  .product-table > div:nth-child(6) dd,
  .product-table > div:nth-child(7) dd {
    height: auto;
    min-height: 0;
  }
  .purpose-tags,
  .product-table aside {
    width: 100%;
    height: auto;
  }

  .contact {
    padding: 20px 0;
  }
  .contact-card__body,
  .contact-card__actions {
    height: auto;
  }
  .contact-card__body > div,
  .contact-card__body h2 {
    width: min(315px, calc(100% - 40px));
  }
  .contact-card__body > div {
    text-align: center;
  }
  .contact-card__body small {
    width: 100%;
    height: auto;
    margin-inline: auto;
    display: block;
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
  .contact-card__actions .action-button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 0;
  }
  .site-footer__links {
    width: 100%;
    max-width: 390px;
    height: auto;
    min-height: 116px;
    gap: 0;
  }
  .site-footer img {
    width: min(285px, calc(100% - 80px));
  }
  .site-footer address {
    width: min(242px, calc(100% - 40px));
    white-space: normal;
  }

  .fixed-cta {
    --fixed-cta-pad: clamp(8px, 5.13vw, 20px);
    --fixed-cta-gap: clamp(8px, 2.56vw, 10px);
    padding-right: var(--fixed-cta-pad);
    padding-left: var(--fixed-cta-pad);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--fixed-cta-gap);
  }
  .fixed-cta__item,
  .fixed-cta .action-button {
    width: 100%;
  }
  .fixed-cta__item > span {
    width: min(158px, calc(100% - 12px));
    font-size: clamp(11px, 3.08vw, 12px);
  }
  .fixed-cta .action-button {
    padding-right: clamp(36px, 10.8vw, 42px);
    padding-left: clamp(6px, 2.56vw, 10px);
    font-size: clamp(11.5px, 3.45vw, 14px);
  }
  .fixed-cta__button-label {
    width: min(112px, calc(100% - 58px));
  }
  .fixed-cta .action-button--loan .fixed-cta__button-label {
    width: min(122px, calc(100% - 46px));
    font-size: clamp(10px, 3.08vw, 12px);
    line-height: 1.35;
    transform: translateX(-6px);
  }
  .fixed-cta .action-button--apply .fixed-cta__button-label {
    width: min(100px, calc(100% - 68px));
    font-size: clamp(10px, 3.08vw, 12px);
    transform: translateX(-12px);
  }
  .fixed-cta .action-button__arrow {
    right: clamp(8px, 3.08vw, 12px);
    width: clamp(18px, 5.64vw, 22px);
    height: clamp(18px, 5.64vw, 22px);
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .section-width,
  .flow .section-width,
  .overview .section-width {
    width: min(var(--content), calc(100% - 40px));
  }
  .site-header__brand img { width: 220px; }
  .site-nav { gap: 16px; font-size: 12px; }
  .hero__card { left: 4%; transform: scale(.9); transform-origin: left top; }
  .hero__benefits span { min-width: 140px; padding: 0 12px; font-size: 17px; }
  .hero__benefits span:first-child { font-size: 24px; }
  .hero__benefits strong { font-size: 22px; }
  .use-grid {
    grid-template-columns: repeat(4, minmax(0, 238px));
    gap: clamp(16px, 2vw, 26px);
  }
  .feature-grid,
  .rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card,
  .rate-card {
    width: auto;
  }
  .rate-card__link,
  .rate-card ul,
  .rate-card .note {
    width: min(100%, 406px);
  }
  .comparison-tables {
    width: 100%;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  }
  .comparison-table--dealer .comparison-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .comparison-table--dealer h3 {
    margin-left: 112px;
  }
  .flow-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 218px));
    gap: clamp(20px, 3vw, 50px);
  }
  .flow-card {
    width: auto;
  }
  .flow-card img {
    width: min(100%, 218px);
  }
  .flow-card h3,
  .flow-card p {
    margin-right: 0;
    margin-left: 0;
  }
  .trial-cta {
    width: 100%;
    padding-right: clamp(190px, 22vw, 250px);
    padding-left: clamp(190px, 22vw, 250px);
  }
  .overview-cards {
    grid-template-columns: repeat(4, minmax(0, 242px));
    gap: clamp(14px, 2vw, 20px);
  }
  .overview-cards article {
    width: auto;
  }
  .product-table {
    width: 100%;
  }
  .product-table > div {
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .contact-card {
    width: min(1174px, calc(100% - 40px));
  }
  .contact-card__body {
    padding-right: clamp(40px, 7vw, 106px);
    padding-left: clamp(40px, 7vw, 106px);
  }
  .contact-card__body > div {
    width: min(540px, 55%);
  }
  .contact-card__actions {
    padding-right: clamp(40px, 8vw, 127px);
    padding-left: clamp(40px, 8vw, 127px);
    grid-template-columns: repeat(2, minmax(0, 450px));
  }
  .contact-card__actions .action-button {
    width: 100%;
  }
  .fixed-cta {
    padding-right: 20px;
    padding-left: 20px;
    grid-template-columns: repeat(2, minmax(0, 450px));
  }
  .fixed-cta__item,
  .fixed-cta .action-button {
    width: 100%;
  }
  .fixed-cta .action-button {
    font-size: clamp(18px, 2vw, 22px);
  }
}
