.subsidy-note-small {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.subsidy-percent {
    font-size: 0.8em;
    color: var(--color-gray-dark);
    font-weight: 700;
}

/* 補助金カード内の表示を最適化 */
.subsidy-example {
    background: var(--color-gray-light);
    padding: var(--spacing-sm);
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.subsidy-example .subsidy-value {
    display: block;
    width: 100%;
    overflow: visible;
}

/* カードフッターの金額表示 */
.card-footer-amount {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.card-footer p {
    margin: 0.25rem 0;
    line-height: 1.4;
}

/* ==========================================
   メインオファー（横幅全体）
   ========================================== */
.hero-main-offer {
    width: 100%;
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4), 0 0 0 4px #fbbf24;
    border: 4px solid #fbbf24;
}

.hero-kicker-center {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-main-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-main-price {
    margin: 2rem 0;
    background: #ffffff;
    display: inline-block;
    padding: 2rem 4rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-mega {
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-accent);
    color: #dc2626;
    line-height: 1;
    text-shadow: 4px 4px 0 rgba(220, 38, 38, 0.2);
    display: inline-block;
}

.price-mega-yen {
    font-size: 0.5em;
}

.hero-main-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links a {
    color: #fbbf24;
    /* 黄色系で視認性向上 */
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .hero-main-offer {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-kicker-center {
        font-size: 0.9rem;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-main-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-main-price {
        padding: 1.5rem 2rem;
    }
    
    .price-mega {
        font-size: 5rem;
    }
    
    .hero-main-text {
        font-size: 1.3rem;
    }
}
