/* ===== 共通CSS ===== */
:root {
  --navy: #0a1f5c;
  --blue: #1155cc;
  --blue-bright: #1a7cff;
  --cyan: #00c8e0;
  --orange: #ff4d00;
  --orange2: #ff8800;
  --yellow: #ffe000;
  --yellow2: #fff176;
  --green: #00b050;
  --red: #e60000;
  --pink: #ff3366;
  --white: #fff;
  --offwhite: #f5f7ff;
  --gray: #f0f2f8;
  --gray-text: #555;
  --text: #111;
  --radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: var(--navy);
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--cyan);
}
.site-name {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.logo-placeholder {
  width: 100px; height: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.45);
  overflow: hidden;
}
.logo-placeholder img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.header-right { display: flex; align-items: center; gap: 6px; }
.header-pr { background: var(--orange); color: #fff; font-size: 10px; font-weight: 900; padding: 2px 7px; border-radius: 3px; }
.header-tag { background: var(--cyan); color: var(--navy); font-size: 10px; font-weight: 900; padding: 2px 7px; border-radius: 3px; }
.header-back {
  background: rgba(255,255,255,0.12); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; text-decoration: none;
  display: flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,0.2);
}

/* LENDER CARD 共通 */
.lender-card {
  background: var(--white); border-radius: 10px; margin-bottom: 20px;
  overflow: hidden; border: 2px solid var(--gray);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.lender-card.no-link { opacity: 0.82; }

/* カードトップ全体ラッパー */
.card-top-wrap { display: flex; flex-direction: row; align-items: stretch; }
.card-top-wrap[data-rank="1"] { background: linear-gradient(135deg,#fffde0,#fff8b0); border-bottom: 3px solid #FFD700; }
.card-top-wrap[data-rank="2"] { background: linear-gradient(135deg,#e8ecf8,#d8e0f0); border-bottom: 3px solid #8fa0c0; }
.card-top-wrap[data-rank="3"] { background: linear-gradient(135deg,#fdf2ec,#f5e0d0); border-bottom: 3px solid #D4845A; }
.card-top-wrap[data-rank="x"] { background: linear-gradient(135deg,#f5f7ff,#eef0f8); border-bottom: 3px solid #c0c8d8; }

/* カードヘッダー内（社名・キャッチ・★） */
.card-top-block { display: flex; align-items: flex-start; padding: 12px 12px 10px; flex: 1; background: transparent; }
.card-top-right { flex: 1; min-width: 0; }
.card-top-name { font-size: 18px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.card-top-name a { text-decoration: none; color: inherit; }
.card-top-catch { font-size: 13px; color: var(--gray-text); margin-top: 2px; }
.card-top-stars { margin-top: 6px; }

/* 半塗り★ */
.star-wrap { display: inline-flex; gap: 1px; }
.star { position: relative; display: inline-block; font-size: 14px; color: #e0e0e0; }
.star.full { color: #f5a623; }
.star.half::after {
  content: '★'; position: absolute; left: 0; top: 0;
  color: #f5a623; width: 50%; overflow: hidden; display: block;
}

/* バナーラッパー */
.card-banner-wrap { flex-shrink: 0; padding: 10px 10px 10px 0; display: flex; align-items: flex-start; background: transparent; }
.card-banner-wrap > a { display: block; text-decoration: none; }
.card-banner {
  width: 108px; aspect-ratio: 300/250;
  background: #eef2f7; border: 1.5px dashed #b0bcd0; border-radius: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 9px; color: #9aa5b8; text-align: center; gap: 4px;
}
.card-banner img { width: 100%; height: auto; display: block; border-radius: 5px; }

/* PC（481px以上）：縦並び、バナーはヘッダー外・白背景 */
@media (min-width: 481px) {
  .card-top-wrap { flex-direction: column; background: transparent; border-bottom: none; }
  .card-top-wrap[data-rank="1"] .card-top-block { background: linear-gradient(135deg,#fffde0,#fff8b0); border-bottom: 3px solid #FFD700; }
  .card-top-wrap[data-rank="2"] .card-top-block { background: linear-gradient(135deg,#e8ecf8,#d8e0f0); border-bottom: 3px solid #8fa0c0; }
  .card-top-wrap[data-rank="3"] .card-top-block { background: linear-gradient(135deg,#fdf2ec,#f5e0d0); border-bottom: 3px solid #D4845A; }
  .card-top-wrap[data-rank="x"] .card-top-block { background: linear-gradient(135deg,#f5f7ff,#eef0f8); border-bottom: 3px solid #c0c8d8; }
  .card-banner-wrap { padding: 12px; justify-content: center; background: var(--white); border-bottom: 1px solid #e8ecf4; }
  .card-banner { width: 300px; }
}

/* チェックリスト */
.check-list-block { padding: 10px 12px; border-top: 1px solid #e8ecf4; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 7px; font-size: 16px; font-weight: 700; color: var(--gray-text); margin-bottom: 5px; line-height: 1.4; }
.check-list li:last-child { margin-bottom: 0; }
.check-icon { background: var(--green); color: #fff; font-weight: 900; font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.check-list li .highlight-red {
  color: #e53935;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.point-note-inline { font-size: 10px; color: var(--gray-text); margin-top: 7px; padding-top: 7px; border-top: 1px solid #e8ecf4; line-height: 1.6; }

/* バッジ */
.badge { font-size: 11px; font-weight: 900; padding: 4px 9px; border-radius: 4px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 5px; padding: 10px 12px 0; }
.badge-row-sep { display: flex; flex-wrap: wrap; gap: 5px; padding: 10px 12px 0; border-top: 1px solid #e8ecf4; }
.bd-blue   { background: #e8f2ff; color: var(--blue);  border: 1.5px solid #b3d0f0; }
.bd-green  { background: #e6f7ec; color: var(--green); border: 1.5px solid #a8dbb8; }
.bd-orange { background: #fff0e0; color: var(--orange);border: 1.5px solid #f5c88a; }
.bd-red    { background: #fdeaea; color: var(--red);   border: 1.5px solid #f0b0b0; }
.bd-cyan   { background: #e0faff; color: #007a8c;      border: 1.5px solid #80d8e8; }
.bd-yellow { background: var(--yellow); color: var(--navy); border: 1.5px solid #e0c800; }

/* スペック表 */
.spec-table { width: 100%; border-collapse: collapse; margin: 10px 0 0; font-size: 13px; }
.spec-table th { background: var(--offwhite); color: var(--gray-text); font-weight: 700; padding: 8px 11px; width: 38%; border-bottom: 1px solid #e8ecf4; text-align: left; font-size: 12px; }
.spec-table td { padding: 8px 11px; border-bottom: 1px solid #e8ecf4; font-weight: 700; }
.val-fast { color: var(--orange); font-weight: 900; font-size: 14px; }
.val-main { color: var(--navy); font-weight: 900; }
.conveni-icons { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 3px; align-items: center; }
.conveni-icon-img { height: 28px; width: auto; display: block; }
.conveni-tag { font-size: 11px; font-weight: 700; background: #f0f2f8; border: 1px solid #dde3ec; border-radius: 3px; padding: 2px 7px; color: #555; }

/* CTA */
.cta-area { padding: 12px 12px 14px; background: var(--white); }
.cta-btn { display: block; width: 100%; background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%); color: #fff; text-align: center; padding: 16px 32px 16px 14px; border-radius: 8px; font-size: 16px; font-weight: 900; text-decoration: none; letter-spacing: 0.04em; box-shadow: 0 4px 14px rgba(255,77,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2); position: relative; transition: transform 0.1s, box-shadow 0.1s; }
.cta-btn:active { transform: translateY(1px); box-shadow: 0 2px 8px rgba(255,77,0,0.3); }
.cta-btn::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; rotate: 45deg; }
.cta-sub { text-align: center; font-size: 13px; color: var(--gray-text); margin-top: 6px; }
.no-link-note { padding: 12px; font-size: 12px; color: var(--gray-text); text-align: center; background: var(--offwhite); border-top: 1px solid var(--gray); }
.pr-label { display: inline-block; background: #e0e0e0; color: #555; font-size: 10px; padding: 1px 5px; border-radius: 3px; vertical-align: middle; margin-left: 4px; }

/* カウントダウン */
.cd-bar { display: none; align-items: center; gap: 7px; background: linear-gradient(90deg,#fff3cd,#fff8e0,#fff3cd); border-top: 2px solid #f5c842; border-bottom: 1px solid #f5c842; padding: 9px 12px; margin-top: 6px; font-size: 12px; font-weight: 900; color: #7a4d00; }
.cd-timer { color: var(--red); font-size: 18px; font-variant-numeric: tabular-nums; font-weight: 900; }
.cd-off { display: none; background: #f5f5f5; border-top: 2px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; padding: 9px 12px; margin-top: 6px; font-size: 12px; color: #888; }

/* フッター */
.site-footer { background: #0a1030; color: rgba(255,255,255,0.45); font-size: 11px; padding: 16px 12px; line-height: 1.75; text-align: center; }
.footer-left { text-align: left; }
.footer-left a { text-decoration: underline; color: inherit; }
.footer-links { display: flex; justify-content: center; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; }

/* スティッキー */
.sticky-cta { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 480px; background: var(--navy); padding: 9px 12px; border-top: 3px solid var(--cyan); box-shadow: 0 -3px 14px rgba(0,0,0,0.25); z-index: 100; display: flex; align-items: center; gap: 9px; transform: translateX(-50%) translateY(100%); transition: transform 0.3s ease; }
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);    /* 表示状態 */
}
.sticky-logo { width: 56px; height: 30px; background: rgba(255,255,255,0.1); border: 1px dashed rgba(255,255,255,0.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: rgba(255,255,255,0.35); flex-shrink: 0; overflow: hidden; }
.sticky-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sticky-text { flex: 1; color: #fff; font-size: 11px; line-height: 1.3; }
.sticky-text strong { font-size: 13px; font-weight: 900; display: block; color: var(--yellow); }
.sticky-cta-btn { background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; font-size: 12px; font-weight: 900; padding: 9px 13px; border-radius: 6px; text-decoration: none; white-space: nowrap; flex-shrink: 0; box-shadow: 0 2px 8px rgba(255,77,0,0.4); }
.sticky-spacer { height: 60px; }

/* セクション区切り */
.section-sep { height: 8px; background: var(--offwhite); }

/* ===== LP固有CSS ===== */

/* セクション見出し */
.sec-ttl {
  font-size: 18px; font-weight: 900;
  background: var(--navy); color: #fff;
  padding: 8px 12px;
  margin: 0 -12px 12px;
  border-left: 5px solid var(--cyan);
  letter-spacing: 0.03em;
}
.sec-ttl .ttl-en { font-size: 12px; font-weight: 700; color: var(--cyan); display: block; letter-spacing: 0.1em; margin-bottom: 1px; }
.sec-ttl-inline {
  font-size: 20px; font-weight: 900; color: var(--navy);
  border-left: 5px solid var(--orange); padding-left: 10px;
  margin-bottom: 13px; line-height: 1.3; display: flex; align-items: center; gap: 8px;
}
.sec-ttl-inline .num-badge { background: var(--orange); color: #fff; font-size: 14px; font-weight: 900; padding: 2px 8px; border-radius: 3px; white-space: nowrap; }

/* FV */
.fv {
  background: linear-gradient(160deg, var(--navy) 0%, #0d2d7a 40%, #0a4fc4 100%);
  padding: 0; position: relative; overflow: hidden;
}
.fv::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(0,200,224,0.04) 0px, rgba(0,200,224,0.04) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}
.fv-top-band {
  background: var(--yellow); padding: 5px 12px;
  font-size: 12px; font-weight: 900; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
  animation: blink-band 2s ease-in-out infinite;
}
@keyframes blink-band { 0%,100%{background:var(--yellow);}50%{background:#ffe94d;} }
.fv-top-band .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);}50%{transform:scale(1.4);} }
.fv-main { padding: 16px 14px 0; position: relative; z-index: 1; }
.fv-person {
  position: absolute; top: 0; right: 0;
  width: 150px; height: 190px;
  background: radial-gradient(ellipse at 65% 30%, rgba(0,200,224,0.15) 0%, transparent 70%);
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.fv-person img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.fv-person-placeholder {
  width: 120px; height: 170px;
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
  background: rgba(255,255,255,0.06);
  border: 1.5px dashed rgba(0,200,224,0.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.35); gap: 5px;
}
.fv-content { max-width: 68%; }
.fv-sticker {
  display: inline-block; background: var(--pink); color: #fff;
  font-size: 14px; font-weight: 900; padding: 3px 10px; border-radius: 3px;
  margin-bottom: 8px; transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3); letter-spacing: 0.05em;
}
.fv-headline { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.fv-headline-big {
  display: block; font-size: 32px; font-weight: 900; line-height: 1.2;
  color: var(--yellow);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4), 2px 2px 0 rgba(255,136,0,0.6);
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.fv-headline-big em { color: #fff; font-style: normal; }
.fv-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.fv-badge { font-size: 11px; font-weight: 900; padding: 3px 9px; border-radius: 20px; border: 1.5px solid; }
.fvb-cyan   { background: var(--cyan);   color: var(--navy); border-color: var(--cyan); }
.fvb-white  { background: transparent;   color: #fff;        border-color: rgba(255,255,255,0.6); }
.fvb-yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.fvb-red { background: #ffb3b3; color: var(--navy); border-color: #ffb3b3; }
.fv-bottom {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.35); margin: 12px -14px 0;
  padding: 8px 14px; font-size: 11px; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 7px;
  border-top: 1px solid rgba(0,200,224,0.3);
}
.fv-bottom-badge { background: var(--orange); color: #fff; font-size: 10px; font-weight: 900; padding: 2px 7px; border-radius: 3px; }

/* FV - 画像版 */
.fv-image-wrap {
  position: relative;
  width: 100%;
  line-height: 0; /* 画像下の隙間を消す */
}

.fv-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* URGENCY */
.urgency-wrap { background: var(--red); padding: 0; }
.urgency-main {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 14px; font-size: 14px; font-weight: 900; color: #fff;
  background: linear-gradient(90deg, #cc0000, var(--red), #cc0000);
}
.urgency-timer-big { font-size: 22px; font-weight: 900; color: var(--yellow); font-variant-numeric: tabular-nums; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.urgency-off { display: none; padding: 8px 14px; background: #444; color: #ccc; font-size: 12px; text-align: center; }

/* TOP3 QUICK */
.top3-quick { background: var(--white); padding: 14px 12px; }
.quick-cards { display: flex; flex-direction: column; gap: 8px; }
.quick-card {
  display: flex; align-items: center; gap: 9px;
  border: 2px solid var(--gray); border-radius: 8px; padding: 10px;
  background: var(--white); text-decoration: none; color: var(--text);
  transition: all 0.12s; position: relative; overflow: hidden;
}
.quick-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.qc-1::before { background: #FFD700; }
.qc-2::before { background: #b0bcd0; }
.qc-3::before { background: #D4845A; }
.quick-card:active { background: var(--offwhite); border-color: var(--blue); }
.rank-medal { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.rm-1 { background: linear-gradient(135deg,#ffe066,#FFD700,#c8a800); color: #5a4000; }
.rm-2 { background: linear-gradient(135deg,#e0e5ef,#C0C8D8,#9aa5b8); color: #3a3a3a; }
.rm-3 { background: linear-gradient(135deg,#e8a080,#D4845A,#b06040); color: #fff; }
.banner-wrap { flex-shrink: 0; }
.banner-small {
  width: 70px; height: 40px; min-width: 70px;
  background: #eef2f7; border: 1.5px dashed #b0bcd0; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #9aa5b8; text-align: center; line-height: 1.3; overflow: hidden;
}
.banner-small img { width: 100%; height: 100%; object-fit: contain; display: block; }
.quick-info { flex: 1; min-width: 0; }
.quick-name { font-weight: 900; font-size: 14px; color: var(--navy); }
.quick-tag { display: inline-block; font-size: 10px; font-weight: 900; padding: 1px 6px; border-radius: 3px; margin-top: 2px; }
.qt-green  { background: #e6f7ec; color: var(--green);  border: 1px solid #a8dbb8; }
.qt-orange { background: #fff0e0; color: var(--orange); border: 1px solid #f5c88a; }
.qt-blue   { background: #e8f2ff; color: var(--blue);   border: 1px solid #b3d0f0; }
.quick-point { font-size: 11px; color: var(--gray-text); margin-top: 3px; }
.quick-arrow { color: var(--orange); font-size: 22px; flex-shrink: 0; font-weight: 900; }

/* 診断 */
.diagnosis { background: linear-gradient(160deg, var(--navy) 0%, #0d2d7a 100%); padding: 16px 12px; position: relative; overflow: hidden; }
.diagnosis::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(0,200,224,0.15) 0%, transparent 70%); pointer-events: none; }
.diag-ttl { text-align: center; margin-bottom: 14px; }
.diag-ttl-main { font-size: 20px; font-weight: 900; color: var(--yellow); display: block; letter-spacing: 0.02em; }
.diag-ttl-sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.diag-step { background: rgba(255,255,255,0.07); border: 1px solid rgba(0,200,224,0.25); border-radius: 8px; padding: 12px; margin-bottom: 10px; }
.diag-q { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 9px; display: flex; align-items: center; gap: 7px; }
.diag-q-num { background: var(--cyan); color: var(--navy); font-size: 11px; font-weight: 900; padding: 2px 8px; border-radius: 3px; }
.diag-options { display: flex; flex-wrap: wrap; gap: 6px; }
.diag-btn { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 7px 13px; font-size: 13px; cursor: pointer; transition: all 0.12s; font-family: inherit; font-weight: 700; }
.diag-btn:hover, .diag-btn.active { background: var(--yellow); color: var(--navy); border-color: var(--yellow); box-shadow: 0 2px 8px rgba(255,224,0,0.4); }
.diag-result { display: none; background: var(--white); border-radius: 8px; padding: 13px; margin-top: 10px; border: 2px solid var(--cyan); }
.diag-result.show { display: block; }
.diag-result-ttl { font-size: 13px; font-weight: 900; color: var(--navy); margin-bottom: 10px; text-align: center; padding-bottom: 8px; border-bottom: 2px dashed var(--cyan); }
.diag-result-card { display: flex; align-items: center; gap: 11px; }
.diag-result-banner { width: 80px; height: 46px; min-width: 80px; background: #eef2f7; border: 1.5px dashed #b0bcd0; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #9aa5b8; text-align: center; flex-shrink: 0; overflow: hidden; }
.diag-result-banner img { width: 100%; height: 100%; object-fit: contain; display: block; }
.diag-result-name { font-size: 17px; font-weight: 900; color: var(--navy); }
.diag-result-reason { font-size: 12px; color: var(--gray-text); margin-top: 3px; }
.diag-search-btn { width: 100%; background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%); color: #fff; border: none; border-radius: 8px; padding: 14px; font-size: 16px; font-weight: 900; cursor: pointer; margin-top: 6px; letter-spacing: 0.04em; font-family: inherit; box-shadow: 0 4px 14px rgba(255,77,0,0.4); transition: transform 0.1s; }
.diag-search-btn:active { transform: scale(0.98); }

/* タイプ別CTA */
.type-select { background: var(--white); padding: 16px 12px; }
.type-cta-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.type-cta-row {
  display: flex; align-items: center;
  background: var(--offwhite); border: 1.5px solid #d8dff0; border-radius: 9px;
  padding: 11px 12px; text-decoration: none; color: var(--text); gap: 10px;
  transition: background 0.12s, border-color 0.12s, box-shadow 0.12s;
  position: relative; overflow: hidden;
}
.type-cta-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--cyan); border-radius: 4px 0 0 4px; }
.type-cta-row:active { background: #eaf4ff; border-color: var(--cyan); box-shadow: 0 2px 10px rgba(0,200,224,0.2); }
.type-cta-left { flex: 1; min-width: 0; }
.type-cta-situation { font-size: 11px; color: var(--gray-text); font-weight: 700; margin-bottom: 3px; }
.type-cta-name { font-size: 16px; font-weight: 900; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.type-cta-tag { font-size: 10px; font-weight: 900; background: var(--cyan); color: var(--navy); padding: 1px 6px; border-radius: 3px; white-space: nowrap; }
.type-cta-sub { font-size: 11px; color: var(--gray-text); margin-top: 2px; }
.type-cta-arrow { flex-shrink: 0; background: var(--navy); color: #fff; width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; line-height: 1; }

/* ランキング */
.ranking-section { padding: 14px 12px; }
.ranking-ttl { text-align: center; font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 16px; position: relative; padding: 10px 0; border-top: 3px solid var(--navy); border-bottom: 3px solid var(--navy); letter-spacing: 0.02em; }

/* 比較表 */
.hikaku { background: var(--white); padding: 16px 12px; }
.hikaku-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 11px; table-layout: fixed; }
.hikaku-table th { background: var(--navy); color: #fff; padding: 9px 4px; text-align: center; border: 1px solid #1a5fa0; font-weight: 900; word-break: keep-all; overflow-wrap: break-word; }
.hikaku-table th.item-col { background: #060f2e; width: 28%; }
.hikaku-table th:not(.item-col) { width: 24%; }
.hikaku-company-name { font-size: 14px; font-weight: 900; color: #fff; display: block; line-height: 1.3; word-break: keep-all; overflow-wrap: break-word; }
.hikaku-table td { padding: 9px 5px; text-align: center; border: 1px solid #e8ecf4; font-size: 13px; vertical-align: middle; }
.hikaku-table tr:nth-child(even) td { background: var(--offwhite); }
.hikaku-table td:first-child { text-align: left; font-weight: 700; color: var(--gray-text); background: var(--offwhite); padding-left: 9px; }
.hikaku-table .val-best { color: var(--orange); font-weight: 900; }
.hikaku-cta-row td { padding: 10px 6px; background: #fff !important; border-top: 2px solid var(--navy); }
.hikaku-cta-btn { display: block; width: 100%; background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; text-align: center; padding: 9px 5px; border-radius: 6px; font-size: 13px; font-weight: 900; text-decoration: none; box-shadow: 0 2px 7px rgba(255,77,0,0.35); }

/* バレない */
.anshin { background: var(--white); padding: 16px 12px; }
.anshin-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.anshin-card { display: flex; gap: 11px; align-items: flex-start; background: var(--offwhite); border-radius: 8px; padding: 12px; border-left: 5px solid var(--cyan); }
.anshin-num { background: var(--navy); color: var(--cyan); font-weight: 900; font-size: 18px; width: 34px; height: 34px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.anshin-ttl { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 3px; }
.anshin-txt { font-size: 14px; color: var(--gray-text); }
.anshin-txt strong { color: var(--red); font-weight: 900; }

/* FAQ */
.faq { background: var(--white); padding: 16px 12px; margin-top: 8px; }
.faq-item { border-bottom: 1px solid #e8ecf4; }
.faq-q { display: flex; align-items: flex-start; gap: 9px; padding: 13px 0; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--text); }
.faq-q-icon { background: var(--navy); color: #fff; font-size: 12px; font-weight: 900; width: 22px; height: 22px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; align-self: flex-start; margin-top: 1px; line-height: 1; padding-bottom: 2px; }
.faq-a { display: none; padding: 0 0 13px 31px; font-size: 14px; color: var(--gray-text); line-height: 1.75; }
.faq-a.open { display: block; }
.faq-interest-ex { background: var(--yellow2); border: 1.5px solid #e0c800; border-radius: 7px; padding: 9px 11px; margin-top: 9px; font-size: 13px; }
.faq-interest-ex .ex-ttl { font-weight: 900; color: var(--text); margin-bottom: 5px; }

/* 最終CTA */
.final-cta { background: linear-gradient(160deg, var(--navy) 0%, #0a2060 50%, #0d3a8c 100%); padding: 20px 12px; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; bottom: -30px; left: -30px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,200,224,0.12) 0%, transparent 70%); pointer-events: none; }
.final-cta-zigzag { text-align: center; margin-bottom: 14px; }
.final-cta-label { display: inline-block; background: var(--yellow); color: var(--navy); font-size: 16px; font-weight: 900; padding: 6px 20px; border-radius: 4px; box-shadow: 0 3px 10px rgba(255,224,0,0.5); letter-spacing: 0.05em; }
.final-cta-card { background: var(--white); border-radius: 10px; padding: 14px; border: 2px solid var(--cyan); }
.final-cta-card-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.final-banner { flex-shrink: 0; width: 108px; height: 108px; background: #eef2f7; border: 1.5px dashed #b0bcd0; border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 9px; color: #9aa5b8; text-align: center; gap: 4px; overflow: hidden; }
.final-banner img { width: 100%; height: 100%; object-fit: contain; display: block; }
.final-card-name { font-size: 20px; font-weight: 900; color: var(--navy); }
.final-card-name a { text-decoration: none; color: inherit; }
.final-card-catch { font-size: 12px; color: var(--gray-text); margin-top: 2px; }
.final-points { font-size: 13px; color: var(--gray-text); margin-bottom: 12px; padding-left: 0; list-style: none; }
.final-points li { margin-bottom: 5px; display: flex; align-items: flex-start; gap: 7px; font-weight: 700; }

/* 絞り込み検索 */
.search-section { background: var(--white); }



.search-toggle { width: 100%; background: none; border: none; padding: 14px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; font-family: inherit; border-top: 2px solid var(--gray); }
.search-toggle-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.search-toggle-text { flex: 1; text-align: left; }
.search-toggle-title { font-size: 14px; font-weight: 900; color: var(--navy); display: block; }
.search-toggle-sub { font-size: 11px; color: var(--gray-text); display: block; margin-top: 1px; }
.search-toggle-arrow { color: var(--navy); font-size: 18px; font-weight: 900; transition: transform 0.2s; flex-shrink: 0; }
.search-toggle.open .search-toggle-arrow { transform: rotate(90deg); }
.search-body { display: none; padding: 0 14px 16px; }
.search-body.open { display: block; }
.form-block { background: var(--offwhite); margin-bottom: 10px; overflow: hidden; border: 1.5px solid var(--gray); }
.form-block-head { background: var(--navy); padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
.form-block-head-label { font-size: 13px; font-weight: 900; color: #fff; }
.form-block-head-sub { font-size: 10px; color: rgba(255,255,255,0.6); margin-left: auto; }
.form-block-body { padding: 12px; }
.form-select {
  width: 100%; appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1f5c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid var(--gray); border-radius: 7px;
  padding: 10px 36px 10px 12px; font-size: 14px; font-weight: 700; color: var(--text);
  font-family: inherit; cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--cyan); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--gray); border-radius: 7px; padding: 8px 10px; cursor: pointer; transition: all 0.12s; user-select: none; }
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-box { width: 20px; height: 20px; flex-shrink: 0; border: 2px solid var(--gray); border-radius: 4px; background: var(--white); display: flex; align-items: center; justify-content: center; transition: all 0.12s; }
.checkbox-item input:checked + .checkbox-box { background: var(--navy); border-color: var(--navy); }
.checkbox-item input:checked + .checkbox-box::after { content: ''; display: block; width: 5px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg) translate(-1px,-1px); }
.checkbox-item:has(input:checked) { background: #eaf4ff; border-color: var(--cyan); }
.checkbox-label { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.search-form-footer { display: flex; gap: 8px; padding: 0 10px 10px; }
.reset-btn { flex-shrink: 0; background: var(--offwhite); color: var(--gray-text); border: 1.5px solid var(--gray); border-radius: 8px; padding: 12px 14px; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; }
.search-exec-btn { flex: 1; background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; border: none; border-radius: 8px; padding: 14px; font-size: 15px; font-weight: 900; font-family: inherit; cursor: pointer; box-shadow: 0 4px 12px rgba(255,77,0,0.35); position: relative; }
.search-exec-btn::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; rotate: 45deg; }
.pref-toggle { cursor: pointer; user-select: none; }
.pref-toggle:active { opacity: 0.8; }
.inline-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
}
.inline-field:last-of-type { border-bottom: none; }
.inline-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  width: 72px;
  flex-shrink: 0;
}
.inline-select { margin: 0; }
.pref-toggle {
  cursor: pointer;
  user-select: none;
}
.pref-toggle:active { opacity: 0.8; }
.pref-toggle-sub {
  font-size: 12px;
  color: var(--navy);
  font-weight: 700;
}
/* ===== アニメーション ===== */

/* --- FV: ステッカー（スライドイン） --- */
.fv-sticker {
  opacity: 0;
  transform: rotate(-1.5deg) translateX(-60px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.fv-sticker.fv-anim-in {
  opacity: 1;
  transform: rotate(-1.5deg) translateX(0);
}

/* --- FV: ヘッドライン（フェードイン・下から） --- */
.fv-headline {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.fv-headline.fv-anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* --- FV: バッジ群（段階的フェードイン） --- */
.fv-badges {
  opacity: 0;
}
.fv-badges.fv-anim-in {
  opacity: 1;
}
.fv-badge {
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fv-badges.fv-anim-in .fv-badge:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.38s; }
.fv-badges.fv-anim-in .fv-badge:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.50s; }
.fv-badges.fv-anim-in .fv-badge:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.62s; }

/* --- FV: 人物画像（右からフェードイン） --- */
.fv-person {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.55s ease 0.1s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.fv-person.fv-anim-in {
  opacity: 1;
  transform: translateX(0);
}

/* --- CTAボタン: パルスアニメ --- */
@keyframes cta-pulse {
  0%   { box-shadow: 0 4px 14px rgba(255,77,0,0.4), 0 0 0 0 rgba(255,77,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2); }
  60%  { box-shadow: 0 4px 14px rgba(255,77,0,0.4), 0 0 0 10px rgba(255,77,0,0), inset 0 1px 0 rgba(255,255,255,0.2); }
  100% { box-shadow: 0 4px 14px rgba(255,77,0,0.4), 0 0 0 0 rgba(255,77,0,0), inset 0 1px 0 rgba(255,255,255,0.2); }
}
.cta-btn {
  animation: cta-pulse 2s ease-out infinite;
}
.sticky-cta-btn {
  animation: cta-pulse 2s ease-out 0.5s infinite;
}

/* --- スクロールフェードイン（共通） --- */
.scroll-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- ランキング1位：左スライドイン --- */
.rank1-slide {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.rank1-slide.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* --- 診断ボタン: 選択バウンス --- */
@keyframes diag-bounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.92); }
  65%  { transform: scale(1.06); }
  85%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
.diag-btn.bounce {
  animation: diag-bounce 0.35s ease forwards;
}

/* --- 1位メダル: シャインエフェクト --- */
@keyframes rm1-shine {
  0%   { left: -80%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}
.rm-1 {
  position: relative;
  overflow: hidden;
}
.rm-1::after {
  content: '';
  position: absolute;
  top: -10%; left: -80%;
  width: 40%; height: 120%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  animation: rm1-shine 3s ease-in-out 1.5s infinite;
  pointer-events: none;
}

/* --- スティッキーCTA: 出現時フラッシュ --- */
@keyframes sticky-flash {
  0%   { background: var(--navy); border-top-color: var(--cyan); }
  18%  { background: #004a60;     border-top-color: #fff; box-shadow: 0 -4px 22px rgba(0,200,224,0.7); }
  45%  { background: #002a3a;     border-top-color: var(--cyan); box-shadow: 0 -2px 10px rgba(0,200,224,0.3); }
  100% { background: var(--navy); border-top-color: var(--cyan); box-shadow: 0 -3px 14px rgba(0,0,0,0.25); }
}
.sticky-cta.flash {
  animation: sticky-flash 0.6s ease-out forwards;
}
/* ===== 申込前チェッカーエリア（案A+B） ===== */
.combo-audit-wrap { background: var(--white); padding: 18px 14px 0; }
.combo-section-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; padding: 14px; background: var(--navy); border-radius: 9px; }
.combo-section-icon { width: 36px; height: 36px; background: var(--cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.combo-section-ttl { font-size: 16px; font-weight: 900; color: var(--yellow); line-height: 1.35; }
.combo-section-sub  { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.combo-audit-points { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.combo-audit-point { display: flex; align-items: flex-start; gap: 12px; background: var(--offwhite); border-radius: 9px; padding: 14px; border-left: 5px solid var(--cyan); }
.combo-audit-num { background: var(--navy); color: var(--cyan); font-size: 12px; font-weight: 900; width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.combo-audit-body { flex: 1; min-width: 0; }
.combo-audit-ttl { font-size: 18px; font-weight: 900; color: var(--navy); margin-bottom: 5px; display: flex; align-items: center; gap: 7px; }
.combo-audit-ttl svg { flex-shrink: 0; }
.combo-audit-txt { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
.combo-audit-txt strong { color: var(--red); font-weight: 900; }
.combo-ng-box { background: #fff5f5; border: 2px solid #f0a0a0; border-radius: 9px; padding: 14px; margin-bottom: 0; }
.combo-ng-ttl { font-size: 18px; font-weight: 900; color: var(--red); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.combo-ng-list { list-style: none; padding: 0; margin: 0; }
.combo-ng-list li { font-size: 14px; color: #c00; font-weight: 700; padding: 8px 0; border-bottom: 1px solid #f0d0d0; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.combo-ng-list li:last-child { border-bottom: none; }
.combo-ng-list li svg { flex-shrink: 0; margin-top: 3px; }
.combo-divider { text-align: center; padding: 16px 14px 0; font-size: 22px; font-weight: 900; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.combo-divider::before, .combo-divider::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.combo-checker-wrap { background: var(--white); padding: 16px 14px 18px; }
.combo-checker-head {
  text-align: center;
  background: var(--navy);
  margin: -16px -14px 14px;
  padding: 14px 14px;
  border-radius: 4px 4px 0 0;
}
.combo-checker-head-ttl {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.combo-checker-head-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.combo-progress { height: 6px; background: var(--gray); border-radius: 3px; margin-bottom: 14px; overflow: hidden; display: none; }
.combo-progress-bar { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue-bright)); border-radius: 3px; transition: width 0.4s ease; width: 0%; }
.combo-checker-items { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.combo-citem { background: var(--offwhite); border: 2px solid var(--gray); border-radius: 10px; padding: 14px; transition: border-color 0.15s, background 0.15s; }
.combo-citem.ok     { background: #e6f7ec; border-color: var(--green); }
.combo-citem.ng     { background: #fdeaea; border-color: var(--red); }
.combo-citem.warn-q { background: #fff8e0; border-color: #e0c800; }
.combo-cq { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 11px; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.combo-cq-num { background: var(--navy); color: var(--cyan); font-size: 11px; font-weight: 900; padding: 3px 7px; border-radius: 3px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.combo-cbtns { display: flex; gap: 9px; }
.combo-yn { flex: 1; height: 44px; border-radius: 8px; border: 1.5px solid var(--gray); background: var(--white); font-size: 15px; font-weight: 900; cursor: pointer; font-family: inherit; transition: all 0.12s; color: var(--gray-text); }
.combo-yn.yes.selected { background: var(--green); border-color: var(--green); color: #fff; }
.combo-yn.no.selected  { background: var(--red);   border-color: var(--red);   color: #fff; }
.combo-result { display: none; border-radius: 10px; padding: 18px 16px; animation: combo-fade-up 0.35s ease; scroll-margin-top: 12px; }
@keyframes combo-fade-up { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.combo-result.pass { background: #e6f7ec; border: 2px solid var(--green); }
.combo-result.warn { background: #fff8e0; border: 2px solid #e0c800; }
.combo-result.dead { background: #f5f5f5; border: 2px solid #c0c8d8; }
.combo-result-icon { text-align: center; margin-bottom: 10px; }
.combo-result-ttl  { font-size: 18px; font-weight: 900; text-align: center; margin-bottom: 8px; }
.combo-result.pass .combo-result-ttl { color: var(--green); }
.combo-result.warn .combo-result-ttl { color: #9a7000; }
.combo-result.dead .combo-result-ttl { color: #555; }
.combo-result-txt { font-size: 14px; color: var(--gray-text); text-align: center; line-height: 1.75; margin-bottom: 16px; }
.combo-result.dead .combo-result-txt { margin-bottom: 0; }
.combo-cta { display: block; width: 100%; text-align: center; padding: 15px 32px 15px 14px; border-radius: 8px; font-size: 15px; font-weight: 900; text-decoration: none; letter-spacing: 0.03em; position: relative; }
.combo-cta::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; rotate: 45deg; }
.combo-cta.to-apply { background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; box-shadow: 0 4px 14px rgba(255,77,0,0.4); }
.combo-cta.to-check { background: linear-gradient(135deg, #7a5c00, #c8960a); color: #fff; box-shadow: 0 4px 14px rgba(180,130,0,0.35); }
.combo-cta-note { font-size: 12px; color: var(--gray-text); text-align: center; margin-top: 8px; line-height: 1.6; }
.dead-box { background: var(--offwhite); border-radius: 8px; padding: 12px 14px; margin-top: 12px; font-size: 13px; color: var(--gray-text); line-height: 1.7; border-left: 4px solid #c0c8d8; }
.dead-box strong { color: var(--text); }
.sub-q-wrap { display: none; margin-top: 12px; border: 2px solid var(--cyan); border-radius: 10px; overflow: hidden; animation: combo-fade-up 0.35s ease; }
.sub-q-head { background: linear-gradient(135deg, var(--navy), #1155cc); padding: 14px; }
.sub-q-head-ttl { font-size: 15px; font-weight: 900; color: var(--yellow); display: flex; align-items: center; gap: 7px; margin-bottom: 3px; }
.sub-q-head-sub { font-size: 12px; color: rgba(255,255,255,0.7); }
.sub-q-progress { height: 5px; background: rgba(255,255,255,0.15); }
.sub-q-progress-bar { height: 100%; background: var(--cyan); transition: width 0.4s ease; width: 0%; }
.sub-q-item { background: var(--white); padding: 14px; border-top: 1px solid #e8ecf4; }
.sub-q-label { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.sub-q-num { background: var(--cyan); color: var(--navy); font-size: 11px; font-weight: 900; padding: 2px 7px; border-radius: 3px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.sub-q-options { display: flex; flex-wrap: wrap; gap: 7px; }
.sub-q-btn { flex: 1; min-width: calc(33% - 7px); padding: 11px 8px; border-radius: 8px; border: 2px solid var(--gray); background: var(--offwhite); font-size: 13px; font-weight: 900; cursor: pointer; font-family: inherit; color: var(--text); transition: all 0.12s; line-height: 1.3; text-align: center; }
.sub-q-btn.selected { background: var(--navy); border-color: var(--navy); color: #fff; }
.rec-wrap { background: var(--white); border-top: 1px solid #e8ecf4; }
.rec-inner { padding: 16px 14px; animation: combo-fade-up 0.3s ease; }
.rec-label { font-size: 18px; font-weight: 900; color: var(--gray-text); text-align: center; margin-bottom: 12px; letter-spacing: 0.05em; }
.rec-card { background: var(--offwhite); border: 2px solid var(--cyan); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
.rec-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rec-icon-wrap { width: 44px; height: 44px; background: #fff3ee; border: 2px solid rgba(255,77,0,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rec-name-wrap { flex: 1; }
.rec-name  { font-size: 20px; font-weight: 900; color: var(--navy); }
.rec-catch { font-size: 13px; color: var(--gray-text); margin-top: 2px; }
.rec-reason { background: var(--white); border-left: 4px solid var(--orange); border-radius: 0 6px 6px 0; padding: 11px 13px; font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.rec-reason strong { color: var(--orange); font-weight: 900; }
.rec-merit { background: #fff8e0; border: 1.5px solid #e0c800; border-radius: 8px; padding: 11px 13px; font-size: 14px; color: #7a5c00; font-weight: 700; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.rec-cta { display: block; width: 100%; text-align: center; padding: 16px 32px 16px 14px; border-radius: 8px; font-size: 16px; font-weight: 900; text-decoration: none; letter-spacing: 0.04em; background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; box-shadow: 0 4px 14px rgba(255,77,0,0.4); position: relative; animation: cta-pulse 2s ease-out infinite; }
.rec-cta::after { content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-top: 2.5px solid #fff; border-right: 2.5px solid #fff; rotate: 45deg; }
.rec-cta-note { font-size: 12px; color: var(--gray-text); text-align: center; margin-top: 8px; line-height: 1.6; }
.rec-others { margin-top: 10px; font-size: 13px; color: var(--gray-text); text-align: center; }
.combo-cbtns-col { flex-direction: column; gap: 7px; }
.combo-yn-wide { flex: none; width: 100%; height: 44px; }
.combo-yn-wide.none.selected     { background: var(--green); border-color: var(--green); color: #fff; }
.combo-yn-wide.late.selected     { background: #c8960a;      border-color: #c8960a;      color: #fff; }
.combo-yn-wide.bankrupt.selected { background: var(--red);   border-color: var(--red);   color: #fff; }