/**
 * 求人情報ページ専用スタイルシート
 * 共通スタイルはstyle.cssを参照
 */

/* ページヒーロー */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease 0.2s both;
}


/* ==========================================================================
   求人情報セクション
   ========================================================================== */

.requirements-grid {
    color:var(--secondary-color);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
    font-size: 1.2em;
}

.requirement-item {
    margin:25px 0;
}

/* ==========================================================================
   働く環境セクション
   ========================================================================== */

.environment-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.environment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.environment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.environment-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.environment-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.environment-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */

@media (max-width: 768px) {
    .environment-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .job-footer {
        flex-direction: column;
    }
    
    .btn-detail {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .job-footer {
        flex-direction: column;
    }
}