.section {
    margin-top: var(--section-spacing);
}
.section h2 {
    margin-bottom: 40px;
}
.section .text {
    margin-bottom: 70px;
}
.text_color_box {
    padding: 40px 20px;
    background-color: var(--gray-100);
}
.section .text_color_box .text {
    margin-bottom: 0;
    font-size: var(--ft18);
}

/*---------------------------- info_box ----------------------------*/
.info_box {
    margin-bottom: 200px;
}
.info_box .title {
    margin-bottom: 0;
}
.info_box .text_box p:first-child {
    font-size: var(--ft18);
    margin-bottom: 0;
}

/*---------------------------- role ----------------------------*/
.role  {
    max-width: var(--container-sm);
    margin-bottom: 0;
}
.role .title_box {
    margin-bottom: 40px;
}
.role.section h2 {
    margin-bottom: 0;
}

.center_intro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}
.center_intro figure {
    width: 100%;
    height: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 3;
}
.center_intro .text_box {
    width: 100%;
}
.center_intro h2 {
    text-align: left;
    margin-bottom: 40px;
}


/*-- step_list --*/
.step_list {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.step {
    display: block;
    font-size: var(--ft18);
    font-weight: var(--bold);
    color: var(--primary);
    margin-bottom: 10px;
}
.step_title {
    font-size: var(--ft28);
    margin-bottom: 10px;
}

/*---------------------------- table ----------------------------*/
.table th {
    padding: 0 6px;
}
.table td p {
    padding-left: 10px;
}

/*---------------------------- nurse_list ----------------------------*/
.nurse_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.nurse_box {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nurse_img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}
.nurse_text {
    font-size: var(--ft18);
    margin-bottom: 6px;
    text-align: center;
}
.nurse_num {
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    color: var(--primary);
    text-align: center;
}

@media all and (max-width: 1200px) {
    .section h2 {
        margin-bottom: 30px;
    }

    .info_box {
        margin-bottom: var(--section-spacing);
    }

    /*-- center_intro --*/
    .center_intro {
        gap: 40px;
    }
    .center_intro figure {
        width: 60%;
    }

    /*-- nurse_list --*/
    .nurse_list {
        gap: 30px;
    }
    .nurse_img {
        width: 70px;
        height: 70px;
    }
}

@media all and (max-width: 900px) {
    .section .text_color_box {
        padding: 0;
        background: none;
    }
    .role .title_box {
        margin-bottom: 20px;
    }
    .role .title_box img {
        width: 32px;
        height: 32px;
    }
    .role.section h2 {
        font-size: var(--ft24);
    }
    /*-- center_intro --*/
    .center_intro {
        margin-top: 40px;
        flex-direction: column;
        gap: 40px;
    }
    .center_intro figure {
        width: 100%;
        max-width: 400px;
        max-height: 400px;
        margin: 0 auto;
    }
    .step_list {
        max-width: 400px;
        gap: 20px;
    }
    .step_list li {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--dark-line);
    }
    .step {
        font-size: var(--ft16);
        margin-bottom: 8px;
    }
    .step_title {
        font-size: var(--ft22);
        margin-bottom: 8px;
    }
}

@media all and (max-width: 800px) {
    .section .text {
        margin-bottom: 50px;
    }
    .table td {
        width: 100%;
    }
    /*-- nurse_list --*/
    .nurse_list {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
    .nurse_list li {
        width: 100%;
        max-width: 100%;
        padding: 24px 30px;
        aspect-ratio: auto;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    .nurse_img {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    .nurse_text_box {
        width: 130px;
    }
    .nurse_text,
    .nurse_num {
        text-align: left;
    }
    .nurse_text {
        font-size: var(--ft16);
    }
    .nurse_num {
        font-size: var(--ft24);
    }
}