/* Comparison Table Enhancement */

/* 説明文スタイル */
.comparison-explanation {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 30px auto 50px;
    padding: 0 20px;
    font-weight: 500;
}

/* アイコン色の統一 */
.icon-yes {
    color: #10b981 !important; /* 緑 */
}

.icon-no {
    color: #ef4444 !important; /* 赤 */
}

.icon-partial {
    color: #f59e0b !important; /* 黄 */
}

/* PC版テーブル - ヘッダー強化 */
.comparison-table th {
    font-size: 15px;
    font-weight: 700;
    padding: 18px 12px;
    line-height: 1.5;
}

/* PC版テーブル - 左列強化 */
.comparison-table .method-name {
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

/* PC版テーブル - 行区切り強化 */
.comparison-table tr {
    border-bottom: 1px solid rgba(192, 192, 192, 0.15);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Bloom行の強調 - 青は背景のみ */
.comparison-table .highlight-row {
    background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(0,153,255,0.12));
    border: 1px solid rgba(0,212,255,0.3);
}

.comparison-table .highlight-row .method-name {
    color: #00d4ff;
    font-weight: 800;
}

/* モバイルカード - ヘッダー文字サイズ拡大 */
@media (max-width: 768px) {
    .comparison-mobile-cards .comparison-criteria-label {
        font-size: 15px !important;
        font-weight: 600;
        line-height: 1.6;
    }
    
    .comparison-mobile-cards .comparison-method-name {
        font-size: 22px !important;
        font-weight: 800;
    }
    
    .comparison-explanation {
        font-size: 16px;
        margin: 25px auto 40px;
    }
}
