.recruit-hero {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.recruit-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.recruit-hero .subtitle {
    font-size: 18px;
    line-height: 1.8;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-text {
    font-size: 18px;
    line-height: 2.0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.jobs-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.job-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.job-section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: #333;
}

.job-content {
    font-size: 16px;
    line-height: 2.0;
    color: #555;
}

.job-content ul {
    list-style: disc;
    padding-left: 25px;
}

.job-content ul li {
    margin-bottom: 10px;
}

.salary {
    background-color: #f0f4ff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
}

.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
}

.benefit-item ul {
    list-style: none;
}

.benefit-item ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.benefit-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.application-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.application-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.application-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 18px;
    line-height: 2.0;
    margin: 20px 0;
}

.email-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
}

.notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 30px;
}

.not-recruiting {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    color: #dc3545;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
}

.back-button {
    text-align: center;
    margin-top: 60px;
}

.back-button a {
    display: inline-block;
    padding: 15px 40px;
    background-color: #667eea;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-button a:hover {
    background-color: #5568d3;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .recruit-hero h1 {
        font-size: 32px;
    }
    
    .recruit-hero .subtitle {
        font-size: 16px;
    }
    
    .job-card {
        padding: 25px;
    }
    
    .job-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
