/* 採用情報ページ専用CSS */

/* セクション共通 */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* ヒーローセクション */
.recruit-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 160px;
}

.recruit-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(35deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 32px;
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 25px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

/* エントリーCTA */
.entry-cta {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.entry-cta h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.entry-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.entry-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.entry-method:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(10px);
}

.entry-method:hover .method-info h3,
.entry-method:hover .method-info p {
    color: white;
}

.method-icon {
    font-size: 32px;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.method-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #333;
}

.method-info p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    color: #666;
}

/* なぜオテアゲか */
.why-oteage {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #333;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* 募集職種カード */
.positions-section {
    padding: 80px 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.position-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.position-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.position-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    color: white;
}

.position-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
    color: white;
}

.position-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.position-salary {
    font-size: 18px;
    opacity: 0.95;
    color: white;
}

.position-body {
    padding: 30px;
}

.position-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-tag {
    background: #f0f4ff;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.position-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    margin-right: 10px;
    color: #667eea;
    width: 20px;
}

.apply-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    margin-top: 20px;
}

.apply-btn:hover {
    opacity: 0.9;
    color: white;
}

/* 社員インタビュー */
.interviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.interviews-slider {
    margin-top: 50px;
    position: relative;
}

.interview-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.interview-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.interview-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.interview-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 20px;
}

.interview-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.interview-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: #667eea;
    opacity: 0.3;
}

/* 選考フロー */
.process-section {
    padding: 80px 0;
}

.process-timeline {
    margin-top: 50px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.step-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.step-description {
    font-size: 14px;
    color: #666;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.faq-question i {
    color: #667eea;
    margin-right: 12px;
    margin-top: 3px;
    font-style: normal;
    font-weight: 700;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    padding-left: 32px;
}

/* カジュアル面談CTA */
.casual-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.casual-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.casual-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: white;
}

.casual-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

.casual-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.casual-btn {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
}

.casual-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.casual-btn:hover {
    transform: scale(1.05);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .interview-photo {
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-line {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .casual-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .casual-btn {
        width: 100%;
        max-width: 300px;
    }
}