@charset "utf-8";

/* ========================
   採用ページ (recruit)
   ======================== */

/* Intro */
.sec-recruit-intro {
    padding-bottom: 60px;
}
.recruit-intro {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.recruit-intro__img {
    flex-shrink: 0;
    width: 320px;
}
.recruit-intro__img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.recruit-intro__text {
    flex: 1;
}
.recruit-intro p {
    margin-bottom: 1em;
    line-height: 2;
}
.recruit-intro p:last-child {
    margin-bottom: 0;
}

/* Features */
.sec-recruit-features {
    padding: 80px 0;
    background: #f5f7fa;
}
.recruit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.recruit-features__item {
    width: calc(50% - 15px);
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.recruit-features__icon {
    margin-bottom: 15px;
}
.recruit-features__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #003C8C;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.recruit-features__ttl {
    font-size: 20px;
    font-weight: 700;
    color: #003C8C;
    margin-bottom: 12px;
    line-height: 1.5;
}
.recruit-features__txt {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

/* FAQ */
.sec-recruit-faq {
    padding: 80px 0;
    background: #f5f7fa;
}
.recruit-faq {
    margin-top: 40px;
}
.recruit-faq .faq__item {
    border-bottom: 1px solid #ddd;
}
.recruit-faq .faq__item:first-child {
    border-top: 1px solid #ddd;
}
.recruit-faq .faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: left;
    line-height: 1.7;
}
.recruit-faq .faq__question .plus-button {
    flex-shrink: 0;
    margin-left: 20px;
}
.recruit-faq .faq__answer {
    padding: 0 20px 22px;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* Voice */
.sec-recruit-voice {
    padding: 80px 0;
}
.recruit-voice {
    margin-top: 40px;
}
.recruit-voice__card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.recruit-voice__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.recruit-voice__label {
    display: inline-block;
    background: #003C8C;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}
.recruit-voice__name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}
.recruit-voice__name span {
    font-size: 15px;
    font-weight: 400;
    color: #666;
}
.recruit-voice__body p {
    margin-bottom: 1em;
    line-height: 2;
}
.recruit-voice__body p:last-child {
    margin-bottom: 0;
}

/* Clinic Banner */
.sec-recruit-clinic-banner {
    padding: 60px 0;
}
.sec-recruit-clinic-banner img {
    width: 100%;
    border-radius: 8px;
}

/* Requirements Table */
.sec-recruit-requirements {
    padding: 80px 0;
}
.recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.recruit-table tr {
    border-bottom: 1px solid #eee;
}
.recruit-table tr:last-child {
    border-bottom: none;
}
.recruit-table th {
    width: 180px;
    padding: 20px 24px;
    background: #f0f4f8;
    color: #003C8C;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
}
.recruit-table td {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}
.recruit-flow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.recruit-flow li {
    font-size: 15px;
}
.recruit-flow li span {
    color: #003C8C;
    font-weight: 700;
    margin-right: 4px;
}

/* ========================
   SP (max-width: 768px)
   ======================== */
@media only screen and (max-width: 768px) {
    .sec-recruit-features,
    .sec-recruit-faq,
    .sec-recruit-voice,
    .sec-recruit-requirements {
        padding: 50px 0;
    }
    .sec-recruit-intro {
        padding-bottom: 40px;
    }
    .recruit-intro {
        flex-direction: column;
    }
    .recruit-intro__img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .recruit-features {
        gap: 16px;
    }
    .recruit-features__item {
        width: 100%;
        padding: 25px 20px;
    }
    .recruit-features__ttl {
        font-size: 17px;
    }

    .recruit-faq .faq__question {
        font-size: 15px;
        padding: 18px 15px;
    }
    .recruit-faq .faq__answer {
        padding: 0 15px 18px;
        font-size: 14px;
    }

    .recruit-voice__card {
        padding: 25px 20px;
    }
    .recruit-voice__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .recruit-voice__name {
        font-size: 18px;
    }

    .sec-recruit-clinic-banner {
        padding: 40px 0;
    }

    .recruit-table th {
        display: block;
        width: 100%;
        padding: 15px 18px 5px;
    }
    .recruit-table td {
        display: block;
        width: 100%;
        padding: 5px 18px 15px;
    }
    .recruit-flow {
        flex-direction: column;
        gap: 4px;
    }
}
