@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: "Noto Sans KR", sans-serif;
    background: none;
    border: none;
}
input, select {
    font-family: "Noto Sans KR", sans-serif;
}
ol, ul, li {
   list-style: none;
}
table {
    font-family: "Pretendard", sans-serif;
}

/* header */
.sy_header {
    position: fixed;
    top: 0;left: 0;
    width: 100%;height: 100px;
    z-index: 9999;
    background-color: rgba(10, 47, 81, 0.2);
}
.sy_header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: calc(100% - 350px);
    margin: 0 auto;
}
.sy_header .container .logo.logo-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s;
}
.container .main_gnb ul {
    display: flex;
}
.container .main_gnb ul li a {
    font-size: 18px;
    color: #fff;
    padding: 0 15px;
}
.main_gnb.is-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s;
}
.sy_header button {
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}
.side_dim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0; visibility: hidden;
    transition: opacity .3s;
    z-index: 9998;
}
.side_dim.on { opacity: 1; visibility: visible; }
.side_menu_wrap {
    position: fixed;
    top: 0; right: 0;
    width: 360px; max-width: 90%;
    height: 100vh;
    background: #111;
    color: #fff;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 9999;
}
.side_inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    padding: 100px 30px 40px;
}
.side_menu_wrap nav ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.side_menu_wrap nav a {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}
.side_close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none; border: 0;
    font-size: 32px; color: #fff; cursor: pointer;
}
.side_menu_wrap.open {transform: translateX(0);}
body.lock-scroll {overflow: hidden;}

@media (max-width: 1800px) {
    .main_gnb { display: none; }
}
@media (max-width: 1500px) {
    .sy_header .container {
        width: calc(100% - 80px);
    }
}
@media (max-width: 992px) {
    .sy_header {
        padding: 10px 0;
        height: 50px;
    }
    .sy_header .container {
        width: calc(100% - 30px);
    }
    .sy_header .container .logo a img {
        height: 30px;
    }
    .sy_header button {
        font-size: 20px;
    }
    .side_inner {
        padding: 20px 20px 20px
    }
    .side_inner .side_logo a img {
        height: 30px;
    }
    .side_menu_wrap nav ul {
        gap: 15px;
    }
    .side_menu_wrap nav a {
        font-size: 14px;
    }
    .side_close {
        top: 10px;
        font-size: 24px;
    }
}

/* qucik_menu */
.quick_menu {
    position: fixed;
    top: 367px;
    right: 0;
    z-index: 1000;
}
.quick_menu ul {
    display: flex;
    flex-direction: column;
    width:  85px;
}
.quick_menu ul li {
    height: 87px;
}
.quick_menu .number {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    background-color: #56bde3;
}
.quick_menu .contact {
    font-family: "Pretendard", sans-serif;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    background: #0f70a8;
}
.quick_menu .blog {
    font-family: "Pretendard", sans-serif;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background-color: rgba(255, 255, 255, 0.8);
}
.quick_menu .blog a, .quick_menu .scroll_top a {
    color: #0f70a8;
}
.quick_menu .scroll_top {
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}
.quick_menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 11px 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.quick_menu ul li a i {
    font-weight: normal;
    font-size: 14px;
}
@media (max-width: 992px) {
    .quick_menu ul {
        width: 60px;
    }
    .quick_menu ul li {
        height: 60px;
    }
    .quick_menu ul li a {
        padding: 7px 0;
        font-size: 12px;
    }
    .quick_menu ul li a i {
        font-size: 12px;
    }
}

/* footer */
.sy_footer {
    background: #212121;
    padding: 48px 0;
}
.sy_footer .footer_inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
.footer_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_top .footer_logo_wrap img {
    height: 60px;
}
.footer_top .footer_sns {
    display: flex;
    gap: 10px;
}
.footer_top .footer_sns li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 45px;height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.footer_top .footer_sns li a {
    position: relative;
    top: 2px;
}
.footer_bottom {
    padding-top: 40px;
}
.footer_bottom .footer_links {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
}
.footer_bottom .footer_links a {
    color: rgba(255, 255, 255, 0.6);
}
.footer_bottom .footer_links span {
    display: inline-block;
    margin: 0 10px;
    width: 2px;height: 15px;
    background: rgba(255, 255, 255, 0.3);
}

.footer_bottom .footer_info p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}
.footer_bottom .footer_info p span {
    display: inline-block;
    margin: 0 15px;
}
.footer_bottom .footer_info p br {
    display: none;
}
.footer_bottom .copyright {
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 992px) {
    .footer_top {
        flex-direction: column;
        gap: 20px;
    }
    .footer_top .footer_logo_wrap img {
        height: 35px;
    }
    .footer_bottom {
        padding-top: 25px;
    }
    .footer_bottom .footer_links {
        margin-bottom: 15px;
        font-size: 14px;
    }
    .footer_bottom .footer_info p span {
        display: block;
        margin: 0;
    }
    .footer_bottom .footer_info p br {
        display: block;
    }
    .footer_bottom .copyright  {
        margin-top: 15px;
    }
}

/* sub_banner */
.sub_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(/images/sub/sub_banner_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;height: 450px;
}
.sub_banner.sub_img {
    background-image: url(/images/sub/sub_banner_2.png);
}
.sub_banner_title p {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}
.sub_banner .sub_banner_menu {
    position: absolute;
    bottom: 0;left: 50%;
    transform: translateX(-50%);
    max-width: 1170px;
    width: 100%;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}
.sub_banner .sub_banner_menu ul {
    display: flex;
    height: 100%;
}
.sub_banner .sub_banner_menu ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
}
.sub_banner .sub_banner_menu ul li a {
    width: 100%;height: 100%;
    padding: 20px 0 0 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.sub_banner .sub_banner_menu ul li:nth-last-of-type(1) a {
    border-right: none;
}
.sub_banner .sub_banner_menu ul li a.active {
    background-color: #56bde3;
    border-right: none;
}
@media (max-width: 992px) {
    .sub_banner {
        height: 300px;
    }
    .sub_banner_title p {
        font-size: 30px;
    }
    .sub_banner .sub_banner_menu {
        height: 40px;
    }
    .sub_banner .sub_banner_menu ul li a {
        font-size: 14px;
        padding: 10px 0 0 0;
    }
}

/* main */
.main_visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;height: 100vh;
    min-height: 600px;
    background: url(/images/common/main_visual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
    text-align: center;
}
.main_text_wrap {
    margin: 0 15px;
}
.main_text_wrap .main_text {
    font-size: 70px;
    font-weight: bold;
    color: #fff;
}
.main_text_wrap .sub_text {
    margin-top: 30px;
    font-size: 24px;
    color: #fff;
}
.main_text_wrap .sub_text.sub_text_2 {
    margin-top: 10px;
}
.main_text_wrap .sub_text .m_br {
    display: none;
}
.main_text_wrap .main_btn {
    display: inline-block;
    margin-top: 50px;
    width: 180px;
    height: 60px;
    color: #fff;
    background: #0f70a8;
}
.main_text_wrap .main_btn span {
    position: relative;
    top: 15px;
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 992px) {
    .main_text_wrap .main_text {
        font-size: 36px;
    }
    .main_text_wrap .sub_text {
        font-size: 18px;
    }
    .main_text_wrap .main_btn {
        margin-top: 20px;
        width: 150px;
        height: 40px;
    }
    .main_text_wrap .main_btn span {
        font-size: 16px;
        top: 7px;
    }
}
@media (max-width: 499px) {
    .main_text_wrap .main_text {
        font-size: 28px;
    }
    .main_text_wrap .sub_text .m_br {
        display: block;
    }
}

/* sub */
.sub_inner_wrap {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}
.sub_inner {
    padding: 100px 0 150px 0;
}
.sub_title_wrap {
    text-align: center;
}
.sub_title_wrap > div {
    position: relative;
    border: 1px solid #56bde3;
    width: 40px;height: 7px;
    background: #fff;
    margin: 0 auto;
    text-align: left;
}
.sub_title_wrap > div span {
    position: absolute;
    top: 0;left: 0;
    display: inline-block;
    width: 20px;height: 6px;
    background: #56bde3;
}
.sub_title_wrap p {
    margin-top: 10px;
    font-size: 48px;
    font-weight: bold;
    color: #424242;
}
.employee_info {
    padding: 40px 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
    max-width: 1170px;
    width: 100%;
    margin: 50px auto;
}
.employee_info p {
    font-size: 18px;
    line-height: 1.6;
    color: #424242;
}
.employee_info .company_number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
    width: 215px;height: 42px;
    background: #56bde3;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
.company_number > div {
    font-weight: 600;
    line-height: 1.4;
}
.company_number > div i {
    position: relative;
    top: 1px;
    font-size: 20px;
}
.company_number p {
    position: relative;
    color: #fff
}
.company_number p::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 9px;
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 992px) {
    .sub_inner {
        padding: 50px 0 70px 0;
    }
    .sub_title_wrap p {
        font-size: 30px;
    }
    .employee_info {
        padding: 25px 15px;
        margin: 30px auto;
    }
    .employee_info p .m_br {
        display: none;
    }
    .employee_info p {
        font-size: 16px;
    }
    .employee_info .company_number {
        gap: 15px;
        font-size: 14px;
        width: 180px;height: 38px;
    }
    .company_number > div i {
        font-size: 16px;
    }
    .company_number p::after  {
        top: 9px;
        left: -7px;
        height: 9px;
    }
}

.employee_table table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-bottom: 50px;
}
.employee_table table thead tr {
    border-top: 2px solid #0f70a8;
    background: rgba(15, 112, 168, 0.03);
    color: #0f70a8;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}
.employee_table table th,td {
    padding: 15px 130px 16px;
}
.employee_table table td {
    border-bottom: 1px solid #e0e0e0;
    color: #424242;
    font-size: 18px;
    line-height: 1.6;
}
.sy_search {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafafa;
    padding: 14px 10px;
}
.sy_search .sy_search_box {
    display: flex;
    justify-content: center;
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
}
.sy_search_box select {
    max-width: 160px;
    width: 100%;
    height: 37px;
    margin-right: 15px;
    padding: 5px 7px;
    background: #fff url(/images/icon/arrow-down-s-line.png) no-repeat right 8px center;
    background-size: 16px auto;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    border: none;
    color: #9e9e9e;
    font-size: 16px;
}
.sy_search_box input {
    max-width: 510px;
    width: 100%;
    height: 37px;
    margin-right: 5px;
    border: none;
    padding: 5px 7px;
    color: #9e9e9e;
    font-size: 16px;
}
.sy_search_box input::-webkit-input-placeholder {
    color: #9e9e9e;
}
.sy_search_box button {
    width: 68px;
    height: 37px;
    background: #0f70a8;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .employee_table table th,td {
        padding: 15px 30px 16px;
    }
}
@media (max-width: 992px) {
    .employee_table table {
        margin-bottom: 30px;
    }
    .employee_table table th,td {
        padding: 10px 15px 10px;
    }
    .employee_table table thead tr {
        font-size: 14px;
    }
    .employee_table table td {
        font-size: 14px;
    }
    .sy_search_box select {
        margin-right: 5px;
        height: 30px;
        font-size: 12px;
    }
    .sy_search_box input {
        height: 30px;
        font-size: 12px;
    }
    .sy_search_box button {
        width: 50px;
        height: 30px;
        font-size: 12px;
    }
}

.paging_box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.paging_box .paging {
    display: flex;
    align-items: center;
    gap: 2px;
}
.paging_box .paging a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;height: 28px;
    line-height: 1.6;
    font-size: 12px;
    color: #757575;
}
.paging_box .paging a.on {
    background: #0f70a8;
    border-radius: 5px;
    color: #fff;
}
@media (max-width: 992px) {
    .paging_box {
        margin-top: 30px;
    }
}

.class_tab_menu {
    font-family: "Noto Sans KR", sans-serif;
    margin: 50px 0;
}
.class_tab_menu ul {
    display: flex;
    gap: 20px;
    width: 100%;
}
.class_tab_menu ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 40px) / 3);
    height: 50px;
    border: 1px solid #e0e0e0;
    background: #fff;
}
.class_tab_menu ul li button {
    width: 100%;height: 100%;
    cursor: pointer;
    font-family: "Noto Sans KR", sans-serif;
    color: #424242;
    font-size: 18px;
}
.class_tab_menu ul li.active {
    background: #0f70a8;
}
.class_tab_menu ul li.active button {
    font-weight: bold;
    color: #fff;
}
.card_list_wrap .total_count {
    font-size: 14px;
    line-height: 1.4;
    color: #757575;
    margin-bottom: 10px;
}
.card_list_wrap .card_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.card_list_wrap .card_list .card_item {
    height: 260px;
}
.card_item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;height: 100%;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 25px 20px;
    transition: all 0.3s;
}
.card_item a:hover {
    border: 1px solid #0f70a8;
    background: #f7fafc;
}
.card_item .card_title_wrap .badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;height: 35px;
    border-radius: 5px;
    font-size: 16px;
}
.card_item .card_title_wrap .badge.badge_blue {
    background: rgba(86, 189, 227, 0.2);
    color: #56bde3;
}
.card_item .card_title_wrap .badge.badge_gray {
    background: #f5f5f5;
    color: #bdbdbd;
}
.card_item .card_title_wrap .item_title {
    margin-top: 10px;
    line-height: 1.6;
    word-break: break-word;
    white-space: normal;
    font-size: 24px;
    font-weight: bold;
    color: #424242;
}
.card_item .item_date {
    display: block;
    text-align: right;
    font-size: 16px;
    line-height: 1.6;
    color: #757575;
}
@media (max-width: 992px) {
    .class_tab_menu {
        margin: 30px 0;
    }
    .class_tab_menu ul {
        gap: 5px;
    }
    .class_tab_menu ul li {
        width: calc((100% - 10px) / 3);
        padding: 0 5px;
    }
    .class_tab_menu ul li button {
        font-size: 14px;
    }
    .card_list_wrap .card_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }
    .card_list_wrap .card_list .card_item {
        height: 200px;
    }
    .card_item a {
        padding: 20px 15px;
    }
    .card_item .card_title_wrap .badge {
        font-size: 14px;
        width: 65px;height: 30px;
    }
    .card_item .card_title_wrap .item_title {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        height: 70px;
        font-size: 20px;
    }
    .card_item .item_date  {
        font-size: 14px;
    }
}
@media (max-width: 499px) {
    .card_list_wrap .card_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        margin-bottom: 0;
    }
}





.class_action_card {
    font-family: "Pretendard", sans-serif !important;
}
.class_action_card .card_title_box {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 29px 0;
    border-top: 2px solid #0f70a8;
    border-bottom: 1px solid #e0e0e0;
}
.class_action_card .card_img img {
    display: block;
    width: 100%;
}
.card_title_box .label {
    padding-top: 5px;
    width: 80px;height: 35px;
    background: rgba(86, 189, 227, 0.2);
    border-radius: 5px;
    color: #56bde3;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
.card_title_box .card_title {
    display: block;
    margin-top: 5px;
    font-size: 24px;
    font-weight: bold;
    color: #424242;
    word-break: break-word;
    white-space: normal;
    line-height: 1.6;
}
.card_title_box .card_date {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #757575;
    line-height: 1.6;
}
.class_action_card .class_contents {
    margin-top: 30px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e0e0e0;
}
.class_contents .class_contents_title {
    font-size: 24px;
    font-weight: bold;
    word-break: break-word;
    white-space: normal;
    line-height: 1.6;
    color: #424242;
}
.class_contents .class_text_wrap {
    margin-top: 30px;
}
.class_text_wrap .class_text {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
    color: #424242;
}
.class_text_wrap .class_text:nth-last-of-type(1) {
    margin-bottom: 0;
}
.class_text_wrap .class_text strong {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    word-break: break-word;
    white-space: normal;
}
.class_action_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding-top: 50px;
}
.class_action_links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;height: 60px;
    font-size: 18px;
    font-weight: 500;
}
.class_action_links .btn_online {
    background: #0f70a8;
    color: #fff;
}
.class_action_links .btn_kakao {
    background: #fd0;
    color: #231815;
}
@media (max-width: 992px) {
    .class_action_card .card_title_box {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px 0;
    }
    .card_title_box .label {
        font-size: 14px;
        width: 70px;height: 30px;
    }
    .card_title_box .card_title {
        font-size: 20px;
    }
    .card_title_box .card_date {
        font-size: 14px;
    }
    .class_action_card .class_contents {
        margin-top: 15px;
        padding-bottom: 30px;
    }
    .class_contents .class_contents_title {
        font-size: 20px;
    }
    .class_contents .class_text_wrap {
        margin-top: 15px;
    }
    .class_text_wrap .class_text {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .class_action_links {
        gap: 10px;
        padding-top: 30px;
    }
    .class_action_links a {
        width: 150px;height: 50px;
        font-size: 16px;
    }
}