/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #00A63B;
  --navy-dark: #007028;
  --navy-light: #e6f7ed;
  --blue: #00BCD4;
  --green: #1a7a3a;
  --green-light: #e8f5ec;
  --orange: #d4600a;
  --orange-light: #fff4ec;
  --red: #c8002a;
  --red-light: #fff0f3;
  --gold: #c8960a;
  --silver: #707070;
  --bronze: #8b4513;
  --text-dark: #222;
  --text-mid: #555;
  --text-light: #888;
  --border: #ddd;
  --bg: #f4f5f7;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.09);
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-dark);
  background: var(--bg);
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
strong, b { display: inline; font-style: normal; word-break: break-all; }

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

.red { color: var(--red); }
.green { color: var(--green); }
.bold { font-weight: 700; }

/* ===== HEADER ===== */
.header {
  background: var(--navy);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.header-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

/* ===== MAIN ===== */
.main {
  background: #fff;
  min-height: 100vh;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 12px 0 0;
}
.breadcrumb span { margin: 0 2px; }

/* ===== ARTICLE TITLE ===== */
.article-title {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 16px 0 12px;
  color: var(--text-dark);
  border-bottom: 3px solid var(--navy);
  padding-bottom: 14px;
}
.title-em {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== LEAD BOX ===== */
.lead-box {
  margin-bottom: 28px;
  font-size: 0.92rem;
}
.lead-box p { margin-bottom: 10px; }
.lead-box p:last-of-type { margin-bottom: 12px; }
.lead-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ===== TOC ===== */
.toc {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 36px;
  font-size: 0.85rem;
}
.toc-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.toc-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-list a { color: var(--navy); }
.toc-list a:hover { text-decoration: underline; }

/* ===== SECTION BASE ===== */
.section {
  padding: 36px 0;
  border-bottom: 1px solid #eee;
}
.section:last-child { border-bottom: none; }

.section-h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  border-left: 5px solid var(--navy);
  padding-left: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.h2-icon {
  margin-right: 4px;
}

.section p {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.9;
}

/* ===== CAUTION ===== */
.caution-box {
  background: var(--red-light);
  border: 1px solid #f0b0b8;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}
.caution-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  margin-bottom: 12px;
}
.caution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}
.caution-list li {
  padding-left: 14px;
  position: relative;
  line-height: 1.7;
}
.caution-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ===== TYPE TABLE ===== */
.type-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
}
.type-table-wrap::after {
  content: '← 横にスクロールできます →';
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 6px;
}
.type-table {
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 440px;
  width: 100%;
}
.type-table th, .type-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.type-table td small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-mid);
  margin-top: 2px;
  white-space: normal;
  line-height: 1.4;
}
.type-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.type-row-bad td { background: #fff5f6; }
.type-row-mid td { background: #fafafa; }
.type-row-good td { background: #f0f8f2; }

.badge-good { color: var(--green); font-weight: 700; font-size: 1rem; }
.badge-mid { color: var(--orange); font-weight: 700; }
.badge-low { color: var(--text-light); font-weight: 700; }

/* ◎○△× アイコン */
.ic {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 2px;
}
.ic-best { color: #1a7a3a; }
.ic-good { color: #2563c4; }
.ic-low  { color: #aaa; }
.ic-bad  { color: #c8002a; }

.point-box {
  background: #fffbea;
  border: 1px solid #e8d060;
  border-left: 4px solid #c8a000;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-top: 16px;
}

/* ===== RANKING ===== */
.ranking-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 20px;
  margin-top: -8px;
}

.rank-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.rank-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}
.rank-header-1 { background: linear-gradient(90deg, #fff8e0, #fef0a0); border-bottom: 2px solid var(--gold); }
.rank-header-2 { background: linear-gradient(90deg, #f4f4f4, #e8e8e8); border-bottom: 2px solid var(--silver); }
.rank-header-3 { background: linear-gradient(90deg, #fdf0e8, #f0e0d0); border-bottom: 2px solid var(--bronze); }

.rank-badge {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
}
.rank-label-right {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
}
.rank-header-name {
  font-size: 1.0rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-left: 12px;
}

.rank-body { padding: 16px; }

.rank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.tag-red { background: var(--red-light); color: var(--red); border: 1px solid #f0a0a8; }
.tag-orange { background: var(--orange-light); color: var(--orange); border: 1px solid #f0c090; }
.tag-navy { background: var(--navy-light); color: var(--navy); border: 1px solid #a0b8d8; }
.tag-blue { background: #e8f0fc; color: var(--blue); border: 1px solid #a0c0f0; }
.tag-green { background: var(--green-light); color: var(--green); border: 1px solid #90c0a0; }

.rank-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.rank-stars {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.rank-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .rank-img {
    max-width: 100%;
  }
}
.star-score {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 700;
}

.rank-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 0.8rem;
}
.spec-item {
  padding: 8px 6px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-item:last-child { border-right: none; }
.spec-label {
  font-size: 0.68rem;
  color: var(--text-light);
  background: #f8f8f8;
  padding: 2px 0;
}
.spec-val {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}
.spec-val .red { color: var(--red); }

.rank-subh {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--navy);
  padding-left: 8px;
  margin-bottom: 8px;
}

.rank-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 10px;
}

.rank-points {
  background: var(--bg);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rank-point {
  font-size: 0.85rem;
  line-height: 1.6;
}
.point-num {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.voice-box {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.voice-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}
.voice-text {
  font-style: normal;
  color: var(--text-dark);
  line-height: 1.8;
  quotes: "「" "」";
}
.voice-text::before { content: open-quote; }
.voice-text::after { content: close-quote; }
cite { font-style: normal; font-size: 0.78rem; color: var(--text-light); margin-left: 6px; }

.rank-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition: opacity 0.2s;
  margin-bottom: 6px;
}
.rank-btn:hover { opacity: 0.88; color: #fff; text-decoration: none; }
.rank-btn-1 { background: linear-gradient(90deg, #00c44a, #00A63B); box-shadow: 0 3px 10px rgba(0,166,59,0.4); }
.rank-btn-2 { background: linear-gradient(90deg, #00BCD4, #0095a8); box-shadow: 0 3px 10px rgba(0,188,212,0.35); }
.rank-btn-3 { background: linear-gradient(90deg, #8b4513, #6b3210); box-shadow: 0 3px 10px rgba(139,69,19,0.35); }

.rank-btn-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== COMPARE TABLE ===== */
.scroll-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
}
.scroll-box::after {
  content: '← 横にスクロールできます →';
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 6px;
}
.compare-table {
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 620px;
  width: 100%;
}
.compare-table th, .compare-table td {
  padding: 10px 8px;
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
  min-width: 90px;
}
.compare-table small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-mid);
  margin-top: 2px;
  line-height: 1.4;
}
.th-item {
  background: var(--navy-dark);
  color: #fff;
  font-weight: 700;
  min-width: 72px;
  width: 72px;
  font-size: 0.8rem;
}
.th-rank {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 2px;
  opacity: 0.9;
}
.th-bad {
  background: #999;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}
.th-name { background: #fff; color: var(--text-dark); font-weight: 700; font-size: 0.8rem; }
.th-1 { background: linear-gradient(135deg, #c8960a, #a07808); color: #fff; font-weight: 700; font-size: 0.8rem; }
.th-2 { background: linear-gradient(135deg, #606060, #404040); color: #fff; font-weight: 700; font-size: 0.8rem; }
.th-3 { background: linear-gradient(135deg, #8b4513, #6b3210); color: #fff; font-weight: 700; font-size: 0.8rem; }
.compare-logo {
  display: block;
  width: 72px;
  height: 44px;
  object-fit: contain;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
}
.td-label { background: var(--bg); font-weight: 700; text-align: left; font-size: 0.8rem; white-space: nowrap; }

/* 一押し列ハイライト */
.th-1 { border-left: 3px solid #e63946 !important; border-right: 3px solid #e63946 !important; border-top: 3px solid #e63946 !important; }
.th-name-highlight { border-left: 3px solid #e63946 !important; border-right: 3px solid #e63946 !important; }
.td-1 { border-left: 3px solid #e63946 !important; border-right: 3px solid #e63946 !important; }
.td-1-last { border-bottom: 3px solid #e63946 !important; }
.ichoshi-badge {
  display: inline-block;
  margin-top: 4px;
  background: linear-gradient(90deg, #e63946, #c1121f);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(230,57,70,0.4);
}
.td-bad { background: #fff; color: var(--text-light); }
.td-1 { background: #fffef0; }
.compare-table tbody tr:hover td { background: #f8f8f8; }
.compare-table tbody tr:hover .td-1 { background: #fffae0; }

.section-lead {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  margin-top: -10px;
}

.tbl-btn {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.tbl-btn:hover { opacity: 0.85; color: #fff; text-decoration: none; }
.tbl-btn-1 { background: var(--navy); }
.tbl-btn-2 { background: var(--blue); }
.tbl-btn-3 { background: var(--bronze); }
.tbl-btn-gray { background: #999; }

/* ===== CHOOSE ===== */
.choose-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.choose-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.choose-label {
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.choose-1 .choose-label { background: var(--navy); }
.choose-2 .choose-label { background: var(--blue); }
.choose-3 .choose-label { background: var(--bronze); }

.choose-body {
  padding: 14px 16px;
  background: #fff;
  font-size: 0.88rem;
}
.choose-body p { margin-bottom: 8px; line-height: 1.7; }

.choose-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.choose-btn:hover { opacity: 0.85; color: #fff; text-decoration: none; }
.choose-btn-1 { background: var(--navy); }
.choose-btn-2 { background: var(--blue); }
.choose-btn-3 { background: var(--bronze); }

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  background: var(--navy-light);
  border-left: 4px solid var(--navy);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.6;
}
.faq-a {
  background: #fff;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.85;
  border-left: 4px solid #ddd;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.faq-a strong {
  display: inline;
  font-weight: 700;
  word-break: break-all;
}

/* ===== SUMMARY ===== */
.summary-box {
  background: var(--navy-light);
  border: 1px solid #c0cfec;
  border-radius: var(--radius);
  padding: 18px 20px;
}
.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}
.summary-list li {
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.summary-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 0.7rem;
  top: 5px;
}

/* ===== NOTES ===== */
.notes-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notes-list li {
  font-size: 0.73rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.55);
  padding: 20px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.75rem; }
.footer-links { display: flex; gap: 14px; }
.footer-links a { font-size: 0.73rem; color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: #fff; }

/* ===== FV COMPARE ===== */
.fv-compare-wrap {
  background: #fff;
  padding: 20px 0 24px;
  border-bottom: 1px solid #eee;
}
.fv-compare-lead {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 10px;
  text-align: center;
}

/* ===== TEXT EMPHASIS ===== */
.em-red { color: var(--red); font-weight: 700; }
.em-marker { background: #fff04f; font-weight: 700; padding: 0 3px; border-radius: 2px; }
.em-large { font-size: 1.18em; font-weight: 900; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .article-title { font-size: 1.2rem; }
  .section-h2 { font-size: 1.1rem; }
  .rank-specs { grid-template-columns: repeat(2, 1fr); }
  .spec-item:nth-child(2) { border-right: none; }
  .spec-item:nth-child(3) { border-top: 1px solid var(--border); }
  .article-meta { gap: 8px; }
  .lead-checks { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 7px 6px; }
  .rank-name { font-size: 1.15rem; }
}

/* ===== FV ===== */
.fv-img {
  background: #fff;
  padding: 12px 0 0;
}
.fv-header-img {
  display: block;
  width: 100%;
  height: auto;
}
.section-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.fv-area-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .fv-area-bar {
    padding: 7px 12px;
    gap: 8px;
  }
  .fv-area-label {
    font-size: 0.68rem;
    padding: 2px 8px;
  }
  .fv-area-prefs {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }
}
.fv-area-label {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.fv-area-prefs {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.fv {
  background: linear-gradient(135deg, #005e21 0%, #007a2b 60%, #00A63B 100%);
  color: #fff;
  padding: 40px 0 36px;
  text-align: center;
}
.fv-kicker {
  font-size: 0.78rem;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.fv-main {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.fv-main-em { color: #ffd54f; }
.fv-sub {
  font-size: 1.0rem;
  background: rgba(255,255,255,0.12);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-weight: 700;
}
.fv-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
}
.fv-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00c44a, #00A63B);
  color: #fff;
  font-weight: 900;
  font-size: 1.0rem;
  padding: 16px 32px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,166,59,0.5);
  transition: opacity 0.2s;
  margin-bottom: 12px;
  border: 2px solid rgba(255,255,255,0.3);
}
.fv-btn:hover { opacity: 0.88; color: #fff; text-decoration: none; }
.fv-note { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

/* ===== STRONG UNDERLINE ===== */
.main strong:not([class]) {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ===== WORRY ===== */
.worry-section {
  margin-bottom: 28px;
}
.worry-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.worry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 0;
}
.worry-list li {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  padding: 10px 16px;
  margin-left: 18px;
  line-height: 1.6;
  max-width: 90%;
}
.worry-list li::before {
  content: '';
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 7px 13px 7px 0;
  border-style: solid;
  border-color: transparent #ccc transparent transparent;
}
.worry-list li::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 11px 6px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.worry-bridge {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 4px;
}

/* ===== POINT STEPS ===== */
.point-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.point-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.point-step-num {
  background: var(--navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.point-step-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

/* ===== VOICE CARDS ===== */
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.voice-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.voice-rating { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.voice-info { font-size: 0.78rem; color: var(--text-light); font-weight: 700; }
.voice-card-text {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-dark);
  line-height: 1.85;
  border-left: 3px solid var(--navy-light);
  padding-left: 12px;
}

/* ===== CLOSING ===== */
.closing-recommend {
  background: linear-gradient(135deg, #fffbe6, #fff8d0);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  text-align: center;
}
.closing-rank-label {
  display: inline-block;
  background: linear-gradient(90deg, #c8960a, #a07808);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.closing-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.closing-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 6px;
  object-fit: cover;
}
.closing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 6px;
  padding: 14px 16px;
}
.closing-feat-icon {
  margin-right: 6px;
}

.closing-cta {
  margin-top: 24px;
  text-align: center;
}
.closing-msg {
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.closing-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00c44a, #00A63B);
  color: #fff;
  font-weight: 900;
  font-size: 1.0rem;
  padding: 16px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,166,59,0.45);
  transition: opacity 0.2s;
  margin-bottom: 8px;
}
.closing-btn:hover { opacity: 0.88; color: #fff; text-decoration: none; }
.closing-btn-note { font-size: 0.75rem; color: var(--text-light); }
