@charset "utf-8";
@import url('./font.css');
@import url('./animation.css');
:root {
	--main-color:#073866;
	--main-color-rgb:7,56,102;
	--sub-color:#9aa7b9;
	--bright-color:#7e9fb7;
	--dark-color:#052d53;
}
/* 초기화 */
html {overflow-y:scroll;height:100%;min-width:320px}
body {margin:0;padding:0;font-size:0.875em;height:100%; font-family:'Pretendard','AppleSDGothic', 'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif;}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1, h2, h3, h4, h5, h6 {font-size:1em; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
legend {position:absolute;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
input, button {margin:0;padding:0;font-size:1em;font-family:'Pretendard','AppleSDGothic', 'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif;}
button {cursor:pointer;}
input[type=text], input[type=password], input[type=submit], input[type=image], button {font-size:1em;-webkit-appearance:none}
textarea, select,button {font-size:1em;font-family:'Pretendard','AppleSDGothic', 'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif;}
textarea {border-radius:0;-webkit-appearance:none}
select {margin:0;/*background:none;*/ color:#444; background:url('/img/btn_down.png') no-repeat right 10px top 50%; background-size:10px 6px; -webkit-appearance: none;-moz-appearance: none; appearance: none; cursor:pointer;}
::selection { background-color:#0060af;color:#fff;}/* Works in Safari, IE9, Google Chrome */
::-moz-selection { background-color:#0060af;color:#fff;}/* Mozilla based browsers */
p {margin:0;padding:0;word-break:break-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:#000;text-decoration:none; cursor:pointer;
-webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; -ms-transition: all 0.30s ease-in-out; -o-transition: all 0.30s ease-in-out;}
ul,li,dl,dt,dd{padding:0;margin:0}
ul{list-style:none;}
img{vertical-align:top;max-width:100%;height:auto}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*button,
a,
input[type="submit"],
#quick {cursor:url('/img/cursor.png') 30 30, auto !important;}*/

 
/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;width:100%;height:0}
#hd_pop h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border-radius:25px; overflow:hidden;}
.hd_pops img{max-width:100%;height:auto}
.hd_pops_con {}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:"";}
.hd_pops_footer button { float:left; width:50%; text-align:center; background:#f5f5f5; border:0; border-top:1px solid #e9e9e9; color:#555; box-sizing:border-box; padding:4%;}
.hd_pops_footer button:last-child {border-left:1px solid #e9e9e9;}

#container,
#tit,
.ct_area {max-width:1640px;}
#container,
.ct_area {width:calc(100% - 80px);}

@media (max-width: 973px){
#hd_pop {width:80%; max-width:600px; z-index:99999999;}
.hd_pops {width: 100%;left: 0!important;top: 80px!important}
.hd_pops_con {width: auto!important;height: auto!important}
.hd_pops_con img {width: 100%;height: auto}

#container,
.ct_area {width:90%;}
}

/* 상단 레이아웃 */
#hd { position:fixed;top:0;left:0; width:100%; background:#fff; border-bottom:1px solid #e5e5e5; z-index:9999; }
#hd:after {display:block;visibility:hidden;clear:both;content:""}
#hd_h1 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#hd_wrapper{margin:0 auto; display:flex; justify-content:space-between;}

#logo {padding:30px 0 0 20px; min-width:200px;}
#logo a { display:block; height:40px;}
#logo img {vertical-align:middle; max-height:100%; width:auto}

#gnb_empty {padding:20px 0;color:#fff;text-align:center;line-height:2em}
#gnb_empty a {display:inline;text-decoration:underline}

/* 메인메뉴 시작 */
#gnb {position:relative; width:600px; z-index:99;}
#gnb h2{position:absolute;font-size:0;line-height:0;overflow:hidden}
#gnb .gnb_wrap{margin:0 auto;position:relative}

/* 메인메뉴 > 1차메뉴 */
#gnb #gnb_1dul {zoom:1; font-size:1.29em; display:flex;}
#gnb .gnb_1dli {line-height:100px; height:100px; padding:0; position:relative; text-align:center; flex:auto; }
.gnb_1da {color:#222; width:100%; font-weight:500;} /*글자색*/
#hd_m .gnb_1dli:hover .gnb_1da {color:var(--main-color); } /* 마우스오버 글자색 */
.gnb_1dli:before{content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:0px; height:1px; width:0%; border-bottom:3px solid var(--main-color); /* 밑줄 시작 */
-webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s; -ms-transition:all 0.2s; transition:all 0.2s;}
.gnb_1dli:hover::before{content : ""; position:absolute; left:50%; transform:translateX(-50%); bottom:0px; height:1px; width:50%; border-bottom:3px solid var(--main-color); /* 밑줄 끝 */
-webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s; -ms-transition:all 0.2s; transition:all 0.2s;}

/* 메인메뉴 > 전체메뉴 2차 */
.gnb_2dli{font-size:0.89em;} 
.gnb_2dul {display:none;}
.gnb_2da {display:block;line-height:50px;color:#ddd;text-align:center; letter-spacing:-1px;} /* 글자색 */
a.gnb_2da:hover{color:var(--bright-color); /* 마우스오버 글자색 */}
#all_cate{position:absolute;width:100%;z-index:50;top:100px;height:0px;display:none;background:rgba(0,0,0,0.6);/* 전체배경색 */}
#all_cate div {position:relative;}
.cate_2dul{display:none;position:absolute;top:100px;left:0;width:100%;height:0px;overflow:hidden;z-index:9999;}
.cate_2dul:hover {background:rgba(0,0,0,0.8); color:#fff; /* 메뉴오버 배경 */
-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}

.gnb_wrap .gnb_empty {padding:10px 0; width:100%;text-align:center;line-height:2em;color:#888}
.gnb_wrap .gnb_empty a {color:inherit;text-decoration:underline}
/* 메인메뉴 끝 */

/* 모바일 메뉴 */
#gnb_open{float: right;width: 50px;border: 0 ;background: 0;height: 100px;color: #444; font-size: 18px;vertical-align:top; display:none;}

#gnb2 {display:none;position:fixed;top:0;right:0;height:100%;background:var(--dark-color);z-index:99999;width:30%;min-width:300px}
#gnb2 .btn_close {position:absolute;top:0;right:0;width:50px;height:50px;border:0;background:none;color:#fff}
#gnb2 .gnb_tnb{padding:0 10px;}
#gnb2 .gnb_tnb li{display:inline-block;line-height:50px}
#gnb2 .gnb_tnb li a{color:#b8b8b8;display:block;padding:0 10px} 
#gnb2_1dul{margin:20px 0; padding-top:20px;}
#gnb2_1dul .gnb2_1dli{position:relative}
#gnb2_1dul .gnb2_1dli button{position:absolute;top:0;right:0;border:0;background:none;height:50px;width:50px;text-indent:-999px;overflow:hidden; background: url(../img/mobile/gnb_bg2.png) no-repeat 50% 50%;background-size:10px}
#gnb2_1dul .gnb2_1da{padding:0 20px;display:block;color:#fff;font-size:1.15em;line-height:50px}
#gnb2_1dul .gnb2_2dul {display:none}
#gnb2_1dul .gnb2_2da {color:var(--bright-color);padding:0 30px;font-weight:normal;white-space: nowrap;line-height:30px}

.mob_tel { position:absolute; top:20px; right:50px; font-size:1.29em; font-weight:bold; text-align:right; color:#fff;}

.menu {color:#fff; display:flex; align-items:center; justify-content:flex-end; padding-right:20px; min-width:200px; }
.menu .menu_icon {display:flex; justify-content:flex-end; flex-wrap:wrap; width:12px; margin-left:20px;}
.menu .menu_icon span {width:100%; height:1px; content:""; border-top:2px solid #fff; margin:1px 0;
-webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; -ms-transition: all 0.30s ease-in-out; -o-transition: all 0.30s ease-in-out;}
.menu .menu_icon span:nth-child(2) {width:80%;}
#hd_m:hover .menu_icon span {width:60%;}
#hd_m:hover .menu_icon span:nth-child(2) {width:100%;}

.mob_view {display:none;}

/* 작은모니터 */
@media (max-width: 1279px){
	.menu {min-width:auto;}
}

/* 태블릿 */
@media (max-width: 1023px){
	#gnb {width:540px;}
}

@media (max-width: 973px){
	#gnb {width:480px;}
	#gnb_right .btn_qa img,
	#btn_all {display:none;}
}

/* 모바일 */
@media (max-width: 729px){
    .pc_view{display:none !important}
	.mob_view {display:block;}
	
	#logo { padding-top:15px; height:30px !important;}
	#logo .logo_view {display:block;}
	#logo a {/*height:16px;*/ height:30px;}
    .m_view{display:none !important}
    .hd_sch_btn , #gnb_open{height:60px; display:block;}
    #hd_sch {top:0}
    #hd_sch #sch_submit,#hd_sch .btn_close,#hd_sch #sch_stx{height:60px}
	#all_cate {display:none !important;}
}


/*상단고정 */
.fixed #hd{}
.fixed #hd #tnb {display:none}
.fixed #wrapper{/*padding-top:60px;*/}
.fixed .gnb_2dul {top:60px}
.fixed .menu {color:#333;}
.fixed .menu .menu_icon span {border-color:#333;}
/* 태블릿 */
@media (min-width: 973px){
    .fixed .hd_sch_btn ,.fixed #gnb_open{height:60px}
    .fixed .gnb_1dli button{height:60px}
    .fixed #hd_sch {top:0}
    .fixed  #hd_sch #sch_submit,.fixed #hd_sch .btn_close,.fixed #hd_sch #sch_stx{height:60px}
}

/* 메인화면 메뉴 */
#hd_m { position:fixed; top:0; width:100%; background:transpernt; z-index:9999; border-bottom:1px solid rgba(255,255,255,0.2);
transition:all 0.2s; -webkit-transition:all 0.2s; -moz-transition:all 0.2s; -o-transition:all 0.2s;}
#hd_m #logo img {filter:brightness(100);}
#hd_m .gnb_1da,
#hd_m #gnb_open {color:#fff;}

.fixed #hd_m {position:fixed; top:0; background:#fff; border-bottom:1px solid #e5e5e5;}
.fixed #hd_m #logo {filter:none;}
.fixed #hd_m #logo img {filter:none;}
.fixed #hd_m .gnb_1da,
.fixed #hd_m #gnb_open {color:#333;}
.fixed #hd_m .mob_tel {color:var(--main-color);}

/* 중간 레이아웃 */
/*.bo_top_img,
#bo_list_total {display:none !important;}*/
#wrapper {}
#wrapper:after {display:block;visibility:hidden;clear:both;content:""}
#svisual {background:url('/img/svisual.jpg') top center; background-size:cover; height:33.33em; display:flex; justify-content:center; align-items:center; text-align:center; color:#fff; font-size:1.29em;
animation: kenburns-bottom 5s ease-out both;}
#svisual.svisual01 {background:url('/img/svisual01.jpg') top center;}
#svisual.svisual02 {background:url('/img/svisual02.jpg') top center;}
#svisual.svisual03 {background:url('/img/svisual03.jpg') top center;}
#svisual.svisual04 {background:url('/img/svisual04.jpg') top center;}
#container_title { font-family:'BookkMyungjo', serif; font-size:3.33em; font-weight:normal; margin-bottom:0.33em; word-break:keep-all; }
#container {position:relative; margin:5.71em auto 4.29em;}
/*#container > p {display:none;}*/

.mainvisual {padding:56.25% 0 0 0;position:relative; background-color:#000;  }
.mainvisual iframe {position:absolute;top:0;left:0;width:100%;height:100%; background-color:#000; opacity:0.8;}
.main_txt_area {position:absolute; left:0%; width:100%;height:100vh; margin-top:-56.25%; z-index:1; color:#fff; display:flex; justify-content:center; align-items:center;}
.main_txt_area .main_txt { width:90%; margin:0 auto; font-size:1.43em;}
.main_txt_area .main_txt p {word-break:keep-all;}
.main_txt_area .main_txt br {display:none;}
.main_txt_area .main_txt h3 { font-family:'BookkMyungjo', serif; font-size:5em; font-weight:normal; word-break:keep-all;}

.mainmodels {width:100%; display:flex; border-bottom:1px solid #e5e5e5; overflow:hidden;}
.mainmodels .box { display:block; width:25%; border-left:1px solid #e5e5e5; padding:7.14em 2.86em 2.86em;
-moz-transition: all 0.2s ease-out;-o-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
.mainmodels .box:first-child {border-left:0;}
.mainmodels .box p {font-size:1.29em; color:#888; margin-bottom:20px;}
.mainmodels .box h3 { font-size:2.86em; font-weight:800; white-space:nowrap;}
.mainmodels .box span { width:3em; height:3em; border:1px solid #000; border-radius:50%; display:flex; justify-content:center; align-items:center; font-size:1.43em; float:right; margin-top:3em;}

.mainmodels .box:hover {background-color:var(--main-color); color:#fff; width:30%;}
.mainmodels .box:hover p {color:#fff;}
.mainmodels .box:hover span {border-color:#fff;}

.bg_gray {width:100%; background-color:#fafafa; padding:10em 0;}

.contact { position:relative; overflow:hidden; ;}
.contact .video { height:57.14em; background-color:#000;}
.contact iframe {position:absolute; top:50%;left:50%; transform:translate(-50%, -50%); width:100%; min-width:177.714vh; height:100%; min-height:56.2701vw; opacity:0.5;}
.contact .txt_area {position:absolute; top:0; left:50%; transform:translateX(-50%); width:90%; height:100%; z-index:1; color:#fff; display:flex; justify-content:center; align-items:center; flex-wrap:wrap; text-align:center;}
.contact .txt h3 { width:100%; font-family:'BookkMyungjo', serif; font-size:4.29em; font-weight:normal; word-break:keep-all;}
.contact .txt p { width:100%; font-size:1.29em; line-height:160%; font-weight:normal; word-break:keep-all; margin:0.71em auto 3.75em; }
.contact .txt a { font-size:1.14em; border:1px solid #fff; color:#fff; width:11.43em; height:3.57em; display:flex; justify-content:center; align-items:center; margin:0 auto;
-webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; -ms-transition: all 0.30s ease-in-out; -o-transition: all 0.30s ease-in-out;}
.contact .txt a:hover { width:12.86em; border-color:#000; background-color:#000; }

@media (max-width: 1679px){
	.mainvisual {width:100%; height:100vh; overflow:hidden;}
	.mainvisual iframe {width:200%; left:50%; transform:translateX(-50%);}
	
	.mainmodels {font-size:0.86em;}
	
	.contact .video {height:42.86em;}
	.contact .txt {font-size:0.9em;}
}
@media (max-width: 1279px){	
	.main_txt_area .main_txt h3 {font-size:4em;}
	.mainmodels {font-size:0.71em;}
	.contact .video {height:35.71em;}
}
/* 태블릿 */
@media (max-width: 1023px){
	#svisual {height:30.77em; }
	#container_title {font-size:3.08em;}
	
	.main_txt_area .main_txt {font-size:1.14em;}
	
	.mainmodels {flex-wrap:wrap; border-bottom:0;}
	.mainmodels .box {width:50%; border-bottom:1px solid #e5e5e5; padding:2.86em;}
	.mainmodels .box:nth-child(odd) {border-left:0;}
	.mainmodels .box:hover {width:50%;}
	.mainmodels .box span {margin-top:2em;}
}

/* 모바일 */
@media (max-width: 729px){
	#svisual {height:23.08em; }
	#container_title {font-size:2.46em;}
	
	.mainvisual iframe {width:400%;}
	.main_txt_area .main_txt h3 {font-size:3.13em;}
	
	.contact .video {height:500px;}
	.contact .txt { font-size:0.7em; }
	.contact .txt br {display:none;}
	.contact .txt p {padding-right:20px;}
}
/* 작은모바일 */
@media (max-width: 499px){
	#container_title {font-size:2em;}
	
	.main_txt_area .main_txt {font-size:1em;}
	.main_txt_area .main_txt br {/*display:inline-block;*/}
	.main_txt_area .main_txt p {margin-bottom:0.71em;}
	.main_txt_area .main_txt h3 {font-size:2.86em; line-height:120%; }
	
	.mainmodels .box {padding:2.14em 1.07em;}
	.mainmodels .box h3 {font-size:2.14em;}
}

/* 하단 레이아웃 */
#ft { background:#f5f5f5; color:#888; font-size:1.14em; line-height:180%; padding:3.08em 0;}
#ft .ct_area { width:90%; max-width:none; margin:0 auto; display:flex; justify-content:space-between; }
#ft a {color:inherit; }
#ft_link {display:flex; align-items:center;}
#ft_logo {margin-left:1.43em;}
#ft_logo img { max-width:100px; }
#ft_link a {margin-right:20px;}
#ft_link a:last-child {margin-right:0}
#ft_info {margin-top:1.54em;}
#ft_info span { margin-right:20px; word-break:keep-all; white-space:nowrap;}

/*#top_btn {position:fixed;bottom:20px;right:20px;width:50px;height:60px;background:#222; border:0;z-index:999;color:#fff;transition: opacity 0.2s ease-out;opacity:0; border-radius:50%; font-size:1.23em; }
#top_btn.show {opacity: 1;}*/


/* 상담신청 팝업 */
#quick {position:fixed; right:20px; bottom:20px; display:flex; justify-content:center; align-items:center; background-color:var(--main-color); border-radius:50%; width:8.57em; height:8.57em; color:#fff; text-align:center; z-index:999; cursor:pointer; box-shadow:0 10px 20px rgba(0,0,0,0.3);
animation: color-change-2x 2s linear infinite alternate both;}
#quick:hover {animation: shake-top 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;}
#quick p {font-size:1.29em; margin-top:0.36em;}

#quick_popup { display:none; width:80%; max-width:600px; background-color:var(--main-color); color:#fff; padding:4.29em 2.86em; overflow:hidden;}
#quick_popup h3 {font-size:2.57em; border-bottom:2px solid rgba(255,255,255,0.1); padding-bottom:0.71em;}
#quick_popup h3 a {font-size:0.67em; margin-left:10px; color:#fff; font-weight:normal; }
#quick_popup a.close-modal {right:2.86em; top:4.29em; width:30px; height:30px; background:url('/img/close.png') 50% 50% no-repeat;background-color:transparent;}
#quick_popup a.close-modal:hover {animation: rotate-center 0.6s ease-in-out both;}
#quick_popup .div_form { display:flex; align-items:center; width:100%; border-bottom:2px solid rgba(255,255,255,0.1); padding:0.71em 0; font-size:1.29em;}
#quick_popup .div_form label { display:block; width:20%;}
#quick_popup .div_form input[type="text"],
#quick_popup .div_form select {width:80%; height:3.33em; background-color:rgba(255,255,255,0.2); border:0; padding:0 0.71em; color:#9aa7b9;}
#quick_popup .div_form select {background:url('/img/btn_down_w.png') no-repeat right 10px top 50% rgba(255,255,255,0.2); background-size:10px 6px;}
#quick_popup .check input[type="checkbox"] {width:16px; height:16px; background-color:var(--main-color); border:1px solid var(--bright-color); margin-right:5px;}
#quick_popup .check { display:block; margin:0.71em 0 1.43em; color:var(--bright-color); font-size:1.14em;}
#quick_popup input[type="submit"] {width:100%; text-align:center; background-color:var(--dark-color); border:0; color:#fff; height:4.44em; font-size:1.29em; cursor:pointer;
-webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; -ms-transition: all 0.30s ease-in-out; -o-transition: all 0.30s ease-in-out;}
#quick_popup input[type="submit"]:hover {background-color:var(--bright-color); color:var(--main-color);}

/* sns */
.sns { position:fixed; top:50%; right:20px; margin-top:-75px; z-index:999999;}
.sns a { display:flex; justify-content:center; align-items:center; width:50px; height:50px; margin-bottom:5px; background-color:var(--dark-color); border-radius:50%; box-shadow:0 2px 5px rgba(0,0,0,0.1); }
.sns a img {filter:brightness(10); width:80%;
-webkit-transition: all 0.30s ease-in-out; -moz-transition: all 0.30s ease-in-out; -ms-transition: all 0.30s ease-in-out; -o-transition: all 0.30s ease-in-out;}
#top_btn { /*cursor:pointer;*/ background-color:#fff; }
#top_btn img {width:100%;}
/*.sns .kakao {background:url('/img/sns_kakao.png'); background-size:cover; }
.sns .blog {background:url('/img/sns_blog.png'); background-size:cover;}
.sns .insta {background:url('/img/sns_instagram.png'); background-size:cover;}*/

/* 태블릿 */
@media (max-width: 973px){
	#ft {font-size:1em;}
	#ft_link {flex-wrap:wrap;}
	
	#quick {width:7.14em; height:7.14em;}
	#quick img {width:70%;}
	#quick p {font-size:1em;}
}
/* 모바일 */
@media (max-width: 729px){
	#container {margin:2.86em auto;}
	
	#ft .ct_area {flex-wrap:wrap; text-align:center;}
	#ft_copy {width:100%;}
	#ft_link {justify-content:center;}
	#ft_link a {margin:0 5px;}
	#ft_info br {display:none;}
	#ft_info span { display:block; white-space:normal;}
	#ft_logo {margin:1.43em auto 0;}
	
	#top_btn { right:10px; font-size:0.92em;}
	
	#quick_popup h3 a {display:block; margin-left:0; margin-top:10px;}
	.quick_tel {position:fixed; right:20px; bottom:calc(4.29em + 25px); background-color:var(--main-color); display:flex; justify-content:center; align-items:center; border-radius:50%; z-index:9999;} 
	.quick_tel img {width:50%; filter:invert(1);}
	.quick_tel,
	#quick {width:4.29em; height:4.29em;}
	#quick p {display:none;}
	
	#quick_popup {width:96%; font-size:0.69em;}
}
/* 작은 모바일 */
@media (max-width:499px){
	.sns {display:none;}
	#gnb2 .sns {display:flex; position:relative; top:auto; right:auto; margin:20px 10px;}
	#gnb2 .sns a {margin-right:10px; background-color:var(--main-color);}
}

/* 체크박스 */
.all_chk,.bo_chk {position:relative}
.all_chk label .chk_img, .bo_chk label .chk_img{margin-top:2px;display:inline-block;height:15px;text-indent:-9999px;width:15px;background:#fff;border:1px solid #aab3c1;border-radius:3px;;vertical-align:top;
-webkit-box-shadow:inset 5px 5px 3px #f0f0f3;
-moz-box-shadow:inset 5px 5px 3px #f0f0f3;
box-shadow:inset 5px 5px 3px #f0f0f3}

.bo_chk label.click_on .chk_img, .all_chk label.click_on .chk_img{background:url('../img/input_chk.png') 50% 50% no-repeat var(--main-color); border-color:var(--main-color);
-webkit-box-shadow:none;
-moz-box-shadow:none;
box-shadow:none}


.bo_chk input, .all_chk input {position:absolute;top:0;left:0;width:1px;height:1px;opacity:0;outline:0;z-index:9}

/* 게시물 선택복사 선택이동 */
#copymove {}
.copymove_current {float:right;color:#ff3061}
.copymove_currentbg {background:#f4f4f4}
#copymove .tbl_head01{margin-top:10px}
#copymove td{background:#fff}
#copymove .win_btn{margin:10px}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;width:0;height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block;position:absolute;top:0;left:0;margin:0 !important;padding:0 !important;width:1px !important;height:1px !important;font-size:0 !important;line-height:0 !important;overflow:hidden}

/* 본문 바로가기 */
.to_content a {z-index:100000;position:absolute;top:0;left:0;width:0;height:0;font-size:0;line-height:0;overflow:hidden}

/* 이미지 등비율 리사이징 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden;}
#captcha #captcha_img {height:40px;border:1px solid #898989;;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;width:40px;height:40px;background:url('../../../img/captcha2.png') no-repeat;text-indent:-999px;;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat  0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:3px 0 5px ;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px}

/* 구글리캡챠 크기 조정 scale */
#captcha.recaptcha{width:213px;height:55px;overflow:hidden}
#rc-imageselect, .g-recaptcha {transform:scale(0.7);-webkit-transform:scale(0.7);transform-origin:0 0;-webkit-transform-origin:0 0;}

/* ckeditor 태그 기본값 */
#bo_v_con ul{display: block;list-style-type: disc;margin-top: 1em;margin-bottom: 1em;margin-left: 0;margin-right: 0;padding-left: 40px;}
#bo_v_con ol{display: block;list-style-type: decimal;margin-top: 1em;margin-bottom: 1em;margin-left: 0;margin-right: 0;padding-left: 40px;}
#bo_v_con li{display: list-item;}

/*단축키일람 */
.cke_sc{text-align:right}
.btn_cke_sc{background:#333;color:#fff;padding:5px;border:none}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl{margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:50%;font-weight:bold}
.cke_sc_def dd {width:50%}
.btn_cke_sc_close{background:#333;padding:5px;border:none;color:#fff}

/* 버튼 */
.btn{display:inline-block;padding:0 5px;height:40px;line-height:40px;;padding: 0 15px}
a.btn01 {display:inline-block;background:#eee;color:#444;text-decoration:none;vertical-align:middle}
a.btn01:focus, a.btn01:hover {text-decoration:none}
button.btn01 {display:inline-block;margin:0;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none}
a.btn02 {display:inline-block;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none;vertical-align:middle}
a.btn02:focus, .btn02:hover {text-decoration:none}
button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none}
.btn_confirm {text-align:center} /* 서식단계 진행 */
.btn_submit {background:var(--main-color);border:0; border-radius:0px;color:#fff;cursor:pointer}
.btn_submit:hover{background:var(--dark-color)}
a.btn_cancel {display:inline-block;background:#ddd;color:#444;text-decoration:none;vertical-align:middle}
button.btn_cancel {display:inline-block;;border:1px solid #ccc;background:#fafafa;color:#000;vertical-align:top;text-decoration:none}
a.btn_frmline, button.btn_frmline {display:inline-block;padding:0 5px;;border:0;background:#333;color:#fff;letter-spacing:-0.1em;text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {display:inline-block;background:#eee;border:0;color:#6b6b6b;text-decoration:none;vertical-align:middle}
.btn_b01:hover, .btn_b01:hover {background:#f8f8f8;color:#000}
a.btn_b02 ,.btn_b02{display:inline-block;background:#2d3b80;color:#fff;text-decoration:none;vertical-align:middle;border:0}
a.btn_b02:hover, .btn_b02:hover {background:#242f66}
a.btn_b03, .btn_b03 {display:inline-block;line-height:28px;border:1px solid #ed6478;color:#ed6478;background:none;text-decoration:none;vertical-align:middle}
a.btn_b03:hover, .btn_b03:hover {}
a.btn_admin {display:inline-block;background:#ff0000;color:#fff;font-size:16px;text-decoration:none;vertical-align:middle;line-height:40px;width:40px;text-align:center;} /* 관리자 전용 버튼 */
a.btn_admin:focus, a.btn_admin:hover  {color:#fff;}

/* 기본테이블 */
.tbl_wrap {margin:0 10px 10px}
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_wrap caption {padding:10px 0;color:#4b8b99;font-weight:bold;text-align:left}

.tbl_head01 {}
.tbl_head01 caption {padding:0 0 10px;color:#777;text-align:left}
.tbl_head01 thead th {padding:12px 0;border:1px solid #cacaca;background:#d9d9da;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head01 thead a {color:#383838}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th {border-top:1px solid #666;border-bottom:1px solid #666;background:#484848;color:#fff}
.tbl_head01 tfoot td {border-color:#e3e3e5;background:#484848;color:#fff;font-weight:bold;text-align:center}
.tbl_head01 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
.tbl_head01 td {padding:5px;border:1px solid #e3e3e5;line-height:1.5em;word-break:break-all}

.tbl_head02 {}
.tbl_head02 caption {padding:0 0 10px;color:#777;text-align:left}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th {border-top:1px solid #666;border-bottom:1px solid #666;background:#484848;color:#fff}
.tbl_head02 tfoot td {background:#484848;color:#fff;font-weight:bold;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;line-height:1.4em;word-break:break-all}

/* 기본리스트 */
.list_01{padding:0 10px;}
.list_01 li{background:#fff;border-radius:3px;padding:10px 0px;border-bottom:1px solid #eee;}

/* 기본폼 */
.form_01{margin:10px}
.form_01 .write_div{margin:5px 0;position:relative}
.form_01 li{margin:5px 0;position:relative;list-style:none}
 textarea, .frm_input {border:1px solid #d7d7d7;background-color:#fff;color:#000;vertical-align:middle;padding:0 10px;height:40px;}
textarea {width:100%;height:200px;padding:10px}
textarea:focus, .frm_input:focus{outline:none;border:1px solid var(--bright-color);}
.frm_input {height:40px;}
.full_input{width:100%} 
.form_01 .frm_file {display:block;margin-bottom:5px;width:100%}
.form_01 select{height:40px;border-radius:3px;background-color:#fff}
.form_01 .frm_info{font-size:0.92em;color:#4162ff;text-align:left;margin:3px 0 10px;display:block;line-height:1.3em}

/* 자료 없는 목록 */
.empty_table {padding:100px 0 !important;color:#777;text-align:center}
.empty_list {width:100%; padding:30px 0 !important;text-align:center}

/* 필수입력 */
.required, textarea.required {background-image:url('../img/require.png')  !important;background-repeat:no-repeat   !important;background-position:right top  !important;}

/* 테이블 항목별 정의 */
.td_board {width:120px;text-align:center}
.td_category {width:80px;text-align:center}
.td_chk {width:30px;text-align:center}
.td_date {width:60px;text-align:center}
.td_datetime {width:150px;text-align:center}
.td_group {width:100px;text-align:center}
.td_mb_id {width:100px;text-align:center}
.td_mng {width:80px;text-align:center}
.td_name {width:100px;text-align:left}
.td_nick {width:100px;text-align:center}
.td_num {width:50px;text-align:center}
.td_numbig {width:80px;text-align:center}
.td_stat {width:60px;text-align:center}

.txt_active {color:#5d910b}
.txt_done {color:#e8180c}
.txt_expired {color:#999}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {}
.new_win #win_title {font-size: 1.2em;font-weight: bold;height: 50px;padding: 10px;line-height: 30px;
-webkit-box-shadow:  2px 2px 5px #eee;
-moz-box-shadow:  2px 2px 5px #eee;
box-shadow: 2px 2px 5px #eee
}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win_con{margin:20px}

.new_win .win_ul {margin:20px}
.new_win .win_ul li {display:inline-block;}
.new_win .win_ul li a {display: block;line-height: 24px;padding: 0 10px;}
.new_win .win_ul li .selected {background: #4162ff;color: #fff;border-radius: 13px;
-webkit-box-shadow: 0 0 5px rgba(65,98,255,0.8);
-moz-box-shadow: 0 0 5px rgba(65,98,255,0.8);
box-shadow: 0 0 8px rgba(65,98,255,0.8);}

.new_win .win_desc {margin:5px 0;font-size:0.92em;color:#4162ff}
.new_win .win_btn {clear:both;margin:10px 0;text-align:center}
.new_win .win_btn a {display:inline-block;height:40px;line-height:40px;font-weight:bold}
.new_win .win_btn .btn_close {display:inline-block;padding:0 10px;border:0;background:#c6c6d2;color:#666;text-decoration:none;font-weight:bold;height:40px;margin:10px 0}
.new_win .win_btn .btn_submit {width:100%;height:40px;line-height:40px;;margin:0 0 20px;display:inline-block;font-weight:bold}

/* 검색결과 색상 */
.sch_word {color:#00c4ac}

/* 사이드뷰 */
.sv_wrap {display:inline-block;position:relative;font-weight:normal;line-height:20px}
.sv_wrap .sv {z-index:1000;width:100px;display:none;margin:5px 0 0;font-size:0.92em;background:#333;text-align:left;
-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);}
.sv_wrap .sv:before{content: "";position: absolute;top: -6px;left: 15px;width: 0;height: 0;border-style: solid;border-width: 0 6px 6px 6px;border-color: transparent transparent #333 transparent;}
.sv_wrap .sv a {display:inline-block;width:100px;margin:0;padding:0  10px;line-height:30px;font-weight:normal;color:#bbb }
.sv_wrap .sv a:hover{background:#000;color:#fff}
.sv_member{color:#333;font-weight:300;margin-right:10px}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;margin:30px 0;text-align:center}
.pg {display:inline-block }
.pg_page, .pg_current {display:inline-block;padding:0 13px;height:35px;color:#959595;line-height:35px;vertical-align:middle}
.pg a:focus, .pg a:hover {text-decoration:none;background-color:#f8f8f8; }
.pg_page {background:#eee;}
.pg_start {background:url(../img/btn_first.gif) no-repeat 50% 50% #eee;width:35px;height:35px ;text-indent:-999px;overflow:hidden}
.pg_prev {background:url(../img/btn_prev.gif) no-repeat 50% 50% #eee;width:35px;height:35px ;text-indent:-999px;overflow:hidden}
.pg_next {background:url(../img/btn_next.gif) no-repeat 50% 50% #eee;width:35px;height:35px ;text-indent:-999px;overflow:hidden}
.pg_end {background:url(../img/btn_end.gif) no-repeat 50% 50% #eee;width:35px;height:35px ;text-indent:-999px;overflow:hidden}
.pg_current {display:inline-block;background:#494949;color:#fff;font-weight:normal;line-height:35px;}

/***** 페이지 *****/
#sub {font-size:1.43em; overflow:hidden; color:#888;}
#sub .ct_area {margin:0 auto;}
#sub p {color:#666; word-break:keep-all;}
#sub .ct_tit {font-size:1.5em; font-weight:600; color:#444; margin-bottom:30px;}
#sub h3,
#sub h4 {font-family:'BookkMyungjo', serif; font-weight:normal; }
.mt80 {margin-top:80px;}
.flex_div {display:flex;}


/***** 회사소개 *****/
#sub.company {word-break:keep-all;}
#sub.company h3 {font-size:3.5em; color:var(--dark-color);}
#sub.company .intro {text-align:center;}
#sub.company .intro h4 {font-size:1.2em; letter-spacing:0.5em; color:#888; }
#sub.company .intro h3 {font-size:2em; color:#444; margin:30px auto 60px;}
#sub.company .intro .map {margin-top:10px;}
#sub.company .sec01 {margin:80px auto 180px;}
#sub.company .sec01 .flex_div {align-items:flex-end;}
#sub.company .sec01 .img {width:60%;}
#sub.company .sec01 .img img {width:100%;}
#sub.company .sec01 h3 { width:40%; text-align:right;  padding:60px;}
#sub.company .sec01 .txt {text-align:right; padding:60px; padding-left:20%; word-break:keep-all;}
#sub.company .sec02 h3 { padding:60px; padding-top:80px;}
#sub.company .sec02 .txt {padding:0 20% 180px 60px;}
#sub.company .sec03 {background-color:var(--dark-color); color:#fff; text-align:center; padding:120px 0;}
#sub.company .sec03 h3 {font-size:1.8em; color:#fff;}
#sub.company .sec03 .flex_div:before {width:120px; border-top:1px solid rgba(255,255,255,0.55); content:""; position:absolute; top:0; left:50%; margin-left:-60px;}
#sub.company .sec03 .flex_div { position:relative; justify-content:center; padding-top:40px; margin-top:60px;}
#sub.company .sec03 .flex_div .ce, 
#sub.company .sec03 .flex_div .iso { display:flex; align-items:center; margin:20px; text-align:left;}
#sub.company .sec03 .flex_div .txt {margin-left:40px;}
#sub.company .sec04 {width:calc(100% - 120px); margin:120px auto;}
#sub.company .sec04 .img_area {margin-bottom:80px;}
#sub.company .sec04 .img_area .img:last-child { text-align:right; margin-top:-200px; }
#sub.company .sec04 .txt {width:60%; margin:60px 0;}
#sub.company .sec04 .test_img_area {display:flex; margin-bottom:20px;}
#sub.company .sec04 .test_img_area .img {margin-right:20px;}
#sub.company .sec04 .test_img_area:last-child {justify-content:flex-end;}
#sub.company .sec04 .test_img_area:last-child .img:last-child{margin-right:0;}
#sub.company .sec05 {width:100%; background:url('/img/page/com_bg.jpg') 50% 50% no-repeat; background-size:cover; padding:12.5em 0; text-align:center; color:#fff;}
#sub.company .sec05 img { filter:brightness(0) invert(1); max-width:80px; margin-bottom:40px;}
#sub.company .sec05 h3 {font-size:1.8em; line-height:160%; color:#fff;}
/* 작은모니터 */
@media (max-width: 1279px){
	#sub.company .sec04 .img_area .img img {width:65%;}
	#sub.company .sec04 .img_area .img:last-child {margin-top:-140px;}
	#sub.company .sec04 .test_img_area {justify-content:space-between !important;}
	#sub.company .sec04 .test_img_area .img {width:32%; margin:0 !important;}
}
/* 태블릿 */
@media (max-width: 1023px){	
	#sub.company h3 {font-size:2.7em;}
}
/* 모바일 */
@media (max-width: 729px){
	.flex_div {flex-wrap:wrap;}	
	#sub.company {font-size:1.29em;}
	#sub.company .sec01 .img,
	#sub.company .sec01 h3 {width:100%;}
	#sub.company .sec01 .txt { padding-top:0; padding-left:60px;}
	#sub.company .sec01 {margin-bottom:60px;}
	#sub.company .sec02 .txt {padding-right:60px;}
	#sub.company .sec03 .flex_div .ce, 
	#sub.company .sec03 .flex_div .iso {min-width:360px;}
	#sub.company .sec03 .flex_div .img {min-width:120px; text-align:center;}
	#sub.company .sec04 .img_area .img img {width:100%;}
	#sub.company .sec04 .img_area .img:last-child {margin-top:20px;}
	#sub.company .sec04 .txt {width:100%;}
	#sub.company .intro h3,
	#sub.company .sec01 h3,
	#sub.company .sec02 h3,
	#sub.company .sec03 h3,
	#sub.company h3 {line-height:160%;}
}
/* 작은모바일 */
@media (max-width: 499px){
	#sub.company {font-size:1.14em;}
	#sub.company h3,
	#sub.company .intro h3 {font-size:1.63em;}
	#sub.company .intro h4 {font-size:0.75em;}
	#sub.company .intro h3 {margin:20px auto;}
	#sub.company .intro .flag {width:60%; margin:0 auto 30px;}
	#sub.company .sec01 h3,
	#sub.company .sec02 h3 {padding:60px 30px 40px;}
	#sub.company .sec01 .txt,
	#sub.company .sec02 .txt {padding:0 30px 20px;}
	#sub.company .sec02 .txt {padding-bottom:60px;}
	#sub.company .sec03 {padding:60px 0;}
	#sub.company .sec03 h3,
	#sub.company .sec03 .flex_div { width:90%; margin:0 auto;}
	#sub.company .sec03 h3 {font-size:1.13em; margin-bottom:40px;}
	#sub.company .sec03 .flex_div .ce, 
	#sub.company .sec03 .flex_div .iso,
	#sub.company .sec03 .flex_div .img {min-width:auto;flex-wrap:wrap; justify-content:center; text-align:center;}
	#sub.company .sec03 .flex_div img {width:60px;}
	#sub.company .sec03 .flex_div .txt { width:100%; margin-left:0px; margin-top:20px; font-size:1em; }
	#sub.company .sec04 {width:calc(100% - 60px); margin:60px auto;}
	#sub.company .sec04 .img_area {margin-bottom:40px;}
	#sub.company .sec04 .txt {margin:30px 0;}
	#sub.company .sec05 { padding:4em 0; }
	#sub.company .sec05 h3 {font-size:1em; width:90%; margin:0 auto;}
	#sub.company .sec05 img {max-width:50px;}
}