/* ==========================================================
   CTAボタン (acf/cta-button)
   ========================================================== */

.ocv-cta-button {
    margin: 1.5em 0 2em;
    text-align: center;
    position: relative;
}

/* 補足テキスト（斜め線付き） */
.ocv-cta-button__copy {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 6px;

}

.ocv-cta-button__copy::before {
    content: "＼";
    margin-right: 4px;
}

.ocv-cta-button__copy::after {
    content: "／";
    margin-left: 4px;
}

/* ボタン本体 */
.ocv-cta-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    padding: 18px 28px;
    background: #e74c3c;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 0 #c0392b;
    transition: box-shadow .2s, transform .2s;
    position: relative;
}

.ocv-cta-button__link:hover {
    box-shadow: none;
    transform: translateY(4px);
}

/* アイコンサムネイル */
.ocv-cta-button__logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    padding: 2px;
    flex-shrink: 0;
    border: 2px solid #fff;
}

.ocv-cta-button__label {
    white-space: nowrap;
}

/* レスポンシブ */
@media (min-width: 600px) {
    .ocv-cta-button__link {
        font-size: 20px;
        padding: 20px 36px;
        gap: 14px;
    }

    .ocv-cta-button__logo {
        width: 54px;
        height: 54px;
        border-radius: 12px;
    }

    .ocv-cta-button__copy {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .ocv-cta-button__link {
        font-size: 15px;
        padding: 16px 20px;
    }

    .ocv-cta-button__logo {
        width: 42px;
        height: 42px;
    }
}
