/* 레거시 intro.php intro05(진료시간·오시는길) 인라인 <style> 추출본 */
.intro5 .s3_df {
    display: flex;
    line-height: 35px;
    gap: 10px;
}
.intro5 .s3_df_group {
    gap: 35px;
}
.intro5 .s3_df > span {
    width: 80px;
}
@media screen and (max-width: 1100px) {
    .intro5 .s3_df_group {
        flex-direction: column;
    }
    .intro5 .s3_df {
        justify-content: center;
        font-size: 18px;
        line-height: 25px;
    }
}
@media screen and (max-width: 768px) {
    .intro5 .s3_df_group {
        max-width: none;
    }
    .intro5 .s3_df {
        justify-content: flex-start;
        gap: 5px;
    }
    .intro5 .s3_df > span {
        width: 20%;
    }
}
