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

.page-header {
    margin-top: 120px;
    background: linear-gradient(135deg, #1a4d7a, #2e6ba0);
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.95;
    letter-spacing: 0.1em;
}

/* メッセージセクション */
.recruit-message {
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 2;
    color: #666666;
}

.message-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* 募集職種 */
.job-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.job-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4d7a, #2e6ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.job-title-area h3 {
    font-size: 1.8rem;
    color: #1a4d7a;
    margin-bottom: 8px;
}

.job-type {
    color: #666666;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.job-body {
    padding: 20px 0;
}

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

.job-section h4 {
    color: #1a4d7a;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.job-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #333333;
    line-height: 1.7;
}

.job-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B8986F;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 詳細情報 */
.job-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.detail-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #1a4d7a;
    min-width: 120px;
    flex-shrink: 0;
}

.detail-value {
    color: #333333;
    line-height: 1.7;
}

/* 福利厚生 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a4d7a, #2e6ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-item h4 {
    color: #1a4d7a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666666;
    line-height: 1.8;
}

/* 応募方法 */
.application-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.application-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a4d7a, #2e6ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.app-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.application-card h3 {
    color: #1a4d7a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.application-card p {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.phone-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #1a4d7a;
    color: #ffffff;
    transform: translateX(5px);
}

.phone-link span {
    color: #666666;
    font-size: 0.9rem;
}

.phone-link:hover span {
    color: #ffffff;
}

.phone-link strong {
    color: #1a4d7a;
    font-size: 1.2rem;
}

.phone-link:hover strong {
    color: #ffffff;
}

.phone-note {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 15px;
}

/* 応募の流れ */
.application-note {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.application-note h4 {
    color: #1a4d7a;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.application-note ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.application-note ol li {
    padding: 10px 0;
    color: #333333;
    line-height: 1.7;
}

.note-text {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* レスポンシブ */
@media (max-width: 968px) {
    .job-header {
        flex-direction: column;
        text-align: center;
    }
    
    .job-icon {
        width: 70px;
        height: 70px;
    }
    
    .job-icon i {
        font-size: 2rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-label {
        min-width: auto;
    }
    
    .application-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        margin-top: 70px;
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .job-card {
        padding: 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .application-card {
        padding: 30px 20px;
    }
}
