/* ===================================================
   VODサービスまとめボックス - 軽量版
   サイトキーカラー: #89AEDD
   ================================================== */

.vod-summary-box {
    max-width: 700px;
    margin: 30px auto;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px 25px;
}

/* ヘッダー */
.vod-header {
    text-align: center;
    margin-bottom: 25px;
}

.vod-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    display: block;
}

.vod-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.vod-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 特徴リスト */
.vod-features {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 3px solid #89AEDD;
}

.vod-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vod-features li {
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.vod-features li:last-child {
    margin-bottom: 0;
}

.vod-features li::before {
    content: "・";
    margin-left: -20px;
    margin-right: 8px;
    color: #89AEDD;
    font-weight: bold;
}

/* 評価セクション */
.vod-ratings-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #89AEDD;
}

.vod-ratings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vod-rating-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vod-rating-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.vod-rating-score {
    font-size: 16px;
    font-weight: 700;
    color: #89AEDD;
}

.vod-rating-bar {
    height: 10px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.vod-rating-fill {
    height: 100%;
    background-color: #89AEDD;
}

/* 総合評価 */
.vod-total-score {
    margin-top: 25px;
    padding: 12px;
    background-color: #f5f5f5;
    text-align: center;
    border: 2px solid #89AEDD;
}

.vod-total-score-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
}

.vod-total-score-value {
    font-size: 20px;
    font-weight: 700;
    color: #89AEDD;
}

.vod-total-score-value span {
    font-size: 13px;
    font-weight: 600;
    color: #999;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .vod-summary-box {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .vod-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }

    .vod-title {
        font-size: 18px;
    }

    .vod-subtitle {
        font-size: 13px;
    }

    .vod-features {
        padding: 15px;
    }

    .vod-features li {
        font-size: 13px;
    }

    .vod-ratings-title {
        font-size: 15px;
    }

    .vod-rating-label {
        font-size: 13px;
    }

    .vod-rating-score {
        font-size: 15px;
    }

    .vod-rating-bar {
        height: 8px;
    }

    .vod-total-score {
        padding: 10px;
    }

    .vod-total-score-value {
        font-size: 18px;
    }

    .vod-total-score-value span {
        font-size: 12px;
    }
}