:root {
  --page-bg: #fffaf0;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-soft: #fed7aa;
  --gray-700: #374151;
  --navy: #082653;
  --focus: rgba(236, 98, 0, 0.45);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--page-bg);
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  padding-top: var(--header-height);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 2px solid var(--orange-soft);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1280px);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  transition: opacity 160ms ease;
}

.site-logo:hover {
  opacity: 0.82;
}

.site-logo img {
  display: block;
  width: auto;
  height: 64px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.site-nav a,
.mobile-menu a {
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.mobile-menu a:hover {
  color: var(--orange);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--orange-dark);
}

.header-phone svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-assessment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(234, 88, 12, 0.22);
  transition: background 160ms ease;
  white-space: nowrap;
}

.header-assessment:hover {
  background: var(--orange-dark);
}

.header-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
}

.header-menu-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-icon-close {
  display: none;
}

.header-menu-button[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.header-menu-button[aria-expanded="true"] .menu-icon-close {
  display: block;
}

.mobile-menu {
  border-top: 1px solid #ffedd5;
  background: #fff;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.mobile-menu .mobile-phone {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-weight: 800;
}

.mobile-menu .mobile-assessment {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.preview-shell {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

.fv-canvas {
  position: relative;
  width: min(100vw, 1586px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.fv-comp {
  display: block;
  width: 100%;
}

.fv-comp {
  height: auto;
  user-select: none;
}

.fv-comp-sp {
  display: none;
}

.design-section {
  width: min(100vw, var(--pc-width));
  margin: 0 auto;
  background: #fff;
}

.section-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.section-img-sp {
  display: none;
}

.sp-only {
  display: none;
}

.lp-section,
.lp-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(72px, 7vw, 112px) 20px;
  background:
    radial-gradient(circle at 8% 8%, rgba(250, 204, 138, 0.34) 0 74px, transparent 75px),
    radial-gradient(circle at 94% 10%, rgba(250, 204, 138, 0.26) 0 58px, transparent 59px),
    linear-gradient(180deg, #fffaf0 0%, #fff7e8 100%);
}

.lp-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 2% 88%, rgba(250, 204, 138, 0.22) 0 66px, transparent 67px),
    radial-gradient(circle at 96% 18%, rgba(250, 204, 138, 0.22) 0 70px, transparent 71px),
    linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.lp-section::before,
.lp-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.34;
}

.lp-section::before {
  top: 34px;
  left: 26px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#f6bf6d 2px, transparent 2px);
  background-size: 14px 14px;
}

.lp-section::after {
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(242, 174, 71, 0.45);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.34),
    inset 0 0 0 34px rgba(242, 174, 71, 0.08);
}

.lp-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.section-title-block {
  margin: 0 auto clamp(36px, 5vw, 58px);
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 8px 28px;
  border: 2px solid #ea580c;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff2dc 100%);
  color: #ea580c;
  font-size: clamp(16px, 1.9vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-title-block h2 {
  margin: 0;
  color: #162334;
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-title-block p {
  margin: 18px 0 0;
  color: #303846;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.8;
}

.section-concerns {
  padding-top: clamp(68px, 6vw, 96px);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.concern-card,
.flow-card,
.benefit-card,
.reason-card,
.case-card,
.faq-item {
  border: 1px solid rgba(234, 88, 12, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(103, 71, 35, 0.12);
}

.concern-card {
  min-height: 250px;
  padding: 32px 24px 28px;
  text-align: center;
}

.concern-icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border: 3px solid #ef7b2d;
  border-radius: 22px;
  color: #ea580c;
  font-size: 34px;
  font-weight: 900;
}

.concern-icon::before {
  line-height: 1;
}

.concern-icon-loan::before {
  content: "¥";
}

.concern-icon-money::before {
  content: "円";
  font-size: 26px;
}

.concern-icon-home::before {
  content: "家";
  font-size: 26px;
}

.concern-icon-speed::before {
  content: "!";
}

.concern-card h3 {
  margin: 0 0 12px;
  color: #162334;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}

.concern-card p {
  margin: 0;
  color: #46505d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.solution-copy {
  margin: clamp(38px, 5vw, 58px) 0 0;
  color: #162334;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.solution-copy strong {
  color: #ea580c;
  font-size: 1.35em;
}

.about-flow,
.benefit-grid,
.reason-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.flow-card {
  position: relative;
  padding: 34px 26px;
  text-align: center;
}

.flow-card + .flow-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  width: 28px;
  height: 2px;
  background: #f59e0b;
}

.flow-card img {
  width: 128px;
  height: 128px;
  margin-bottom: 20px;
  object-fit: contain;
}

.flow-card h3 {
  margin: 0 0 12px;
  color: #162334;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.45;
}

.flow-card p,
.benefit-card p,
.reason-card p,
.demerit-main p,
.demerit-benefits p {
  margin: 0;
  color: #303846;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.bottom-message {
  width: fit-content;
  max-width: 100%;
  margin: clamp(34px, 5vw, 54px) auto 0;
  padding: 18px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff7ed, #fff);
  color: #162334;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 12px 28px rgba(103, 71, 35, 0.1);
}

.benefit-card,
.reason-card {
  position: relative;
  padding: 34px 30px 32px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ea580c;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.benefit-card h3,
.reason-card h3 {
  margin: 0 0 16px;
  color: #162334;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.benefit-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-card li {
  color: #303846;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.benefit-card li::before,
.demerit-benefits article::before,
.case-result::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: #ea580c;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.comparison-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(103, 71, 35, 0.16);
}

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

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  border: 1px solid #fde7c9;
  color: #162334;
  font-size: clamp(15px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
}

.comparison-table thead th {
  background: #fff7ed;
  color: #d94e08;
  font-size: clamp(16px, 1.8vw, 24px);
  text-align: center;
}

.comparison-table tbody th {
  width: 22%;
  background: #fffaf0;
  color: #303846;
}

.comparison-table td:nth-child(2) {
  width: 39%;
  background: #fff4e8;
}

.comparison-table td:nth-child(2) strong {
  color: #ea580c;
}

.comparison-table td:nth-child(3) {
  color: #5a6472;
}

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

.process-list li {
  position: relative;
  min-height: 280px;
  padding: 28px 20px;
  border: 1px solid rgba(234, 88, 12, 0.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(103, 71, 35, 0.12);
}

.process-list li + li::before {
  content: "";
  position: absolute;
  top: 56px;
  left: -19px;
  width: 20px;
  height: 2px;
  background: #f59e0b;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f97316, #ea580c);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 12px;
  color: #162334;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.process-list p {
  margin: 0;
  color: #46505d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.speed-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: fit-content;
  max-width: 100%;
  margin: 42px auto 0;
  padding: 20px 34px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(103, 71, 35, 0.12);
}

.speed-message strong {
  color: #ea580c;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
}

.speed-message p {
  margin: 0;
  color: #303846;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 800;
}

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

.stats-row div {
  padding: 26px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fff4e8 100%);
  text-align: center;
  box-shadow: 0 14px 32px rgba(103, 71, 35, 0.11);
}

.stats-row strong {
  display: block;
  color: #ea580c;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 10px;
  color: #303846;
  font-weight: 800;
}

.demerit-main {
  width: min(100%, 900px);
  margin: 0 auto 30px;
  padding: clamp(26px, 4vw, 42px);
  border-left: 8px solid #ea580c;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(103, 71, 35, 0.12);
}

.demerit-main h3 {
  margin: 0 0 16px;
  color: #162334;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

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

.demerit-benefits article {
  padding: 24px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(103, 71, 35, 0.1);
}

.demerit-benefits strong {
  display: block;
  margin-bottom: 10px;
  color: #162334;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.case-card {
  padding: 26px;
}

.case-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.case-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f97316, #ea580c);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.case-head strong {
  color: #162334;
  font-size: 21px;
  font-weight: 900;
}

.case-head strong::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 999px;
  background: #ea580c;
  box-shadow: 0 0 0 5px #ffedd5;
}

.case-price {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.case-price div {
  min-width: 0;
  padding: 14px 10px;
  border: 2px solid #fde7c9;
  border-radius: 12px;
  text-align: center;
}

.case-price span {
  display: block;
  color: #162334;
  font-size: 15px;
  font-weight: 900;
}

.case-price strong {
  display: block;
  color: #ea580c;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.case-price small {
  margin-left: 2px;
  font-size: 0.4em;
}

.case-card h3 {
  margin: 0 0 14px;
  color: #162334;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1.38;
}

.case-card p {
  min-height: 86px;
  margin: 0 0 18px;
  color: #303846;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.case-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  border-radius: 12px;
  object-fit: cover;
}

.case-result {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7ed;
  color: #162334;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.case-result::before {
  vertical-align: 2px;
}

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

.faq-item {
  padding: 26px 28px;
}

.faq-wide {
  grid-column: 1 / -1;
}

.faq-item h3 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 44px;
  color: #162334;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.45;
}

.faq-item h3::before {
  content: "Q";
  position: absolute;
  top: -2px;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ea580c;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.faq-item p {
  position: relative;
  margin: 0;
  padding-left: 44px;
  color: #303846;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.85;
}

.faq-item p::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  color: #ea580c;
  font-size: 22px;
  font-weight: 900;
}

.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  text-align: center;
}

.faq-cta p {
  width: 100%;
  margin: 0 0 6px;
  color: #162334;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.faq-cta a,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f97316, #df5b16);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.22);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.faq-cta a:hover,
.footer-cta:hover,
.case-card:hover,
.benefit-card:hover,
.reason-card:hover,
.concern-card:hover,
.flow-card:hover {
  transform: translateY(-4px);
}

.lp-footer {
  padding-bottom: 40px;
  background: #162334;
  color: #fff;
}

.lp-footer::before,
.lp-footer::after {
  display: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  width: 220px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-contact p {
  width: 100%;
  margin: 0;
  color: #fff7ed;
  font-weight: 800;
  text-align: right;
}

.footer-phone {
  color: #ffb069;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-decoration: none;
}

.footer-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-nav a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.lp-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.hidden {
  display: none !important;
}

.functional-section {
  width: 100%;
  padding: 72px 16px;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
}

.assessment-section {
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}

.functional-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.functional-inner.narrow {
  width: min(100%, 920px);
}

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 2px solid #facc15;
  border-radius: 10px;
  background: #fef9c3;
  color: #854d0e;
  font-weight: 800;
}

.section-heading .eyebrow.green {
  border-color: #22c55e;
  background: linear-gradient(90deg, #22c55e, #059669);
  color: #fff;
}

.section-heading h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.12;
}

.section-heading h2 span {
  color: var(--orange);
}

.section-heading p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.6;
}

.quiz-card,
.assessment-form,
.side-card {
  border: 4px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.14);
}

.quiz-card {
  padding: clamp(24px, 5vw, 48px);
}

.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #374151;
  font-weight: 800;
}

.progress-head span:last-child {
  color: var(--orange);
}

.progress-track {
  height: 14px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ea580c, #f59e0b);
  transition: width 260ms ease;
}

#questionText {
  margin: 0 0 24px;
  color: #111827;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}

.options-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.option-btn {
  width: 100%;
  padding: 18px;
  border: 2px solid #d1d5db;
  border-radius: 14px;
  background: #f9fafb;
  color: #111827;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.option-btn:hover {
  border-color: var(--orange);
  background: #fff7ed;
  transform: translateY(-2px);
}

.back-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

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

.result-icon {
  display: none;
}

.result-badge {
  display: inline-grid;
  gap: 4px;
  margin-bottom: 28px;
  padding: 18px 36px;
  border-radius: 18px;
  background: linear-gradient(90deg, #ea580c, #dc2626);
  color: #fff;
  box-shadow: 0 18px 34px rgba(234, 88, 12, 0.24);
}

.result-badge span {
  font-weight: 800;
}

.result-badge strong {
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
}

.result-card h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
}

.result-card p {
  color: #4b5563;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.7;
}

.note,
.privacy-note {
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.assessment-form {
  padding: clamp(24px, 4vw, 40px);
}

.helper-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 14px;
  border: 2px solid #fdba74;
  border-radius: 18px;
  background: #fff7ed;
}

.helper-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.helper-box p {
  margin: 0;
  color: #9a3412;
  font-weight: 700;
  line-height: 1.6;
}

.form-step {
  display: grid;
  gap: 24px;
}

.field-group {
  display: grid;
  gap: 12px;
}

.field-group label {
  color: #1f2937;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
}

.field-group label span {
  color: #dc2626;
}

.field-group input,
.field-group select,
.loan-amount input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font-size: 17px;
  outline: none;
  transition: border-color 160ms ease;
}

.field-group input:focus,
.field-group select:focus,
.loan-amount input:focus {
  border-color: var(--orange);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-btn {
  min-height: 58px;
  padding: 14px;
  border: 2px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  color: #374151;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.choice-btn strong {
  display: block;
  margin-top: 6px;
}

.choice-btn:hover,
.choice-btn.is-selected {
  border-color: var(--orange);
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.16);
  transform: translateY(-2px);
}

.loan-amount {
  margin-top: 12px;
}

.preview-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 2px solid #fb923c;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.12);
}

.preview-card > span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.preview-card .blurred {
  filter: blur(4px);
}

.preview-card h3 {
  color: var(--orange);
}

.preview-card strong {
  position: absolute;
  inset: 50% auto auto 50%;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 14px 24px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.primary-action {
  flex: 1;
  border: 0;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.2);
}

.primary-action:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.secondary-action {
  flex: 1;
  border: 2px solid #fb923c;
  background: #fff;
  color: var(--orange);
}

.done-box {
  padding: 42px 16px;
  text-align: center;
}

.done-box div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.done-box h3 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(26px, 4vw, 34px);
}

.done-box p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
}

.assessment-side {
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 24px;
  border-width: 2px;
  border-color: #fed7aa;
}

.side-card.safe {
  border-color: #86efac;
  background: #f0fdf4;
}

.side-card h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 20px;
}

.side-phone {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.side-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #374151;
  list-style: none;
}

.side-card li::before {
  content: "✓";
  margin-right: 8px;
  color: #16a34a;
  font-weight: 900;
}

.image-button {
  position: absolute;
  z-index: 2;
  display: block;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  transition:
    transform 220ms ease,
    filter 220ms ease;
  will-change: transform;
}

.image-button:focus-visible,
.header-assessment:focus-visible,
.header-phone:focus-visible,
.header-menu-button:focus-visible,
.site-nav a:focus-visible,
.mobile-menu a:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.main-cta {
  left: 6.24%;
  top: 67.00%;
  width: 40.35%;
  height: 11.45%;
  background-image: url("../assets/btn-main-pc.png");
}

.phone-cta {
  left: 6.24%;
  top: 78.79%;
  width: 40.35%;
  height: 11.22%;
  background-image: url("../assets/btn-phone-pc.png");
}

.image-button:hover {
  transform: translateY(-4px) scale(1.018);
  filter: brightness(1.025);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.debug-buttons .image-button {
  outline: 3px solid rgba(0, 91, 160, 0.58);
  outline-offset: 4px;
}

@media (min-width: 640px) {
  .header-phone {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 112px;
  }

  .site-header-inner {
    padding: 0 32px;
  }

  .site-logo img {
    height: 96px;
  }

  .site-nav {
    display: flex;
  }

  .header-phone {
    font-size: 16px;
  }

  .header-assessment {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
  }

  .header-menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 1023px) {
  body {
    background: #fff7e8;
  }

  .fv-canvas {
    width: 100vw;
    max-width: 853px;
  }

  .fv-comp-pc {
    display: none;
  }

  .fv-comp-sp {
    display: block;
  }

  .design-section {
    width: min(100vw, var(--sp-width));
  }

  .section-img-pc {
    display: none;
  }

  .section-img-sp {
    display: block;
  }

  .main-cta {
    left: 5.74%;
    top: 75.51%;
    width: 88.51%;
    height: 8.51%;
    background-image: url("../assets/btn-main-sp.png");
  }

  .phone-cta {
    left: 5.74%;
    top: 84.50%;
    width: 88.51%;
    height: 8.51%;
    background-image: url("../assets/btn-phone-sp.png");
  }

  .image-button:hover {
    transform: translateY(-3px) scale(1.012);
  }

  .sp-only {
    display: inline;
  }

  .lp-section,
  .lp-footer {
    padding: 64px 16px;
  }

  .lp-section::before {
    width: 76px;
    height: 76px;
    background-size: 12px 12px;
  }

  .lp-section::after {
    width: 160px;
    height: 160px;
  }

  .section-title-block {
    margin-bottom: 34px;
  }

  .section-title-block p br {
    display: none;
  }

  .concern-grid,
  .about-flow,
  .benefit-grid,
  .reason-grid,
  .case-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .concern-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .flow-card + .flow-card::before,
  .process-list li + li::before {
    display: none;
  }

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

  .process-list li {
    min-height: 0;
  }

  .speed-message {
    flex-direction: column;
    gap: 8px;
    border-radius: 24px;
    text-align: center;
  }

  .stats-row,
  .demerit-benefits {
    grid-template-columns: 1fr;
  }

  .case-head {
    gap: 12px;
  }

  .case-head span {
    padding: 8px 18px;
    font-size: 18px;
  }

  .case-card p {
    min-height: 0;
  }

  .faq-wide {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-contact p {
    text-align: center;
  }

  .functional-section {
    padding: 56px 14px;
  }

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

  .choice-grid,
  .choice-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .site-header-inner {
    padding: 0 12px;
  }

  .site-logo img {
    height: 58px;
  }

  .site-actions {
    gap: 8px;
  }

  .header-assessment {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .choice-grid,
  .choice-grid.three,
  .choice-grid.two {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .side-phone {
    font-size: 25px;
  }

  .lp-section,
  .lp-footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-kicker {
    min-height: 36px;
    padding: 7px 18px;
  }

  .section-title-block h2 {
    font-size: 34px;
  }

  .bottom-message {
    width: 100%;
    border-radius: 22px;
  }

  .case-price {
    gap: 8px;
  }

  .case-card,
  .benefit-card,
  .reason-card,
  .faq-item {
    padding: 22px 18px;
  }

  .comparison-table {
    min-width: 690px;
  }
}

/* Rebuild from camp: visible middle sections follow the provided image comps. */
.camp-image-section {
  position: relative;
  width: min(100vw, var(--pc-width));
  margin: 0 auto;
  overflow: hidden;
  background: #fffaf0;
}

.camp-image-section picture,
.camp-image-section img {
  display: block;
  width: 100%;
  height: auto;
}

.camp-image-section picture {
  aspect-ratio: var(--pc-ratio);
}

.camp-image-section img {
  user-select: none;
}

.camp-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: block;
  width: var(--w);
  height: var(--h);
  border-radius: 12px;
  text-decoration: none;
}

.camp-hotspot:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.sp-hotspot {
  display: none;
}

.diagnosis-section,
.assessment-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 104px) 16px;
  background: #fff7e8;
}

.diagnosis-section {
  background: #fff8ed;
}

.assessment-section {
  background: #fff9f0;
}

.diagnosis-section .functional-inner,
.assessment-section .functional-inner {
  position: relative;
  width: min(100%, 1240px);
}

.diagnosis-section .functional-inner.narrow {
  width: min(100%, 1120px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  min-height: 46px;
  margin-bottom: 18px;
  padding: 10px 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7b13 0%, #f04f0c 100%);
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(235, 84, 13, 0.18);
}

.section-heading .eyebrow.green {
  background: linear-gradient(180deg, #22c55e 0%, #10a85d 100%);
}

.section-heading h2 {
  color: #101d31;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.12;
}

.section-heading p {
  color: #101d31;
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 800;
}

.quiz-card,
.assessment-form,
.side-card {
  border: 1px solid #f7c28d;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 46px rgba(116, 72, 27, 0.14);
}

.quiz-card {
  padding: clamp(28px, 5vw, 56px);
}

.progress-head {
  color: #101d31;
  font-size: clamp(18px, 2vw, 26px);
}

.progress-track {
  height: 14px;
  background: #e8e9ec;
}

.progress-bar {
  background: linear-gradient(90deg, #f45d0c 0%, #ffb300 100%);
}

#questionText {
  color: #101d31;
  font-size: clamp(26px, 3.8vw, 42px);
  text-align: center;
}

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

.option-btn,
.choice-btn {
  border: 2px solid #ff6a00;
  border-radius: 14px;
  background: #fff;
  color: #101d31;
  font-weight: 900;
}

.option-btn {
  min-height: 82px;
  padding: 18px 20px;
  text-align: center;
}

.option-btn:hover,
.choice-btn:hover,
.choice-btn.is-selected {
  border-color: #f04f0c;
  background: #fff7ed;
  box-shadow: 0 12px 24px rgba(235, 84, 13, 0.16);
}

.assessment-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.assessment-form {
  padding: clamp(24px, 4vw, 42px);
}

.helper-box {
  border: 1px solid #f7c28d;
  border-radius: 18px;
  background: #fff9f0;
}

.helper-box img {
  display: none;
}

.helper-box p {
  color: #9a3412;
  font-weight: 900;
}

.field-group label {
  color: #101d31;
}

.field-group input,
.field-group select,
.loan-amount input {
  border-color: #d8dce2;
  border-radius: 12px;
  background: #fff;
}

.field-group input:focus,
.field-group select:focus,
.loan-amount input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.preview-card {
  border-color: #f7c28d;
  border-radius: 18px;
  background: #fff9f0;
}

.primary-action,
.secondary-action {
  border-radius: 14px;
}

.primary-action {
  background: linear-gradient(180deg, #ff7b13 0%, #f04f0c 100%);
  box-shadow: 0 18px 34px rgba(235, 84, 13, 0.24);
}

.primary-action:hover {
  background: linear-gradient(180deg, #ff8a24 0%, #e94b0a 100%);
}

.secondary-action {
  border-color: #ff6a00;
  color: #f04f0c;
}

.side-card {
  border-color: #f7c28d;
  background: rgba(255, 255, 255, 0.96);
}

.side-card.safe {
  border-color: #f7c28d;
  background: #fff9f0;
}

.side-phone {
  color: #f04f0c;
}

@media (max-width: 1023px) {
  .camp-image-section {
    width: min(100vw, var(--sp-width));
  }

  .camp-image-section picture {
    aspect-ratio: var(--sp-ratio);
  }

  .pc-hotspot {
    display: none;
  }

  .sp-hotspot {
    display: block;
  }

  .diagnosis-section,
  .assessment-section {
    padding: 58px 14px;
  }

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

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

  .section-heading h2 {
    font-size: clamp(38px, 10vw, 58px);
  }
}
