/* Laptop Single Page Styles */
:root {
  --zippy-blue: #0073aa;
  --zippy-blue-light: #e6f7ff;
  --zippy-text: #333;
  --zippy-gray: #666;
  --zippy-bg-light: #f9fafb;
  /* 良い点・気になる点: 白背景+ボーダーのみ */
  --pros-bg: #fff;
  --pros-border: #e5e7eb;
  --pros-icon: #16a34a;
  --cons-bg: #fff;
  --cons-border: #e5e7eb;
  --cons-icon: #dc2626;
}



/* Header & FV Grid */
.laptop-header {
    margin-bottom: 22px;
}

/* Manufacturer & Title */
.laptop-manufacturer {
    /* Styles are inline in PHP for safety during refactor, but can be moved here */
}
.laptop-title, .ranking-title {
    font-size: 1.6rem;
    line-height: 1.24;
    font-weight: 800;
}

/* パンくずリスト */
.zippy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 6px;
    margin-bottom: 14px;
}
.zippy-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}
.zippy-breadcrumb a:hover {
    text-decoration: underline;
}
.zippy-breadcrumb-sep {
    color: #d1d5db;
}

/* ミニ著者紹介（H1直下） */
.zippy-mini-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}
.zippy-mini-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.zippy-mini-author-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.zippy-mini-author-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
}
.zippy-mini-author-by {
    font-weight: 400;
    color: #9ca3af;
}
.zippy-mini-author-bio {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}
.zippy-mini-author-bio a {
    color: #6b7280;
    text-decoration: underline;
}
.zippy-mini-author-date {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 2px;
}

/* FV Grid Layout */
.laptop-fv-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}
/* 左カラム: 画像のみ */
.laptop-fv-left {
    display: flex;
    flex-direction: column;
}

/* 右カラム: メーカー名・製品名はカード外に配置 */
.laptop-fv-right .laptop-manufacturer-label {
    margin-bottom: 4px;
}
.fv-product-name {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .laptop-fv-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 32px;
    }
    .laptop-fv-left {
        flex: 0 0 55%;
        max-width: 55%;
        justify-content: center; /* 画像を上下中央に */
    }
    .laptop-fv-right {
        flex: 1;
    }
}

/* メーカーラベル */
.laptop-manufacturer-label {
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
@media (min-width: 768px) {
    .laptop-manufacturer-label { font-size: 0.9375rem; }
}

/* 製品名バッジ */
.laptop-country-badge {
    vertical-align: middle;
    font-size: 0.5em;
    margin-left: 10px;
    padding: 2px 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #666;
}

/* 更新日 */
.zippy-updated-date {
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    color: #9ca3af;
    margin-top: 5px;
    margin-bottom: 15px;
}

/* Image */
.laptop-main-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: block;
    background: #fff;
}

/* Info Card */
.laptop-info-card {
    background: #fff;
}

/* Rating */
.laptop-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.laptop-rating-stars {
    color: #f59e0b;
    font-size: 1.2rem;
}
.laptop-rating-score {
    font-weight: 600;
    color: #4b5563;
    font-size: 1rem;
}

/* TL;DR */
.laptop-tldr {
    font-size: 1.1em;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}
.tldr-label {
    color: #ef4444; /* Red accent for "Verdict" */
    text-transform: uppercase;
    font-size: 0.8em;
    margin-right: 5px;
}

/* Best For */
.laptop-best-for {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.laptop-best-for li {
    font-size: 0.95em;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.laptop-best-for li i {
    color: #10b981; /* Green check */
}

/* Price Row */
.laptop-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.price-val {
    font-size: 1.5rem; /* モバイル: ~42px */
    line-height: 1.05;
    font-weight: 800;
    color: #111;
}
@media (min-width: 768px) {
    .price-val { font-size: 1.6rem; } /* PC: ~50px */
}
.price-discount-area {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.price-discount-rate {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #d32f2f;
    background: #fee2e2;
    padding: 2px 8px;
    border-radius: 4px;
}
.price-regular {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    color: #9ca3af;
}
@media (min-width: 768px) {
    .price-discount-rate { font-size: 1rem; }
    .price-regular        { font-size: 1.25rem; }
}
.sale-badge {
    background: #fee2e2;
    color: #b91c1c;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
}

/* CTA */
.zippy-cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #e11d48;
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.zippy-cta-button:hover {
    background: #be123c;
    color: #fff;
}
.zippy-cta-button i {
    margin-left: 5px;
    font-size: 0.9em;
}

.cta-subtext {
    text-align: center;
    font-size: 0.8em;
    color: #9ca3af;
    margin-top: 8px;
}

/* --- Existing Styles below for reference stability --- */

/* One Word Comment (Legacy/Details body) */
.laptop-comment-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-left: 5px solid var(--zippy-blue);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}
.laptop-comment-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--zippy-blue);
    margin: 0 0 10px;
    font-weight: 700;
    opacity: 0.9;
}
.laptop-comment-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

/* ===== リード文 ===== */
.zippy-lead-text {
    margin: 1.5rem 0 1.8rem;
    font-size: 0.97rem;
    line-height: 1.8;
    color: #374151;
}
.zippy-lead-text p {
    margin: 0 0 0.6rem;
}
.zippy-lead-text p:last-child {
    margin-bottom: 0;
}
.zippy-lead-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ===== 目次ボックス ===== */
.zippy-toc {
    display: inline-block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
    padding: 10px 18px 10px;
    margin-bottom: 20px;
    min-width: 200px;
    max-width: 100%;
}
.zippy-toc-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.zippy-toc-list {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.zippy-toc-list li {
    font-size: 0.85rem;
    line-height: 1.4;
}
.zippy-toc-list a {
    color: #374151;
    text-decoration: none;
}
.zippy-toc-list a:hover {
    color: #111;
    text-decoration: underline;
}

/* ===== ZippyScore ===== */
.laptop-zippyscore-section {
    margin-bottom: 48px;
}

/* 説明文 */
.zippyscore-desc {
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.6;
    margin: 6px 0 6px;
}

/* レイアウト: モバイル=縦, PC=横 */
.zippyscore-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 768px) {
    .zippyscore-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

/* 左（PC）/ 上（スマホ）: 総合点 + 棒グラフ */
.zippyscore-main {
    flex: 1;
}

/* 総合スコアブロック: 数字が主役、ラベルが下 */
.zippyscore-score-block {
    margin-bottom: 16px;
    text-align: center; /* スマホ: 中央 */
}
@media (min-width: 768px) {
    .zippyscore-score-block {
        text-align: left;
    }
}
.zippyscore-score-num-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    justify-content: center;
}
@media (min-width: 768px) {
    .zippyscore-score-num-row {
        justify-content: flex-start;
    }
}
.zippyscore-final {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-primary);
    line-height: 1;
}
.zippyscore-final-denom {
    font-size: 1.1rem;
    font-weight: 400;
    color: #999;
}
.zippyscore-label {
    font-size: 0.9rem;
    background: linear-gradient(to right, rgb(225,29,72), rgb(217,119,6), rgb(101,163,13), rgb(13,148,136), rgb(79,70,229), rgb(192,38,211));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-top: 3px;
}

/* 棒グラフ: スマホ=1列, PC=2列 */
.zippyscore-bars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.875rem;
}
@media (min-width: 768px) {
    .zippyscore-bars {
        grid-template-columns: 1fr 1fr;
        gap: 8px 24px;
    }
}
.zippyscore-bar-item {}
.zippyscore-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    color: #374151;
}
.zippyscore-bar-track {
    background: #e5e7eb;
    border-radius: 3px;
    height: 6px;
}
.zippyscore-bar-fill {
    background: #3b5bdb;
    height: 6px;
    border-radius: 3px;
}

/* レーダー: スマホは非表示、PCは右カラムに補助表示 */
.zippyscore-chart-wrap {
    display: none;
}
@media (min-width: 768px) {
    .zippyscore-chart-wrap {
        display: flex;
        justify-content: center;
        flex-shrink: 0;
        flex: 0 0 200px;
    }
}

/* 評価基準 折りたたみ */
.zippyscore-criteria {
    margin-top: 4px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: #6b7280;
}
.zippyscore-criteria summary {
    cursor: pointer;
    color: #3b5bdb;
    font-weight: 600;
    font-size: 0.82rem;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}
.zippyscore-criteria summary::-webkit-details-marker { display: none; }
.zippyscore-criteria summary::before {
    content: '▶';
    font-size: 0.65em;
    transition: transform 0.2s;
}
.zippyscore-criteria[open] summary::before {
    transform: rotate(90deg);
}
.zippyscore-criteria-list {
    margin: 10px 0 0 12px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.5;
}
.zippyscore-criteria-list li strong {
    color: #374151;
}
.zippyscore-criteria-note {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Pros & Cons （良い点・気になる点 / Pros & Cons） */
.laptop-pros-cons-section {
    margin-bottom: 48px;
}
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    color: #111;
}
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* 白背景 + ボーダーのみ（影なし） */
.pros-box, .cons-box {
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--pros-border);
    background: #fff;
}
.cons-box {
    border-color: var(--cons-border);
}
.box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}
.box-title i.fa-check { color: var(--pros-icon); }
.box-title i.fa-times { color: var(--cons-icon); }
.box-list {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}
.box-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
    color: #374151;
    font-size: 0.9rem;
}
.pros-box .box-list li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pros-icon);
}
.cons-box .box-list li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cons-icon);
}

/* 本文行間 */
.entry-content {
    line-height: 1.6;
}

/* Review Content → assets/css/review-content.css に移行済み（フロント・TinyMCE共通）*/
.laptop-review-section { margin-bottom: 48px; }
.laptop-specs-section  { margin-bottom: 48px; }

/* ===== ライトボックス ===== */
.zippy-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.82);
    align-items: center;
    justify-content: center;
}
.zippy-lightbox.is-open {
    display: flex;
}
.zippy-lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(760px, 94vw);
}
.zippy-lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    display: block;
    cursor: default;
    background: #fff;
}
.zippy-lightbox-caption {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    text-align: center;
    line-height: 1.5;
}
.zippy-lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.zippy-lightbox-close:hover {
    background: rgba(255,255,255,0.28);
}

/* img+キャプション / figure / blockquote → review-content.css に移行済み */

/* ===== 結論カード（FV右カラム） ===== */
.laptop-verdict-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
/* 一言結論 */
.verdict-comment {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}
/* ZippyScore行 */
.fv-score-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.verdict-score-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-primary);
    line-height: 1;
}
.verdict-score-denom {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
}
.verdict-score-label {
    font-size: 0.75rem;
    background: linear-gradient(to right, rgb(225,29,72), rgb(217,119,6), rgb(101,163,13), rgb(13,148,136), rgb(79,70,229), rgb(192,38,211));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    margin-left: 4px;
}
/* おすすめ / やめとけ */
.verdict-recommend-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}
.verdict-recommend {
    color: #16a34a;
    font-size: 0.875rem;
    margin-bottom: 4px;
    line-height: 1.5;
}
.verdict-recommend i { margin-right: 4px; }
.verdict-recommend span { font-weight: 600; }
.verdict-avoid {
    color: #dc2626;
    font-size: 0.875rem;
    line-height: 1.5;
}
.verdict-avoid i { margin-right: 4px; }
.verdict-avoid span { font-weight: 600; }
.verdict-list {
    margin: 4px 0 0 20px;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
}
.verdict-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 3px;
}
.verdict-dot {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}
.verdict-dot--green { color: #16a34a; }
.verdict-dot--red   { color: #dc2626; }
/* 価格+CTAエリア */
.fv-price-cta {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* 国別製品名（info-card内） */
.laptop-local-product-name {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .laptop-local-product-name { font-size: 1.6rem; }
}

/* Author Section */
.zippy-author-section {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.zippy-author-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin: 0 0 16px;
}

/* スマホ: [写真+名前+肩書] → [紹介文]（flex-wrap で2段）
   PC: 写真が2行スパン、右に名前+肩書+紹介文（CSS Grid） */

.zippy-author-layout {
    /* スマホ: flex-wrap で bio を新行に */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 14px;
    row-gap: 12px;
}

.zippy-author-img-wrap {
    flex: 0 0 56px;
}

.zippy-author-img {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.zippy-author-id {
    flex: 1;
    min-width: 0;
}

.zippy-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.zippy-author-title {
    font-size: 0.8rem;
    color: #6b7280;
}

.zippy-author-bio {
    flex: 0 0 100%; /* 新行・全幅 */
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
}

/* PC: Grid で写真が縦2行スパン */
@media (min-width: 768px) {
    .zippy-author-layout {
        display: grid;
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        column-gap: 18px;
        row-gap: 6px;
        align-items: start;
    }
    .zippy-author-img-wrap {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: start;
    }
    .zippy-author-id {
        grid-column: 2;
        grid-row: 1;
    }
    .zippy-author-bio {
        grid-column: 2;
        grid-row: 2;
        margin-top: 8px;
    }
}

/* Specs Accordion */
.zippy-specs-wrapper { position: relative; border: 1px solid #eee; border-radius: 6px; background: #fff; margin-top: 20px; }
.zippy-specs-content { max-height: 290px; overflow: hidden; position: relative; transition: max-height 0.4s ease-in-out; }
.zippy-specs-content.is-open { max-height: 2500px; }
.zippy-specs-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)); pointer-events: none; transition: opacity 0.3s; }
.zippy-specs-content.is-open .zippy-specs-fade { opacity: 0; }
.zippy-specs-btn-area { text-align: center; background: #fff; padding: 10px 0 20px; margin-top: -30px; position: relative; z-index: 2; border-radius: 0 0 8px 8px; }
.zippy-specs-content.is-open + .zippy-specs-btn-area { margin-top: 0; border-top: 1px solid #eee; }
.zippy-specs-toggle-btn { background: #fff; border: 1px solid #333; border-radius: 30px; padding: 8px 30px; cursor: pointer; font-size: 0.95em; font-weight: bold; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.zippy-specs-toggle-btn:hover { background: #f5f5f5; }
.zippy-specs-table { width: 100%; border-collapse: collapse; margin: 0; }
.zippy-specs-table tr { border-bottom: 1px solid #eee; }
.zippy-specs-table tr:last-child { border-bottom: none; }
.zippy-specs-table th { padding: 10px 14px; text-align: left; background: #f9fafb; width: 30%; font-weight: 600; font-size: 0.88rem; color: #444; vertical-align: top; border-bottom: 1px solid #f0f0f0; }
.zippy-specs-table td { padding: 10px 14px; font-size: 0.88rem; color: #333; vertical-align: top; border-bottom: 1px solid #f0f0f0; }
@media (max-width: 768px) {
    .zippy-specs-table th { width: 40%; font-size: 0.9em; padding: 12px 10px; }
    .zippy-specs-table td { font-size: 0.9em; padding: 12px 10px; }
}

/* --- マルチチャンネルCTAカード --- */
.zippy-cta-channels-section { margin-bottom: 48px; }

.zippy-cta-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 12px;
}
@media (min-width: 600px) {
    .zippy-cta-channels-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.zippy-cta-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.zippy-cta-store-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.zippy-cta-store-name {
    color: #1f2937;
    font-weight: 700;
    font-size: 0.9rem;
}
.zippy-cta-sale-badge {
    background: #fee2e2;
    color: #d32f2f;
    font-size: 0.72em;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
}

.zippy-cta-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.zippy-cta-price {
    font-size: 1.15em;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}
.zippy-cta-price-current { color: #111; }
.zippy-cta-price-regular {
    font-size: 0.75em;
    font-weight: 400;
    color: #999;
    margin-left: 4px;
}
.zippy-cta-discount-rate {
    font-size: 0.78em;
    font-weight: 700;
    color: #d32f2f;
    background: #fee2e2;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 4px;
}
.zippy-cta-price-unknown {
    font-size: 0.88em;
    font-weight: 400;
    color: #888;
}

.zippy-cta-points {
    font-size: 0.8em;
    color: #d32f2f;
    font-weight: 600;
}
.zippy-cta-stock {
    font-size: 0.78em;
    color: #d32f2f;
}

.zippy-cta-channel-btn {
    display: block;
    text-align: center;
    background: #e11d48;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88em;
    padding: 9px 8px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.15s;
}
.zippy-cta-channel-btn:hover {
    background: #be123c;
    color: #fff !important;
}

.zippy-cta-disclaimer {
    font-size: 0.8em;
    color: #9ca3af;
    margin: 0;
}

/* ===== Sticky CTA（画面下固定バー） ===== */
.zippy-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    border-top: 1px solid #e5e7eb;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 10px 16px;
}
.zippy-sticky-cta.is-visible {
    transform: translateY(0);
}
.zippy-sticky-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.zippy-sticky-cta-price-area {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.zippy-sticky-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
}
.zippy-sticky-regular {
    font-size: 0.8rem;
    color: #999;
}
.zippy-sticky-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d32f2f;
    background: #fee2e2;
    padding: 1px 5px;
    border-radius: 3px;
}
.zippy-sticky-sale {
    font-size: 0.7rem;
    font-weight: 600;
    color: #d32f2f;
}
.zippy-sticky-cta-btn {
    display: inline-block;
    flex: 1;
    text-align: center;
    background: #e11d48;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.zippy-sticky-cta-btn:hover {
    background: #be123c;
    color: #fff !important;
}
@media (max-width: 480px) {
    .zippy-sticky-cta-inner {
        flex-direction: column;
        gap: 6px;
    }
    .zippy-sticky-cta-btn {
        width: 100%;
    }
}


/* ===== ベンチマーク指標ショートコード ===== */
.zl-bench-guide {
    margin: 1.5rem 0 2rem;
}
.zl-bench-guide__intro {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.3rem;
}
.zl-bench-guide__table-wrap {
    overflow-x: auto;
}
.zl-bench-guide__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    table-layout: fixed;
}
.zl-bench-guide__table th,
.zl-bench-guide__table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}
.zl-bench-guide__table th {
    background: #1e293b;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}
/* 列幅: スコア=80px / 評価感=72px / 説明=残り */
.zl-bench-guide__table th:nth-child(1),
.zl-bench-guide__table td:nth-child(1) { width: 80px; }
.zl-bench-guide__table th:nth-child(2),
.zl-bench-guide__table td:nth-child(2) { width: 72px; }
.zl-bench-guide__table tr:nth-child(even) td {
    background: #f8fafc;
}
.zl-bench-guide__score-range {
    font-weight: 600;
    word-break: keep-all;
    color: #374151;
}
.zl-bench-guide__label {
    font-weight: 600;
}
/* ハイライト行 */
.zl-bench-guide__row--highlight td {
    background: #fef9c3 !important;
    font-weight: 700;
}
/* 「このPC」バッジ：評価感の右にインライン表示 */
.zl-bench-guide__this-pc {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #b45309;
    background: #fde68a;
    border-radius: 3px;
    padding: 1px 5px;
    white-space: nowrap;
    vertical-align: middle;
}

/* PC: 列幅をゆったりさせて1行に収める */
@media (min-width: 768px) {
    .zl-bench-guide__table {
        table-layout: auto;
    }
    .zl-bench-guide__table th:nth-child(1),
    .zl-bench-guide__table td:nth-child(1) { width: auto; }
    .zl-bench-guide__table th:nth-child(2),
    .zl-bench-guide__table td:nth-child(2) { width: auto; }
}
.zl-bench-guide__note {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 0.2rem;
}
