.recruit-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.4)), 
                url('../img/recruit.png') no-repeat center center / cover;
}


/* タイムラインのデザイン */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 15px;
    width: 2px;
    height: 100%;
    background: var(--main-navy);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--main-navy);
    z-index: 1;
}

.time {
    font-weight: bold;
    color: var(--main-navy);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* 教育ステップのカード */
.edu-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.edu-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--sub-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step {
    color: var(--sub-blue);
    font-weight: bold;
    font-size: 0.9rem;
}

.job-description .f-button{display:block;}