.comparison {
    width: min(1120px, calc(100% - 12px));
    margin: 0 auto;
}

.comparison-shell {
    margin-top: 28px;
}

.comparison-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.comparison-summary-card {
    padding: 20px 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(217, 134, 149, 0.08), rgba(255, 255, 255, 0.92));
    border: 1px solid var(--site-line);
    box-shadow: 0 14px 36px rgba(112, 72, 84, 0.06);
}

.comparison-summary-label {
    color: var(--site-accent-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.comparison-summary-body {
    margin-top: 8px;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.comparison-table-new {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    border: 1px solid rgba(217, 134, 149, 0.12);
    box-shadow: 0 14px 36px rgba(112, 72, 84, 0.08);
    overflow: hidden;
}

.comparison-table-new th,
.comparison-table-new td {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(217, 134, 149, 0.12);
    border-right: 1px solid rgba(217, 134, 149, 0.12);
    vertical-align: top;
    line-height: 1.55;
}

.comparison-table-new th:last-child,
.comparison-table-new td:last-child {
    border-right: 0;
}

.comparison-table-new tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table-new thead th {
    background: transparent;
    color: var(--site-ink);
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.35;
}

.comparison-table-new thead th.highlight-col,
.comparison-table-new td strong,
.comparison-table-new .text-keep {
    color: var(--site-accent-deep);
}

.comparison-table-new th:first-child,
.comparison-table-new td:first-child {
    width: 46%;
    text-align: left;
    font-weight: 700;
    color: var(--site-ink);
    padding-left: 20px;
}

.comparison-table-new th:nth-child(2),
.comparison-table-new th:nth-child(3),
.comparison-table-new td:nth-child(2),
.comparison-table-new td:nth-child(3) {
    width: 27%;
    text-align: center;
}

.comparison-table-new th:nth-child(2),
.comparison-table-new td:nth-child(2) {
    background: rgba(217, 134, 149, 0.05);
}

.comparison-table-new th:nth-child(3),
.comparison-table-new td:nth-child(3) strong,
.comparison-table-new td:nth-child(3) .text-keep {
    color: var(--site-ink);
}

.comparison-table-new td strong {
    font-weight: 700;
}

.comparison-table-new .check,
.comparison-table-new .cross {
    display: none;
}

.comparison-table-new__sub,
.comparison-table-new__note,
.comparison-table-new__hint {
    display: block;
    line-height: 1.45;
}

.comparison-table-new__sub,
.comparison-table-new__note {
    font-size: 10px;
    color: #86868b;
}

.comparison-table-new__hint {
    font-size: 11px;
    color: #666;
}

.comparison-table-new tbody tr:hover {
    background: rgba(217, 134, 149, 0.05);
}

.compare-page-nav {
    margin-top: 20px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(217, 134, 149, 0.08), rgba(255, 255, 255, 0.88));
    border: 1px solid var(--site-line);
    text-align: center;
}

.compare-page-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--site-ink);
}

.compare-page-nav-desc {
    margin-top: 8px;
    color: var(--site-muted);
}

.compare-page-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    min-width: 220px;
    margin-top: 16px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(217, 134, 149, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-ink);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 759px) {
    .comparison {
        width: min(100% - 6px, 1120px);
    }

    .comparison-summary-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comparison-summary-card {
        padding: 16px 14px;
        border-radius: 20px;
    }

    .comparison-summary-body {
        font-size: 13px;
        line-height: 1.5;
    }

    .comparison-table-new {
        font-size: 11px;
        border-radius: 24px;
    }

    .comparison-table-new th,
    .comparison-table-new td {
        padding: 11px 6px;
        line-height: 1.5;
    }

    .comparison-table-new td:first-child {
        width: 46%;
        padding-left: 14px;
    }

    .comparison-table-new td:nth-child(2),
    .comparison-table-new td:nth-child(3),
    .comparison-table-new th:nth-child(2),
    .comparison-table-new th:nth-child(3) {
        width: 27%;
    }

    .comparison-table-new__sub,
    .comparison-table-new__note {
        font-size: 9px;
    }

    .comparison-table-new__hint {
        font-size: 10px;
    }
}
