/* =====================
   CTAセクション
===================== */
.l-cta {
    background: linear-gradient(90deg, var(--wp--preset--color--main-color), var(--wp--preset--color--sub-color-1));
    padding: 40px 0;
    color: var(--wp--preset--color--white);
}

/* =====================
   レイアウト
===================== */
.p-cta-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.p-cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =====================
   テキスト
===================== */
.p-cta-item__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.p-cta-item__text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* =====================
   フォーム（HubSpot対応）
===================== */
.p-cta-form {
    margin-top: auto;
}

/* =====================
   ボタン位置調整
===================== */
.p-cta-item .c-arrow-button {
    margin-top: auto;
}

/* =====================
   レスポンシブ
===================== */
@media (max-width: 768px) {

    .l-cta {
        padding: 30px 0;
        background: linear-gradient(180deg, var(--wp--preset--color--main-color), var(--wp--preset--color--sub-color-1));
    }

    .p-cta-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .p-cta-item__title {
        font-size: 22px;
    }

    .p-cta-item__text {
        font-size: 15px;
    }

    .p-cta-form .hs-form input,
    .p-cta-form .hs-form textarea {
        height: 50px;
        font-size: 16px;
    }

    .p-cta-form .hs-form input[type="submit"] {
        height: 56px;
        font-size: 18px;
    }
}