/* ==============================================
   RECRUIT.CSS - 採用セクションスタイル
   ============================================== */

/* 採用セクション */
.recruit-content {
    text-align: center;
}

.recruit-text {
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

/* 採用統計のアニメーション */
.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Sawarabi Gothic', sans-serif;
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #48CAE4;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #2c3e50;
}

/* テキスト要素のアニメーション */
.recruit-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   レスポンシブ対応 - タブレット・モバイル
   ============================================== */

@media (max-width: 1023px) {
    .recruit-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .recruit-text {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .recruit-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
} 