/* =========================================================
   🔥 診断結果（STEP4）のリッチデザイン＆モバイル最適化
   ========================================================= */

/* 節約金額ボックス */
.result-savings-box {
    background: #fffcf5;
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    margin-bottom: 25px;
}
.result-savings-box.no-savings {
    background: #f8f9fa;
    border-color: #ddd;
    box-shadow: none;
}
.savings-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.savings-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #e74c3c;
    line-height: 1;
    margin: 10px 0;
}
.savings-number {
    font-size: 3.5rem;
    font-weight: 900;
}
.savings-yen {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 5px;
}
.savings-cheer {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}
.savings-breakdown {
    margin-top: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #666;
    border: 1px dashed #d4af37;
}
.highlight-pink {
    color: #e74c3c;
    font-size: 1.1rem;
}

/* プラン詳細カード（割愛なし） */
.rich-plan-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
    margin-top: 10px;
}
.rich-plan-header {
    padding: 20px 20px 15px;
    background: #fdfdfd;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.rich-plan-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 5px;
}
.rich-plan-price {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}
.rich-plan-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}
.rich-plan-body {
    padding: 20px;
}
.rich-plan-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}
.rich-plan-specs {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}
.spec-item {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.spec-item:last-child {
    margin-bottom: 0;
}
.spec-item i {
    width: 25px;
    color: #666;
    text-align: center;
}
.spec-item strong {
    margin-left: 5px;
    color: #1a1a1a;
}
.rich-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rich-plan-features li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}
.rich-plan-features li i {
    margin-top: 4px;
    margin-right: 8px;
}

/* サブカード（おすすめ②）専用調整 */
.sub-card .rich-plan-title { font-size: 1.3rem; }
.sub-card .rich-plan-price { font-size: 1.6rem; }
.sub-card .rich-plan-body { padding: 15px; }

/* スマホ表示時の強制調整 */
@media (max-width: 768px) {
    .savings-number { font-size: 2.8rem !important; }
    .savings-yen { font-size: 1.2rem !important; }
    .rich-plan-title { font-size: 1.4rem !important; }
    .rich-plan-price { font-size: 1.6rem !important; }
    .spec-item { font-size: 0.9rem !important; }
    .rich-plan-features li { font-size: 0.85rem !important; }
}