@charset "UTF-8";
:root {
  --color-primary: #1e3a8a;
  --color-green: #10b981;
  --color-green-dark: #047857;
  --color-red: #dc2626;
  --color-gray-light: #f1f5f9;
  --color-gray: #6b7280;
  --color-text: #1a1a1a;
  --color-text-light: #374151;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  background-color: #f3f4f6;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 20px;
}

.article {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #000;
}

.highlight {
  color: #dc2626;
  font-weight: bold;
  background: linear-gradient(transparent 60%, rgba(251, 191, 36, 0.5) 60%);
}

.blue {
  color: #1e40af;
  font-weight: bold;
}

.red {
  color: #dc2626;
  font-weight: bold;
}

.sep {
  height: 2px;
  background: #e5e7eb;
  margin: 40px 20px;
}

.fv-img-wrap {
  position: relative;
  text-align: center;
  background: #111;
}
.fv-img-wrap .pr-label {
  top: 10px;
  right: 10px;
  left: auto;
}

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

.fv-copy {
  background: #FFF;
  border-top: 3px solid #1e3a8a;
  padding: 20px 20px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.4;
}
.fv-copy-flat {
  background: #FFF;
  padding: 20px 20px 8px;
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  color: #1a1a1a;
  line-height: 1.7;
}
.heading-flat {
  padding: 20px 20px;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  color: #1a1a1a;
  line-height: 1.7;
}
.fv-copy-accent {
  color: #dc2626;
}
.fv-copy-arrow {
  margin-top: 12px;
  font-size: 20px;
  color: #1e3a8a;
}
.fv-copy-warning {
  margin-top: 0;
  font-size: 36px;
  line-height: 1.1;
  font-weight: normal;
  color: #1a1a1a;
}
.fv-copy-warning-accent {
  color: #dc2626;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
}

.pr-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #6b7280;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
}

.scroll-hint {
  display: block;
  margin-top: 40px;
  font-weight: bold;
  color: #1e40af;
  font-size: 20px;
  animation: bounce 2s infinite;
}
.scroll-hint--dark {
  padding: 20px 0 30px;
  background: #111;
  color: #fbbf24;
  font-size: 26px;
  animation: none;
}
.scroll-hint--accent {
  margin-top: 0;
  color: #1e3a8a;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.body-text {
  padding: 40px 20px;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
}
.body-text a {
  color: #1e40af;
  text-decoration: underline;
}
.body-text a:hover {
  text-decoration: none;
}

.alert-box {
  background: #fff7ed;
  border: 4px solid #fb923c;
  margin: 30px 20px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  color: #9a3412;
}

.heading {
  background: #f1f5f9;
  border-top: 2px solid #1e3a8a;
  border-bottom: 6px solid #1e3a8a;
  padding: 20px 20px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: bold;
  margin: 30px 0 20px;
  text-align: center;
  color: #1e3a8a;
}

.sub-heading {
  font-size: 28px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  color: #1e3a8a;
  margin: 60px 0 30px;
  padding: 0 20px;
}

.info-box {
  background: #f8fafc;
  margin: 30px 20px;
  padding: 30px;
  border-radius: 20px;
  font-size: 20px;
  border: 1px solid #cbd5e1;
  text-align: center;
}

.comparison-area {
  padding: 0 16px;
  margin: 40px 0;
}

.dia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========== パターン比較セクション ========== */
.pattern-section {
  padding: 0 16px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pattern-card {
  border-radius: 16px;
  padding: 32px 20px 20px;
  position: relative;
}
.pattern-card--good {
  border: 3px solid #3b82f6;
  background: #fff;
}
.pattern-card--bad {
  border: 3px solid #444;
  background: #1a1a1a;
}
.pattern-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.pattern-label--good { background: #1e3a8a; }
.pattern-label--bad { background: #333; border: 2px solid #fff; }
.pattern-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 2px;
}

/* フロー図解 */
.pattern-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.pf-step {
  padding: 14px 16px;
  border-radius: 10px;
  text-align: center;
}
.pf-step--good { background: #edf2fc; }
.pf-step--bad { background: #2e2e2e; }
.pf-step-sub {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  margin-bottom: 4px;
}
.pf-step-sub--bad { color: #999; }
.pf-step-main {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}
.pf-step-main--accent-good {
  color: #1e3a8a;
  font-size: 18px;
  font-weight: 900;
}
.pf-step-main--accent-bad {
  color: #fca5a5;
  font-size: 18px;
  font-weight: 900;
}
.pf-step-main--bad {
  color: #e5e5e5;
}
.pf-arrow {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 6px 0;
}
.pf-arrow--good { color: #1e3a8a; }
.pf-arrow--bad { color: #fca5a5; }

/* 結論 */
.pattern-result {
  margin-top: 12px;
  padding: 10px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}
.pattern-result--good { color: #1e3a8a; }
.pattern-result--bad { color: #fca5a5; }

.dia-box {
  border: 4px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px 0 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.dia-box--blue {
  border-color: #3b82f6;
  background: #eff6ff;
}
.dia-box--blue .box-label {
  background: #1e3a8a;
}
.dia-box--blue .eq-main {
  color: #1a1a1a;
}
.dia-box--white {
  border-color: #e5e7eb;
  background: #fff;
}
.dia-box--white .box-label {
  background: #1e3a8a;
}
.dia-box--dark {
  border-color: #111;
  background: #111;
}
.dia-box--dark .box-label {
  background: #111;
  border: 2px solid #fff;
}

.box-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  z-index: 10;
}

.box-illustration {
  width: 100%;
  margin-bottom: 16px;
}
.box-illustration img {
  width: 100%;
  display: block;
}

.box-summary {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
  min-height: 2.6em;
  text-align: center;
  padding: 0 16px;
}

.box-visual {
  background: white;
  border-radius: 15px;
  padding: 20px 8px;
  margin: 0 16px 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.eq-row {
  font-weight: bold;
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 4px;
}

.eq-main {
  font-weight: 900;
  font-size: 24px;
  color: #1a1a1a;
  line-height: 1.4;
}
.eq-main .red {
  color: #dc2626;
}

.box-footer {
  margin-top: auto;
  font-size: 16px;
  text-align: center;
  margin-left: 16px;
  margin-right: 16px;
}

.dia-wrap {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  margin: 40px 0;
}

/* dia-card (買取vs仲介等) は .dia-card 定義(L244)を使用 */
.dia-card.blue-theme {
  border-color: #3b82f6;
  background: #eff6ff;
}
.dia-card.blue-theme .dia-label {
  background: #1e3a8a;
}
.dia-card.blue-theme .dia-point {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #3b82f6;
}
.dia-card.orange-theme {
  border-color: #dc2626;
  background: #fef2f2;
}
.dia-card.orange-theme .dia-label {
  background: #dc2626;
}
.dia-card.orange-theme .dia-point {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #dc2626;
}

.dia-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e3a8a;
  color: white;
  padding: 4px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  z-index: 10;
}

.dia-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.dia-point {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  margin-top: auto;
  line-height: 1.7;
}
.dia-point--blue {
  color: #1565c0;
}
.dia-point--red {
  color: #991b1b;
}

.dia-illust {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
}
.dia-illust img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.dia-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 16px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  color: #374151;
}
.dia-list li {
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.7;
}
.dia-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: #9ca3af;
  font-weight: bold;
}

.dia-desc {
  font-size: 16px;
  color: #374151;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.fishing-flow {
  background: #fff1f2;
  margin: 30px 20px;
  padding: 30px;
  border-radius: 24px;
  border: 3px dashed #f43f5e;
  text-align: center;
}

.fishing-title {
  text-align: center;
  color: #be123c;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 20px;
}

.fishing-step {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

.fishing-arrow {
  text-align: center;
  color: #f43f5e;
  font-size: 36px;
  margin: 12px 0;
  font-weight: bold;
}

.price {
  font-weight: bold;
}
.price.high {
  color: #f43f5e;
  font-size: 1.2em;
}
.price.low {
  color: #1e40af;
}

.fishing-result {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 4px solid #fda4af;
  text-align: center;
}

.fishing-result-text {
  margin-bottom: 8px;
  font-size: 20px;
}

.loss {
  color: #be123c;
  font-size: 36px;
  line-height: 1.1;
  font-weight: bold;
}

.compare-title {
  font-size: 16px;
  font-weight: bold;
  color: #1e3a8a;
  text-align: center;
  margin: 0 16px 12px;
  padding: 8px 16px;
  background: #eff6ff;
  border-left: 4px solid #1e3a8a;
  border-radius: 0 8px 8px 0;
}

.compare-wrap {
  overflow-x: auto;
  margin: 20px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.compare-wrap::-webkit-scrollbar {
  display: none;
}

.cmp-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 12px;
  background: white;
}
.cmp-table th, .cmp-table td {
  padding: 12px 8px;
  border: 1px solid #f1f5f9;
  text-align: center;
  vertical-align: middle;
  line-height: 1.7;
}
.cmp-table thead th {
  background: #f8fafc;
  font-weight: bold;
  color: #1e40af;
  font-size: 12px;
}

.cmp-table thead th.home4u-col {
  background: #f0fdf4;
  border-left: 2px solid #10b981;
  border-right: 2px solid #10b981;
}

.cmp-table td.home4u-col {
  background: #f0fdf4;
  border-left: 2px solid #10b981;
  border-right: 2px solid #10b981;
}

.cmp-table td.best {
  background: #f0fdf4;
  font-weight: bold;
  color: #065f46;
}

.lose-cell {
  color: #9ca3af;
}

.cmp-th-screenshot {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto 8px;
  display: block;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 10px;
}

.cmp-btn-sm {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 3px 0 #047857;
  font-size: 10px;
  white-space: nowrap;
}
.cmp-btn-sm--other {
  display: inline-block;
  background: #757575;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 3px 0 #555;
  font-size: 10px;
  white-space: nowrap;
}

.feature-card {
  margin: 40px 20px;
  background: #fff;
  border: 4px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  text-align: left;
}
.feature-card h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #065f46;
}

.feature-num {
  position: absolute;
  top: -24px;
  left: 30px;
  background: #10b981;
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  /* M: 番号表示、本文サイズ統一 */
  box-shadow: 0 5px 0 #065f46;
}

.feature-example {
  margin-top: 20px;
  background: #f0fdf4;
  padding: 20px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  border: 1px solid #dcfce7;
}

.flow-container {
  position: relative;
  padding-left: 60px;
  margin: 40px 20px;
  text-align: left;
}

.flow-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #c8e6c9;
}

.flow-item {
  position: relative;
  margin-bottom: 40px;
}

.flow-num {
  position: absolute;
  left: -56px;
  top: 0;
  width: 42px;
  height: 42px;
  background: #68b33f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
}
.flow-num.last {
  background: #2e7d32;
}

.flow-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.flow-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.cta-btn {
  display: block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 20px;
  border-radius: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 0 #047857;
  margin-bottom: 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}
.cta-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #047857;
}
.cta-btn small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 8px;
}

@keyframes shine {
  0% {
    left: -60%;
  }
  30% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.cta-micro {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.cta-micro span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: bold;
}

.faq-item {
  margin: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  text-align: left;
}
.faq-item.open .faq-q::after {
  transform: rotate(180deg);
}
.faq-item.open .faq-a {
  display: block;
}

.faq-q {
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.3s;
  font-size: 20px;
  color: #111827;
}
.faq-q:hover {
  background: #f9fafb;
}
.faq-q::after {
  content: "▼";
  font-size: 14px;
  color: #9ca3af;
  transition: transform 0.3s;
}

.faq-a {
  padding: 0 20px 30px;
  display: none;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  border-top: 2px solid #f3f4f6;
  padding-top: 20px;
}

/* ========== 絞り込みツール ========== */
.finder-tool {
  margin: 0 16px 40px;
  padding: 24px 16px;
  border: 2px solid #d1d5db;
  border-radius: 16px;
  background: #fafbfc;
}
.finder-step {
  margin-bottom: 20px;
}
.finder-label {
  font-size: 15px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.finder-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.finder-buttons--col {
  flex-direction: column;
}
.finder-btn {
  flex: 1;
  min-width: 0;
  padding: 12px 8px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.finder-buttons--col .finder-btn {
  flex: none;
}
.finder-btn:hover {
  border-color: var(--color-primary);
  background: #f0f4ff;
}
.finder-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.finder-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.finder-result {
  margin-top: 28px;
  display: none;
}
.finder-result.is-visible {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.finder-result-header {
  text-align: center;
  margin-bottom: 20px;
}
.finder-result-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.finder-result-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.finder-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: #e8f0fe;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}
.finder-card {
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 16px;
  margin-bottom: 12px;
  position: relative;
}
.finder-card:first-child {
  border-color: var(--color-primary);
  background: #f8faff;
}
.finder-card-rank {
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 20px;
}
.finder-card:first-child .finder-card-rank {
  background: #dc2626;
}
.finder-card-name {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}
.finder-card-company {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}
.finder-card-reason {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.finder-card-features {
  list-style: none;
  margin-bottom: 16px;
}
.finder-card-features li {
  font-size: 13px;
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.finder-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green-dark);
  font-weight: 900;
}
.finder-card-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
  background: var(--color-green);
  transition: background 0.15s;
}
.finder-card-cta:hover {
  background: var(--color-green-dark);
}
.finder-card-cta--sub {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.finder-card-cta--sub:hover {
  background: #f0f4ff;
}

footer {
  text-align: center;
  padding: 20px 20px;
  font-size: 10px;
  line-height: 1.5;
  background: #333;
  color: #ccc;
}
footer a {
  color: #fff;
  text-decoration: underline;
  margin: 0 8px;
}

.footer-copyright {
  display: block;
  margin-top: 8px;
}

.disclaimer {
  font-size: 10px;
  color: #9ca3af;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.text-xs {
  font-size: 10px; /* XXS */
  line-height: 1.5;
}

.text-sm {
  font-size: 12px; /* XS */
  line-height: 1.7;
}

.text-lg {
  font-size: 16px; /* S */
  line-height: 1.7;
}

.text-2xl {
  font-size: 24px; /* L */
  line-height: 1.4;
}

.text-3xl {
  font-size: 28px; /* XL */
  line-height: 1.3;
}

.text-left {
  text-align: left;
}

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

.font-bold {
  font-weight: bold;
}

.font-normal {
  font-weight: normal;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.no-underline {
  text-decoration: none;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

/* ===== 余白ユーティリティ（レギュレーション準拠） ===== */
/* 4xs=4px, 3xs=8px, 2xs=12px, xs=16px, sm=20px, md=30px, lg=40px, xl=60px */
.mb-4xs { margin-bottom: 4px; }
.mb-3xs { margin-bottom: 8px; }
.mb-2xs { margin-bottom: 12px; }
.mb-xs  { margin-bottom: 16px; }
.mb-sm  { margin-bottom: 20px; }
.mb-md  { margin-bottom: 30px; }
.mb-lg  { margin-bottom: 40px; }
.mb-xl  { margin-bottom: 60px; }

.mt-4xs { margin-top: 4px; }
.mt-3xs { margin-top: 8px; }
.mt-2xs { margin-top: 12px; }
.mt-xs  { margin-top: 16px; }
.mt-sm  { margin-top: 20px; }
.mt-md  { margin-top: 30px; }
.mt-lg  { margin-top: 40px; }
.mt-xl  { margin-top: 60px; }

.my-sm  { margin-top: 20px; margin-bottom: 20px; }
.my-md  { margin-top: 30px; margin-bottom: 30px; }
.my-lg  { margin-top: 40px; margin-bottom: 40px; }

.p-sm   { padding: 20px; }
.p-md   { padding: 30px; }

.pt-sm  { padding-top: 20px; }
.pb-sm  { padding-bottom: 20px; }

/* Tailwind互換（既存HTML用。新規では上記トークン名を使う） */
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-2 { margin-top: 8px; }
.mt-6 { margin-top: 24px; }
.my-6 { margin-top: 24px; margin-bottom: 24px; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.p-6 {
  padding: 24px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-4 {
  padding-bottom: 16px;
}

.gap-4 {
  gap: 16px;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.rounded-xl {
  border-radius: 12px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-2xl {
  border-radius: 16px;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.border-4 {
  border-width: 4px;
  border-style: solid;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.w-full {
  width: 100%;
}

.w-20 {
  width: 80px;
}

.h-20 {
  height: 80px;
}

.aspect-square {
  aspect-ratio: 1/1;
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.text-gray-500 {
  color: #6b7280;
}

.text-blue-600 {
  color: #2563eb;
}

.text-green-600 {
  color: #16a34a;
}

.text-18 {
  font-size: 16px;
}

.text-14 {
  font-size: 12px;
}

.text-green-accent {
  color: #68b33f;
}

.text-orange {
  color: #f97316;
}

.text-sky {
  color: #0ea5e9;
}

.text-purple {
  color: #8b5cf6;
}

.source-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 12px;
  margin-bottom: 0;
}
.source-label a {
  color: #1e40af;
  text-decoration: underline;
}
.source-label a:hover {
  text-decoration: none;
}

.official-warning-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 12px;
}

.text-hero {
  font-size: 28px;
  font-weight: 900;
}

.source-note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

.text-16 {
  font-size: 16px;
}

.text-32 {
  font-size: 28px; /* XL */
}

.box-summary-block {
  display: block;
}

.cmp-th-first {
  width: 12%;
}

.mikiwame-section {
  background-color: #d1e8f7;
  padding: 30px 20px;
  margin: 0;
}

.mk-checkpoint {
  max-width: 600px;
  margin: 0 auto 30px;
  /* md */
}

.mk-title {
  background-color: #72aadb;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.mk-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.mk-desc {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 0 8px;
  color: #374151;
}

.mk-cards {
  display: flex;
  gap: 16px;
}

.mk-card {
  flex: 1;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mk-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #3b4255;
}

.mk-ok .mk-label::before {
  content: "☑️";
  font-size: 1.3rem;
}

.mk-ng .mk-label::before {
  content: "⚠️";
  font-size: 1.3rem;
}

.mk-illust {
  width: 80%;
  max-width: 160px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.mk-text {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  font-weight: bold;
  color: #222;
  margin: 0;
}

.mk-point {
  background: #fff;
  border: 3px solid #72aadb;
  border-radius: 12px;
  padding: 20px 20px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  position: relative;
  text-align: left;
}

.mk-point-label {
  display: inline-block;
  background: #72aadb;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 5px;
  margin-right: 8px;
  letter-spacing: 0.05em;
}

.method-card {
  margin: 30px 16px;
  padding: 40px 16px 20px;
  border: 4px solid #e5e7eb;
  border-radius: 24px;
  background: white;
  position: relative;
}
.method-card--green {
  border-color: #68b33f;
  background: #f0fdf4;
  text-align: center;
}

.method-label {
  position: absolute;
  top: -16px;
  left: 20px;
  background: #1e3a8a;
  color: white;
  padding: 4px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  /* S: ラベル */
  white-space: nowrap;
}
.method-label--green {
  background: #68b33f;
  color: white;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-hint-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 24px;
}

/* ===== 吹き出し（アバター付き） ===== */
.speech-bubble-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 40px 20px;
}
.speech-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.speech-bubble {
  background: #f1f5f9;
  border-radius: 0 16px 16px 16px;
  padding: 16px 20px;
  position: relative;
  font-size: 20px;
  line-height: 1.7;
  text-align: left;
}
.speech-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #f1f5f9;
  border-left: 8px solid transparent;
}

/* ===== 査定結果カード ===== */
.assessment-diff-container {
  background-color: #e1f5fe;
  padding: 20px 16px;
  border-radius: 12px;
  margin: 0 20px 40px;
}
.assessment-diff-title {
  text-align: center;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.assessment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.assessment-list-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.assessment-list-company {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}
.assessment-list-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text);
}
.assessment-list-price span {
  font-size: 14px;
  font-weight: bold;
}
.assessment-list-price.low-price {
  color: var(--color-primary);
}
.assessment-down-arrow {
  text-align: center;
  color: var(--color-red);
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1;
  animation: bounceDown 1.5s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.assessment-highlight-card {
  background-color: #fff;
  border: 4px solid var(--color-red);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.15);
  margin-bottom: 20px;
}
.assessment-highlight-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-red);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.assessment-highlight-company {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 12px;
  margin-top: 4px;
}
.assessment-real-img {
  width: 80%;
  max-width: 320px;
  margin: 0 auto 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
}
.assessment-highlight-price-wrap {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  background: #fff8e1;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed #fbc02d;
}
.assessment-highlight-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1.3;
  display: block;
}
.assessment-highlight-price span {
  font-size: 18px;
}
.assessment-result {
  text-align: center;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  color: var(--color-text);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.assessment-result .diff-amount {
  color: var(--color-red);
  font-size: 26px;
  border-bottom: 4px solid var(--color-red);
  padding: 0 4px;
  margin: 0 4px;
}

/* ===== 質問カード ===== */
.question-cards {
  display: flex;
  gap: 12px;
  padding: 0 20px 20px;
}
.question-card {
  flex: 1;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.question-card p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.7;
}

/* ===== 図解画像 ===== */
.infographic-wrap {
  padding: 0 20px 40px;
}
.infographic-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.speech-bubble p {
  margin: 0;
}

/* ===== パターンA: プロフィールカード + 吹き出し ===== */
.profile-card-a {
  margin: 0 20px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}
.profile-a-header {
  background: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 8px 16px;
}
.profile-a-photo {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  position: relative;
}
.profile-a-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.profile-a-image-note {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 10px;
  color: #000;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff;
}
.profile-a-photo-overlay {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.profile-a-photo-overlay span {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}
.profile-a-reason {
  margin: 0;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-text);
  text-align: left;
}
.profile-a-balloon {
  margin: 20px 20px 40px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
}
.profile-a-balloon::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #e5e7eb;
}
.profile-a-balloon::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 42px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f9fafb;
}
.profile-a-balloon p {
  margin: 0;
}
.profile-a-balloon-note {
  margin-top: 12px;
  font-size: 16px;
  color: var(--color-red);
}

@media (max-width: 480px) {
  .dia-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .dia-grid .box-summary {
    font-size: 15px;
  }
  .dia-grid .box-visual {
    padding: 12px 6px;
  }
  .dia-grid .eq-row {
    font-size: 13px;
  }
  .dia-grid .eq-main {
    font-size: 14px;
  }
  .dia-grid .box-footer {
    font-size: 13px;
  }
  .dia-grid .box-label {
    font-size: 14px;
    padding: 3px 18px;
  }
  .dia-box {
    padding: 30px 0 20px;
  }
  .dia-wrap {
    flex-direction: row;
    gap: 8px;
  }
  .dia-wrap .dia-label {
    font-size: 14px;
    padding: 4px 12px;
  }
  .dia-wrap .dia-desc {
    font-size: 13px;
  }
  .dia-wrap .dia-card {
    padding: 30px 10px 20px;
  }
  .dia-wrap .dia-icon {
    width: 60px;
    height: 60px;
  }
  .dia-wrap .dia-point {
    font-size: 13px;
    padding: 10px;
  }
  .mk-label {
    font-size: 16px;
  }
  .mk-text {
    font-size: 13px;
  }
  .mk-cards {
    gap: 8px;
  }
  .mk-card {
    padding: 15px 10px;
  }
  .mk-point {
    font-size: 12px;
    padding: 15px;
  }
}

/* ========================================
   実力型カード v2（スコープ化）
========================================= */
.pattern-card-v2 {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.pattern-card-v2 .header-label {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}
.pattern-card-v2 .pattern-num-v2 {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.pattern-card-v2 .flow-container {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  position: static;
  padding-left: 24px;
  margin: 0;
}
.pattern-card-v2 .step-box {
  background: #fff;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pattern-card-v2 .step-sub {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pattern-card-v2 .step-main {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.pattern-card-v2 .accent-text {
  color: #2563eb;
  font-size: 1.5rem;
  display: block;
  margin-top: 4px;
  margin-bottom: 8px;
}
.pattern-card-v2 .arrow-icon {
  display: flex;
  justify-content: center;
  color: #cbd5e1;
  margin: -4px 0;
}
.pattern-card-v2 .result-section {
  background: #eff6ff;
  padding: 28px 24px;
  text-align: center;
  border-top: 1px dashed #bfdbfe;
}
.pattern-card-v2 .result-text {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pattern-card-v2 .highlight-yellow {
  background: linear-gradient(transparent 60%, #fde047 60%);
  padding: 0 4px;
}
.pattern-card-v2 .illust-container {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3b82f6;
}
/* Bad variant */
.pattern-card-v2 .header-label.is-bad {
  background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
}
.pattern-card-v2 .step-box.is-bad:hover {
  border-color: #ef4444;
}
.pattern-card-v2 .accent-text.is-bad {
  color: #ef4444;
}
.pattern-card-v2 .illust-container.is-bad {
  color: #94a3b8;
}
.pattern-card-v2 .result-section.is-bad {
  background: #fff1f2;
  border-top-color: #fecdd3;
}
.pattern-card-v2 .result-section.is-bad .result-text {
  color: #9f1239;
}
.pattern-card-v2 .highlight-red {
  background: linear-gradient(transparent 60%, #fecdd3 60%);
  padding: 0 4px;
}

/* ========================================
   買取/仲介 比較カード v2
========================================= */
.comparison-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 375px;
  margin: 0 auto;
  padding: 0 16px;
}
.compare-card-v2 {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.compare-header-v2 {
  background: #f8fafc;
  color: #1e293b;
  padding: 16px 20px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.compare-body-v2 {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.compare-main-v2 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.compare-illust-v2 {
  margin: 8px 0;
  display: flex;
  justify-content: center;
}
.compare-illust-v2 img {
  width: 100%;
  max-width: 200px;
}
.compare-formula-v2 {
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 1rem;
  color: #475569;
  border: 1px solid #f1f5f9;
}
.compare-formula-v2 .formula-val {
  color: #ef4444;
  font-size: 1.15rem;
  margin-left: 4px;
}
.compare-footer-v2 {
  margin-top: 4px;
}
.compare-footer-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
}
.compare-footer-text {
  font-weight: 700;
  color: #334155;
  margin-top: 4px;
}

/* ========================================
   タイムライン体験談
========================================= */
.timeline {
  position: relative;
  padding: 0 20px 0 40px;
  margin: 30px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e2e8f0;
}
.tl-step {
  position: relative;
  padding-bottom: 40px;
}
.tl-step--last {
  padding-bottom: 0;
}
.tl-marker {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1e3a8a;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #1e3a8a;
  z-index: 2;
}
.tl-marker--alert {
  background: #dc2626;
  box-shadow: 0 0 0 2px #dc2626;
}
.tl-marker--success {
  background: #10b981;
  box-shadow: 0 0 0 2px #10b981;
}
.tl-day {
  font-size: 12px;
  font-weight: 700;
  color: #1e3a8a;
  background: #e8f0fe;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.tl-title {
  font-size: 22px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
}
.tl-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.tl-content p {
  margin-bottom: 12px;
}
.tl-card {
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden;
}
.tl-card-caption {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  padding: 8px 0;
  text-align: center;
  line-height: 1.5;
}
/* バーチャート */
.tl-bar-chart {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}
.tl-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tl-bar-item:last-child {
  margin-bottom: 0;
}
.tl-bar-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  min-width: 36px;
  text-align: right;
}
.tl-bar-sub {
  font-size: 10px;
  font-weight: 400;
  color: #94a3b8;
  display: block;
}
.tl-bar-track {
  flex: 1;
  height: 20px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.tl-bar-fill {
  height: 100%;
  background: #94a3b8;
  border-radius: 10px;
}
.tl-bar-fill--good {
  background: #1e3a8a;
}
.tl-bar-fill--danger {
  background: #dc2626;
}
.tl-bar-price {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  min-width: 60px;
  text-align: right;
}
.tl-diff-badge {
  text-align: center;
  background: #fef2f2;
  color: #dc2626;
  font-size: 16px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 8px;
}
/* 質問チップ */
.tl-question-row {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}
.tl-question-chip {
  flex: 1;
  background: #f0f4ff;
  border: 2px solid #1e3a8a;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
}
/* 判定フラグ */
.tl-flag {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.tl-flag--bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.tl-flag--good {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.tl-flag-icon {
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-flag--bad .tl-flag-icon {
  background: #dc2626;
  color: #fff;
}
.tl-flag--good .tl-flag-icon {
  background: #1e3a8a;
  color: #fff;
}
.tl-flag-name {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 2px;
}
.tl-flag--bad .tl-flag-name { color: #dc2626; }
.tl-flag--good .tl-flag-name { color: #1e3a8a; }
.tl-flag-answer {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}
/* 結果カード */
.tl-result-card {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin: 12px 0;
}
.tl-result-label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.tl-result-price {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
}
.tl-result-price span {
  font-size: 22px;
}
.tl-result-note {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.8;
}

/* ========================================
   追加クラス（lp-structure準拠）
========================================= */

/* インラインstyle置換 */
.box-label--primary { background: #1e3a8a; }
.box-label--dark { background: #111; border: 2px solid #fff; }
.box-summary--dark { color: #fff; }
.text-danger-light { color: #fca5a5; font-weight: 900; }
.box-visual--dark { background: #222; }
.eq-main--dark { color: #fff; }
.tl-card-img { width: 100%; border-radius: 12px; }
.tl-caption-note { font-size: 12px; color: #999; }
.mt-sm { margin-top: 12px; }
.tl-bar-price--good { color: #1e40af; font-weight: 900; }
.tl-bar-price--danger { color: #dc2626; font-weight: 900; }
.flow-step-sub { font-size: 18px; font-weight: normal; color: #6b7280; }

/* Tailwindユーティリティ置換 */
.method-combo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.method-combo-link {
  text-align: center;
  flex: 1;
  text-decoration: none;
}
.method-combo-img {
  width: 100%;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}
.method-combo-plus {
  font-size: 30px;
  font-weight: bold;
  color: #10b981;
}
