@charset "utf-8";
/* ========================================
   KOYO - Recruit Page Styles
======================================== */

/* ----------------------------------------
   Recruit Message Section
---------------------------------------- */
.recruit-message {
    padding: 100px 0;
    background: var(--white);
}

.recruit-message-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.recruit-message-title {
    font-size: 3.6rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.recruit-message-text {
    font-size: 1.6rem;
    line-height: 2.2;
    color: var(--text-color);
}

/* ----------------------------------------
   Why Join Us Section
---------------------------------------- */
.why-join {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.why-join-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.why-join-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.why-join-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
}

.why-join-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.why-join-card p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ----------------------------------------
   Job Information Section
---------------------------------------- */
.job-info {
    padding: 80px 0;
    background: var(--white);
}

.job-table {
    margin-top: 50px;
    border-top: 1px solid var(--bg-gray);
}

.job-row {
    display: flex;
    border-bottom: 1px solid var(--bg-gray);
}

.job-row dt {
    width: 200px;
    padding: 25px 30px;
    background: var(--bg-light-gray);
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.job-row dd {
    flex: 1;
    padding: 25px 30px;
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* ----------------------------------------
   Application Flow Section
---------------------------------------- */
.application-flow {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.flow-step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.flow-step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 2.4rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.flow-step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.flow-step-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
}

.flow-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.flow-step-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    transform: rotate(-90deg);
}

/* ----------------------------------------
   Recruit CTA Section
---------------------------------------- */
.recruit-cta {
    padding: 80px 0;
    background: var(--white);
}

.recruit-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 8px;
}

.recruit-cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.recruit-cta-box > p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.recruit-cta-contact {
    display: flex;
    justify-content: center;
}

.recruit-tel {
    text-align: center;
}

.recruit-tel .label {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.recruit-tel .tel-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

/* ----------------------------------------
   Responsive - Tablet
---------------------------------------- */
@media only screen and (max-width: 1024px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-row dt {
        width: 150px;
        padding: 20px;
    }

    .job-row dd {
        padding: 20px;
    }

    .flow-steps {
        flex-wrap: wrap;
        gap: 15px;
    }

    .flow-step-item {
        flex: 0 0 calc(33.333% - 30px);
    }

    .flow-step-arrow {
        display: none;
    }
}

/* ----------------------------------------
   Responsive - Mobile
---------------------------------------- */
@media only screen and (max-width: 750px) {
    .recruit-message {
        padding: 60px 0;
    }

    .recruit-message-title {
        font-size: 2.6rem;
    }

    .recruit-message-text {
        font-size: 1.4rem;
        line-height: 2;
    }

    .why-join {
        padding: 60px 0;
    }

    .why-join-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-join-card {
        padding: 30px 20px;
    }

    .why-join-icon {
        width: 60px;
        height: 60px;
    }

    .why-join-card h3 {
        font-size: 1.5rem;
    }

    .job-info {
        padding: 60px 0;
    }

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

    .job-row dt {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.4rem;
    }

    .job-row dd {
        padding: 15px 20px;
        font-size: 1.4rem;
    }

    .application-flow {
        padding: 60px 0;
    }

    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-step-item {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .flow-step-num {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 2rem;
    }

    .flow-step-content h3 {
        font-size: 1.6rem;
    }

    .flow-step-content p {
        font-size: 1.3rem;
    }

    .recruit-cta {
        padding: 60px 0;
    }

    .recruit-cta-box {
        padding: 40px 25px;
    }

    .recruit-cta-box h2 {
        font-size: 2rem;
    }

    .recruit-cta-box > p {
        font-size: 1.4rem;
    }

    .recruit-tel .tel-number {
        font-size: 2.4rem;
    }
}
