/* ===========================================
   POSレジ比較LP - style.css
   =========================================== */

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1f2937;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4 { margin: 0; line-height: 1.4; }
p { margin: 0; }

/* ---------- Variables ---------- */
:root {
  --color-primary: #1e3a5f;       /* navy */
  --color-accent: #ff6b35;        /* CV orange */
  --color-accent-dark: #e85a24;
  --color-smaregi: #2eb05e;       /* スマレジブランドカラー */
  --color-smaregi-bg: #eafaf0;
  --color-bg: #f7f9fc;
  --color-border: #e5e7eb;
  --color-text-sub: #6b7280;
  --shadow-sm: 0 2px 8px rgba(30,58,95,.08);
  --shadow-md: 0 6px 20px rgba(30,58,95,.10);
  --shadow-lg: 0 12px 32px rgba(30,58,95,.15);
  --radius: 10px;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* ---------- PR Bar ---------- */
.pr-bar {
  background: #f3f4f6;
  padding: 8px 16px;
  text-align: center;
}
.pr-bar p {
  font-size: 11px;
  color: var(--color-text-sub);
  margin: 0;
}

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 900;
  font-size: 20px;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.gnav {
  display: flex;
  gap: 28px;
}
.gnav a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color .2s;
}
.gnav a:hover { color: var(--color-accent); }

@media (max-width: 768px) {
  .gnav { gap: 14px; }
  .gnav a { font-size: 12px; }
  .logo { font-size: 16px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,53,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}
.btn-xl {
  padding: 22px 56px;
  font-size: 19px;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ---------- Hero ---------- */
.hero {
  background: #ffffff;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  padding: 0;
  max-width: none;
}
.hero-image {
  margin: 0 auto;
  max-width: 560px;
  padding: 0;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  .hero-image { max-width: 100%; }
}
.hero-eyebrow {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(transparent 60%, rgba(255,107,53,.25) 60%);
  padding: 0 4px;
}
.hero-lead {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-author {
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 0 auto 32px;
  max-width: 720px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 6px 24px rgba(30,58,95,.10);
  border: 1px solid var(--color-border);
  position: relative;
}
.hero-author-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2b4d7f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(30,58,95,.15);
}
.hero-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-author-photo.is-placeholder::before {
  content: "編";
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
}
.hero-author-body { flex: 1; min-width: 0; }
.hero-author-meta { margin-bottom: 8px; }
.hero-author-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.hero-author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.4;
}
.hero-author-role {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 2px;
}
.hero-author-quote {
  font-size: 13.5px;
  line-height: 1.8;
  color: #374151;
  border-top: 1px dashed var(--color-border);
  padding-top: 12px;
  margin-top: 12px;
}
.hero-author-quote strong {
  color: var(--color-accent);
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(255,107,53,.15) 65%);
  padding: 0 2px;
}

@media (max-width: 768px) {
  .hero-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
  }
  .hero-author-quote { text-align: left; font-size: 13px; }
}

.hero-points {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-points li {
  font-size: 14px;
  color: #4b5563;
}
.hero-points strong { color: var(--color-primary); }


/* ---------- Conclusion (結論先出し) ---------- */
.conclusion {
  padding: 80px 0;
  background: #fff;
}
.conclusion-card {
  background: linear-gradient(135deg, var(--color-smaregi-bg) 0%, #fff 100%);
  border: 2px solid var(--color-smaregi);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.conclusion-badge {
  display: inline-block;
  background: var(--color-smaregi);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.conclusion-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.brand-smaregi {
  color: var(--color-smaregi);
}
.conclusion-text {
  font-size: 16px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 32px;
  text-align: left;
}
.conclusion-note {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .conclusion { padding: 48px 0; }
  .conclusion-card { padding: 32px 20px; }
  .conclusion-title { font-size: 22px; }
  .conclusion-text { font-size: 14px; }
}

/* ---------- Section common ---------- */
.section-title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-lead {
  text-align: center;
  color: var(--color-text-sub);
  margin-bottom: 48px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .section-title { font-size: 24px; }
  .section-lead { font-size: 13px; margin-bottom: 32px; }
}

/* ---------- Ranking ---------- */
.ranking {
  padding: 80px 0;
  background: var(--color-bg);
}
.rank-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.rank-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.rank-card.rank-1 {
  border: 3px solid var(--color-smaregi);
  background: linear-gradient(135deg, #fff 0%, var(--color-smaregi-bg) 100%);
  box-shadow: var(--shadow-lg);
}
.rank-badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(0,0,0,.2);
  box-shadow: 0 4px 12px rgba(255,165,0,.4);
}
.rank-badge-2 {
  background: linear-gradient(135deg, #c0c0c0 0%, #888 100%);
  box-shadow: 0 4px 12px rgba(160,160,160,.4);
}
.rank-badge-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
  box-shadow: 0 4px 12px rgba(205,127,50,.4);
}
.rank-badge-other {
  background: #cbd5e1;
  color: #475569;
  box-shadow: none;
  text-shadow: none;
}
.rank-body { flex: 1; }
.rank-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rank-tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.rank-summary {
  color: #4b5563;
  margin-bottom: 14px;
  font-size: 14px;
}
.rank-features {
  margin-bottom: 16px;
}
.rank-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}
.rank-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-smaregi);
  font-weight: 900;
}
.rank-features strong { color: var(--color-primary); }

@media (max-width: 768px) {
  .ranking { padding: 56px 0; }
  .rank-card { flex-direction: column; padding: 20px; gap: 16px; }
  .rank-badge { width: 56px; height: 56px; font-size: 18px; }
  .rank-name { font-size: 18px; }
}

/* ---------- Comparison Table ---------- */
.comparison {
  padding: 80px 0;
  background: #fff;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  vertical-align: middle;
}
.comparison-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 16px 12px;
  position: relative;
}
.comparison-table .th-smaregi {
  background: var(--color-smaregi);
  font-size: 14px;
  white-space: nowrap;
  min-width: 96px;
}
.badge-no1 {
  display: block;
  background: #ffd700;
  color: var(--color-primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 4px;
  display: inline-block;
}
.comparison-table tbody th {
  background: #f9fafb;
  font-weight: 700;
  text-align: left;
  color: var(--color-primary);
  padding-left: 16px;
  min-width: 110px;
}
.comparison-table .cell-smaregi {
  background: var(--color-smaregi-bg);
  font-weight: 700;
  color: var(--color-primary);
}
.comparison-table small {
  display: block;
  font-size: 11px;
  color: var(--color-text-sub);
  font-weight: 400;
  margin-top: 2px;
}
.comparison-table .cell-na {
  color: #cbd5e1;
}
.comparison-table .th-cv {
  background: #fff7ed;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .comparison { padding: 56px 0; }
  .comparison-table th,
  .comparison-table td { padding: 10px 8px; font-size: 12px; }
  .comparison-table tbody th { min-width: 90px; padding-left: 10px; }
}

/* ---------- Choose ---------- */
.choose {
  padding: 72px 0;
  background: var(--color-bg);
}
.choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.choose-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 3px 10px rgba(30,58,95,.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.choose-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30,58,95,.1);
}
.choose-num {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 10px rgba(255,107,53,.3);
}
.choose-body { flex: 1; min-width: 0; }
.choose-body h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.choose-body p {
  font-size: 14px;
  color: #1f2937;
  line-height: 1.65;
  font-weight: 500;
}
.choose-body strong {
  color: var(--color-accent-dark);
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(255,107,53,.18) 65%);
  padding: 0 2px;
}

@media (max-width: 768px) {
  .choose { padding: 48px 0; }
  .choose-list { gap: 10px; }
  .choose-item { padding: 14px 16px; gap: 12px; }
  .choose-num { width: 36px; height: 36px; font-size: 13px; }
  .choose-body h3 { font-size: 15px; }
  .choose-body p { font-size: 13px; }
}

/* ---------- 各社徹底レビュー ---------- */
.reviews {
  padding: 80px 0;
  background: #fff;
}
.review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(30,58,95,.07);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30,58,95,.12);
}
.review-card.review-smaregi {
  border: 3px solid var(--color-smaregi);
  background: linear-gradient(180deg, #fff 0%, var(--color-smaregi-bg) 100%);
  box-shadow: 0 12px 32px rgba(46,176,94,.18);
}
.review-image {
  margin: 0 0 24px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8eef7 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-image figcaption {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(15,30,48,.78);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.review-image.is-placeholder::before {
  content: "画像準備中";
  color: var(--color-text-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.review-image.is-placeholder figcaption {
  display: none;
}
.review-smaregi .review-image {
  background: linear-gradient(135deg, var(--color-smaregi-bg) 0%, #d8f1e0 100%);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 2px solid #f1f5f9;
}
.review-rank-num {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(30,58,95,.18);
}
.review-smaregi .review-rank-num {
  background: var(--color-smaregi);
  box-shadow: 0 4px 12px rgba(46,176,94,.35);
}
.review-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  flex: 1;
  min-width: 140px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.review-stars {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: #fffbeb;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #fde68a;
}
.stars {
  color: #f59e0b;
  font-size: 19px;
  letter-spacing: 2px;
  position: relative;
  text-shadow: 0 1px 0 rgba(245,158,11,.15);
}
.star-half {
  color: #fcd34d;
}
.star-empty {
  color: #e5e7eb;
}
.score {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.score-max {
  font-size: 12px;
  color: var(--color-text-sub);
  font-weight: 500;
}
.review-point {
  background: linear-gradient(135deg, #fff8f4 0%, #ffeede 100%);
  border-left: 5px solid var(--color-accent);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 28px;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(255,107,53,.08);
  font-weight: 500;
}
.review-smaregi .review-point {
  background: linear-gradient(135deg, #f0fbf4 0%, #d8f1e0 100%);
  border-left-color: var(--color-smaregi);
  box-shadow: 0 2px 8px rgba(46,176,94,.12);
}
.review-point strong {
  display: inline-block;
  color: #fff;
  background: var(--color-accent);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-right: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(255,107,53,.25);
  vertical-align: 2px;
}
.review-smaregi .review-point strong {
  background: var(--color-smaregi);
  box-shadow: 0 2px 6px rgba(46,176,94,.3);
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pros, .cons {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
}
.pros { border-top: 4px solid var(--color-smaregi); }
.cons { border-top: 4px solid #94a3b8; }
.pros h4, .cons h4 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.pros h4 { color: var(--color-smaregi); }
.pros h4::before {
  content: "GOOD";
  background: var(--color-smaregi);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.cons h4 { color: #64748b; }
.cons h4::before {
  content: "BAD";
  background: #94a3b8;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.pros ul, .cons ul {
  font-size: 14.5px;
  color: #1f2937;
}
.pros li, .cons li {
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.8;
  font-weight: 500;
}
.pros li::before {
  content: "+";
  position: absolute;
  left: 4px;
  top: 5px;
  color: var(--color-smaregi);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.7;
}
.cons li::before {
  content: "−";
  position: absolute;
  left: 4px;
  top: 5px;
  color: #94a3b8;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.7;
}
.voices {
  margin-bottom: 28px;
}
.voices h4 {
  font-size: 15px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.voice {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 22px 16px 52px;
  margin: 0 0 12px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
}
.voice::before {
  content: "\201C";
  position: absolute;
  left: 14px;
  top: 6px;
  font-size: 46px;
  color: var(--color-primary);
  opacity: 0.22;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}
.voice p {
  font-size: 14.5px;
  color: #1f2937;
  line-height: 1.85;
  margin-bottom: 8px;
  font-weight: 500;
}
.voice cite {
  font-size: 12px;
  color: var(--color-text-sub);
  font-style: normal;
  display: block;
  text-align: right;
  font-weight: 600;
}

.review-cta {
  text-align: center;
  margin: 4px 0 0;
}
.review-cta .btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .reviews { padding: 56px 0; }
  .review-card { padding: 22px 18px; }
  .review-image { margin: 0 0 18px; }
  .review-head {
    gap: 10px 12px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  .review-name {
    font-size: 22px;
    flex: 0 1 auto;
    min-width: 0;
  }
  .review-stars {
    width: 100%;
    margin-top: 0;
    justify-content: flex-start;
    padding: 6px 12px;
  }
  .stars { font-size: 17px; }
  .score { font-size: 20px; }
  .pros-cons { grid-template-columns: 1fr; gap: 12px; }
  .pros, .cons { padding: 14px 16px; }
}

/* ---------- スマレジ詳細 ---------- */
.detail-smaregi {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--color-smaregi-bg) 100%);
}
.detail-header { text-align: center; margin-bottom: 56px; }
.detail-rank {
  display: inline-block;
  background: var(--color-smaregi);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.detail-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.detail-lead {
  color: var(--color-text-sub);
  font-size: 15px;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.reason-item {
  background: #fff;
  border-left: 6px solid var(--color-smaregi);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.reason-num {
  display: inline-block;
  background: var(--color-smaregi-bg);
  color: var(--color-smaregi);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.reason-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.reason-item p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.9;
}
.reason-item strong { color: var(--color-smaregi); }

.cv-block {
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cv-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cv-text {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 24px;
}
.cv-text strong { color: var(--color-accent); }

@media (max-width: 768px) {
  .detail-smaregi { padding: 56px 0; }
  .detail-title { font-size: 24px; }
  .reason-item { padding: 20px; }
  .reason-title { font-size: 16px; }
  .cv-block { padding: 28px 20px; }
  .cv-title { font-size: 18px; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 80px 0;
  background: #fff;
}
.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: background .2s;
}
.faq-item[open] { background: #fff; box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-accent);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  color: #4b5563;
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .faq { padding: 56px 0; }
  .faq-item summary { font-size: 14px; }
}

/* ---------- Final CV ---------- */
.final-cv {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2b4d7f 100%);
  color: #fff;
  text-align: center;
}
.final-cv-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}
.final-cv .brand-smaregi {
  color: #7fe69f;
}
.final-cv-text {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .final-cv { padding: 56px 0; }
  .final-cv-title { font-size: 22px; }
  .final-cv-text { font-size: 14px; }
}

/* ---------- Static Page (about/privacy/contact) ---------- */
.static-page {
  padding: 56px 0 80px;
  background: var(--color-bg);
  min-height: 60vh;
}
.static-breadcrumb {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 24px;
}
.static-breadcrumb a {
  color: var(--color-primary);
  text-decoration: underline;
}
.static-breadcrumb span { margin: 0 4px; }
.static-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}
.static-lead {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 40px;
}
.static-section {
  background: #fff;
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(30,58,95,.06);
}
.static-section h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 5px solid var(--color-accent);
  line-height: 1.4;
}
.static-section p {
  font-size: 15px;
  color: #1f2937;
  line-height: 1.95;
  margin-bottom: 12px;
}
.static-section p:last-child { margin-bottom: 0; }
.static-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.static-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 15px;
  color: #1f2937;
  line-height: 1.85;
}
.static-list li::before {
  content: "●";
  position: absolute;
  left: 4px;
  top: 6px;
  color: var(--color-accent);
  font-size: 10px;
  line-height: 1.85;
}
.static-table {
  width: 100%;
  border-collapse: collapse;
}
.static-table th, .static-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  vertical-align: top;
}
.static-table th {
  background: #f9fafb;
  font-weight: 700;
  color: var(--color-primary);
  width: 30%;
  white-space: nowrap;
}
.static-table tr:last-child th,
.static-table tr:last-child td { border-bottom: none; }
.static-table a { color: var(--color-accent-dark); text-decoration: underline; }
.static-back {
  margin-top: 40px;
  text-align: center;
}
.static-revision {
  font-size: 13px;
  color: var(--color-text-sub);
  text-align: right;
  margin-top: 24px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .static-page { padding: 40px 0 56px; }
  .static-title { font-size: 24px; }
  .static-lead { font-size: 14px; }
  .static-section { padding: 22px 20px; }
  .static-section h2 { font-size: 17px; }
  .static-section p, .static-list li { font-size: 14px; }
  .static-table th, .static-table td { padding: 10px 12px; font-size: 13px; }
  .static-table th { width: 35%; }
}

/* ---------- Footer ---------- */
.footer {
  background: #0f1e30;
  color: #cbd5e1;
  padding: 56px 0 24px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.footer-desc {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.8;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  color: #cbd5e1;
  transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-disclaimer {
  border-top: 1px solid #1f3454;
  padding-top: 20px;
  margin-bottom: 16px;
}
.footer-disclaimer p {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 6px;
  line-height: 1.7;
}
.footer-copyright {
  text-align: center;
  color: #64748b;
  font-size: 11px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
