@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

section,
footer {
    display: flex;
    justify-content: center;
    padding: 60px 0px;
}

.inner {
    width: 90%;
    max-width: 1400px;
}


h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

a:hover {
    cursor: pointer;
}


@media (max-width:1000px) {
    body {
        font-size: 14px;
    }

    .inner {
        width: 95%;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width:800px) {

    section,
    footer {
        padding: 40px 0px;
    }
}



/* ****************** HEADER ********************** */
header {
    background-color: #fff;
    padding: 0px 0px;
    height: 100px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* header_main_menu_wrap */
header .header_main_menu_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}

.site-link-btn {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #0173ba;
    color: #fff;
    display: inline-block;
}

#headerInner {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom: 0px solid #765b73;
    border-bottom: 0px solid #765b73;
}

#headerInner .header-box {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#headerInner .header-box>h1>a {
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: center;
    align-items: center;
}

#headerInner .header-box>h1>a>img {
    width: 100%;
}

#headerInner .logo {
    position: relative;
    left: 3%;
    z-index: 999;
    width: 80px;
}

#headerInner .logo img {
    width: 100%;
}

#headerInner .Mobile-logo {
    display: none;
    z-index: 999;
    width: 60px;
    position: relative;
    left: 2%;
}

#headerInner .fixed-logo {
    display: none;
    position: absolute;
    left: 1%;
    top: 0px;
    z-index: 999;
    width: 160px;
}

#headerInner .menu_right_wrap {
    position: relative;
    right: 3%;
    z-index: 99999;
}

#headerInner .menu_right_wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

#headerInner .menu_right_wrap>li>a {
    height: 34px;
    display: block;
}

#headerInner .menu_right_wrap>li>a>img {
    height: 100%;
}


.TopQbtn {
    width: 100px;
    background-color: #009dff;
    border: none;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px;
    cursor: pointer;
    border-radius: 50px;
}

.TopQbtn:hover {
    background-color: #1974ac;
    text-decoration: none;
    font-weight: bold;
}

/* -------- headerInner :: fixed -------- */
#headerInner.fixed {
    animation: 4 0.7s;
}

@-webkit-keyframes HeaderFixed {
    from {
        top: -120px
    }

    to {
        top: 0;
    }
}

@keyframes HeaderFixed {
    from {
        top: -120px
    }

    to {
        top: 0;
    }
}


/* ****************** GNB 오버시 나타나는 배경 ********************** */
#gnbBg {
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.37);
    z-index: 98;
    display: none;
}

#gnbPcBg {
    position: absolute;
    top: 100px;
    left: 0px;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    z-index: 98;
    -webkit-transition: height 300ms ease-in-out;
    -moz-transition: height 300ms ease-in-out;
    -ms-transition: height 300ms ease-in-out;
    -o-transition: height 300ms ease-in-out;
    transition: height 300ms ease-in-out;
}

#gnbPcBg.open {
    height: 270px;
    border-bottom: #765b73 solid 3px;
}

#gnb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
}

#gnb ul.clearfix>li>a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #fff;
    content: "";
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

#gnb ul.clearfix>li>a:hover,
#gnb ul.clearfix>li.on>a {
    color: #173684;
    text-decoration: none;
}

#gnb ul.clearfix>li>a:hover:before,
#gnb ul.clearfix>li.on>a:before {
    width: 100%;
    margin-left: -50%;
    text-decoration: none;
}

#gnb .gnb-2dep {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 0;
    padding-top: 20px;
    z-index: 99;
    overflow: hidden;
    -webkit-transition: height 300ms ease-in-out;
    -moz-transition: height 300ms ease-in-out;
    -ms-transition: height 300ms ease-in-out;
    -o-transition: height 300ms ease-in-out;
    transition: height 300ms ease-in-out;
}

#gnb .gnb-2dep.open {
    height: 270px;
}

#gnb .gnb-2dep>li>a span {
    display: inline-block;
    line-height: normal;
    text-decoration: none;
}



#gnb {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#gnb ul.clearfix {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    gap: 30px;
}

#gnb ul.clearfix>li {
    position: relative;
    text-align: center;
    list-style: none;
}

#gnb ul.clearfix>li>a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 97px;
    color: #000;
    letter-spacing: 0.5px;
    white-space: nowrap;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

#gnb ul.clearfix li:last-child {
    margin-right: 0px;
}

#gnb .gnb-2dep {
    width: 200px;
}

#gnb ul.clearfix>li.gnb8>ul {
    width: 140px;
}

#gnb .gnb-2dep>li {
    text-align: center;
    margin-bottom: 5px;
}

#gnb .gnb-2dep>li>a {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}



/* -------- GNB :: fixed -------- */
#gnb.fixed ul.clearfix>li>a {
    line-height: 72px;
}

#gnb.fixed #gnbPcBg {
    top: 100px;
}

#gnb.fixed .gnb-2dep {
    top: 80px;
    width: 200px;
}

/* ****************** 모바일 GNB ********************** */
#m-gnb {
    display: none;
    width: 100%;
    max-width: 400px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    overflow-y: auto;
    background-color: #765b73;
    z-index: 99998;
}

#m-gnb.open {
    right: 0;
}

#m-gnb #navigation {
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin-top: 72px;
}

#m-gnb #navigation>li {
    width: 100%;
    background-color: #fff;
    text-align: center;
}

#m-gnb #navigation>li>a {
    display: block;
    padding: 5% 10%;
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #bdbdbd;
    font-weight: 600;
}

#m-gnb #navigation>li>a em {
    display: block;
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
}

#m-gnb #navigation>li .gnb-2dep {
    width: 100%;
    display: none;
    background-color: #fff;
    padding: 5% 0;
       border-bottom: 1px solid #bdbdbd;
}

#m-gnb #navigation>li .gnb-2dep>li .gnb-3dep {
    display: none;
    padding: 0 13%;
}

#m-gnb #navigation>li .gnb-2dep li>a {
    display: block;
    font-size: 15px;
    padding: 4% 0%;
    letter-spacing: -0.5px;
    color: #1d242a;
    font-weight: 300;
}

#m-gnb #navigation>li .gnb-2dep li>a i {
    display: none;
}

.m-util {
    display: none;
    position: absolute;
    top: 5%;
    right: 3%;
}

.nav-open-btn {
    display: none;
    visibility: visible;
    opacity: 1;
    filter: Alpha(opacity=100);
    transform: translateX(0);
    -moz-transform: translateX(0);
    position: absolute;
    z-index: 999;
    top: 20px;
    right: 3%;
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -o-transition: top 0.3s;
    -ms-transition: top 0.3s;
    transition: top 0.3s;
}

.nav-open-btn>span {
    display: block;
    width: 34px;
    height: 4px;
    margin: 5px 0;
    background-color: #000;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 2px;
}

.nav-open-btn>span.line1 {
    width: 22px;
}

.nav-open-btn>span.line1,
.nav-open-btn>span.line2 {
    background-color: #126cb4;
}

.nav-open-btn>span.line3 {
    width: 26px;
    background-color: #53394b;
}

.nav-open-btn.on {
    z-index: 99999;
}

.nav-open-btn.on>span {
    background-color: #fff;
    height: 3px;
}

.nav-open-btn.on>span.line1 {
    width: 30px;
    -ms-transform: translateY(8px) rotate(45deg);
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.nav-open-btn.on>span.line2,
.nav-open-btn.on>span.line4 {
    display: none;
}

.nav-open-btn.on>span.line3 {
    width: 30px;
    -ms-transform: translateY(8px) rotate(-45deg);
    -webkit-transform: translateY(8px) rotate(-45deg);
    -moz-transform: translateY(8px) rotate(-45deg);
    -o-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
    margin-top: -8px;
}

.nav-open-btn.on>span.line {
    background-color: #fff;
}

.MMbtn {
    width: 40%;
    background-color: #9c005e;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border-radius: 10px;
    display: inline-block;
}

@media all and (max-width: 1600px) {}

@media all and (max-width: 1400px) {
    #gnb ul.clearfix>li {
        width: 140px;
    }

    #gnb .gnb-2dep {
        width: 140px;
    }

}

@media all and (max-width: 1500px) {

    /* ****************** HEADER ********************** */
    header {
        height: 72px;
    }

    #headerInner .logo {
        left: 3%;
    }

    #headerInner .Mobile-logo {
        display: block;
    }

    #headerInner.fixed .Mobile-logo {
        display: block;
    }

    #headerInner .menu_right_wrap {
        right: 2%;
    }

    #headerInner .util {
        display: none;
    }

    #headerInner .util2 {
        display: none;
    }

    #headerInner .util3 {
        display: none;
    }

    #headerInner.fixed .fixed-logo {
        display: none;
    }

    #headerInner .menu_right_wrap .sns_btn {
        display: none;
    }

    #headerInner .menu_right_wrap .login_btn {
        display: none;
    }

    /* ****************** GNB ********************** */
    #gnb {
        display: none;
    }

    #gnb ul.clearfix {
        width: auto;
    }

    #gnb ul.clearfix>li>a {
        font-size: 16px;
    }

    #gnb ul.clearfix>li {
        margin-right: 20px;
    }

    #gnb .gnb-2dep>li>a {
        font-size: 14px;
    }

    .TopQbtn {
        width: 96px;
        padding: 8px 0;
        font-size: 15px;
    }

    /* ****************** 모바일 GNB ********************** */
    #m-gnb {
        display: block;
    }

    .logo {
        display: none;
    }

    .nav-open-btn {
        display: block;
        width: 34px;
        height: 32px;
    }

    #headerInner.fixed .nav-open-btn {
        top: 20px;
    }

    #headerInner.fixed #m-gnb #navigation {
        margin-top: 73px;
    }
}

@media all and (max-width: 1000px) {
    #gnb ul.clearfix {
        width: auto;
    }

    #gnb ul.clearfix>li>a {
        font-size: 14px;
    }

    #gnb ul.clearfix>li {
        margin-right: 15px;
    }

    #gnb .gnb-2dep>li>a {
        font-size: 12px;
    }

    .TopQbtn {
        width: 80px;
        padding: 8px 0;
        font-size: 14px;
    }
}


/* ****************** FOOTER ***************** */
footer {
    background-color: #2b2b2b;
    color: #fff;
}

footer .title {
    font-size: 20px;
    font-weight: 600;
}

footer .contact {
    line-height: 2;
    margin: 10px 0px 0px 0px;
    display: flex;
    flex-wrap: wrap;
}

footer .contact>div {
    width: 100%;
}

footer .contact>div,
footer .contact a {
    font-size: 15px;
    color: #fff;
    display: flex;
    margin-right: 20px;
}

footer .contact img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 6px;
}

footer .copyright {
    font-size: 15px;
}

@media all and (max-width: 1000px) {
    footer .title {
        font-size: 16px;
    }

    footer .contact {
        margin: 6px 0px 0px 0px;
    }

    footer .contact>div,
    footer .contact a {
        font-size: 14px;
    }
}


/*############ sub 공통 사용 ############*/
/* sub_page_title */
.sub_page_title {
    padding: 0px;
margin-top: 100px;
}

.sub_page_title .title_wrap {
    width: 100%;
    height: 320px;
    background: #363A40;
    overflow: hidden;
}

.sub_page_title .title_wrap .inner_bg {
    position: relative;
    top: 130px;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all 1s ease-in-out;
}

.sub_page_title .title_wrap .inner_bg.active {
    top: 0px;
    opacity: .2;
}

.sub_page_title .title_wrap .inner_bg img {
    width: 100%;
    object-fit: cover;
  object-position: center;
}

.sub_page_title .title_wrap {
    color: #ffffff;
    font-weight: 900;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub_page_title .title_wrap .title_text {
    position: absolute;
    font-size: 48px;
}


.sub_page_pagination {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.sub_page_pagination .inner {
    position: absolute;
    top: -30px;
    left: 50%;
    height: 55px;
    transform: translateX(-50%);
    background: #373a3f;
    box-shadow: 2px 2px 0.8rem rgba(0, 0, 0, 0.16);
}

.sub_page_pagination .active_menu_wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

.sub_page_pagination .active_menu_wrap>li {
    height: 100%;
    width: 20%;
}

.sub_page_pagination .active_menu_wrap>li.home_icon {
    width: fit-content;
}

.sub_page_pagination .active_menu_wrap>li.home_icon>a {
    padding: 0px;
}

.sub_page_pagination .active_menu_wrap>li.home_icon>a>img {
    height: 100%;
}

.sub_page_pagination .active_menu_wrap>li>a {
    color: #fff;
    border-right: 1px solid #50555c;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0px 20px;
    justify-content: space-between;
    width: 100%;
}

.sub_page_pagination .active_menu_wrap>li>a>img {
    height: 15px;
}

.sub_page_pagination .sub_menu_list {
  height: 0;
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 100%;
  background-color: #373a3f;
}

.sub_page_pagination .sub_menu_list > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 20px;    
    color: #fff;
    border-top: 1px solid #50555c;
}
.sub_page_pagination .sub_menu_list.on {
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.25s ease;
}


@media all and (max-width:1500px) {
.sub_page_title {
    margin-top: 72px;
}

    .sub_page_title .title_wrap .inner_bg {
        top: 272px;
    }

}

@media all and (max-width:1200px) {
 


    .sub_page_pagination .active_menu_wrap>li {
        width: 30%;
    }
}
@media all and (max-width:1000px) {
.sub_page_title .title_wrap .title_text {
    font-size: 40px;
}
}


@media all and (max-width:850px) {
    /* .sub_page_title .title_wrap .inner_bg img {
        width: 140%;
    } */

    .sub_page_pagination .inner {
        width: 100%;
    }

    .sub_page_pagination .active_menu_wrap>li {
        width: 50%;
    }
}

@media all and (max-width:780px) {
     .sub_page_title .title_wrap .inner_bg img {
        width: 120%;
    }
}

@media all and (max-width:650px) {
    .sub_page_title .title_wrap .inner_bg img {
        width: 140%;
    }
}

@media all and (max-width:560px) {
    .sub_page_title .title_wrap {
        height: 220px;
    }

    /* .sub_page_title .title_wrap .inner_bg img {
        width: 180%;
    } */

    .sub_page_title .title_wrap .title_text {
        font-size: 28px;
    }

    .sub_page_title .title_wrap>div:nth-child(1) {
        margin-bottom: 0px;
        font-size: 22px;
        font-weight: 600;
    }

    .sub_page_pagination {
        font-size: 14px;
    }
}

@media all and (max-width:500px) {
        .sub_page_pagination .active_menu_wrap .active_menu.main_menu {
            display: none;
        }

         .sub_page_pagination .active_menu_wrap .active_menu.sub_menu {
            width: 100%;
        }
}

