@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;700&display=swap');
@font-face {font-family: "CJ+ONLYONE+Bold"; /* 사용하고 싶은 font-family명을 지정 */
src: url("../font/CJ+ONLYONE+Bold.ttf") format("truetype"); /* 폰트파일 불러오기 */}
@font-face {font-family: "CJ+ONLYONE+Medium";
src: url("../font/CJ+ONLYONE+Medium.ttf") format("truetype");}

body, header, section, div, h1, nav, ul, li, a, button, h2, p, a, span, h3{font-family: "Noto+Sans+KR"; font-size: 14px; font-weight: normal; color: #000;}

*{margin: 0; padding: 0;}
li{list-style: none;}
a{text-decoration: none;}
img{display: block;}
address,em{font-style: normal;}




/* PC */
@media screen and (min-width:1201px) {

/* header */
#header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 90px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    z-index: 999;
}
#header .header_inner{
    position: relative;
    width: 92%;
    max-width: 1400px;
    height: 90px;
    margin: 0 auto;
}
#header .header_inner .logo{
    position: absolute;
    width: 200px;
    height: 90px;
    left: 0;
    top: 5px;
    background-image: url(../img/main/top_logo.png);
    background-size: 90%;
    background-repeat: no-repeat;
}
#header .header_inner .logo a{
    /* color: rgba(0, 0, 0, 0); */
    color: #000;
    line-height: 80px;
    text-indent: -3000px;
    display: block;
}
#header .header_inner .gnb_wrap{
    position: absolute;
    right: 0;
    top: 25px;
    display: flex;
}
#header .header_inner .mgnb_btn{

    background: none;
    border: none;
    margin-left: 24px;
    cursor: pointer;
}
#header .header_inner .mgnb_btn>span{
    width: 36px;
    height: 2px;
    background-color: #000;
    display: block;
    margin-bottom: 9px;
    transition-duration: 0.5s;
}
#header .active_btn span:nth-child(2){
    opacity: 0;
}
#header .active_btn span:first-child{
    transform: rotate(45deg);
    margin-bottom: -13px;
}
#header .active_btn span:last-child{
    transform: rotate(135deg);
}
#header .header_inner .mgnb_btn>span:last-child{
    margin-bottom: 0;
}
#header .header_inner .mgnb{
    position: fixed;
    width: 100%;
    left: 0;
    top: 90px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    display: none;
}
#header .header_inner .mgnb .mgnb_wrap{
    position: relative;
    width: 92%;
    max-width: 1400px;
    padding: 100px 0;
    margin: 0 auto;
    transition-duration: 0.5s;
}
#header .header_inner .mgnb .mgnb_wrap .list_img li{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: none;
}
#header .header_inner .mgnb .mgnb_wrap .list_img li img{
    height: 100%;
}
#header .header_inner .main_menu{
    /* width: 828px; */
    position: relative;
    width: 84%;
}
#header .header_inner .main_menu>li{
    margin-bottom: 30px;
    display: flex;
    line-height: 40px;
}
#header .header_inner .main_menu>li:last-child{
    margin-bottom: 0;
}
#header .header_inner .main_menu>li>div{
    width: 24%;
    min-width: 210px;
    height: 40px;
    padding-top: 2px;
}
#header .header_inner .main_menu>li>div>a{
    font-size: clamp(20px, 1.4vw, 24px);
    font-family: "CJ+ONLYONE+Medium";
    text-transform:uppercase;
    display:inline-block;
}
#header .header_inner .main_menu>li>div>a:hover{
    color: #006ECD;
}


.main_menu>li>div>a::after {
    display:block;
    content: '';
    border-bottom: solid 3px #006ECD;
    transform: scaleX(0);  
    transition: transform 300ms ease-in-out;
  }
.main_menu>li:hover>div>a::after { transform: scaleX(1); }
.main_menu>li:focus-within   >div>a::after { transform: scaleX(1); }
.main_menu .fromRight::after{ transform-origin:100% 50%; }
.main_menu .fromLeft::after{  transform-origin:  0% 50%; }


#header .header_inner .main_menu>li>ul{
    position: relative;
    width: 76%;
    display: flex;
}
#header .header_inner .main_menu>li>ul>li{
    margin-right: 4%;
    display: flex;
    align-self: center;
   justify-content: center;
}
#header .header_inner .main_menu>li>ul>li:last-child{
    margin-right: 0;
}
#header .header_inner .main_menu>li>ul>li>a{
    font-size: clamp(15px, 1.2vw, 16px);
    display: block;
}
#header .header_inner .main_menu>li>ul>li>a:hover{
    color: #006ECD;
    border-bottom: 1px solid #006ECD;
}
#header .header_inner .main_menu>li>ul>li>a:focus-within{
    color: #006ECD;
    border-bottom: 1px solid #006ECD;
}



#header .header_inner .gnb_wrap .util{
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}
#header .header_inner .gnb_wrap .util .go_lang{
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 6px 10px;
    margin-left: 24px;
}
#header .header_inner .gnb_wrap .util .go_lang .lang_list{
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 12px;
}
#header .header_inner .gnb_wrap .util .icon1{
    margin-left: 24px;
}
#header .header_inner .gnb_wrap .util .icon1 img{
    width: 24px;
}
#header .header_inner .gnb_wrap .util .icon2{
    background: none;
    border: none;
    cursor: pointer;
}
#header .header_inner .gnb_wrap .util .icon2 img{
    width: 22px;
}
#header .header_inner .gnb_wrap .util img{
    width: 100%;
}
#wrap{
    position: relative;
    margin-right: 10px;
    display: none;
}
#wrap #search{
    width: 0;
    height: 33px;
    border-radius: 16.5px;
    padding-left: 14px;
    outline: none;
    box-sizing: border-box;
    border: 1px solid #000;
}
#wrap .submit_btn{
    position: absolute;
    right: 8%;
    bottom: 9px;
    background-image: url(../img/main/icon_search_wh.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: none;
}

.pick{color: #006ECD;}
/* header */







/* footer */
#footer{
    position: relative;
    background-color: #F5F6F8;
    padding: 80px 0;
    transition-duration: 0.5s;
}
#footer .footer_inner{
    position: relative;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#footer .footer_inner .left{
    width: 640px;
}
#footer .footer_inner .left ul{
    position: relative;
    width: 480px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}
#footer .footer_inner .left ul li a{
    font-size: 14px;
    display: block;
    transition-duration: 0.5s;
}
#footer .footer_inner .left ul li a::after{
    position: absolute;
    content: '';
    display: block;
    background-color: #ccc;
    width: 1px;
    height: 10px;
    transform: translate(-16px, -14px);
}
#footer .footer_inner .left ul li:first-child a::after{
    display: none;
}
#footer .footer_inner .left ul li:first-child a{
    color: #EF151E;
}
#footer .footer_inner .left address{
    line-height: 2em;
    margin-bottom: 18px;
    color: #6A6A6A;
    font-size: 14px;
}
#footer .footer_inner .left .copyright{
    color: #6A6A6A;
}

#footer .footer_inner .right{
    width: 168px;
}
#footer .footer_inner .right .family_btn{
    width: 168px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #6A6A6A;
    color: #6A6A6A;
    font-size: 14px;
    cursor: pointer;
    background: none;
    transition-duration: 0.4s;
}
#footer .footer_inner .right .family_btn:hover{
    background: transparent; box-shadow: inset 160px 0 0 0 #222,inset -160px 0 0 0 #222;
    color: #fff;
}
#footer .footer_inner .right .family_btn:hover span{
    color: #fff;
}
#footer .footer_inner .right .family_btn span{
    color: #6A6A6A;
    margin-left: 16px;
}
#footer .footer_inner .right .sns_list{
    display: flex;
    justify-content: space-between;
    width: 168px;
    position: absolute;
    bottom: 0;
}
#footer .footer_inner .right .sns_list li{
    width: 40px;
    height: 40px;
    border: 1px solid #6A6A6A;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.family_site{
    background-color: #fff;
    position: absolute;
    bottom: 74.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: none;
    z-index: 990;
}
.family_site .link_inner{
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}
.family_site .link_inner ul{
    display: flex;
    justify-content: space-between;
}
.family_site .link_inner ul li{
    width: 100%;
    line-height: 2.4em;
    border-right: 1px solid #eee;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.family_site .link_inner ul li:last-child{
    border-right: 0;
}
.family_site .link_inner ul li>dl>dt{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
}
.family_site .link_inner ul li a{
    color: #6A6A6A;
}
.family_site .link_inner ul li a:hover{
    color: #006ECD;
    text-decoration: underline;
}
.family_site .close_btn{
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    z-index: 1;
}
.family_site .close_btn span{
    display: block;
    width: 24px;
    height: 1px;
    background-color: #6A6A6A;
}
.family_site .close_btn span:first-child{
    transform: rotate(45deg);
}
.family_site .close_btn span:last-child{
    transform: rotate(-45deg);
}

/* footer */

}




















/* Tablet 가로 */
@media screen and (min-width:801px) and (max-width:1200px) {

/* header */
#header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 90px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    z-index: 999;
}
#header .header_inner{
    position: relative;
    width: 92%;
    max-width: 1400px;
    height: 90px;
    margin: 0 auto;
}
#header .header_inner .logo{
    position: absolute;
    width: 200px;
    height: 90px;
    left: 0;
    top: 5px;
    background-image: url(../img/main/top_logo.png);
    background-size: 90%;
    background-repeat: no-repeat;
}
#header .header_inner .logo a{
    /* color: rgba(0, 0, 0, 0); */
    color: #000;
    line-height: 80px;
    text-indent: -3000px;
    display: block;
}
#header .header_inner .gnb_wrap{
    position: absolute;
    right: 0;
    top: 25px;
    display: flex;
}
#header .header_inner .mgnb_btn{

    background: none;
    border: none;
    margin-left: 24px;
    cursor: pointer;
}
#header .header_inner .mgnb_btn>span{
    width: 36px;
    height: 2px;
    background-color: #000;
    display: block;
    margin-bottom: 9px;
    transition-duration: 0.5s;
}
#header .active_btn span:nth-child(2){
    opacity: 0;
}
#header .active_btn span:first-child{
    transform: rotate(45deg);
    margin-bottom: -13px;
}
#header .active_btn span:last-child{
    transform: rotate(135deg);
}
#header .header_inner .mgnb_btn>span:last-child{
    margin-bottom: 0;
}
#header .header_inner .mgnb{
    position: fixed;
    width: 100%;
    left: 0;
    top: 90px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    display: none;
}
#header .header_inner .mgnb .mgnb_wrap{
    position: relative;
    width: 82%;
    max-width: 1400px;
    padding: 100px 0;
    margin: 0 auto;
    transition-duration: 0.5s;
}
#header .header_inner .mgnb .mgnb_wrap .list_img{
    display: none;
}
#header .header_inner .main_menu{
    /* width: 828px; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#header .header_inner .main_menu>li{
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    line-height: 40px;
}
#header .header_inner .main_menu>li:last-child{
    margin-bottom: 0;
}
#header .header_inner .main_menu>li>div{
    min-width: 210px;
    height: 40px;
    padding-top: 2px;
}
#header .header_inner .main_menu>li>div>a{
    font-size: clamp(20px, 1.4vw, 24px);
    font-family: "CJ+ONLYONE+Medium";
    text-transform:uppercase;
    display:inline-block;
}
#header .header_inner .main_menu>li>div>a:hover{
    color: #006ECD;
}


.main_menu>li>div>a::after {
    display:block;
    content: '';
    border-bottom: solid 3px #006ECD;
    transform: scaleX(0);  
    transition: transform 300ms ease-in-out;
  }
.main_menu>li:hover>div>a::after { transform: scaleX(1); }
.main_menu>li:focus-within   >div>a::after { transform: scaleX(1); }
.main_menu .fromRight::after{ transform-origin:100% 50%; }
.main_menu .fromLeft::after{  transform-origin:  0% 50%; }


#header .header_inner .main_menu>li>ul{
    width: 100%;
    display: flex;
}
#header .header_inner .main_menu>li>ul>li{
    margin-right: 4%;
    display: flex;
    align-self: center;
   justify-content: center;
}
#header .header_inner .main_menu>li>ul>li:last-child{
    margin-right: 0;
}
#header .header_inner .main_menu>li>ul>li>a{
    font-size: 15px;
    display: block;
}
#header .header_inner .main_menu>li>ul>li>a:hover{
    color: #006ECD;
    border-bottom: 1px solid #006ECD;
}
#header .header_inner .main_menu>li>ul>li>a:focus-within{
    color: #006ECD;
    border-bottom: 1px solid #006ECD;
}



#header .header_inner .gnb_wrap .util{
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}
#header .header_inner .gnb_wrap .util .go_lang{
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 6px 10px;
    margin-left: 24px;
}
#header .header_inner .gnb_wrap .util .go_lang .lang_list{
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 12px;
}
#header .header_inner .gnb_wrap .util .icon1{
    margin-left: 24px;
}
#header .header_inner .gnb_wrap .util .icon1 img{
    width: 24px;
}
#header .header_inner .gnb_wrap .util .icon2{
    background: none;
    border: none;
    cursor: pointer;
}
#header .header_inner .gnb_wrap .util .icon2 img{
    width: 22px;
}
#header .header_inner .gnb_wrap .util img{
    width: 100%;
}
#wrap{
    position: relative;
    margin-right: 10px;
    display: none;
}
#wrap #search{
    width: 0;
    height: 33px;
    border-radius: 16.5px;
    padding-left: 14px;
    outline: none;
    box-sizing: border-box;
    border: 1px solid #000;
}
#wrap .submit_btn{
    position: absolute;
    right: 8%;
    bottom: 9px;
    background-image: url(../img/main/icon_search_wh.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: none;
}
.pick{color: #006ECD;}
/* header */







/* footer */
#footer{
    position: relative;
    background-color: #F5F6F8;
    padding: 80px 0;
}
#footer .footer_inner{
    position: relative;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#footer .footer_inner .left{
    position: relative;
    width: 640px;
    margin-right: 10%;
}
#footer .footer_inner .left ul{
    position: relative;
    width: 480px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}
#footer .footer_inner .left ul li a{
    font-size: 14px;
    display: block;
    transition-duration: 0.5s;
}
#footer .footer_inner .left ul li a::after{
    position: absolute;
    content: '';
    display: block;
    background-color: #ccc;
    width: 1px;
    height: 10px;
    transform: translate(-16px, -14px);
}
#footer .footer_inner .left ul li:first-child a::after{
    display: none;
}
#footer .footer_inner .left ul li:first-child a{
    color: #EF151E;
}
#footer .footer_inner .left address{
    line-height: 2em;
    margin-bottom: 18px;
    color: #6A6A6A;
    font-size: 14px;
}
#footer .footer_inner .left .copyright{
    color: #6A6A6A;
}

#footer .footer_inner .right{
    position: relative;
    width: 168px;
}
#footer .footer_inner .right .family_btn{
    width: 168px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #6A6A6A;
    color: #6A6A6A;
    font-size: 14px;
    cursor: pointer;
    background: none;
    transition-duration: 0.4s;
}
#footer .footer_inner .right .family_btn:hover{
    background: transparent; box-shadow: inset 160px 0 0 0 #222,inset -160px 0 0 0 #222;
    color: #fff;
}
#footer .footer_inner .right .family_btn:hover span{
    color: #fff;
}
#footer .footer_inner .right .family_btn span{
    color: #6A6A6A;
    margin-left: 16px;
}
#footer .footer_inner .right .sns_list{
    display: flex;
    justify-content: space-between;
    width: 168px;
    position: absolute;
    bottom: 0;
}
#footer .footer_inner .right .sns_list li{
    width: 40px;
    height: 40px;
    border: 1px solid #6A6A6A;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.family_site{
    background-color: #fff;
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: none;
    z-index: 990;
}
.family_site .link_inner{
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}
.family_site .link_inner ul{
    display: flex;
    justify-content: space-between;
}
.family_site .link_inner ul li{
    width: 100%;
    line-height: 2.4em;
    border-right: 1px solid #eee;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 0 2%;
}
.family_site .link_inner ul li:last-child{
    border-right: 0;
}
.family_site .link_inner ul li>dl>dt{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
}
.family_site .link_inner ul li a{
    color: #6A6A6A;
}
.family_site .link_inner ul li a:hover{
    color: #006ECD;
    text-decoration: underline;
}
.family_site .close_btn{
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    z-index: 1;
}
.family_site .close_btn span{
    display: block;
    width: 24px;
    height: 1px;
    background-color: #6A6A6A;
}
.family_site .close_btn span:first-child{
    transform: rotate(45deg);
}
.family_site .close_btn span:last-child{
    transform: rotate(-45deg);
}

/* footer */


}


















@media screen and (min-width:601px) and (max-width:800px) {

/* header */
#header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 80px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    z-index: 999;
    transition-duration: 0.5s;
}
#header .header_inner{
    position: relative;
    width: 92%;
    max-width: 1400px;
    height: 80px;
    margin: 0 auto;
}
#header .header_inner .logo{
    position: absolute;
    width: 200px;
    height: 90px;
    left: 0;
    top: 5px;
    background-image: url(../img/main/top_logo.png);
    background-size: 80%;
    background-repeat: no-repeat;
}
#header .header_inner .logo a{
    /* color: rgba(0, 0, 0, 0); */
    color: #000;
    line-height: 70px;
    text-indent: -3000px;
    display: block;
}
#header .header_inner .gnb_wrap{
    position: absolute;
    right: 0;
    top: 25px;
    display: flex;
}
#header .header_inner .mgnb_btn{

    background: none;
    border: none;
    margin-left: 24px;
    cursor: pointer;
}
#header .header_inner .mgnb_btn>span{
    width: 36px;
    height: 2px;
    background-color: #000;
    display: block;
    margin-bottom: 9px;
    transition-duration: 0.5s;
}
#header .active_btn span:nth-child(2){
    opacity: 0;
}
#header .active_btn span:first-child{
    transform: rotate(45deg);
    margin-bottom: -13px;
}
#header .active_btn span:last-child{
    transform: rotate(135deg);
}
#header .header_inner .mgnb_btn>span:last-child{
    margin-bottom: 0;
}
#header .header_inner .mgnb{
    position: fixed;
    width: 40%;
    height: 100vh;
    left: 0;
    top: 80px;
    background-color: #fff;
    border-right: 1px solid #eee;
    display: none;
}
#header .header_inner .mgnb .mgnb_wrap{
    position: relative;
    width: 82%;
    max-width: 1400px;
    padding: 60px 0;
    margin: 0 auto;
    transition-duration: 0.5s;
}
#header .header_inner .mgnb .mgnb_wrap .list_img{
    display: none;
}
#header .header_inner .main_menu{
    /* width: 828px; */
    position: relative;
}
#header .header_inner .main_menu>li{
    width: 100%;
    margin-bottom: 40px;
}
#header .header_inner .main_menu>li:last-child{
    margin-bottom: 0;
}
#header .header_inner .main_menu>li>div{
    min-width: 210px;
    height: 40px;
    margin-bottom: 2%;
}
#header .header_inner .main_menu>li>div>a{
    font-size: clamp(20px, 1.4vw, 24px);
    font-family: "CJ+ONLYONE+Medium";
    text-transform:uppercase;
    display:inline-block;
}
#header .header_inner .main_menu>li>div>a:hover{
    color: #006ECD;
}


.main_menu>li>div>a::after {
    display:block;
    content: '';
    border-bottom: solid 3px #006ECD;
    transform: scaleX(0);  
    transition: transform 300ms ease-in-out;
  }
.main_menu>li:hover>div>a::after { transform: scaleX(1); }
.main_menu>li:focus-within   >div>a::after { transform: scaleX(1); }
.main_menu .fromRight::after{ transform-origin:100% 50%; }
.main_menu .fromLeft::after{  transform-origin:  0% 50%; }


#header .header_inner .main_menu>li>ul{
    width: 100%;
    display: none;
}
#header .header_inner .main_menu>li>ul>li{
    margin-right: 4%;
}
#header .header_inner .main_menu>li>ul>li:last-child{
    margin-right: 0;
}
#header .header_inner .main_menu>li>ul>li>a{
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    display: inline-block;
}
#header .header_inner .main_menu>li>ul>li>a:hover{
    color: #006ECD;
    border-bottom: 1px solid #006ECD;
    box-sizing: border-box;
}
#header .header_inner .main_menu>li>ul>li>a:focus-within{
    color: #006ECD;
    border-bottom: 1px solid #006ECD;
    box-sizing: border-box;
}


#header .header_inner .gnb_wrap .util{
    position: relative;
    display: flex;
    align-items: center;
    height: 28px;
}
#header .header_inner .gnb_wrap .util .go_lang{
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 4px 10px;
    margin-left: 24px;
}
#header .header_inner .gnb_wrap .util .go_lang .lang_list{
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 12px;
}
#header .header_inner .gnb_wrap .util .icon1{
    margin-left: 24px;
}
#header .header_inner .gnb_wrap .util .icon1 img{
    width: 24px;
}
#header .header_inner .gnb_wrap .util .icon2{
    background: none;
    border: none;
    cursor: pointer;
}
#header .header_inner .gnb_wrap .util .icon2 img{
    width: 22px;
}
#header .header_inner .gnb_wrap .util img{
    width: 100%;
}
#wrap{
    position: relative;
    margin-right: 10px;
    display: none;
}
#wrap #search{
    width: 0;
    height: 33px;
    border-radius: 16.5px;
    padding-left: 14px;
    outline: none;
    box-sizing: border-box;
    border: 1px solid #000;
}
#wrap .submit_btn{
    position: absolute;
    right: 8%;
    bottom: 9px;
    background-image: url(../img/main/icon_search_wh.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: none;
}
.pick{color: #006ECD;}
/* header */







/* footer */
#footer{
    position: relative;
    background-color: #F5F6F8;
    padding: 80px 0;
}
#footer .footer_inner{
    position: relative;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#footer .footer_inner .left{
    position: relative;
    width: 640px;
    margin-right: 10%;
}
#footer .footer_inner .left ul{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}
#footer .footer_inner .left ul li a{
    font-size: 12px;
    display: block;
    transition-duration: 0.5s;
}
#footer .footer_inner .left ul li a::after{
display: none;
}
#footer .footer_inner .left ul li:first-child a::after{
    display: none;
}
#footer .footer_inner .left ul li:first-child a{
    color: #EF151E;
}
#footer .footer_inner .left address{
    line-height: 2em;
    margin-bottom: 18px;
    color: #6A6A6A;
    font-size: 12px;
}
#footer .footer_inner .left .copyright{
    color: #6A6A6A;
    font-size: 12px;
}

#footer .footer_inner .right{
    position: relative;
    width: 168px;
}
#footer .footer_inner .right .family_btn{
    width: 150px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #6A6A6A;
    color: #6A6A6A;
    font-size: 14px;
    cursor: pointer;
    background: none;
    font-size: 12px;
    transition-duration: 0.4s;
}
#footer .footer_inner .right .family_btn:hover{
    background: transparent; box-shadow: inset 160px 0 0 0 #222,inset -160px 0 0 0 #222;
    color: #fff;
}
#footer .footer_inner .right .family_btn:hover span{
    color: #fff;
}
#footer .footer_inner .right .family_btn span{
    color: #6A6A6A;
    margin-left: 16px;
}
#footer .footer_inner .right .sns_list{
    display: flex;
    justify-content: space-between;
    width: 150px;
    position: absolute;
    bottom: 0;
}
#footer .footer_inner .right .sns_list li{
    width: 40px;
    height: 40px;
    border: 1px solid #6A6A6A;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.family_site{
    background-color: #fff;
    position: absolute;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: none;
    z-index: 990;
}
.family_site .link_inner{
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}
.family_site .link_inner ul{
    display: flex;
    justify-content: space-between;
}
.family_site .link_inner ul li{
    width: 100%;
    line-height: 2.4em;
    border-right: 1px solid #eee;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 0 2%;
}
.family_site .link_inner ul li:last-child{
    border-right: 0;
}
.family_site .link_inner ul li>dl>dt{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 18px;
}
.family_site .link_inner ul li a{
    color: #6A6A6A;
}
.family_site .link_inner ul li a:hover{
    color: #006ECD;
    text-decoration: underline;
}
.family_site .close_btn{
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    z-index: 1;
}
.family_site .close_btn span{
    display: block;
    width: 24px;
    height: 1px;
    background-color: #6A6A6A;
}
.family_site .close_btn span:first-child{
    transform: rotate(45deg);
}
.family_site .close_btn span:last-child{
    transform: rotate(-45deg);
}

/* footer */


}


























@media screen and (max-width:600px) {

    /* header */
    #header{
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        height: 60px;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
        z-index: 999;
        transition-duration: 0.5s;
    }
    #header .header_inner{
        position: relative;
        width: 92%;
        height: 60px;
        margin: 0 auto;
    }
    #header .header_inner .logo{
        position: absolute;
        width: 140px;
        height: 50px;
        left: 0;
        top: 5px;
        background-image: url(../img/main/top_logo.png);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    #header .header_inner .logo a{
        /* color: rgba(0, 0, 0, 0); */
        color: #000;
        line-height: 50px;
        text-indent: -3000px;
        display: block;
    }
    #header .header_inner .gnb_wrap{
        position: absolute;
        right: 0;
        top: 18px;
    }
    #header .header_inner .mgnb_btn{
    
        background: none;
        border: none;
        margin-left: 24px;
        cursor: pointer;
    }
    #header .header_inner .mgnb_btn>span{
        width: 32px;
        height: 2px;
        background-color: #000;
        display: block;
        margin-bottom: 9px;
        transition-duration: 0.5s;
    }
    #header .active_btn span:nth-child(2){
        opacity: 0;
    }
    #header .active_btn span:first-child{
        transform: rotate(45deg);
        margin-bottom: -13px;
    }
    #header .active_btn span:last-child{
        transform: rotate(135deg);
    }
    #header .header_inner .mgnb_btn>span:last-child{
        margin-bottom: 0;
    }
    #header .header_inner .mgnb{
        position: fixed;
        width: 60%;
        height: 100vh;
        left: 0;
        top: 60px;
        background-color: #fff;
        border-right: 1px solid #eee;
        display: none;
    }
    #header .header_inner .mgnb .mgnb_wrap{
        position: relative;
        width: 82%;
        padding: 30px 0;
        margin: 0 auto;
        transition-duration: 0.5s;
    }
    #header .header_inner .mgnb .mgnb_wrap .list_img{
        display: none;
    }
    #header .header_inner .main_menu{
        /* width: 828px; */
        position: relative;
    }
    #header .header_inner .main_menu>li{
        width: 100%;
        padding-bottom: 20px;
    }
    #header .header_inner .main_menu>li:last-child{
        margin-bottom: 0;
    }
    #header .header_inner .main_menu>li>div>a{
        font-size: 16px;
        font-family: "CJ+ONLYONE+Medium";
        text-transform:uppercase;
        display:inline-block;
    }
    #header .header_inner .main_menu>li>div>a:hover{
        color: #006ECD;
    }
    .main_menu>li>div>a::after {
        padding-bottom: 4px;
        display:block;
        content: '';
        border-bottom: solid 2px #006ECD;
        transform: scaleX(0);  
        transition: transform 300ms ease-in-out;
      }
    .main_menu>li:hover>div>a::after { transform: scaleX(1); }
    .main_menu>li:focus-within>div>a::after { transform: scaleX(1); }
    .main_menu .fromRight::after{ transform-origin:100% 50%; }
    .main_menu .fromLeft::after{  transform-origin:  0% 50%; }
    
    
    #header .header_inner .main_menu>li>ul{
        width: 100%;
        margin-top: 6px;
        display: none;
    }
    #header .header_inner .main_menu>li>ul>li{
        margin-right: 4%;
    }
    /* #header .header_inner .main_menu>li>ul>li:first-child{
        padding-top: 10px;
        border-top: 1px solid #eee;
    } */
    #header .header_inner .main_menu>li>ul>li:last-child{
        margin-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    #header .header_inner .main_menu>li>ul>li>a{
        font-size: 14px;
        height: 40px;
        line-height: 40px;
    }
    #header .header_inner .main_menu>li>ul>li>a:hover{
        color: #006ECD;
        border-bottom: 1px solid #006ECD;
        box-sizing: border-box;
    }
    #header .header_inner .main_menu>li>ul>li>a:focus-within{
        color: #006ECD;
        border-bottom: 1px solid #006ECD;
        box-sizing: border-box;
    }
    
    
    #header .header_inner .gnb_wrap .util{
        display: none;
    }
    #header .header_inner .gnb_wrap .mutil{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        padding-bottom: 44px;
    }
    #header .header_inner .gnb_wrap .mutil .go_lang{
        border: 1px solid #000;
        box-sizing: border-box;
        border-radius: 20px;
        padding: 4px 10px;
        margin-left: 24px;
    }
    #header .header_inner .gnb_wrap .mutil .go_lang .lang_list{
        background-color: #fff;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 12px;
    }
    #header .header_inner .gnb_wrap .mutil .icon1{
        margin-left: 24px;
    }
    #header .header_inner .gnb_wrap .mutil .icon1 img{
        width: 24px;
    }
    #header .header_inner .gnb_wrap .mutil .icon2{
        background: none;
        border: none;
        cursor: pointer;
    }
    #header .header_inner .gnb_wrap .mutil .icon2 img{
        width: 22px;
    }
    #header .header_inner .gnb_wrap .mutil img{
        width: 100%;
    }


    #wrap{
        position: absolute;
        bottom: 5px;
        display: none;
    }
    #wrap #search{
        width: 0;
        height: 33px;
        border-radius: 16.5px;
        padding-left: 14px;
        outline: none;
        box-sizing: border-box;
        border: 1px solid #000;
    }
    #wrap .submit_btn{
        position: absolute;
        right: 8%;
        bottom: 9px;
        background-image: url(../img/main/icon_search_wh.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #fff;
        border: none;
        width: 16px;
        height: 16px;
        cursor: pointer;
        display: none;
    }
    .pick{color: #006ECD;}
    /* header */
    
    
    
    
    
    
    
    /* footer */
    #footer{
        position: relative;
        background-color: #F5F6F8;
        padding: 10% 0;
    }
    #footer .footer_inner{
        position: relative;
        width: 92%;
        margin: 0 auto;
    }
    #footer .footer_inner .left{
        margin-bottom: 24px;
    }
    #footer .footer_inner .left ul{
        position: relative;
        width: 100%;
        display: flex;
        margin-bottom: 18px;
    }
    #footer .footer_inner .left ul li{
        margin-right: 2px;
    }
    #footer .footer_inner .left ul li a{
        font-size: 12px;
        display: block;
        transition-duration: 0.5s;
    }
    #footer .footer_inner .left ul li a::after{
    display: none;
    }
    #footer .footer_inner .left ul li:first-child a::after{
        display: none;
    }
    #footer .footer_inner .left ul li:first-child a{
        color: #EF151E;
    }
    #footer .footer_inner .left address{
        line-height: 2em;
        margin-bottom: 18px;
        color: #6A6A6A;
        font-size: 12px;
    }
    #footer .footer_inner .left .copyright{
        color: #6A6A6A;
        font-size: 12px;
    }
    
    #footer .footer_inner .right{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer .footer_inner .right .family_btn{
        position: relative;
        width: 150px;
        height: 40px;
        border-radius: 8px;
        border: 1px solid #6A6A6A;
        color: #6A6A6A;
        font-size: 14px;
        cursor: pointer;
        background: none;
        font-size: 12px;
        transition-duration: 0.4s;
    }
    #footer .footer_inner .right .family_btn:hover{
        background: transparent; box-shadow: inset 160px 0 0 0 #222,inset -160px 0 0 0 #222;
        color: #fff;
    }
    #footer .footer_inner .right .family_btn:hover span{
        color: #fff;
    }
    #footer .footer_inner .right .family_btn span{
        color: #6A6A6A;
        margin-left: 16px;
    }
    #footer .footer_inner .right .sns_list{
        position: relative;
        display: flex;
        justify-content: space-between;
        width: 150px;
        margin-top: 20px;
    }
    #footer .footer_inner .right .sns_list li{
        width: 40px;
        height: 40px;
        border: 1px solid #6A6A6A;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .family_site{
        background-color: #fff;
        position: absolute;
        bottom: 70%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 38%;
        width: 92%;
        max-width: 1400px;
        border: 1px solid #ccc;
        border-radius: 20px;
        display: none;
        z-index: 990;
    }
    .family_site .link_inner{
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 30px 0;
        padding-left: 25%;
    }
    .family_site .link_inner ul li{
        line-height: 1.4em;
        margin-bottom: 8px;
    }
    .family_site .link_inner ul li:last-child{
        margin-bottom: 0;
    }
    .family_site .link_inner ul li>dl>dt{
        font-size: 14px;
        font-weight: bold;
    }
    .family_site .link_inner ul li a{
        color: #6A6A6A;
        font-size: 12px;
    }
    .family_site .link_inner ul li a:hover{
        color: #006ECD;
        text-decoration: underline;
    }
    .family_site .close_btn{
        position: absolute;
        right: 16px;
        top: 16px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: none;
        border: none;
        z-index: 1;
    }
    .family_site .close_btn span{
        display: block;
        width: 24px;
        height: 1px;
        background-color: #6A6A6A;
    }
    .family_site .close_btn span:first-child{
        transform: rotate(45deg);
    }
    .family_site .close_btn span:last-child{
        transform: rotate(-45deg);
    }
    
    /* footer */
    
    
    }