/* Recruit Hero */
.recruit-hero {
    height: 70vh;
}

.recruit-hero-bg {
    background-image: url('../img/recruit-bg.webp');
    background-size: cover;
    background-position: center;
}

.recruit-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Message */
.recruit-message {
    background-color: var(--color-bg-light);
    text-align: center;
}

.message-lead {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.message-text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
}

/* Job Detail */
.recruit-detail {
    background-color: var(--color-white);
}

.job-card {
    max-width: 850px;
    margin: 0 auto;
}

.job-header {
    margin-bottom: 3rem;
    text-align: center;
}

.job-tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.3rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.job-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.job-subtitle {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.05em;
}

.job-list {
    border-top: 1px solid #ddd;
}

.job-row {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
}

.job-row dt {
    width: 25%;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.job-row dd {
    width: 75%;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.job-detail-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.3rem;
}

.job-detail-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.salary {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* CTA */
.recruit-cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 5rem 0;
}

.recruit-cta .section-title {
    color: var(--color-white);
}

.cta-text {
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.btn-entry {
    display: inline-block;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 1rem 4rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
    transition: all 0.3s;
}

.btn-entry:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .recruit-hero {
        height: 50vh;
    }

    .message-lead {
        font-size: 1.3rem;
    }

    .message-text {
        font-size: 0.9rem;
    }

    .job-row {
        flex-direction: column;
    }

    .job-row dt {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .job-row dd {
        width: 100%;
    }

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