@charset "utf-8";
/* *******************************************************
 * filename : layout.css
 * description : 전체 레이아웃 CSS
 * date : 2021-11-02
******************************************************** */

/*@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');*/

/* ****************** LAYOUT ********************** */
::selection {
    background: #555;   
    color: #fff;
}
::-moz-selection {
    background: #555;    
    color: #fff;
}
body, table, th, td, button, select, input, br {
	font-family: 'Poppins', 'IBM Plex Sans', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;
	font-size:13px;
	color:#666;
	-webkit-text-size-adjust:none;
	word-break:keep-all;
}
body { background-color:#fff; }
table, th, td{word-break:break-word;}
#wrap {overflow:hidden; width:100%; min-width:320px; position:relative; }
.area{ max-width:1400px; margin:0px auto;} /* width 홈페이지 컨텐츠 가로값에 맞게 변경 */
.area_box{ /* max-width:1520px; */ margin:0px auto; padding: 0 10.4%;}
.area_wide{ /* max-width:1720px; */ margin:0px auto; padding:0 5.2%;}
.font_ibm{font-family: 'IBM Plex Sans', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}
.font_poppins{font-family: 'Poppins', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}
.font_noto{font-family: 'Poppins', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}
.font_noto_only{font-family: 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}
.font_noto_sc{font-family: 'Noto Sans SC', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}

/* Fullpage Layout */
.fullpage_html{overflow:hidden; height:100%;}
.fullpage_html #wrap{position:static;}

/* ****************** HEADER ********************** */
#header{
	position:relative; height:100px; top:0; left:0; width:100%; z-index:9999; -webkit-transition: top 0.3s, height 0.3s; transition: top 0.3s, height 0.3s;
}
.fullpage_html #header{position:fixed;}
#headerInnerWrap{
	position:absolute; top:0px; left:0px; width:100%; height:100px; z-index:9999; 
	-webkit-transition: height 0.3s;
	transition: height 0.3s;
}
#headerInner{position:relative; height:100%; margin:0px auto; padding:0 5.2%; -webkit-transition: padding 0.3s; transition: padding 0.3s;}
#header .logo{position:relative; z-index:100; float:left; padding-top:40px; -webkit-transition: padding 0.3s; transition: padding 0.3s;}
#header .logo a{display:block;}
#header .logo svg{width: 120px; height: 20px; display:block; vertical-align:top;}

/* -------- Header :: UTIL BOX -------- */
.header_util_box{position:absolute; top:50%; right:5.2%; margin-top:-20px; z-index:100; -webkit-transition: all 0.3s; transition: all 0.3s;}

/* Header :: IR Book 다운로드 */
.header_download_btn {position:relative; float:left; width:120px; height:40px; padding:0 20px; font-size:13px; line-height: 40px; color:#000; background-color: #f7f7f7; border:1px solid #e5e5e5; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-border-radius: 40px; border-radius: 40px; -webkit-transition: all 0.3s; transition: all 0.3s;}
.header_download_btn i{position:absolute; top:50%; margin-top: -11px; right:10px; font-size: 22px;}
.header_download_btn:hover{background-color: #22a9fd; border-color: #22a9fd; color: #fff;}

/* Header :: 언어선택 */
.header_lang {margin-left:10px; position:relative; float:left; width:120px; height:40px; z-index:100;}
.header_lang .lang_open_btn {overflow:hidden; position:relative; display:block; width:100%; text-align:left; height:100%; padding:0 20px; font-size:13px; line-height: 40px; border:1px solid #e5e5e5; background-color: #f7f7f7;  color:#000; -webkit-border-radius: 40px; border-radius: 40px; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.3s; transition: all 0.3s;}
.header_lang .lang_open_btn .arrow{position:absolute; top:0px; right:10px;}
.header_lang .lang_open_btn .arrow i{font-size:22px; margin-top: -2px; display:inline-block; vertical-align: middle;}
.header_lang > ul {display:none; position:absolute; top:38px; left:-1px; z-index:10; width:100%;}
.header_lang > ul > li{padding-top: 7px;}
.header_lang > ul > li > a{display:block; padding:0 20px; font-size:13px; line-height: 38px; color:#000; border:1px solid #e5e5e5; background-color:#f7f7f7; -webkit-border-radius: 40px; border-radius: 40px; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.3s; transition: all 0.3s;}
.header_lang > ul > li > a span{position: relative; display: inline-block;}
.header_lang > ul > li > a span:before{position: absolute; bottom: 10px; left: 0; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd;  -webkit-transition: all 0.3s; transition: all 0.3s;}
.header_lang.open .lang_open_btn .arrow i{transform:rotate(180deg); margin-top:-3px;}

.lang_open_btn:hover{background-color: #22a9fd; border-color: #22a9fd; color: #fff;}
.header_lang > ul > li > a:hover{color: #22a9fd;}
.header_lang > ul > li > a:hover span:before{width: 100%;}

/* -------- Header :: GNB(PC) -------- */
.gnb_overlay_bg{position:fixed; top:0; left:0; width:100%; height:100%; visibility:hidden; opacity:0;filter:Alpha(opacity=0); background:rgba(0,0,0,0.7); z-index:9997;  -webkit-transition:all 0.3s; transition:all 0.3s; }	/* gnb overlay BG */
.gnb_overlay_bg.open{visibility:visible; opacity:1.0;filter:Alpha(opacity=100);}
#gnb{position:absolute; text-align:center; top:0; left:0px; width:100%; z-index:99;}
#gnb > ul{width: 100%; padding: 0 14.58%; -webkit-box-sizing: border-box; box-sizing: border-box; *display:inline;*zoom:1;}
#gnb > ul > li{position:relative; float:left; word-break:keep-all;}

/* (start)20250617 */
#gnb > ul > li > a{position:relative; z-index:100; display: flex; flex-direction: column; justify-content: center; height:100px; /*padding-right: 55px;*/ padding-right: 75px; text-align: left; color:#333; font-size:15px; line-height: 1.3; letter-spacing:-0.15px; font-weight: 600; -webkit-transition:color 0.3s, height 0.3s; transition:color 0.3s, height 0.3s;}
#gnb > ul > li.gnb3 > a{padding-right: 90px;}
/*#gnb > ul > li.gnb7 > a{padding-right: 70px;}*/
/* //(end)20250617 */
#gnb > ul > li > a br{display: none;}
#gnb > ul > li > a:before {
	content:""; position:absolute; left:0; bottom:-1px; width:0; left:0; height:1px; background-color:#22a9fd; 
	-webkit-transition:all 0.3s;transition:all 0.3s; z-index:10;
}
#gnb > ul > li.on > a:before {width:50px;}
#gnb > ul > li > a:hover,
#gnb > ul > li > a:focus,
#gnb > ul > li.active > a,
#gnb > ul > li.on > a{color:#22a9fd;}

/* GNB :: 2차 전체메뉴 */
#gnbBg{
	overflow:hidden; position:absolute; left:0; top:0px; width:100%; height:0; background:#fff; z-index:98;
	opacity:0;filter:Alpha(opacity=0);
	-webkit-transition:height 0.3s ease-in-out, opacity 0.2s ease-in-out;
	transition:height 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
#gnbBg:after{position:absolute; top:100px; width:100%; left:0; height:1px; background-color:#eee; content:""; -webkit-transition: top 0.3s; transition:  top 0.3s;}
#gnb.total_menu > ul > li .gnb_2dep{
	position:absolute; 
	top:100px; 
	left:0px; 
	z-index:99;
	width:100%; 
	text-align:left; 
	opacity:0;filter:Alpha(opacity=0);
	height:0;
	-webkit-transition: all 0.2s 0s;
    transition: all 0.2s 0s;
	visibility:hidden;
}
#gnb.total_menu > ul > li .gnb_2dep ul{padding:20px 0px;}
#gnb.total_menu > ul > li .gnb_2dep ul li{position:relative;}
#gnb.total_menu > ul > li .gnb_2dep ul li a{display:block; padding:10px 0; color:#aaa; font-size:15px; letter-spacing:-0.25px; font-weight:400; line-height:1.3; -webkit-transition:all 0.3s; transition:all 0.3s;}
#gnb.total_menu > ul > li .gnb_2dep ul li a span{display: inline-block; position: relative;}
#gnb.total_menu > ul > li .gnb_2dep ul li a span:before{position: absolute; bottom: -5px; left: 50%; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd; -webkit-transition: all 0.3s; transition: all 0.3s;}
#gnb.total_menu > ul > li .gnb_2dep ul li a:hover span:before{width: 100%; left: 0;}
#gnb.total_menu > ul > li.on .gnb_2dep ul li a{color: #000;}
#gnb.total_menu > ul > li.on .gnb_2dep ul li a:hover{color:#22a9fd;}


/* GNB :: 2차메뉴 Over (높이변경) */
#gnb.open #gnbBg{height:350px; opacity:1.0;filter:Alpha(opacity=100);}
#gnb.open > ul > li .gnb_2dep{
	height:250px; opacity:1.0;filter:Alpha(opacity=100);
	visibility:visible;
	-webkit-transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out 0.2s;
}

/* -------- Header :: sub ver. -------- */
.sub_wrap #header{background-color: #fff;}
.sub_wrap #header.top_fixed{height: 100px;}
.sub_wrap #header .logo{-webkit-transition: padding-top 0.3s; transition: padding-top 0.3s;}
.sub_wrap #headerInnerWrap,
.sub_wrap #gnb > ul > li > a{background-color: #fff; -webkit-transition: height 0.3s; transition: height 0.3s;}
.sub_wrap #header.top_fixed .logo{-webkit-transition: padding-top 0.3s; transition: padding-top 0.3s;}
.sub_wrap #header.top_fixed #headerInnerWrap,
.sub_wrap #header.top_fixed #gnb > ul > li > a{-webkit-transition: height 0.3s; transition: height 0.3s;}
.sub_wrap #headerInner{padding: 0 2.6%;}
.sub_wrap .header_util_box{right: 2.6%;}
.sub_wrap #gnb > ul{padding: 0 13.58%;}

/* -------- Header :: fixed ver. -------- */
#header.top_fixed{top: 0; height: 80px;}
#header.top_fixed #headerInnerWrap{position: fixed; height: 80px; background-color: #fff; border-bottom: 1px solid #eee;}
#header.top_fixed #headerInner{padding: 0 2.6%;}
#header.top_fixed .logo{padding-top: 30px;}
#header.top_fixed .header_util_box{right: 2.6%;}
#header.top_fixed #gnbBg:after{top: 80px;}
#header.top_fixed #gnb > ul > li > a{height: 80px;}
#header.top_fixed #gnb.total_menu > ul > li .gnb_2dep{top: 80px;}


/* -------- Header :: GNB(Mobile) -------- */
.nav_open_btn{display:none;}
#mobileGnbCon, #gnbM{display:none;/* background:#fff; */}/* (modify)20250617 */


/* ****************** FOOTER ********************** */
/* -------- FOOTER :: 레이아웃 -------- */
#footer{background-color:#fff;}
.sub_wrap #footer{border-top: 1px solid #eee;}
#footerInner{position:relative; }
.footer_left_con{float:left; }
.footer_right_con{float:right;}

/* Footer :: TOP버튼 */
.to_top_btn{
	position:fixed; bottom:-100px; right:15px; display:block; width:46px; height:46px; background-color:#fff; text-align:center; color:#333; z-index:99;
	border:1px solid #eee;
	box-sizing:border-box;
	opacity:0;filter:Alpha(opacity=0);
	-webkit-transition:all 0.6s;-moz-transition:all 0.6s;-o-transition:all 0.6s;-ms-transition:all 0.6s;transition:all 0.6s
	-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;border-radius:50%;
}
.to_top_btn.bottom_fixed{bottom:15px; opacity:1.0;filter:Alpha(opacity=100);}
.to_top_btn i{display:inline-block; font-size:16px; line-height:46px; transition:all 0.3s}
.to_top_btn:hover i{transform:translateY(-3px)}
#fullpage .to_top_btn{display:none;}

/* -------- FOOTER :: 상단 -------- */
#footerTop{padding:55px 0 25px; padding: 55px 0 40px;}
#footerTop .area_box{position: relative;}
#footerTop .footer_left_con{width: calc(100% - 450px);}
#footerTop .footer_right_con{margin-top: -15px; text-align: right;}

/* Footer :: 정보 style02 */
.footer_address_info_box{margin-bottom:15px; letter-spacing:-0.5px;}
.footer_address_list dl{display: block; font-size:15px; letter-spacing: -0.25px; line-height:1.66; color:#777;}
.footer_address_list dl dt,
.footer_address_list dl dd{vertical-align:top; display:inline-block;}
.footer_address_list dl dt{width: 80px;}
.footer_address_list dl dd{width: calc(100% - 85px);}
.footer_address_list a{color:inherit}

.foot_isms_img_info{position: static; bottom: 0; right: 10.4%; font-size: 0;}/* (modify)20231129 */
.foot_isms_img_info img{display:inline-block; vertical-align:middle; height: 41px;}
.foot_isms_img_info .info{margin-left: 20px; width: calc(100% - 65px); display:inline-block; vertical-align:middle; font-size: 0;}
.foot_isms_img_info .info dl{}
.foot_isms_img_info .info dl dt,
.foot_isms_img_info .info dl dd{vertical-align:top; display:inline-block; font-size: 15px; line-height: 1.66; letter-spacing: -0.75px; color: #777;}
.foot_isms_img_info .info dt{width: 160px;}
.foot_isms_img_info .info dd{width: calc(100% - 160px);}
.foot_isms_img_info .info.kr dt{width: 70px;}
.foot_isms_img_info .info.kr dd{width: calc(100% - 70px);}

.footer_info_txt{margin-top: 20px; font-size: 13px; line-height: 1.3; color: #bbb;}

/* Footer :: SNS 리스트 */
.foot_sns_menu{display:inline-block; vertical-align:middle;}
.foot_sns_menu li{display:inline-block; vertical-align:middle; margin-left:20px;}
.foot_sns_menu li:first-child{margin-left:0}
.foot_sns_menu li a{position: relative; display:block; color:#aaa; font-size: 13px; line-height:35px; letter-spacing: -0.75px; font-weight: 300; -webkit-font-smoothing: 300px; text-align:center; -webkit-transition: color 0.3s; transition: color 0.3s;}
.foot_sns_menu li a:before{position: absolute; bottom: 4px; left: 0; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd;  -webkit-transition: width 0.3s; transition: width 0.3s;}
.foot_sns_menu li a i{margin-right: 5px; font-size:24px; line-height:35px; font-weight: 400; display:inline-block; vertical-align:middle;}
.foot_sns_menu li a:hover{color: #22a9fd;}
.foot_sns_menu li a:hover:before{width: 100%;}

/* Footer :: 패밀리사이트 */
.family_site_box{margin-left: 30px; display:inline-block; vertical-align:middle; position:relative; width:180px; text-align:left; letter-spacing:-0.25px;}
.family_site_box .family_site_open_btn{display:block; width:100%; height:50px; line-height:50px; padding:0 20px; text-align:left; font-size:15px; background-color:#f7f7f7; color:#000; box-sizing:border-box; -webkit-border-radius: 50px; border-radius: 50px; -webkit-transition: all 0.3s; transition: all 0.3s;}
.family_site_box .family_site_open_btn:after{position:absolute; right:15px; top:50%; transform:translateY(-50%); font-size:24px; font-family: 'xeicon'; content:"\e942";}
.family_site_box.open .family_site_open_btn:after{content:"\e945";}
.family_site_list{position:absolute; bottom:100%; left:0px; width:100%; padding:10px 0; background-color:#f7f7f7; z-index:11; display:none; box-sizing:border-box; -webkit-border-radius: 15px; border-radius: 15px;}
.family_site_list a{display:block; padding:10px 20px; color:#000; font-size:12px; -webkit-transition: all 0.3s; transition: all 0.3s;}
.family_site_list a span{display: inline-block; position: relative;}
.family_site_list a span:before{position: absolute; bottom: -4px; left: 0; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd;  -webkit-transition: all 0.3s; transition: all 0.3s;}
.family_site_box .family_site_open_btn:hover{background-color: #22a9fd; color: #fff;}
.family_site_list a:hover{color: #22a9fd;}
.family_site_list a:hover span:before{width: 100%;}


/* -------- FOOTER :: 하단 -------- */
#footerBottom{}
#footerBottom .area_box{padding-top: 28px; padding-bottom: 28px; border-top: 1px solid #eee;}

/* Footer :: 푸터메뉴 */
.foot_menu{}
.foot_menu > li{margin-right: 25px; float:left; position:relative;}
.foot_menu > li:last-child{margin-right: 0;}
.foot_menu > li > a{position: relative; font-size:13px; line-height:1.8; padding-right:36px; letter-spacing:-0.5px; color:#777; -webkit-transition: color 0.3s; transition: color 0.3s;}
.foot_menu > li > a:after{position: absolute; bottom: -4px; left: 0; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd;  -webkit-transition: width 0.3s; transition: width 0.3s;}
.foot_menu > li:first-child > a{color:#22a9fd;}
.foot_menu > li:last-child > a{padding-right:0;}
.foot_menu > li > a:before{position:absolute; top:50%;	right: 0; margin-top:-12px; font-size: 20px; display: inline-block; content: "\e931";} 
.foot_menu > li:last-child > a:before{display:none;}
.foot_menu > li > a:hover{color: #22a9fd;}
.foot_menu > li > a:hover:after{width: 100%;}

.cm_modal_open_box{display:inline-block; vertical-align:middle; position:relative; text-align:left; letter-spacing:-0.5px;}
.cm_modal_open_box .cm_modal_open_btn{display:block; position: relative; font-size:13px; line-height:1.6; padding-right:36px; letter-spacing:-0.5px; color:#777; -webkit-transition: color 0.3s; transition: color 0.3s; text-align: left;}
.cm_modal_open_box .cm_modal_open_btn:after{position: absolute; bottom: -4px; left: 0; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd;  -webkit-transition: width 0.3s; transition: width 0.3s;}
.cm_modal_open_box .cm_modal_open_btn:before{position:absolute; top:-6px; right: 0; font-size: 20px; display: inline-block; content: "\e931";}
.cm_modal_open_box.open .cm_modal_open_btn:before{content: '\e937';}
.cm_modal_list{position:absolute; bottom:100%; left:0px; width:100%; padding:10px 0; border: 1px solid #ddd; background-color:#fff; z-index:11; display:none; box-sizing:border-box; -webkit-border-radius: 10px; border-radius: 10px;}
.cm_modal_list a{display:block; padding:10px 15px; color:#000; font-size:12px; line-height: 1.3;  -webkit-transition: all 0.3s; transition: all 0.3s;}
.cm_modal_list a span{display: inline-block; position: relative; -ms-word-break: break-all; word-break: break-all;}
.cm_modal_list a span:before{position: absolute; bottom: -4px; left: 0; display: block; content: ''; width: 0; height: 1px; background-color: #22a9fd;  -webkit-transition: all 0.3s; transition: all 0.3s;}

.cm_modal_open_box .cm_modal_open_btn:hover{color: #22a9fd;}
.cm_modal_open_box .cm_modal_open_btn:hover:after{width: 100%;}
.cm_modal_list a:hover{color: #22a9fd;}
.cm_modal_list a:hover span:before{width: 100%;}


/* Footer :: Copyright */
.footer_copyright{margin-top: 10px; font-size:15px; line-height: 24px; letter-spacing:-0.25px; color: #666;}
.footer_copyright b{color:#22a9fd; font-weight: 400;}


/* ****************** SUB LAYOUT ********************** */
/*  SUB LAYOUT :: 비주얼 */
#visual{position:relative; overflow:hidden; width:100%; height:200px; background-color: #f7f7f7;}
#visual .visual_txt_con{position:relative; z-index:1; display:table; width:100%; height:100%; letter-spacing:-0.5px; -webkit-box-sizing: border-box; box-sizing: border-box;}
#visual .visual_txt_container{position:relative; width:100%; }
#visual .visual_tit,
#visual .visual_sub_txt,
#visual .location{
	opacity:0;filter:Alpha(opacity=0);
	-webkit-transition:opacity 1.0s, transform 1.0s;
	transition:opacity 1.0s, transform 1.0s;
}
#visual .visual_tit{
	position: relative; display: inline-block; vertical-align: middle;
	font-size:50px; font-weight:600; color:#222;	
}
#visual .visual_tit:before{position: absolute; top: -8px; right: -10px; display: block; content: ''; width: 10px; height: 10px; background-color: #22a9fd; -webkit-border-radius: 100%; border-radius: 100%;}
#visual .visual_sub_txt{
	padding-left: 30px; display: inline-block; vertical-align: middle;
	font-size:15px; line-height: 1.6; letter-spacing: -0.25px; color: #666;
}

/* SUB LAYOUT :: 상단효과 active */
#visual.active .visual_tit,
#visual.active .visual_sub_txt,
#visual.active .location{
	opacity:1.0;filter:Alpha(opacity=100);
}

/* SUB LAYOUT :: 위치정보(location) */
.location{position: absolute; bottom: 20px; right: 0; overflow:hidden;}
.location li{display:inline-block; vertical-align:middle; color:#aaa; font-size:15px; letter-spacing:-0.25px; font-family: 'Poppins', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}
.location li:last-child{font-family: 'IBM Plex Sans', 'Noto Sans KR', "나눔고딕", NanumGothic, "Nanum Gothic","돋움", Dotum, Arial, sans-serif;}
.location li a{color:inherit;}
.location li i{font-size:18px; margin-top:-2px;}
.location li:before{font-family: 'xeicon'; display:inline-block;content: "\e93f"; position:relative; top:-1px; vertical-align:middle; margin:0px 10px 0 8px; color:#aaa; font-size:16px;}
.location li:first-child:before{display:none;}


/*  SUB LAYOUT :: PC메뉴 */
#topMenu{position:relative; width:100%;height:50px;}
#topMenu .side_menu_inner{text-align:center; width:100%; height:49px; border-bottom:1px solid #eee; background-color: #fff;}
#topMenu .side_menu_inner ul{display:flex; align-items:center; justify-content:center;}
#topMenu .side_menu_inner ul li{margin: 0 40px; float:left; max-width:200px;} /* max-width 자유롭게 수정 */
#topMenu .side_menu_inner ul li > a{
	display:block; 
	display:table; 
	position:relative;
	width:100%;
	height:49px; 
	line-height:1.2; 
	color:#000; 
	font-size:18px; 
	letter-spacing:-0.5px; 
	font-weight:400; 
	word-break:keep-all;
	-webkit-transition:all 0.4s;
	transition:all 0.4s;
}
#topMenu .side_menu_inner ul li > a:before{
	position:absolute;
	bottom:-1px;
	left:50%;
	width:0;
	height:2px;
	background-color:#22a9fd;
	content:"";
	-webkit-transition:all 0.4s;
	transition:all 0.4s;
}
#topMenu .side_menu_inner ul li > a > span{display:table-cell; vertical-align:middle;}
#topMenu .side_menu_inner ul li > a:hover, 
#topMenu .side_menu_inner ul li.on > a{color:#22a9fd;}
#topMenu .side_menu_inner ul li > a:hover:before, 
#topMenu .side_menu_inner ul li.on > a:before{width:100%; margin-left:-50%;}

/* SUB LAYOUT :: 서브메뉴 Fixed (공통) */
@media all and (min-width:1025px){
	.fixed_sub_menu.top_fixed .side_menu_inner{position:fixed; top:80px; left:0px; z-index:9998;}
	.fixed_sub_menu .side_menu_inner:before{position:absolute; top:0px; left:50%; width:0; content:""; background-color:#fff; border-top:1px solid #eee; transition:all 0.5s}
	.fixed_sub_menu.top_fixed .side_menu_inner:before{width:100%; margin-left:-50%}
}

/* SUB LAYOUT :: 모바일메뉴(공통)  */
#topMenuM02{display:none;}
#topMenuM03{display:none;}

/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
#content:not(.wide){padding-top: 100px; padding-bottom: 150px;}
#content.wide{padding-top: 100px;}



/* ****************** MODAL LAYERPOPUP ********************** */
/* modal layer */
.modal_fixed_pop_wrapper{display:none; overflow-y:scroll; overflow-x:hidden;  position:fixed; top:0px; left:0px; width:100%; height:100%; z-index:9999; background:#000; background:rgba(0,0,0,0.8);}
.modal_fixed_pop_inner{position:absolute; display:table; width:100%; height:100%; text-align:center;}
.modal_inner_box{ position:relative; display:table-cell; vertical-align:middle;}
.modal_loading{position:absolute; top:50%; left:50%; margin:-25px 0 0 -25px; z-index:10000;}
.modal_inner_content{text-align:left;}
.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 8px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
/* modal layer content */
.footer_modal_content{position:relative; width:96%; max-width:1000px; margin:20px auto; background-color:#fff; }
.footer_modal_content h1{height:60px; line-height:60px; font-size:24px; font-weight:600; letter-spacing:-0.5px; text-align:center; padding:0; background-color:#3389ff; color:#fff;}
.modal_close_btn{position:absolute; top:11px; right:10px; color:#fff; }
.modal_close_btn i{font-size:38px;}
.modal_close_btn i:hover {color:#fff}
.footer_inner_box{padding:30px; }
.footer_inner{padding:20px; height:400px; overflow-y:auto; overflow-x:hidden; border:1px solid #ddd; }

@media all and ( max-width: 800px ){
	/* modal layer content */
	.footer_modal_content h1{height:46px; line-height:46px; font-size:18px; text-align:left; padding:0 15px}
	.modal_close_btn i{font-size:24px}
	.footer_inner_box{padding:15px}
	.footer_inner{padding:10px; height:250px;}
}

/* ****************** 공통 :: svg ********************** */
.draw_svg_icon{width:100%; height:100%; display: block;}
.draw_svg_icon *{fill:none; stroke-linecap:round; stroke-linejoin:round; stroke-width:0.5px; stroke:url(#cm-linear-gradient);}