/* CTAセクション */
.top-cta {
    padding: 64px 0;
    background: transparent;
    color: var(--white);
    text-align: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    scroll-margin-top: 72px;
}

.top-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.top-cta-content {
    position: relative;
    z-index: 1;
}

.top-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-black);
}

.top-cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-black);
}

