/* 採用情報ページ専用スタイル */

/* 採用メッセージセクション */
.careers-message {
    padding: 100px 0;
    background-color: #fff;
}

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

.lead-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 30px 0;
    line-height: 1.4;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* 募集職種セクション */
.job-categories {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-card.active {
    border: 2px solid #4a69ff;
}

.job-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-status.available {
    background: #4a69ff;
    color: white;
}

.job-status.unavailable {
    background: #e0e0e0;
    color: #999;
}

.job-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.job-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.job-details {
    margin-bottom: 30px;
}

.job-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.job-details ul {
    list-style: none;
    padding: 0;
}

.job-details li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.job-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a69ff;
    font-weight: bold;
}

.job-btn {
    display: inline-block;
    background: #4a69ff;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-btn:hover {
    background: #3651d4;
    transform: translateX(5px);
}

.job-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

/* 成長環境セクション */
.growth-environment {
    padding: 100px 0;
    background: #000;
    color: white;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.environment-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.environment-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.environment-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: white;
    stroke-width: 2;
}

.environment-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.environment-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* 応募方法セクション */
.apply-section {
    padding: 100px 0;
    background: #fff;
}

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

.apply-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.apply-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.apply-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.apply-btn.primary {
    background: #4a69ff;
    color: white;
}

.apply-btn.primary:hover {
    background: #3651d4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 105, 255, 0.3);
}

.apply-btn.secondary {
    background: transparent;
    color: #4a69ff;
    border: 2px solid #4a69ff;
}

.apply-btn.secondary:hover {
    background: #4a69ff;
    color: white;
    transform: translateY(-3px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .environment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .apply-buttons {
        flex-direction: column;
        align-items: center;
    }

    .apply-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .job-card {
        padding: 30px 20px;
    }

    .job-status {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .environment-item {
        padding: 20px;
    }

    .environment-item .icon {
        font-size: 2.5rem;
    }
}