/*CTAセクション設定 */

.p-cta {
    background: linear-gradient(90deg, #FFE8D0, #EFC3B9);;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

/*ボタンエリア全体の配置*/
.p-cta__list {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-end;
}

.p-cta .c-button {
    width: 180px;
    padding: 10px 0;
    font-size: 16px;
    justify-content: center;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .p-cta {
        padding: 25px 10px; /* 左右の余白を少し詰めて横幅を確保 */
        min-height: auto;
    }

    .p-cta__list {
        display: flex;
        flex-direction: row; /* ★横並び */
        justify-content: center;
        gap: 10px;           /* ボタン間の隙間を少し詰める */
        width: 100%;
        align-items: flex-end; /* 下端を揃える */
    }

    /* 4. ボタン本体 */
    .p-cta .c-button {
        flex: 1;
        max-width: 150px;         /* ユニットの幅いっぱいに広げる */        /* 横並びの場合は少し高さを抑えるとバランスが良い */
        font-size: 16px;     /* ★文字がはみ出さないよう調整 */
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap; /* 改行させない */
    }
}