/* Recruit Page Styles */

/* Reuse variables from main.css */

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Page Hero */
.page-hero {
    height: 400px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 100px;
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title-en {
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: sans-serif;
}

.page-title-ja {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f5f5f5;
    padding: 15px 10%;
    font-size: 12px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    margin-right: 5px;
}

.breadcrumbs a:hover {
    color: var(--gold-primary);
}

.breadcrumbs span {
    margin-right: 5px;
}

/* Message Section */
.recruit-message-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.recruit-lead {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 60px;
    color: var(--dark-gray);
}

.message-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.point-item {
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.point-item h3 {
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.point-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #eee;
}

.point-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* Job List Section */
.job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 3px solid var(--gold-primary);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

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

.job-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    background: #fdfdfd;
}

.job-title {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-family: serif;
}

.job-type {
    display: inline-block;
    padding: 4px 10px;
    background: var(--dark-gray);
    color: white;
    font-size: 11px;
    border-radius: 2px;
}

.job-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

.job-requirements {
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

.req-row {
    margin-bottom: 10px;
}

.req-row:last-child {
    margin-bottom: 0;
}

.req-row dt {
    font-size: 12px;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.req-row dd {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.btn-apply {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    background: white;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-apply:hover {
    background: var(--gold-primary);
    color: white;
}

/* Flow Section */
.recruit-flow {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.recruit-flow::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: -1;
}

.flow-step {
    background: white;
    width: 30%;
    text-align: center;
    padding: 0 10px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 5px white; /* Create gap for line */
}

.step-content h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-box {
    text-align: center;
    padding: 60px;
    background: white;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

.btn-gold-large {
    display: inline-block;
    padding: 15px 50px;
    background: var(--gold-primary);
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-gold-large:hover {
    background: var(--dark-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .message-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .recruit-flow {
        flex-direction: column;
        gap: 40px;
    }

    .recruit-flow::before {
        width: 1px;
        height: 100%;
        left: 30px;
        top: 0;
    }

    .flow-step {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        padding-left: 0;
    }

    .step-num {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
}
