@charset "utf-8";

.wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
@media screen and (max-width:1400px) {
    .wrap {
        margin: 0 4%;
        max-width: 100%;
    }
}


/* scr-none : 모바일 메뉴 사용 시, body scroll 금지 */
.scr-none {
    overflow-y: hidden;
}


/* header */
header {
    position: fixed;
    top: 0;
    z-index: 30;
    background-color: transparent;
    width: 100%; height: 90px;
    border-bottom: 1px solid rgba(221, 221, 221, 0.2);
    box-sizing: border-box;
    /* -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);
    transition: all .2s cubic-bezier(.08, .03, .22, .87); */
}
header.on{
  background-color: #fff !important;
}
header .wrap {
    height: 100%;
}
header h1.logo {
    position: absolute;
    top: 50%; left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
}


/* header - 1차 depth */
.lnb {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
}
.lnb > ul > li {
    display: inline-block;
    position: relative;
    transition: 0.2s;
    vertical-align: top;
}
.lnb > ul > li:first-child {
    margin-left: 0;
}
.lnb > ul > li > a {
    display: block;
    position: relative;
    letter-spacing: 0px;
    color: #fff;
    padding: 0px 37px;
    line-height: 90px;
}
header.on .lnb > ul > li > a{
  color: #222;
}
.lnb > ul > li > a span {
    display: inline-block;
    line-height: 120%;
    white-space: nowrap;
    font-size: 19px; font-weight: 600;
    transition: 0.1s ease-in;
    position: relative;
    text-align: center;
    vertical-align: middle;
}
.lnb > ul > li:hover {
    transition: 0.1s ease-in;
    background: #0092c3;
}
.lnb > ul > li:hover > a {
    color: #fff !important;
}


/* header - 2차 depth */
.lnb > ul > li.lnb_1 > ul {
    /* display: none; */
    position: relative;
    top: 0px;
    height: 0px;
    clear: both;
    overflow: hidden;
}
.lnb > ul > li.lnb_1 > ul > li > a {
    display: block;
    font-weight: 300; line-height: 1.5em;
    text-align: center; letter-spacing: -1px;
    color: #222;
    padding: 3px 0; margin: 0 0 3px 0;
    white-space: nowrap;
}
.lnb > ul > li.lnb_1 > ul > li:last-child > a {
    margin: 0;
}
.lnb > ul > li.lnb_1:hover > ul > li > a {
    color: #fff !important;
}
.bg_navi {
    position: absolute;
    top: 89px;
    width: 100%; height: 0px;
    overflow: hidden;
    /* z-index: 10; */
    background: #fff;
    box-shadow: 0 25px 20px rgba(0, 0, 0, 0.08);
}




/* header 마우스 오버 일때 */
header.active .lnb > ul > li > a {
    color: #222;
}


/* header - 스크롤 일때 */
header.small {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
  background: #fff;
}


/* header - snb - 오른쪽 상단메뉴 */
.snb {
  position: absolute;
  right: 5%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}


/* header - snb - 언어선택 */
.snb .lang_area {
    position: relative;
}
.snb .lang_area .btn_lang {
    position: relative; z-index: 1;
    background: #ddd; border-radius: 50%; width: 34px; height: 34px;
}
.snb .lang_area .btn_lang img{
    transition: 0.2s;
}
.snb .lang_area.active .btn_lang img{
    transform: rotate(-120deg);
    transition: 0.2s;
}
.snb .lang_area .lang_open {
    display: none;
    position: absolute;
    left: 50%;
    top: 17px;
    margin-left: -17px;
    padding: 17px 0 10px;
    width: 34px;
    background-color: #ddd;
    text-align: center;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
}
.snb .lang_area .lang_open a {
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}
.snb .lang_area .lang_open a:last-child {
    margin-bottom: 0px;
}


/* header - snb - 고객주문 */
.order_link_btn{
    position: relative;
    color: #fff; font-weight: 500; font-size: 1rem; line-height: 34px;
    background: url('../img/common/order_link_btn_ic.png') #0092c3 no-repeat 15px center;
    border-radius: 34px; padding: 0 14px 0 40px;
}



/* header - snb - 사이트맵 / 모바일 메뉴 */
/* button */
.menu_all_btn {
    position: relative;
    z-index: 3;
    -webkit-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -moz-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    -o-transition: all .5s cubic-bezier(.08, .03, .22, .87);
    transition: all .5s cubic-bezier(.08, .03, .22, .87);
    cursor: pointer;
    height: 34px; padding: 0 13px 0 40px;
    background: url('../img/common/sitemap_ic.png') no-repeat 17px center;
    background-color: #ddd; color: #111; font-size: 13px; border-radius: 34px;
    text-transform: uppercase; line-height: 34px; font-weight: 500;
}

/* 오픈했을때 button */
.menu_all_btn.open {
    background-image: url('../img/common/sitemap_ic_x.png');
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7); line-height: 32px;
    box-sizing: border-box;
}


/* 사이트맵 / 모바일 메뉴 */
#sitemapBG {
    position: fixed;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2; opacity: 0;
    transition: 0.5s ease-in-out;
    will-change: transform;
    pointer-events: none;
}
#sitemapNAV{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 2; opacity: 0;
    background: transparent;
    transition: all 0.5s ease-in-out;
}

ul.sitemap_list {
    position: fixed;
    position: absolute;
    width: 100%; min-width: 110px;
    left: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.sitemap_list > li {
    display: inline-block;
    width: 12%; padding: 0 1%;
    margin: 1.5rem 0;
    opacity: 0; vertical-align: top;
    transform: translateX(50%);
    transition: 0.4s cubic-bezier(0.365, 0.84, 0.44, 1);
}

ul.sitemap_list > li:nth-child(1){
  transition-delay: 0.05s;
}
ul.sitemap_list > li:nth-child(2){
  transition-delay: 0.1s;
}
ul.sitemap_list > li:nth-child(3){
  transition-delay: 0.15s;
}
ul.sitemap_list > li:nth-child(4){
  transition-delay: 0.2s;
}
ul.sitemap_list > li:nth-child(5){
  transition-delay: 0.25s;
}
ul.sitemap_list > li:nth-child(6){
  transition-delay: 0.3s;
}
ul.sitemap_list > li:nth-child(7){
  transition-delay: 0.35s;
}

ul.sitemap_list > li > a {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.5s;
  /*pointer-events: none;*/
}
ul.sitemap_list > li > a::after{
  position: absolute;
  content: "";
  bottom: 9%;
  left: -5%;
  z-index: -1;
  width: 110%;
  height: 45%;
  background: rgba(0, 146, 195, 0.8);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
ul.sitemap_list > li:hover > a::after{
  transform: scaleX(1);
  transform-origin: left;
}
ul.sitemap_list > li.active > a::after{
  transform: scaleX(1);
  transform-origin: left;
}
ul.sitemap_list .sub_menu{
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
ul.sitemap_list .sub_menu li{
  margin: 5px 0;
}
ul.sitemap_list .sub_menu li a{
  display: inline-block; vertical-align: middle;
  color: #fff;
  font-size: 1.1rem;
  white-space: nowrap;
}
ul.sitemap_list .sub_menu li a::before{
  content: '';
  display: inline-block; vertical-align: middle;
  width: 2px; height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin-right: 7px;
}

/* 오픈했을때 */
#sitemapBG.open{
    display: block; opacity: 1;
    pointer-events: auto;
}
#sitemapNAV.open{
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}
#sitemapNAV.open ul.sitemap_list > li{
  opacity: 1;
  transform: translateX(0);
}

.pc-gnb.wrap{
  max-width: 90%;
}


/* 모바일 메뉴 */
.m-gnb {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100%; max-width: 500px;
    background: #fff;
}
.m-gnb .gnb-top {
    color: #fff; background: #222;
    padding: 22px 35px; ;
}
.m-gnb .gnb-top h2 img {
    height: 30px;
}
.m-gnb .gnb-top .gnb-quick {
    padding: 15px 0 0 0; margin: 20px 0 0 0;
    border-top: 1px solid #555;
    overflow: hidden;
}
.m-gnb .gnb-top .gnb-quick a {
    float: left;
    position: relative;
    display:block; width: 50%;
    text-align: center;
}
.m-gnb .gnb-top .gnb-quick a::after {
    content: '';
    display: block;
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px; height: 15px;
    background: #555;
}
.m-gnb .gnb-top .gnb-quick a:last-child::after {
    content: none;
}

.m-gnb ul.sitemap_list {
    position: relative;
    top: 0; transform: translateY(0);
    width: auto;
    padding: 0 35px;
    overflow-y: scroll;
}
.m-gnb ul.sitemap_list > li {
    width: 100%;
    padding-left: 0;
    padding: 10px 0px; margin: 0;
    border-bottom: 1px solid #e8e8e8;
}
.m-gnb ul.sitemap_list > li > a {
    display: block;
    font-size: 1.2rem;
    color: #222;
    margin: 10px 0;
    /*pointer-events: auto;*/
}
.m-gnb ul.sitemap_list > li > a::after {
    background: url('../img/common/ico-down-black.gif') 0 0 no-repeat;
    width: 10px; height: 6px;
    top: 50%; bottom: auto;
    left: auto; right: 0;
    z-index: 9;
    display: block;
    transform-origin: center;
    transform: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* .m-gnb ul.sitemap_list > li:hover > a::after {
    content: none;
} */
.m-gnb ul.sitemap_list > li.active > a::after {
    background: url('../img/common/ico-down-black-on.gif') 0 0 no-repeat
}
.m-gnb ul.sitemap_list .sub_menu {
    display: none;
    margin-top: 0; padding-top: 0; border-top: 0;
}
.m-gnb ul.sitemap_list .sub_menu li a {
    color: #222;
}
.m-gnb ul.sitemap_list .sub_menu li a::before {
    content: none;
}

.m-gnb ul.sitemap_list > li.active {

}

/* 모바일 언어 선택 */
.m_lang_area{
    display: flex; align-content: center; justify-content: center;
    padding: 1.5rem 0;
}
.m_lang_area a{
    display: block; padding: 0.2rem 1rem; border: 1px solid #444;
}
.m_lang_area a:not(:first-child){
    margin-left: -1px;
}
.m_lang_area a.active{
    background-color: #444; color: #fff;
}


@media screen and (max-width:1780px){
    header h1.logo{
        left: 2%;
    }
    header h1.logo a img{
        width: 230px;
    }
    .snb{
        right: 2%;
    }
}
@media screen and (max-width:1640px){
    .lnb > ul > li > a{
        padding: 0px 25px;
    }
    .lnb > ul > li > a span{
        font-size: 18px;
    }
}
@media screen and (max-width:1440px){
    header {
        height: 80px;
    }
    header h1.logo{
        left: 4%;
    }
    .lnb {
        display: none;
    }
    .snb{
        right: 4%;
    }
}
@media screen and (max-width:1280px) {
    .snb .lang_area {
        display: none;
    }

    #sitemapNAV .pc-gnb {
        display: none;
    }
    .m-gnb {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
@media screen and (max-width:768px) {
    header {
        height: 70px;
    }
    header h1.logo a img {
        width: 200px;
    }
    .m-gnb .gnb-top h2 img {
        height: 26px;
    }
}
@media screen and (max-width:640px){
    .menu_all_btn{
        text-indent: -9999px; padding: 0; width: 34px; height: 34px; border-radius: 50%;
        background-position: center;
    }
}
@media screen and (max-width:425px){
    header {
        height: 60px;
    }
    header h1.logo a img {
        width: 180px;
    }
    .order_link_btn{
        background-image: none; padding: 0 12px;     line-height: 26px;  font-size: 13px;
        background-color: #585858;
    }

    .m-gnb .gnb-top{
        padding: 19px 4%;
    }
    .m-gnb .gnb-top h2 img {
        height: 22px;
    }
}
























/* 메인페이지 섹션별 헤더 컬러 조정 */
.fp-viewing-product header,
.fp-viewing-news header,
.fp-viewing-info header{
    background-color: #fff; border-bottom-color: rgba(221, 221, 221, 0.7);
}
.fp-viewing-company header,
.fp-viewing-process header{
    background-color: transparent; border-bottom-color: rgba(221, 221, 221, 0.7);
}
.fp-viewing-product .lnb > ul > li > a,
.fp-viewing-company .lnb > ul > li > a,
.fp-viewing-process .lnb > ul > li > a,
.fp-viewing-news .lnb > ul > li > a,
.fp-viewing-info .lnb > ul > li > a{
    color: #222;
}

header.w_bg{
    background-color: #fff; border-bottom-color: rgba(221, 221, 221, 0.7);
}
.w_bg .lnb > ul > li > a{
    color: #222;
}


























/* Sub Visual */
.sub_visual {
    position: relative; overflow: hidden;
    width: 100%; height: 490px;
    margin: 0 auto;
    transition:all .1s linear; z-index:8;
}
.sub_visual .wrap {
    position: absolute;
    width: 100%; height: 100%; max-width: 1400px;
    top: 0; left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin:0 !important;
    z-index: 5;
}
.sub_visual .text{
    position: absolute;
    width: 100%;
    top: 50%; left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
    padding: 0;
}
.sub_visual h2 {
    font-size: 2.6rem;
    font-weight: 100;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 0.9);
}
.sub_visual p {
    color: #ffd900;
    font-size: 1.15rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}


/* Sub nav - PC */
.subdepth {
    position: relative;
    width: 100%; height: 80px; /*max-width: 1400px;*/
    margin: 0 auto; margin-top: -81px;
    background-color: transparent;
    border-top: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
}
.subdepth .inner{
    width: 1400px; margin: auto;
}
.subdepth .bgn {
    position: relative;
    text-align: center;
    font-size: 0;
}
.subdepth .bgn span {
    position: relative;
    display: inline-block;
    line-height: 80px;
}
.subdepth .bgn span a {
    display: block; position: relative;
    width: 180px;
    box-sizing: border-box; padding: 0 1rem;
    white-space: nowrap;
    font-size: 1.2rem; font-weight: 500; color: #fff;
}
.subdepth .bgn span a:hover{
    font-weight: 600; color: rgba(255,255,255,0.8);
}
.subdepth .bgn span a.on {
    color: #0092c3; background-color: #fff;
    font-weight: 700;
}
.subdepth .bgn span a em{
    line-height: 130%;
    white-space: normal;
    vertical-align: middle;
    display: inline-block;
}


/* Sub nav - Mobile */
.submenu_select {
    display: none;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.submenu_select .inner {
    width: 100%;
    display: flex;
}
.submenu_select .home {
    width: 60px;
    position: relative;
}
.submenu_select .main_menu {
    width: 250px;
    position: relative;
}
.submenu_select .sub_menu {
    width: 250px;
    position: relative;
}

.submenu_select .home::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #eee;
    right: 0; top: 0;
}
.submenu_select .home a {
    display: block; text-indent: -9999px; margin: 0 auto;
    width: 100%; height: 100%; background: url('../img/sub/home_ic.png') no-repeat center;
}

.submenu_select .main_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #eee;
    right: 0; top: 0;
}
.submenu_select .sub_menu::after {
    content: ''; display: block; position: absolute;
    width: 1px; height: 100%; background: #eee;
    right: 0; top: 0;
}
.submenu_select button {
    border: none; outline: none; cursor: pointer;
    font-size: 1.1rem; color: #222;
    background: url('../img/sub/submenu_arr.png') transparent no-repeat 90% center;
    width: 100%; text-align: left; box-sizing: border-box;
    padding: 0 30px;
    line-height: 60px;
}
.submenu_select .sub_menu button{
    background-color: #0092c3; color: #fff;
}
.submenu_select .main_menu ul,
.submenu_select .sub_menu ul {
    background: #fff;
    position: absolute;
    top: 60px; left: -1px;
    z-index: 9;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    box-sizing: border-box;
    text-align: left;
    border: 1px solid #eee;
    display: none;
}
.submenu_select .main_menu ul li:hover,
.submenu_select .sub_menu ul li:hover{
    background: #f7f7f7;
}
.submenu_select .main_menu ul li a,
.submenu_select .sub_menu ul li a{
    display: block;
    padding: 0.5rem 0;
}
.submenu_select .main_menu ul li a.on,
.submenu_select .sub_menu ul li a.on{
    color: #0092c3; font-weight: 600;
}

.sub_visual .visual_img {
    display:block;
    position:absolute;
    z-index:3;
    width: 100%;
    height:100%;
    margin:0 0 0 -50%;
    left:50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation:subVisualAni 8s cubic-bezier(0.165, 1.240, 0.440, 1.000)
}
@keyframes subVisualAni{
    from{
        transform:scale(1.15);
    }
    100%{
        transform:scale(1.01);
    }
}
.sub_visual .visual_img img{
    animation:ani_slide1 3s ease-in-out;
    display:block;
    margin:0 auto;
    z-index:8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes ani_slide1 {
    0% {margin-top: 0px;}
    50% {margin-top: -40px;}
    100% {margin-top: 0;}
}

@media screen and (max-width:1400px) {
    .subdepth {
        /*width: 92%;*/
        height: 60px; margin-top: -61px;
    }
    .subdepth .inner {
        width: 100%;
    }
    .subdepth .bgn span {
        line-height: 60px;
    }
    .subdepth .bgn span a{
        /*margin: 0 2.5rem;*/
        width: 135px;
        font-size: 1.05rem;
    }
}
@media screen and (max-width:1200px){
    .subdepth .bgn span a {
        /*margin: 0 2rem;*/ padding: 0 0.5rem;
        font-size: 1.1rem;
    }
}
@media screen and (max-width:1024px) {
    .sub_visual {
        height: 320px;
    }
    .subdepth {
        display: none;
    }
    .submenu_select {
        display: block;
    }
    .sub_visual .text {
        top: 59%;
    }
    .sub_visual h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width:768px) {
    .sub_visual {
        height: 280px;
    }
    .submenu_select .home {
        flex-shrink: 0;
        width: 54px;
    }
    .submenu_select .main_menu {
        flex: 1 1 0;
    }
    .submenu_select .sub_menu {
        flex: 1 1 0;
    }
    .submenu_select .sub_menu::after {
        display: none;
    }
    .submenu_select button{
        line-height: 54px; font-size: 1.05rem;
        background: url('../img/sub/submenu_arr.png') transparent no-repeat 93% center;
    }
    .submenu_select .main_menu ul,
    .submenu_select .sub_menu ul{
        top: 54px; font-size: 1.05rem; padding: 10px 30px;
    }
}

@media screen and (max-width:640px) {
    .sub_visual h2 {
        font-size: 1.5rem;
    }
    .sub_visual p{
        font-size: 1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width:425px) {
    .sub_visual {
        height: 200px;
    }
    .sub_visual h2 {
        font-size: 1.6rem;     padding: 0 8%;  box-sizing: border-box;
    }
    .sub_visual p{
        font-size: 1rem;
    }

    .submenu_select .home {
        width: 48px;
    }
    .submenu_select button{
        padding: 0 15px; line-height: 48px; font-size: 1rem;
        background-size: 18px;
    }
    .submenu_select .main_menu ul,
    .submenu_select .sub_menu ul{
        top: 48px; font-size: 1rem; padding: 5px 15px;
    }
}



















/* Sub Layout */
.sub_container { clear:both; position:relative; margin:0 auto;  z-index:1; overflow:hidden ; padding: 7rem 0 4rem; min-height:400px;}
.sub_container::after{
    content: ''; display: block; width: 1400px; height: 100%;
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: url('../img/sub/tit_bg.png') no-repeat right top;
}
.sub_container.pad-none {
    padding: 7rem 0 0 0;
}
.sub_contents {position: relative; z-index:10; }




@media screen and (max-width:1400px){
    .sub_container::after{
        width: 92%;
    }
}
@media screen and (max-width:1024px){
    .sub_container::after{
        background-size: 70%;         width: 100%;
    }
}
@media screen and (max-width:768px){
    .sub_container {
        padding: 5rem 0 4rem;
    }
    .sub_container.pad-none {
        padding: 5rem 0 0 0;
    }
}
@media screen and (max-width:425px){
    .sub_container {
        padding: 3rem 0 4rem;
    }
    .sub_container.pad-none {
        padding: 3rem 0 0 0;
    }
}


/* mobile depth navigation */
.m_page_navi {display:none;}
.m_button {display:none;}

@media screen and (max-width:640px){
.m_page_navi {display:block; position:absolute; z-index:12; width:100%; margin:132px 0 0 0;}
.m_page_navi:after {clear:both; display:block; content:"";}
.m_page_navi ul li {width:50%; float:left;}
.m_page_navi ul li.prv {text-align:left;}
.m_page_navi ul li.nxt {text-align:right;}
.m_page_navi ul li.prv dl {padding:0 0 0 4%; }
.m_page_navi ul li.nxt dl {padding:0 4% 0 0;}
.m_page_navi ul li dl a {display:block;}
.m_page_navi ul li dl dd {font-size:13px; color:#fff; line-height:1em; padding:7px 0 0 0; letter-spacing:0.5px;}

.m_button {display:block; position:absolute; z-index:12; width:100%; margin:132px 0 0 0; text-align:center;}
.m_button a {display:inline-block; line-height:33px; vertical-align:middle; border:1px solid rgba(255,255,255,.8); color:#fff; font-size:14px; padding:0 20px;}
}

















/****************** footer ******************/
footer{
  background: #fff; border-top: 1px solid #ddd; padding: 2rem 0;
}
footer .top_area{

}
footer .top_area ul{
    display: flex; align-items: center; gap: 2.4rem;
}
footer .top_area li{
  position: relative;
}
footer .top_area li::before{
    content: '';
    display: block;
    width: 1px;
    height: 0.8rem;
    background: #ccc;
    position: absolute;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
}
footer .top_area li:first-child:before{
  display: none;
}
footer .top_area a{
    color: #222;
    font-weight: 500;
}
footer .bottom_area{
    margin-top: 1.5rem;
}
footer .bottom_area address{
    font-size: 0.938rem; color: #555;
}
footer .bottom_area address li{
    margin: 0 0 20px 0;
}
footer .bottom_area address .tit{
    display: block; vertical-align: middle; margin-right: 0.2rem;
    font-size: 0.933em; background-color: #eee; border-radius: 30px; color: #000;
    padding: 2px 0;  font-weight: 500;
    width: 60px; text-align: center;
    margin-bottom: 8px;
}
footer .bottom_area address .content{
    /* display: inline-flex; vertical-align: middle; gap: 2rem; */
    display: block; vertical-align: middle; gap: 2rem;
}
footer .bottom_area address .content em{
   position: relative;
   margin: 0 10px 0 0;
}
footer .bottom_area address .content em:first-child {
    font-weight: 600;
}
footer .bottom_area address .company em:first-child {
    font-weight: normal;
}
/* footer .bottom_area address .content em::after{
    content: '';
    display: block;
    width: 1px;
    height: 0.8rem;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
footer .bottom_area address .content em:last-child:after{
    display: none;
} */
footer .copyright{
  margin-top: 1.5rem;
  color: #999;
  font-size: 0.875rem;
}

/* 관련사이트 */
footer .family_site{
    position: absolute; right: 0; top: 0;
}
.family_site .area{
    position: relative; display: inline-block;
}
.family_site button{
    border: none;
    outline: none;
    color: #222; font-size: 1rem;
    padding: 14px 100px 14px 19px;
    background: url(../img/common/fam_select_btn_up.png) #fff no-repeat 90% center;
    border: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}
.family_site button.active{
    background-image: url(../img/common/fam_select_btn.png);
}
.family_site ul{
    display: none;
    position: absolute;
    bottom: 48px;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #222;
    z-index: 1;
    width: 100%;
}
.family_site li{
    padding: 11px 19px; box-sizing: border-box;
    transition: 0.2s;
}
.family_site li a{
    display: block; text-align: left;
}
.family_site li:hover{
    color: #fff;
    background: #0092c3;
}
@media screen and (max-width:1024px){
    footer .family_site{
        top: -1rem;
    }
    .family_site ul{
        bottom: 47px;
    }
}
@media screen and (max-width:768px){
    footer{
        padding: 0;
    }
    footer .wrap{
        margin: 0;
    }
    footer .top_area{
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    footer .top_area ul{
        justify-content: center;
    }
    footer .bottom_area{
        margin-top: 0;
    }
    footer .bottom_area address{
        text-align: center;
    }
    footer .bottom_area address ul{
        display: inline-block;
    }
    footer .bottom_area address li {
        margin: 1rem 0; text-align: left;
    }
    footer .bottom_area address .tit{
        vertical-align: top;
    }
    footer .bottom_area address .content{
        flex-direction: column; gap: 0;
    }
    footer .bottom_area address .content em::before{
        display: none;
    }
    footer .copyright{
        margin-top: 0; text-align: center;
    }
    footer .family_site{
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        padding: 1.5rem 0;
    }
}
@media screen and (max-width:425px){
    footer .bottom_area address li{
        text-align: center;
    }
    footer .bottom_area address .tit{
        margin-right: 0; margin-bottom: 0.3rem;
    }
    footer .bottom_area address .content{
        display: flex;
        /* text-align: left; */
    }
    footer .copyright{
        font-size: 11px;
    }
    .family_site button{
        padding: 12px 80px 12px 16px;
    }
    .family_site ul {
        bottom: 41px;
    }
    .family_site li{
        padding: 8px 16px;
    }
}







.btn_style_1{
  display: inline-block;
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
  -o-transition: all 0.2s;
	transition: all 0.2s;
  background: none;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 1.125rem;
  padding: 1rem 2.8rem;
  position: relative;
  overflow: hidden;
}
.btn_style_1::after{
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
  -o-transition: all 0.2s;
	transition: all 0.2s;

  height: 100%;
  left: -42%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.4s;
  transform-origin: top left;
  width: 0;
}
.btn_style_1::before,
.btn_style_1::after{
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}
.btn_style_1:hover{
  color: #000;
  border-color: rgba(255, 255, 255, 1.0);
}
.btn_style_1:hover:after {
  height: 100%;
  width: 144%;
}


.btn_style_2{
  display: inline-block;
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
  -o-transition: all 0.2s;
	transition: all 0.2s;
  background: none;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.7);
  padding: 0.8rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.btn_style_2 span{
  color: #000;
  font-size: 0.9375rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: block;
}
.btn_style_2::after{
  -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
  -o-transition: all 0.2s;
	transition: all 0.2s;

  height: 100%;
  left: -55%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.4s;
  transform-origin: top left;
  width: 0;
}
.btn_style_2::before,
.btn_style_2::after{
  background: #111;
  content: '';
  position: absolute;
}
.btn_style_2:hover{
  border-color: rgba(0, 0, 0, 1.0);
}
.btn_style_2:hover span{
  color: #fff;
}
.btn_style_2:hover:after {
  height: 100%;
  width: 160%;
}

@media all and (max-width:640px){
  .btn_style_1{
    font-size: 1rem;
    padding: 0.8rem 2.2rem;
  }
  .btn_style_2{
    padding: 0.7rem 1.1rem;
  }
}





/****************** 팝업 ******************/
.div_popup{
  z-index: 9999 !important;
}
.div_popup .divpop-bottom{
  background: #111;
}
.div_popup .divpop-bottom a{
  display: inline-block;
    margin: 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: -0.5px;
  vertical-align: middle;
  padding: 0.4rem 0;

  -webkit-transition: all .2s cubic-bezier(.08, .03, .22, .87);
  -moz-transition: all .2s cubic-bezier(.08, .03, .22, .87);
  -o-transition: all .2s cubic-bezier(.08, .03, .22, .87);
  transition: all .2s cubic-bezier(.08, .03, .22, .87);
}
.div_popup .divpop-bottom a:last-child{
  margin-right: 1rem;
}
.div_popup .divpop-bottom a:hover{
  color: rgba(255, 255, 255, 1.0);
}

@media screen and (max-width:768px){
  .div_popup{
    top: 50% !important; left: 50% !important;
    width: 80% !important; margin-left: -40%;
    transform: translateY(-50%);
  }
}





/* 상단바로가기 */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 40px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
  /* box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2); */
  box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translateX(-50%);
  z-index: 1;
  height: 16px;
	width: 16px;
	background: url(../img/common/scroll_top_ic.png) no-repeat center;
  cursor: pointer;
	-webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
	opacity: 0;
}

.progress-wrap::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translateX(-50%);
  z-index: 2;
  height: 16px;
  width: 16px;
  background: url(../img/common/scroll_top_ic_hover.png) no-repeat center;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
	opacity: 0;
}


.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path {
	fill: none;
}
.progress-wrap svg.progress-circle path {
  /* stroke: var(--grey); */
  stroke: #1f2029;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

@media screen and (max-width:768px){
  .progress-wrap{
    right: 2%;
    bottom: 2%;
  }
}
@media screen and (max-width:580px){
  .progress-wrap{
    right: 2%;
    bottom: 8%;
  }
}





/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #sitemapBG{
      display: none;
    }
}

/* IE6,7 */
@media screen\9 {
  #sitemapBG{
    display: none;
  }
}

/* IE8 */
@media \0screen {
  #sitemapBG{
    display: none;
  }
}

/* IE6,7,8 */
@media \0screen\,screen\9 {
  #sitemapBG{
    display: none;
  }
}

/* IE9,10 */
@media screen and (min-width:0\0){
  #sitemapBG{
    display: none;
  }
}


/* 영문 페이지 단독 적용 스타일 */
header.en h1.logo{z-index: 2;}

.en .order_link_btn{display: none !important;}
.en .snb{z-index: 2;}
.scr-none .en .snb{z-index: auto;}

.en .lnb{width: 100%; box-sizing: border-box; padding: 0 280px 0 370px;}
.en .lnb > ul > li{width: 14.28%; text-align: center;}
.en .lnb > ul > li > a{padding: 0px 15px;}
.en .lnb > ul > li > a span{white-space: normal;}
.en .lnb > ul > li.lnb_1 > ul > li > a{white-space: normal;}

/*.en ul.sitemap_list > li > a{height: 76px;}*/
.en ul.sitemap_list > li > a::after{display: none;}
.en ul.sitemap_list > li > a span{display: inline-block; height: 76px;}

.en.submenu_select button,
.en.submenu_select .sub_menu button{overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}

footer.en .bottom_area address .tit{width: 110px;}
@media screen and (max-width: 1780px){
    .en .lnb{padding: 0 210px 0 280px;}
}
@media screen and (max-width: 1640px){
    .en .lnb > ul > li > a{padding: 0 0;}
    .en .lnb > ul > li > a span{font-size: 16px;}
}
@media screen and (max-width: 1280px){
    .en ul.sitemap_list > li > a::after{display: block;}
    .en ul.sitemap_list > li > a span{display: inline; height: auto;}
}
@media screen and (max-width: 1024px){
    .en.submenu_select .inner{box-sizing: border-box; padding: 0 0 0 60px; position: relative;}
    .en.submenu_select .home{position: absolute; top: 0; left: 0; height: 100%;}
    .en.submenu_select .main_menu{/*flex: 1 1 0;*/ float: left; width: 50%;}
    .en.submenu_select .sub_menu{/*flex: 1 1 0;*/ float: left; width: 50%;}
}
@media screen and (max-width: 768px){
    .en.submenu_select .inner{padding: 0 0 0 54px;}
}
@media screen and (max-width: 720px){
    .s1 .inner .tit br{display: none;}
}
@media screen and (max-width: 640px){
    .en.submenu_select button,
    .en.submenu_select .sub_menu button{font-size: 14px; padding: 0 30px 0 20px;}
    .en.submenu_select .main_menu ul,
    .en.submenu_select .sub_menu ul{font-size: 14px;}
}
@media screen and (max-width: 425px){
    .en.submenu_select .inner{padding: 0 0 0 48px;}
}
