@import url(common.css);

/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 125px;
    z-index: 10;
	padding-right: 190px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #fff;
	/* box-shadow: 0px 5px 10px rgba(0,0,0,0.03); */
}
#header:after {
	display: none;
    position: absolute;
    top: 124px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #ddd; 
}
#header.on:after {
	display: block;
}
.shadow {
	box-shadow: 0px 5px 10px rgba(0,0,0,0.03);
}
#header .logo {
    position: absolute;
    top: 35px;
    left: 100px;
    font-size: 0; 
}
#header .logo > a {
    display: block; 
}
#header .logo > a img {
    display: block;
    max-width: 100%; 
}
#header #gnb .container {
    position: relative;
    max-width: 1270px;
    padding: 0;
    margin-right: 0; 
}
#header #gnb .container .active-bar {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    display: block;
    width: calc(100% / 7);
    height: 5px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #00a88e; 
}
#header #gnb .container .active-bar.show {
    opacity: 1; 
}
#header #gnb .container > ul {
    display: table;
    width: 100%;
    text-align: center;
    table-layout: fixed; 
}
#header #gnb .container > ul > li {
    position: relative;
    display: table-cell;
    vertical-align: top; 
}
#header #gnb .container > ul > li > a {
    position: relative;
    display: block;
    font-size: 20px;
    color: #111;
    font-weight: bold;
    line-height: 125px;
    z-index: 1; 
}
#header #gnb .container > ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 366px;
    padding: 30px 0 70px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    border-left: 1px solid #ddd;
    background-color: #fff; 
}
#header #gnb .container > ul > li > ul > li > a {
    display: inline-block;
    font-size: 18px;
    line-height: 38px;
    color: #666;
    font-weight: 400;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; 
}
#header #gnb .container > ul > li > ul > li > a:hover {
    color: #00a88e; 
}
#header #gnb .container > ul > li:after {
    position: absolute;
    top: 50%;
    right: -.5px;
    width: 1px;
    height: 16px;
    content: '';
    background-color: #ddd;
    transform: translateY(-50%); 
}
#header #gnb .container > ul > li:last-child:after {
    display: none; 
}
#header #gnb .container > ul > li:last-child > ul {
    border-right: 1px solid #ddd; 
}
#header #gnb .container > ul > li.active > ul {
    background-color: #f6f6f6; 
}

/* quick-util */
.quick-util {
    position: fixed;
    top: 0;
    right: 0px;
    width: 100px;
    z-index: 11; 
}
.quick-util .btn-area {
    display: block; 
}
.quick-util .btn-area .btn-nav {
    display: block;
    width: 100px;
    height: 100px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #00a88e;
    background-image: url(../images/ico_nav.png);
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: 50% 50%; 
}
.quick-util .btn-area .btn-nav:hover {
    background-color: #01917b; 
}
.quick-util .quick-link .link-list {
    overflow: hidden;
    height: 0;
    transform-origin: top;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #f6f6f6; 
}
.quick-util .quick-link .link-list > ul {
    width: 100%;
    padding: 20px 0; 
}
.quick-util .quick-link .link-list > ul > li > a {
    display: block;
    width: 50px;
    margin: 0 auto; 
}
.quick-util .quick-link .link-list > ul > li > a img {
    position: relative;
    display: block;
    max-width: 100%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; 
}
.quick-util .quick-link .link-list > ul > li > a:hover img {
    transform: rotate(15deg); 
}
.quick-util .quick-link .link-list > ul > li ~ li {
    margin-top: 10px; 
}
.quick-util .quick-link .btn-opened {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    border-top: 1px solid #ddd;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #f6f6f6; 
}
.quick-util .quick-link .btn-opened > img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    max-width: 100%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    transform: translate(-50%, -50%) rotate(180deg); 
}
.quick-util .quick-link.show .link-list {
    height: 270px; 
}
.quick-util .quick-link.show .btn-opened > img {
    transform: translate(-50%, -50%); 
}

body.opened #header {
    height: 491px;
	box-shadow: 2px 3px 20px 0px rgba(0, 0, 0, 0.35);
}
body.opened #header #gnb .container > ul > li > ul {
    display: block; 
}

/* quick-top */
.quick-top {
    position: fixed;
    bottom: 100px;
    right: -100px;
    z-index: 10;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; 
}
.quick-top .btn-top {
    position: relative;
    overflow: hidden;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background-color: #333;
    background-image: url(../images/ico_quick_top.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto auto; 
}
.quick-top .btn-top:hover {
    background-color: #00a88e; 
}
.quick-top.show {
    right: 100px; 
}

/* footer */
#footer {
    padding: 55px 0 40px;
    background-color: #111; 
}
#footer .container {
    position: relative; 
}
#footer .footer-top {display: flex; align-items: center;}
#footer .footer-top .logo {margin-right: 260px;}
#footer .footer-top .wrap {display: flex; align-items: center;}
#footer .footer-top .btn-inquiry a {display: inline-block; width: 210px; line-height: 68px; font-size: 20px; font-weight: 700; color: #fff; background: #00a88e; border: 1px solid #00a88e; border-radius: 6px; text-align: center; transition: all 0.6s; margin-right: 20px;}
#footer .footer-top .time dl {display: flex; align-items: center;}
#footer .footer-top .time dt {width: 100px; line-height: 34px; font-size: 16px; font-weight: 700; color: #fff; text-align: center; border: 1px solid #fff; border-radius: 18px; margin-right: 10px;}
#footer .footer-top .time dd {font-size: 16px; color: #fff;}
#footer .container .logo {
    font-size: 0; 
}
#footer .container .logo img {
    display: block;
    max-width: 100%; 
}
#footer .footer-mid {display: flex; justify-content: space-between; align-items: center;}
#footer .footer-mid .sns ul li a {display: inline-block; width: 50px; height: 50px; background-repeat: no-repeat; background-position: center center; transition: all 0.5s;}
#footer .footer-mid .sns ul li.sns-blog a {background-image: url('../images/footer_icon_blog.png');}
#footer .footer-mid .sns ul li.sns-blog a:hover {background-image: url('../images/footer_icon_blog_active.png');}
#footer .container .terms {
    position: absolute;
    bottom: 0;
    right: 15px; 
}
#footer .container .terms > ul {
    font-size: 0; 
}
#footer .container .terms > ul > li {
    display: inline-block;
    vertical-align: top;
    margin-right: 24px; 
}
#footer .container .terms > ul > li > a {
    display: block;
    font-size: 16px;
    color: #999;
    font-weight: 400;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; 
}
#footer .container .terms > ul > li > a:hover {
    text-decoration: underline; 
}
#footer .container .terms > ul > li:first-child > a {
    color: #fff; 
}
#footer .container .terms > ul > li:last-child {
    margin-right: 0; 
}
#footer .container .copyright {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-top: 30px; 
}

#footer .container .info {margin-top:30px;}
#footer .container .info p {font-size:16px; color:#fff; line-height:1.8em;}
#footer .container .info p span {margin:0 4px;}
#footer .container .info p br {display:none;}

/* siteMap */
.sitemap_wrap{position: fixed; width: 100%; height: 100%; /* max-width:488px; */ z-index: 10000005; right: 0; top: 0; display: none;  background: rgba(0,0,0,0.5);} 
.layer_sitemap{position: fixed; right: -50%; top: 100px; width: 100%; max-width:488px; z-index: 1005; height: calc(100% - 100px); }
.layer_sitemap .layer_sitemap_top{position: absolute; width: 100%; height: 100px; background: rgba(255,255,255,0.8); top: -100px; right: 0px; border-bottom: 1px solid #ddd; z-index: 100;}
.layer_sitemap .site_close{position: absolute; display: block; width: 100px; height: 100px; right: 0px; top: 0; cursor: pointer; transition:.3s;}
.layer_sitemap .site_close:before,
.layer_sitemap .site_close:after{position: absolute; content:''; width: 3px; height: 45px; background: #333; left: 50px; top: 25px; transform:rotate(-45deg); transition:.3s;}
.layer_sitemap .site_close:after{transform:rotate(45deg); }
.layer_sitemap .site_close:hover:before,
.layer_sitemap .site_close:hover:after{ height: 30px;}
.layer_sitemap .site_close:hover:before{top: 25px;}
.layer_sitemap .site_close:hover:after{top: 45px;}
.site_cnt_wrap{display: flex; height: 100%;}
.site_cnt_wrap .left_menu{position: relative; background: #fff; height: 100%; border-right: 1px solid #ddd; border-left: 1px solid #ddd; width: 40%; box-sizing: border-box; padding: 30px 0 50px 20px; } 
.site_cnt_wrap .left_menu:after{position: absolute; content:''; width: 20px; height: 20px; background: #fff; border-top: 1px solid #ddd; border-right: 1px solid #ddd; transform:rotate(45deg); right: 0; top: 0; right: -11px; top: 38px;}
.site_cnt_wrap .left_menu > ul > li > a{position: relative; font-size: 20px; line-height: 2.5; color: #333; transition:color .3s; }
/* .site_cnt_wrap .left_menu > ul > li > a:before, */
.site_cnt_wrap .left_menu > ul > li > a:after{position: absolute; content:'';  width: 7px; height: 100%; background: url(../../images/template/site_arr.png) center no-repeat; right: 2em; top: 0%; margin-top: 0px; background-size: 100%;}
.site_cnt_wrap .left_menu > ul > li ul {display: none;} 
/* .site_cnt_wrap .left_menu > ul > li:hover > a:before,
.site_cnt_wrap .left_menu > ul > li.current > a:before{opacity: 0;}
.site_cnt_wrap .left_menu > ul > li:hover > a:after,
.site_cnt_wrap .left_menu > ul > li.current > a:after{opacity: 1;} */
.site_cnt_wrap .right_menu{background: #f5f5f5; flex-grow:1; padding: 30px 0 50px 40px; box-sizing: border-box; overflow-y: auto; overflow-x: hidden;}
.site_cnt_wrap .right_menu .gnb {position: relative;}
.site_cnt_wrap .right_menu .gnb > li {position: relative; left: 90%; position: absolute; opacity: 0; top: 0; width: 100%;}
.site_cnt_wrap .right_menu .gnb > li > a {display: none;}
.site_cnt_wrap .right_menu .gnb > li.current,
.site_cnt_wrap .right_menu.main .gnb > li:first-child{left: 0; opacity: 1; }
.site_cnt_wrap .right_menu .gnb > li > div .dep2{}
.site_cnt_wrap .right_menu .gnb > li > div .dep2 > li{}
.site_cnt_wrap .right_menu .gnb > li .dep2 > li > a{position: relative; font-size: 18px;  line-height: 3; color: #333; transition:color .3s;}
.site_cnt_wrap .right_menu .gnb > li .dep2 > li > a:before,
.site_cnt_wrap .right_menu .gnb > li .dep2 > li > a:after{position: absolute; content:'';  width: 5px; height: 100%; background: url(../../images/template/site_arr.png) center no-repeat; right: 2em; top: 0%; margin-top: 0px; background-size: 100%; transform:rotate(90deg)}
.site_cnt_wrap .right_menu .gnb > li .dep3{display: none;}
.site_cnt_wrap .right_menu .gnb > li .dep3 > li > a{font-size: 13px; border-bottom: 1px solid #ddd; line-height: 3; transition:.3s}
.site_cnt_wrap .left_menu > ul > li:hover > a,
.site_cnt_wrap .left_menu > ul > li.current > a,
.site_cnt_wrap .right_menu .gnb > li > div .dep2 > li:hover > a,
.site_cnt_wrap .right_menu .gnb > li > div .dep2 > li.current > a,
.site_cnt_wrap .right_menu .gnb > li .dep3 > li:hover > a{color: #00a88e; }


@media (max-width:480px){
	.site_cnt_wrap .right_menu .gnb > li > .subm > li > a {line-height: 2.5;}
}
/* siteMap : E */


/* Board */
.bo_wrap {margin: 5.63em 0 10em;text-align: left;}
.no_data {font-size: 1.125em;line-height: 3;border-bottom: 1px solid #ddd;}
.b_search {padding: 20px 0; background-color: #f2f2f2; margin-top: 45px; text-align: center;}
.b_search input[type="text"] {max-width: 380px; height: 40px;}
.b_search select {height: 40px; width: 95px; margin-right: 5px;}
.b_search .btn_search {width: 95px; height: 40px; margin-left: 5px; color: #fff; background-color: #333;}


/* Input */
select.select_ty {max-width: 200px;height: 35px;}
select.select_ty.ty1 {max-width: 100%;}
select.select_ty.ty2 {width: 70px;}
select[readonly] {opacity: .7;pointer-events: none;}

input.input_ty {display: inline-block;vertical-align: top;width: 100%;max-width:200px;height: 35px;text-align: left;border: 1px solid #ddd;box-sizing:border-box;padding: 0 10px;}
input.input_ty.ty1 {max-width: 100%;}

input.radio_ty1 {position: absolute;left: -99999px;}
input.radio_ty1 + label {display: inline-block;height: 48px;font-size: 18px;line-height: 48px;vertical-align: top;cursor:pointer;padding-left: 1.7778em;background: url(/images/login_radio.png) no-repeat left top 12px/20px;position: relative;margin-right: 1.5em;}
input.radio_ty1 + label:last-child {margin-right: 0;}
input.radio_ty1 + label:after {display: block;content: '';position: absolute;top: 12px;left: 0;width: 20px;height: 20px;font-size: 0;background: url(/images/login_radio_ov.png) no-repeat left center/20px;transition:.3s;opacity: 0;}
input.radio_ty1:checked + label:after {opacity: 1;}

input[type="radio"].radio_ty2 {position: absolute;left: -99999px;}
input[type="radio"].radio_ty2 + label {position: relative;padding-left: 20px;cursor:pointer;}
input[type="radio"].radio_ty2 + label:before {display: block;content: '●';position: absolute;top: 50%;left: 0;transform:translateY(-50%);width: 16px;height: 16px;font-size: 10px;line-height: 13px;color: #fff;border: 1px solid #ddd;box-sizing:border-box;background-color: #fff;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,0.1);text-align: center;transition:.3s;}
input[type="radio"].radio_ty2:checked + label:before {color: #0262c9;}

input[type="checkbox"].check_ty2 {position: absolute;left: -99999px;}
input[type="checkbox"].check_ty2 + label {position: relative;padding-left: 20px;cursor:pointer;margin-right: 10px;}
input[type="checkbox"].check_ty2 + label:before {display: block;content: '■';position: absolute;top: 50%;left: 0;transform:translateY(-50%);width: 16px;height: 16px;font-size: 10px;line-height: 13px;color: #fff;border: 1px solid #ddd;box-sizing:border-box;background-color: #fff;box-shadow:0 0 5px rgba(0,0,0,0.1);text-align: center;transition:.3s;}
input[type="checkbox"].check_ty2:checked + label:before {color: #0262c9;}
input[type="checkbox"][readonly] {opacity: .7;pointer-events: none;}

.layout_tel { display:block; list-style:none; margin:0; padding:0; overflow:hidden; box-sizing:border-box; }
.layout_tel:after { display:block; content:""; clear:both; }
.layout_tel li { position:relative; display:block; float:left; width:70px; box-sizing:border-box; }
.layout_tel li.li {text-align: center;width: 20px; line-height: 35px;}
.layout_tel li select {width: 100%;height: 35px;line-height: 33px;}
.layout_tel li input {width: 100%;}

.layout_email { display:block; list-style:none; margin:0; padding:0; overflow:hidden; box-sizing:border-box; }
.layout_email li { position:relative; display:block; float:left; width:120px; box-sizing:border-box; }
.layout_email li.li {text-align: center;width: 1.5em;line-height: 35px;}
.layout_email li select {width: 100%;height: 35px;line-height: 33px;padding: 0 10px;}
.layout_email li input {width: 100%;}
.layout_email li:last-child {margin-left: 5px;}

input[type="text"].dtp {background: #fff url(/img/ico_cal.png) no-repeat right 10px center;}

@media (max-width:640px){
	input[type="text"].dtp {background-size: auto 4vw !important;}
}

/* Btns */
.btn_area {text-align: center;margin-top: 2.5em;}
.btn_area:after {display: block;clear: both;content: '';}
.btn_area .left {float: left;}
.btn_area .left > a {font-size: 18px; color: #666; border: 1px solid #ddd;}
.btn_area .right > a {color: #fff; background-color: #0f64ce;}
.btn_area .right {float: right;}
.btn_area > div > a {display: inline-block; font-weight: 400; vertical-align: top; margin-right: 10px; font-size: 18px; width: 100px; text-align: center; line-height: 40px;}
.btn_area > div > a:last-child {margin-right: 0;}
/*
.btn_ty {display: inline-block;vertical-align: top;font-size: 1em;font-weight: 400;line-height: 2.5;color: #fff;border: 0;background-color: #00adef;text-align: center;width: 100px;transition:.3s;}
.btn_ty02 {color: #999;border-color: #ddd;background-color: #f6f6f6;}
.btn_ty03 {color: #fff;border-color: #f68b21 ;background-color: #f68b21;}

.btn_ty:hover {background:#3e96c7;border-color: #3e96c7;}
.btn_ty02:hover {color: #666;background-color: #f6f6f6;}
.btn_ty03:hover {color: #f68b21 ;border-color: #f68b21 ;background-color: #fff;}
.clo_btn {background: #2b2d30;}*/

/* 모달 레이어 정의 */
.layer_popup { display:none; margin:0; padding:0 !important; overflow:hidden !important; }
.layer_popup iframe { width:100%; height:100%; border:0; box-sizing:border-box; }

/* 레이어 구성 */
.layer_box { display:block; width:100%; height:100%; padding:20px; box-sizing:border-box;  }
.layer_box > header { display:none; }
.layer_box > .layer_cnt { display:block; overflow:hidden; }

.layer_box textarea {
	width:100%; height:310px; padding:10px; border:1px solid #ddd; overflow-y:auto; resize:none; outline:0;
	box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
	font-size: 16px; line-height: 1.7;
}
.layer_box .email_area { display:table; width:100%; height:300px; border-collapse:collapse; border-spacing:0; margin:0; padding:0; overflow:hidden; }
.layer_box .email_area .email_box { display:table-cell; width:100%; padding:30px 20px; text-align:center; vertical-align:middle; overflow:hidden; box-sizing: border-box;}
.layer_box .email_area .email_box .big_txt { margin-bottom:20px; font-size:20px; color:#222; font-weight:700; }
.layer_box .email_area .email_box .normal_txt { margin:0 10%; font-size:15px; color:#555; line-height:1.5; text-align:justify; word-break:keep-all; }