/* ラストCTAセクション */
.last-cta-section {
    background: 
        url('../img/fv_bg1.webp') no-repeat right top,
        url('../img/fv_bg2.webp') no-repeat left bottom,
        var(--white);
    background-size: 16%, 16%, cover;
    padding: 5vw 0;
    text-align: center;
}

.last-cta-container {
    max-width: 80vw;
    margin: 0 auto;
}

/* 見出しエリア */
.last-cta-heading-area {
    margin-bottom: 3vw;
    text-align: center;
}

.last-cta-heading-line1 {
    font-size: 1.7vw;
    color: var(--black);
    margin-bottom: 0.5vw;
    line-height: 1.4;
    font-weight: 700;
}

.last-cta-heading-line2 {
    font-size: 1.7vw;
    color: var(--black);
    margin-bottom: 1vw;
    line-height: 1.4;
    font-weight: 700;
}

.last-cta-heading-line3 {
    font-size: 1.7vw;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
}

.last-cta-highlight {
    color: #F47F2D;
    font-weight: 700;
}

/* CTAコンテンツ */
.last-cta-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5vw;
}

.last-cta-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.last-cta-microcopy {
    font-size: 1.1vw;
    color: var(--black);
    margin-bottom: 1vw;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.last-cta-microcopy-highlight {
    color: #F47F2D;
    font-weight: 600;
}

.last-cta-btn {
    height: 4vw;
    width: 20vw;
    border-radius: 2vw;
    border: 2px solid #F47F2D;
    font-size: 1.2vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0.8vw;
    position: relative;
    overflow: hidden;
}

.last-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.last-cta-btn:hover::before {
    left: 100%;
}

.last-cta-btn-download {
    background-color: #F47F2D;
    color: var(--white);
}

.last-cta-btn-download:hover {
    transform: scale(1.1) translateZ(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.last-cta-btn-contact {
    background-color: var(--white);
    color: #F47F2D;
}

.last-cta-btn-contact:hover {
    transform: scale(1.1) translateZ(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.last-cta-btn-icon {
    width: 1.5vw;
    height: 1.5vw;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .last-cta-section {
        padding: 15vw 0;
    }
    
    .last-cta-container {
        max-width: 90vw;
    }
    
    .last-cta-heading-area {
        margin-bottom: 9vw;
    }
    
    .last-cta-heading-line1 {
        font-size: 4.2vw;
        margin-bottom: 1.5vw;
    }
    
    .last-cta-heading-line2 {
        font-size: 3.6vw;
        margin-bottom: 3vw;
    }
    
    .last-cta-heading-line3 {
        font-size: 3.9vw;
    }
    
    .last-cta-content {
        flex-direction: column;
        gap: 3vw;
        align-items: center;
    }
    
    .last-cta-column {
        align-items: center;
    }
    
    .last-cta-microcopy {
        font-size: 3.3vw;
        margin-bottom: 3vw;
    }
    
    .last-cta-btn {
        height: 12vw;
        width: 50vw;
        border-radius: 6vw;
        font-size: 4.5vw;
        gap: 1.6vw;
        box-shadow: 0 0 0 3px white;
    }
    
    .last-cta-btn-icon {
        width: 4.5vw;
        height: 4.5vw;
    }
}

@media (max-width: 576px) {
    .last-cta-btn {
        width: 65vw;
    }
}