/* ================================================
   CTA Section Component
   ================================================ */

.cta-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(135deg, var(--color-black-pure) 0%, var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 230, 3, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section__content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section__subtitle {
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.cta-section__title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.cta-section__description {
    font-size: var(--section-description-size);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--section-description-line-height);
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    flex-direction: column;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xxl);
    text-decoration: none;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 100%;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 230, 3, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.cta-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 230, 3, 0.5);
    box-shadow: 0 15px 40px rgba(254, 230, 3, 0.2);
}

.cta-btn--career:hover {
    background: linear-gradient(135deg, rgba(254, 230, 3, 0.1), rgba(255, 167, 38, 0.1));
}

.cta-btn--company:hover {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.1), rgba(254, 230, 3, 0.1));
}

.cta-btn__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.cta-btn__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 500;
}

.cta-btn__service {
    font-size: 1.2rem;
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.cta-btn__arrow {
    font-size: 2rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cta-btn:hover .cta-btn__arrow {
    transform: translateX(10px);
}

/* Responsive */
/* Desktop (768px以上) */
@media (min-width: 769px) {
    .cta-section {
        padding: var(--section-padding);
    }
}

/* Responsive - Desktop */
@media (min-width: 769px) {
    .cta-section__title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        align-items: stretch;
    }

    .cta-btn {
        min-width: 400px;
        padding: var(--spacing-lg) 40px;
        gap: 20px;
        max-width: 500px;
    }

    .cta-btn__service {
        font-size: 1.5rem;
    }
}
