.lp_cta_link {
    border: none;
    background-color: transparent;
    width: 100%;
    display: flex;
    transition: 0.3s;
}

.lp_cta_link:hover {
    transform: scale(0.95);
}

.lp_cta_section {
    padding: 24px;
    background: transparent;
    max-width: 1280px;
    width: 95%;
    margin: auto;
}

.lp_cta_card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    max-width: 1480px;
    min-height: 460px;
    margin: 0 auto;
    padding: 56px 48px 56px 48px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--brand);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.lp_cta_bg {
    position: absolute;
    left: -80px;
    bottom: -150px;
    width: min(60%, 560px);
    max-width: 560px;
    pointer-events: none;
    z-index: 0;
}

.lp_cta_bg_image {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.22;
}

.lp_cta_content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.lp_cta_lead {
    margin: 0;
    font-size: var(--big-txt);
    font-weight: 700;
    line-height: 1.6;
}

.lp_cta_title {
    margin: 25px 0 35px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.lp_cta_text {
    margin: 0;
    font-size: var(--normal-txt);
    font-weight: 400;
    line-height: 1.9;
}

.lp_cta_arrow_wrap {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.lp_cta_arrow_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
}

.lp_cta_arrow {
    display: inline-block;
    color: var(--brand);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    transform: translateX(2px);
}

.lp_cta_sp_only {
    display: none;
}

.lp_cta_pc_only {
    display: inline;
}

@media (max-width: 1024px) {
    .lp_cta_card {
        min-height: 400px;
        padding: 48px 32px;
        gap: 24px;
    }

    .lp_cta_bg {
        width: min(44%, 420px);
    }

    .lp_cta_lead {
        font-size: 20px;
    }

    .lp_cta_text {
        font-size: 18px;
    }

    .lp_cta_arrow_circle {
        width: 76px;
        height: 76px;
    }

    .lp_cta_arrow {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .lp_cta_section {
        padding: 12px;
    }

    .lp_cta_card {
        display: block;
        padding: 44px 18px 20px;
        border-radius: 14px;
        min-height: 500px;
    }

    .lp_cta_bg {
        left: -50px;
        bottom: -100px;
        width: 82%;
        max-width: none;
    }

    .lp_cta_content {
        max-width: none;
        text-align: center;
    }

    .lp_cta_lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .lp_cta_title {
        margin: 24px 0 28px;
        font-size: 30px;
        line-height: 1.2;
    }

    .lp_cta_text {
        font-size: 15px;
        line-height: 2;
    }

    .lp_cta_arrow_wrap {
        margin-top: 96px;
        justify-content: flex-end;
    }

    .lp_cta_arrow_circle {
        width: 60px;
        height: 60px;
    }

    .lp_cta_arrow {
        font-size: 30px;
    }

    .lp_cta_sp_only {
        display: inline;
    }

    .lp_cta_pc_only {
        display: none;
    }

    .lp_cta_bg {
        left: -80px;
        bottom: -100px;
        width: 100%;
        max-width: none;
    }

}