/* ==============================================
   製品ページ: お問い合わせCTA
============================================== */

.pp-footer-cta {
    background-color: #fff !important;
    color: #1A1A1A !important;
    padding: 48px 0 !important;
}

.pp-footer-cta__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.pp-footer-cta__content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.pp-footer-cta__title {
    font-size: 28px !important;
    font-weight: 400 !important;
    color: #1A1A1A !important;
    margin: 0 0 16px !important;
    text-align: center !important;
}

.pp-footer-cta__desc {
    font-size: 18px !important;
    color: #4a5565 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

/* ---- ボタン群 ---- */

.pp-footer-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.pp-footer-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.pp-footer-cta__btn--primary {
    background-color: #CCFF00;
    color: #1A1A1A;
    border: none;
}

.pp-footer-cta__btn--primary:hover {
    background-color: #b8e600;
}

.pp-footer-cta__btn--secondary {
    background-color: transparent;
    color: #002040;
    border: 2px solid #002040;
}

.pp-footer-cta__btn--secondary:hover {
    background-color: rgba(0, 32, 64, 0.05);
}

.pp-footer-cta__btn--outline {
    background-color: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
}

.pp-footer-cta__btn--outline:hover {
    background-color: #1A1A1A;
    color: #fff;
}

.pp-footer-cta__btn-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.pp-footer-cta__btn:hover .pp-footer-cta__btn-icon {
    transform: scale(1.1);
}

.pp-footer-cta__btn-icon svg {
    width: 24px;
    height: 24px;
}

/* ---- 注釈 ---- */

.pp-footer-cta__note {
    text-align: center;
    font-size: 14px !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* ---- ダークBG ---- */

.pp-footer-cta.pp-dark-bg {
    background-color: #002040 !important;
    color: #fff !important;
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__title {
    color: #fff !important;
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__btn--secondary {
    color: #CCFF00;
    border-color: #CCFF00;
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__btn--secondary:hover {
    background-color: rgba(204, 255, 0, 0.1);
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__btn--outline {
    color: #fff;
    border-color: #fff;
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__btn--outline:hover {
    background-color: #fff;
    color: #1A1A1A;
}

.pp-footer-cta.pp-dark-bg .pp-footer-cta__note {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ---- レスポンシブ ---- */

@media only screen and (max-width: 640px) {
    .pp-footer-cta {
        padding: 32px 0 !important;
    }

    .pp-footer-cta__title {
        font-size: 22px !important;
    }

    .pp-footer-cta__desc {
        font-size: 16px !important;
    }

    .pp-footer-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .pp-footer-cta__btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
}
