/* ============================================
   固定CTAボタン（全ページ共通）
   画像ベース実装版
   ============================================ */

/* PC版では非表示 */
.fixed-cta-button {
    display: none;
}

/* SP・タブレット版のみ表示 */
@media (max-width: 1023px) {
    .fixed-cta-button {
        display: block;
        position: fixed;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        width: 100%;
        max-width: 500px;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
        margin: 0;
    }

    .fixed-cta-button a {
        display: block;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .fixed-cta-button img {
        width: 100%;
        height: auto;
        display: block;
    }
}
