@charset "utf-8";

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {font-family: 'GmarketSansBold';src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');font-weight: normal;font-style:normal;}

.nanumgothic * {font-family: 'Nanum Gothic', sans-serif;} 
.nanumsquare { font-family: 'NanumSquare', sans-serif !important; }
.taom { font-family: 'BinggraeTaom', sans-serif !important; }
.goyang { font-family: 'GoyangDeogyang', sans-serif !important; }
.notosans { font-family: 'Noto Sans KR', sans-serif; }
.scoredream_el { font-family: 'S-CoreDream-2ExtraLight', sans-serif; }
.scoredream_r { font-family: 'S-CoreDream-4Regular', sans-serif; }
.scoredream_b { font-family: 'S-CoreDream-6Bold', sans-serif; }
.scoredream_eb { font-family: 'S-CoreDream-7ExtraBold', sans-serif; }
.scoredream_hvy { font-family: 'S-CoreDream-8Heavy', sans-serif; } 
.scoredream_bl { font-family: 'S-CoreDream-9Black', sans-serif; }


/* 초기화 */
html {overflow-y:scroll;height:100%;min-width:320px; scroll-behavior: smooth; }

body {margin:0;padding:0;height:100%;font-family:'SUIT', SUIT, 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}
#hd ul, nav ul, #ft ul {margin:0;padding:0;list-style:none}
ul,li,ol{list-style:none;padding:0;margin:0}
legend {position:absolute;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle}
input, button {margin:0;padding:0;font-size:1em}
button , input[type=submit]{cursor:pointer}
input[type=text], input[type=password], input[type=submit], input[type=image], button {font-size:1em;-webkit-appearance:none;}
textarea, select {font-size:1em;font-family:dotum}
textarea {border-radius:0;-webkit-appearance:none}
select {margin:0}
p {margin:0;padding:0;word-break:break-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a:link, a:visited {text-decoration:none}
a:hover, a:focus, a:active {text-decoration:none}


/* 이미지 마우스 오버 */
.imgswap img:first-child {display:inline-block; }
.imgswap img:last-child {display:none; }
.imgswap:hover img:first-child {display:none;  animation:opacity_img_revers 1s }
.imgswap:hover img:last-child {display:inline-block;  animation:opacity_img 1s }
@keyframes opacity_img {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes opacity_img_revers {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

.imghover img:hover {-webkit-filter: grayscale(80%); filter: grayscale(80%); }

.img_scale img:hover { animation:pingpong_img 0.4s forwards }
.img_scale img:not(:hover) { animation:pingpong_img_revers 0.4s forwards  }
@keyframes pingpong_img {
	0% {
		transform:scale(1);             /*  default */
		-webkit-transform:scale(1);  /*  크롬 */
		-moz-transform:scale(1);     /* FireFox */
		-o-transform:scale(1);        /* Opera */
	}
	100% {
		transform:scale(1.05);             /*  default */
		-webkit-transform:scale(1.05);  /*  크롬 */
		-moz-transform:scale(1.05);     /* FireFox */
		-o-transform:scale(1.05);        /* Opera */
	}
}
@keyframes pingpong_img_revers {
	0% {
		transform:scale(1.05);             /*  default */
		-webkit-transform:scale(1.05);  /*  크롬 */
		-moz-transform:scale(1.05);     /* FireFox */
		-o-transform:scale(1.05);        /* Opera */
	}
	100% {
		transform:scale(1);             /*  default */
		-webkit-transform:scale(1);  /*  크롬 */
		-moz-transform:scale(1);     /* FireFox */
		-o-transform:scale(1);        /* Opera */
	}
}

.text_enter:hover { animation:text_enter_event 0.7s forwards }
/*.text_enter:not(:hover) { animation:text_enter_event_revers 0.4s forwards  }*/
@keyframes text_enter_event {
	0% {opacity: 1;}
	50% {opacity: 0.6;}
	100% {opacity: 1;}
}
@keyframes text_enter_event_revers {
	0% {opacity: 1;}
	50% {opacity: 0.6;}
	100% {opacity: 1;}
}

.img_moving img { animation:mbottom 4s ease-in Infinite Alternate; }
@keyframes mbottom {
	0% {
		margin-bottom:  0px;
	}
	25% {
		margin-bottom: -15px;
	}
	50% {
		margin-bottom: -0px;
	}
	75% {
		margin-bottom: 15px;
	}
	100% {
		margin-bottom: 0px;
	}
}
.img_moving2 img { animation:mright 4s ease-in Infinite Alternate; }
@keyframes mright {
	0% {
		margin-right:  0px;
	}
	25% {
		margin-right: 5px;
	}
	50% {
		margin-right: 0px;
	}
	75% {
		margin-right: -5px;
	}
	100% {
		margin-right: 0px;
	}
}
.img_moving3 img { animation:mleft 3s ease-in Infinite Alternate; }
@keyframes mleft {
	0% {
		margin-left:  0px;
	}
	25% {
		margin-left: 10px;
	}
	50% {
		margin-left: 0px;
	}
	75% {
		margin-left: 10px;
	}
	100% {
		margin-left: 0px;
	}
}





/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;width:100%;height:1px}
#hd_pop h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff;}
.hd_pops_con {width:100% !important;overflow:auto}
.hd_pops_footer {padding:10px 0;background:#000;color:#fff;text-align:right}
.hd_pops_footer button {margin-right:5px;padding:5px 10px;border:0;background:#393939;color:#fff}

/* 상단 레이아웃 */
#hd {width:100%;background:#fff;position:relative;}
#hd #hd_wr{max-width:1000px;margin:0 auto;width:100%;position:relative;}
#hd:after {display:block;visibility:hidden;clear:both;content:""}
#hd_h1 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}

#logo {text-align:left;}
#logo a{margin-top:0px;display:inline-block}
#hd_sch_open{display:none}
#hd_sch {text-align:center;}
#hd_sch h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#hd_sch form {position:relative;background:#ececec;border-radius:0px}
#hd_sch form:after {display:block;visibility:hidden;clear:both;content:""}
#hd_sch #sch_stx {width:127px;padding-left:10px;border:0;background:none;height:35px !important;line-height:35px !important;vertical-align:middle;}
#hd_sch #sch_submit {margin:0;padding:0 ;height:35px !important;line-height:35px !important;border:0;background:#dfdfdf;border-radius:0 5px 5px 0  ;color:#fff;vertical-align:middle;cursor:pointer;width:40px}
#hd_sch #sch_submit:hover, #hd_sch #sch_submit:focus{background:#00c6b2;transition: 0.8s;-webkit-transition: 0.8s;-moz-transition: 0.8s;-ms-transition: 0.8s;-o-transition: 0.8s;}
#sch_stc_label{position:absolute;top:0;left:10px;height:35px !important;line-height:35px !important;color:#666}

#hd_nb {clear:both;background:#ecf0f7;text-align:center}
#hd_nb li {display:inline-block}
#hd_nb li:nth-last-of-type(1) {border-right:0 !important}
#hd_nb a {display:inline-block;padding:10px 7px;text-decoration:none}

/* 공통 스타일 */
.fs085 {font-size:0.85em;}

/* 스타일 가이드 */

.fs10 {font-size:10px;} .fs11 {font-size:11px;} .fs12 {font-size:12px;} .fs13 {font-size:13px;} .fs14 {font-size:14px;} .fs15 {font-size:15px;} .fs16 {font-size:16px;} .fs17 {font-size:17px;} .fs18 {font-size:18px;} .fs19 {font-size:19px;} .fs20 {font-size:20px;} .fs22 {font-size:22px;} .fs24 {font-size:24px;} .fs26 {font-size:26px;}
.fs28 {font-size:28px;} .fs30 {font-size:30px;} .fs32 {font-size:32px;} .fs34 {font-size:34px;} .fs36 {font-size:36px;} .fs38 {font-size:38px;} .fs40 {font-size:40px;} .fs42 {font-size:42px;} .fs44 {font-size:44px;} .fs46 {font-size:46px;} .fs48 {font-size:48px;} .fs50 {font-size:50px;} .fs52 {font-size:52px;} .fs54 {font-size:54px;}
.fs56 {font-size:56px;} .fs58 {font-size:58px;} .fs60 {font-size:60px;} .fs62 {font-size:62px;} .fs64 {font-size:64px;} .fs66 {font-size:66px;} .fs68 {font-size:68px;} .fs70 {font-size:70px;} .fs72 {font-size:72px;} .fs74 {font-size:74px;} .fs76 {font-size:76px;} .fs78 {font-size:78px;} .fs80 {font-size:80px;} .fs82 {font-size:82px;}
.fs84 {font-size:84px;} .fs86 {font-size:86px;} .fs88 {font-size:88px;} .fs90 {font-size:90px;} .fs92 {font-size:92px;} .fs94 {font-size:94px;} .fs96 {font-size:96px;} .fs98 {font-size:98px;} .fs100 {font-size:100px;} 

.fw100 {font-weight:100;}
.fw200 {font-weight:200;}
.fw300 {font-weight:300;}
.fw400 {font-weight:400;}
.fw500 {font-weight:500;}
.fw600 {font-weight:600;}
.fw700 {font-weight:700;}
.fw800 {font-weight:800;}
.fw900 {font-weight:900;}

.main_modal_popup {background:rgba(0,0,0,0.6);width:100%;height:100vh; }

.main_color0 {color:#000;}
.main_color1 {color:#FFF;}
.main_color2 {color:#535353;}
.main_color3 {color:#ff0000;}
.main_color4 {color:#fb6000;}
.main_color5 {color:#ebebeb;}

.button1 {padding:20px 60px; background:#ff0000; color:#fff; border-radius:40px; transition:background 0.3s;}
.button1:hover {background:#000; color:#fff; }

/* 스타일 가이드 끝 */

	
/***************************************************************/
/* 스타일 작업 시작 */
body { background:transparent;}
body, html {width: 100%;}
#wrap {background: transparent; text-align: center; }
*, *:after, *:before {box-sizing: border-box; padding:0; margin:0;}
img { display:inline-block; font-size: 0;}
/* header, .main_silde {width: 100%;} */
a {text-decoration: none; color:#000;}
a:hover { color:#ffae00;}
input, select, textarea {font-family: 'SUIT', SUIT, sans-serif;}

/* 헤더배너 */
.head-popup { position: relative; width:100%; }
.head-popup .head-p-box { display:flex; justify-content: center; align-items: stretch;}
.head-popup img { max-width:100%;}
.head-popup .ls-today a { color:#fff; position:relative; top:17px; margin-right:10px;   }
.head-popup .ls-close { width: 60px; padding-right: 25px; height: 55px; z-index: 11;}
.head-popup .ls-close a { position: relative; display: block; font-size:0;width: 100%; height: 100%;}
.head-popup .ls-close a:after {transform: translate(-50%, -50%); top: 50%;  left:50%; position:absolute; content:'\2715'; font-weight: 100; color:#fff; font-size: 1.7rem; z-index:6}

/* header 메뉴 */
header {background:#fff; z-index: 15; width: 100%; margin: 0 auto; flex-wrap: wrap;display:flex;justify-content: center;align-items: center;position:relative; height: 80px;}
/* header:after { left:0; right:0; margin: 0 auto;justify-content: center;align-items: center;display: flex;content:''; top: 100px; position:absolute; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.3);} */
header h1 {display:flex; z-index: 12;flex-basis: content;text-align: left; height: 3.125em;}
header h1 img { height: 100%; /* filter: brightness(0) grayscale(1) invert(1); */}
header h1 .menu-white { display:none;}
header h1 a { padding-right: 1em; display: inline-block; }
header .box_inner {z-index:4; position: relative;display:flex; max-width: 1240px; padding: 0px 20px 0 20px; width: 100%; height: 100%;justify-content:  space-between; align-items: center;}
header:not(.menu-scroll) .nav_wrap { display: none;}

/*웹용 메뉴*/
.nav_web { margin-left: auto; font-size: 1.1em; margin-left: auto; padding-left: 2.5em; padding-right: 0%; max-width: 760px; height: 100%; flex:1 1 760px; position: relative;}
.nav_web a { width:100%; height: 100%;}
.nav_web>ul {width:100%; height: 100%; display: flex; justify-content: space-between; align-items: center; }
.nav_web>ul>li { flex: 1; max-width: 20%; height: 100%;position:relative;  display: inline-block; text-align: left;}
.nav_web>ul>li:hover>a { color:#ffae00 }
.nav_web>ul>li>a { font-weight:600; position: relative; display: flex; justify-content: center; align-items: center;}
.nav_web a:hover { color:#ffae00} 
.nav_web ul ul { position: relative; width:auto; text-align: center; display: none ; height: 12rem; letter-spacing: -0.3px; padding: 20px 2px 20px 2px;}
.nav_web>ul>li:hover ul { display:block;}
.nav_web>ul>li:hover:before { content:''; background:#ffae00; height:21rem; width:100%; position: absolute; left:0; top:0;}
.nav_web>ul>li:hover a { color:#fff;}
.nav_web>ul:hover ul { display:block;}
.nav_web li li a { font-weight:300;  display:block; font-size: 0.9em; padding: 7px 0;/*  white-space: nowrap */ word-break: keep-all;}
.nav_web li li a:hover { color:#035fff;}

/*모바일용메뉴*/
.nav_md {width: 100%; height: 100%; top:0; right:0; position: fixed; z-index: 16;} 
.nav_md h1 { position: absolute; left: 20px; top:15px; }
.nav_md_wrap { position:absolute; right:0; background:#fff; height: 100%; width: 100%; /* max-width: 570px;  */} 
.nav_md_wrap>ul { padding: 5em 20px 0 20px; }


.nav_md_wrap>ul>li {text-align: left; border-top:1px solid #e2e2e2; position:relative; width: 100%; max-width: 100%;display: inline-block; }
.nav_md_wrap>ul>li:last-of-type { border-bottom:1px solid #e2e2e2;}
.nav_md_wrap>ul>li>span {  display:block; font-size: 1.05em; position: relative; padding:15px;}
.nav_md_wrap>ul>li>span:after { position: absolute; right:1em; margin-top:1px; vertical-align: middle; font-size: 0.5em; font-weight:600;  padding-right: 0.5em; content:'\253C'; display:inline-block}
.nav_md_wrap>ul>li>span:hover:after {content:'-'; right: 0.4em; margin-top: 2px; font-size: 1em; line-height:1em;}
/*.nav_md_wrap>ul>li:hover ul { display: block; padding-bottom: 1em}*/
.nav_md_wrap a:hover {color:#ffae00;}
.nav_md_wrap>ul>li:hover { color:#ffae00 ;}
.nav_md ul ul { display: none; padding-top: 0.5em; background:#fafafa; border-top:2px solid #ffae00 }
.nav_md ul ul a { display:block; font-size: 0.85em; font-weight: 400; padding:3px 0 8px 1.5em; }

.nav_md ul>li { position:relative;  display: block; text-align: left;}
.nav_md .nav_head span { padding-left: 14px; font-size: 1.8em;position: relative;}
.nav_md .nav_head {text-align:left; border-bottom:1px solid #d3d1d0; padding: 40px;}
.nav_md .close { position:absolute; right:0px;  width: 60px; height: 60px; z-index: 11;}
.nav_md .close a { position: relative; display: block; font-size:0;width: 100%; height: 100%; background:#ffae00}
.nav_md .close a:after {transform: translate(-50%, -50%); top: 50%;  left:50%; position:absolute; content:'\2715'; font-weight: 100; color:#fff; font-size: 1.7rem; z-index:6}
.nav_md .nav-lang { display:flex; justify-content: space-between; width:100%; padding-top: 2em; padding-left:20px; padding-right:20px; position: relative; bottom:0;}
.nav_md .nav-lang p {  width: 49%;}
.nav_md .nav-lang a { font-weight:600; line-height:1; padding: 0.5em 0; display: block; border:1px solid #ffff; color:#fff;}
.nav_md .nav-lang .active, .nav_md .nav-lang a:hover { border-color:#ffae00; color:#000; background:#ffae00}

.nav_md_wrap li li{ padding:3px 0}


/* 국영문 */
header .nav_head { width:7em; min-width: 100px;  position: relative; z-index:12;} 
.nav-head-box { display:flex; border-radius: 2em; line-height: 1; border:1px solid #fff; justify-content: end; align-items: center;  }
.nav-head-box .nav-lang { display:flex; width:100%; position: relative; justify-content: space-between; text-align: center;}
.nav-head-box .nav-lang:after { content:''; height: 0.6em; width:1px; background:#000; position: absolute; right:35%; top:48%; transform: translate(-50%,-50%);}
.nav-head-box .nav-lang p { flex:1; position: relative; display:inline-block;}
.nav-head-box .nav-lang p:last-of-type:after { opacity: 0;}
.nav-head-box .nav-lang .active, .nav-head-box .nav-lang a:hover { color:#000}
.nav-head-box .nav-lang a { text-align: right; display:block; color:rgba(0,0,0,0.3);}

/* 메뉴 스크롤 시 */
.menu-scroll:after{ z-index:4; content:''; position: absolute; left:0; top: 79px; width:100%; height:1px; background:#fff; opacity: 0.2;}
.menu-scroll .nav_web { z-index:4;}
.menu-scroll .nav_web>ul>li>a { position: relative; height:100%; text-align: center;}
.menu-scroll .nav_web ul ul { display:block;}
.menu-scroll .nav_wrap { display: block; z-index:1;width: 100%; height: calc(16rem + 80px);background-color:rgb(255, 255, 255, 0.8); position: absolute; left:0; top: 0px;} /* 2depth 배경 */

/* 모바일메뉴보기 버튼 */
.menu_view {display:none; position:absolute; top:0px; right:10px; width: 50px; height: 60px; z-index: 5;}
.menu_view a { position: relative; display: block; font-size:0;width: 100%; height: 100%;}
.menu_view a:after { width: 100%; height:100%; position: absolute; left: 48%; top:50%; transform: translate(-50%, -50%); content: '';   content:'\2261'; font-weight: 200; color:#000; font-size: 3rem; line-height:3.6rem; z-index: 6}

.container {background: transparent;  margin: 0 auto; text-align: center;}

/*메인 모바일 슬라이드*/
.scroll-box-1 { position:relative; width: 100%;}
.scroll-box-1-1 { height: 100%;z-index: 2;}

/*메인상단 슬라이드 뒷배경*/
.scroll-box-1 .ls-slide-backgrounds { position:absolute; left:0; top:0; width: 100%; height: 26.7em;}
.scroll-box-1 .ls-slide-backgrounds img {object-fit: cover; height: 100%; width: 100%; object-position: 90% center;}
.scroll-box-1 .ls-slide-texts { position: relative;letter-spacing: -0.025em; font-size: 2.2em; z-index: 2; line-height: 1.2em; padding-top:1em; padding-bottom: 40px; text-align: center; color:#fff;}
.scroll-box-1 .scroll-box-1-1 { position: relative; max-width: 1240px; padding-left:20px; padding-right:20px;margin:0 auto;}
.scroll-box-1 .inner-box { box-shadow: 0px 0px 1.2em rgba(0,0,0,0.12); border-radius: 1em; background:#fff; overflow: hidden; }
.scroll-box-1 .inner-box ul { display:flex; }
.scroll-box-1 .inner-box li { text-align: center; width: 25%;}
.scroll-box-1 .inner-box li:nth-child(even) { background:#fafafa;}
.scroll-box-1 .inner-box li a { display:block; padding: 3em 2em 3.2em 2em;}
.scroll-box-1 .inner-box li img { max-width:100%;}
.scroll-box-1 .inner-box .ls-img-01 { width:100%; padding: 0.5em 0 1em 0; display:inline-block; max-width: 5em;}
.scroll-box-1 .inner-box h3 { font-size: 1.1em;}
.scroll-box-1 .inner-box .ls-sub { font-size: 0.8em; padding-top: 0.8em;}

/*시험일정-공지사항*/
.scroll-box-2 { position:relative; width: 100%; overflow:hidden; padding: 2.5em 0; }
.scroll-box-2:before {z-index:-1; background:#f3f6fa; content:''; position: absolute; height: 50%; top:50%; width:100%; left:0;}
.scroll-box-2 .scroll-box-2-1 { position: relative; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto; }
.scroll-box-2 .inner-box { display:flex; justify-content: space-between;}
.scroll-box-2 h3 {padding: 1.3em 1.4em 0.9em 1.4em; line-height:1; text-align: left; font-size:1.3em; color:#fff;}
.scroll-box-2 .inner-box>div { position: relative; background:#fafafa; border:1px solid #e2e2e2; overflow: hidden; border-radius: 1em; width: 49%;}
.scroll-box-2 .inner-box ul {text-align: left; padding: 0.4em 2em 1em 2em;}
.scroll-box-2 .inner-box li { border-bottom:1px solid #e2e2e2}
.scroll-box-2 .inner-box li:last-of-type { border:0;}
.scroll-box-2 .inner-box a { display:block; padding: 1em 0;}
.scroll-box-2 h4 { display:inline-block;vertical-align: middle; }
.scroll-box-2 .ls-box-02 h4 { -webkit-line-clamp: 1;	overflow: hidden;	word-wrap: break-word;	text-overflow: ellipsis;	display: -webkit-box;	-webkit-box-orient: vertical;}
.scroll-box-2 .ing-test { vertical-align: middle; font-weight:600; padding: 0.17em 0.7em; margin-right:0.5em; font-size: 0.9em; color:#ffae00; display:inline-block; border: 1px solid #ffae00; border-radius: 2em ;}
.scroll-box-2 .day-box { font-size: 0.8em; color:#5a5a5a; padding-top: 0.6em;}
.scroll-box-2 .day-01 { padding-right: 7%;}
.scroll-box-2 .day-box>span>span { padding-right: 0.3em; display:inline-block}
.scroll-box-2 .ls-more { position: absolute; right:1.8em; top:1em;}
.scroll-box-2 .ls-more a { font-size:0.65em; color:#fff;}
.scroll-box-2 .ls-more a:hover { font-weight: 600;}

/*배너*/
.scroll-box-3 { position:relative; width: 100%; overflow:hidden; padding-bottom:4em; background:#f3f6fa; }
.scroll-box-3 .scroll-box-3-1 { position: relative; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto; }
.scroll-box-3 .inner-box { text-align: left; display:flex; justify-content: space-between; align-items: stretch;}
.scroll-box-3 .inner-box h3 { font-size: 1.1em; line-height: 1.3em; }
.scroll-box-3 .inner-box p { font-size: 0.8em;}
.scroll-box-3 .ls-box-01 h3, .scroll-box-3 .ls-box-02 h3 { padding-bottom:0.4em;} 
.scroll-box-3 .ls-box-01 a, .scroll-box-3 .ls-box-02 a { display:flex; flex-direction: column; color:#fff; height:100%; background-repeat: no-repeat; background-position: center center; background-size:cover; padding: 1.8em;}
.scroll-box-3 .inner-box .ls-more {margin-top:auto; font-size: 0.65em; padding: 0.5em 0em; width: 6.6em; text-align: center; display:inline-block; border: 1px solid #fff; border-radius: 2em; }
.scroll-box-3 .inner-box .ls-box-01:hover .ls-more { border: 1px solid #ffae00; color:#ffae00; }
.scroll-box-3 .inner-box .ls-box-02:hover .ls-more { border: 1px solid #ffae00; color:#ffae00; }
.scroll-box-3 .ls-box-01 { border-radius: 1em; width: 32%; overflow: hidden;} 
.scroll-box-3 .ls-box-02 { border-radius: 1em; width: 32%; overflow: hidden;}
.scroll-box-3 .ls-box-03 { border-radius: 1em; width: 32%; overflow: hidden; background:#fff; border:1px solid #e2e2e2;}
.scroll-box-3 .ls-box-03 a { padding: 1.2em 1.3em; align-items: center; display:flex;}
.scroll-box-3 .ls-box-03 .ls-banner-01 { border-bottom:1px solid #e2e2e2;}
.scroll-box-3 .ls-box-03 a:hover h3 { color:#000; }
.scroll-box-3 .ls-box-03 h3 { padding-top: 0.2em;}
.scroll-box-3 .ls-box-03 .ls-img-01 { width: 4.5em; padding-right:0.5em}
.scroll-box-3 .ls-box-03 .ls-img-01 img { max-width:100%;}
.scroll-box-3 .ls-box-03 .ls-btn {position: relative; background:#f1eff8; border-radius: 2em; margin-left: auto; width: 1.8em; height:1.8em; display:block; text-indent: -9999px; }
.scroll-box-3 .ls-box-03 .ls-btn:after {content:'>';z-index:2; position: absolute; left:55%; top:50%; transform: translate(-50%, -50%); color:#7463bf;text-indent:0;}
.scroll-box-3 .ls-box-03 a:hover .ls-btn { background:#ffae00}
.scroll-box-3 .ls-box-03 a:hover .ls-btn:after { color:#fff;}

/*서브상단 뒷배경*/
.snb-bg { height: 15em; position: relative;}
.snb-bg .ls-slide-backgrounds { position:absolute; left:0; top:0; width: 100%; height:19em; overflow:hidden;}
.snb-bg .ls-slide-backgrounds img {object-fit: cover; height: 100%; width: 100%; object-position: 42% bottom}
.snb-bg .box_inner { height: 100%; clear: both; position: relative; text-align: center; margin:0 auto; max-width: 1320px; padding-left:20px; padding-right:20px;}
.snb-bg .ls-slide-texts { width: 100%; color:#fff; position:absolute; left:50%; top:50%; transform: translate( -50%, -50%); padding-left:20px; padding-right:20px;}
.snb-bg .ls-slide-texts .ls-head { font-size: 2.4em; font-weight: 400; padding-bottom:10px;}
.snb-bg .ls-slide-texts p { display:inline-block; line-height:1; padding: 0.6em 1.4em 0.3em 1.4em; border-radius: 5em; background:#ffae00; font-size: 0.75em; }

.snb { width: 100%;  position: relative ; z-index:3; height: 4em;  padding-left:20px; padding-right:20px;}
/* .snb:after {z-index:3; content:''; position: absolute; bottom:0; left:0; height:1px; width:100%; background:#e2e2e2;} */
.snb .snb-in {border-bottom:1px solid #e5e5e5; background:#fff; position: relative; z-index:3; width:100%; height:100%;margin: 0 auto; max-width: 1200px; border-top-left-radius: 1em; border-top-right-radius: 1em;  }
.snb h2 { padding-top: 40px; position: relative;}
.snb ul { font-size: 0.95em;  position: relative; display: flex; justify-content: center; align-items: center; height:100%; width: 100%; }
.snb li {position: relative; height:100%;  padding-left: 3.5%; padding-right:3.5%;}    
.snb li a {font-weight:600; display:block; width:100%;  height:100%; position: relative;}
.snb li:first-of-type a:after { display: none;} 
.snb li a>span { display:flex; justify-content: center; align-items: center; height:100%; position: relative;}
.snb li a:hover span:after, .snb li a.active span:after { border-radius: 1em;  z-index: 4;    left: 50%;    transform: translateX(-50%);    position: absolute;    bottom: -3px;    height: 5px;    background: #ffae00;    width: 100%;    content: '';}
.snb li a.active, .snb li a:hover {color:#ffae00; font-weight: 500;}

.snb-md { z-index: 8; position: relative; height: 3.2em; margin-left:20px; margin-right:20px; }
.snb_list { z-index:9; right:0px; top:3.2em; width: 100%; position: absolute; background:rgba(255,255,255,1); box-shadow: 0px 0px 1.2em rgba(0,0,0,0.12); overflow: hidden; border-bottom-left-radius: 0.7em; border-bottom-right-radius: 0.7em;  }
.snb-md .snb_list ul { border-top:0; padding-left: 1.2em; padding-right:1.2em; }
.snb-md .snb_list li:nth-child(1) { border-top:0;}
.snb-md li { width: 100%; border-top:1px solid #e2e2e2;}
.snb-md li a {font-size:0.9em; line-height:1.4; text-align: left; position: relative; display: block; padding: 0.7em 0; }
.snb-md li a:hover, .snb-md li a.active { font-weight:600;  color:#ffae00} 
.snb-md i { font-size:0;font-style: normal; height:100%; display:block; width: 40px; position: absolute; right: 5px; top:0;}
.snb-md i:after { z-index:4;position: absolute; color:#000; top:50%; left:50%; content:'\25E2'; font-size:0.7rem; font-weight: 300; }
.snb-md .snb_view:after { transform: translate(-59%, -65%) rotate( 45deg )}
.snb-md .snb-close:after { transform: translate(-57%, -35%) rotate( -135deg )}
.snb-md li:last-of-type a:after { display: none;}
.snb-md .sel-menu {border-bottom:1px solid #e2e2e2; z-index:10; overflow:hidden; background:#fff; border-top-left-radius: 0.7em; border-top-right-radius: 0.7em; position: relative; display:flex; padding-left: 1.2em; justify-content: start; align-items: center; text-align: left; height: 100%; }
.snb-md .sel-menu h2 { padding-left:20px; width: 56%;}
.snb-md .sel-menu a {  width:100%; display: block; height:100%; text-align: left;}
.snb-md .sel-menu a span { font-size: 1.1em; font-weight:600; display:flex; align-items: center; height:100%; }

.co-location { color:#9f9f9f; font-size: 0.6em; text-align: left;}

/*메인 슬라이드 내용*/
.main_silde { height: 965px;}
.main_silde .box_inner { margin:0 auto; max-width: 1757px;height: 900px; position: relative; }
.main_silde .sildeBtn {position:absolute; bottom: 0px;}

/*메인 슬라이드 버튼*/
.sildeBtn { display: flex; justify-content: center;align-items: center; clear: both; width: 100%;}
.sildeBtn span { border:1px solid #035fff; display: inline-block; margin: 0 6px;background: #fff; font-size:0; border-radius: 9px; height:18px; width: 18px;}
.sildeBtn span.active { background:#035fff; }

.sub-menu { margin:0; margin-top:0!important; width: 100%;position: relative ; }
.sub-menu ul { display: flex; justify-content:center; align-items: center; height: 115px;}
.sub-menu li { display: inline-block; flex: 1 1 290px; width: 290px; max-width: 290px;}
.sub-menu li a { border:1px solid #0b3775;  color:#0b3775;font-size: 0.8em; display: block; padding: 20px 0 20px 0; background:#fff;}
.sub-menu li a.active,  .sub-menu li a:hover{ background:#0b3775; color:#fff;}
.sub-menu li a { border-right:0;}
.sub-menu li:last-of-type a { border-right:1px solid #0b3775;}

.clearfix { clear: both}
.vr-center { width: 100%; text-align:center;position:absolute; left:50%; top:50%; transform: translate( -50%, -50%); }

.head-line .text { padding-bottom: 150px;color:#0b3775; font-size: 3rem; position: relative; font-weight: 600; letter-spacing: -0.5px;}
.head-line .text:after { z-index:5;content:''; width: 1px; height: 65px; position: absolute; left:50%; top: 100px;transform: translate(-50%, 0); background:#000; } 

sup { font-size: 0.5em;}

.bgc-01 { background-color:#ffae00;}
.bgc-02 { background-color:#7463bf;}
.bgc-03 { background-color:#c8bbff;}
.bgc-04 { background-color:#2478ad;}
.bgc-05 { background-color:#595757;}
.bgc-06 { background-color:#90c31f;}
.bgc-07 { background-color:#000000;}
.bgc-08 { background-color:#fff;}
.fc-01 { color:#ffae00}
.fc-02 { color:#7463bf}
.fc-03 { color:#c8bbff!important;}
.fc-04 { color:#353535}
.fc-05 { color:#a692ff}
.fn-01 { font-family: 'GmarketSansBold', 'Noto Sans KR', sans-serif!important;font-weight:700; }
.fs-01 { font-weight: 300;}

/*푸터*/
footer { background:#fff; position: relative; width: 100%; border-top:1px solid #e2e2e2;  }
footer .box-inner {width: 100%;position: relative; }
footer .footer { width:100%; padding-top: 30px;margin:0 auto; max-width: 1240px; padding-left:20px; padding-right:20px;  padding-bottom:30px;position: relative; height: 100%;text-align: left;  display:flex; justify-content: start; align-items:stretch ;}
footer .foo-head-box { width:25%; min-width: 15em;}
footer .foo-menu { border-bottom:1px solid #e2e2e2; width: 100%;}
footer .foo-menu>ul { margin:0 auto; max-width: 1240px; padding-left:20px; padding-right:20px; display:flex; justify-content: start;}
footer .foo-menu>ul>li>a { padding: 1em 0 1em 0;  padding-right: 3em;}
footer .foo-menu>ul>li{position: relative;}
footer .foo-menu>ul>li:after { content:''; right:1.5em; width:1px; top:50%; height:30%; transform: translateY(-50%); position: absolute; background:#e2e2e2;}
footer .foo-menu>ul>li:last-of-type:after { display:none;}
footer .foo-menu>ul>li:last-of-type>a { padding-right:0;}
footer .foo-menu a { font-weight:600; display:block;}
footer .head-box { width:50%; display:flex;  flex-direction: column; justify-content:flex-start;  }
footer .head-box .copy { bottom:0; position: absolute;}
footer .logo { text-align: left; width:80%; padding-top: 0.5em;} 
footer .logo img { max-width:100%;}
footer .col-box p { color:#252525; line-height: 1.5em; width:100%; }
footer .sns-box { margin-left: auto;}
footer .sns-box span { padding-left: 0.5em; display:inline-block;}
footer h1 a {display:block;}

/* sns + top */
.scroll-page-top { z-index:10; position:fixed; right: 20px; bottom:20px; height: 3em; width: 3em;}
.page-top { z-index:4; position:absolute; height: 100%; width: 100%;}
.page-top a { box-shadow: 0.1em 0.1em 0.3em rgba(0,0,0,0.3); border-radius: 5em; color: #fff; background:#ffae00;position: relative;display: block; width: 100%; height: 100%;}
.page-top a span { font-size:0;width:0;height:0;}
.page-top a:after {content:'\2517';position: absolute; font-size: 1.4rem; left:53%; top:45%; transform: translate(-50%, -50%) rotate(135deg); }

.ptb25 { padding: 25px 0;}
.pt170 { margin-top: 170px;}
.ptb50 { padding: 50px 0;}
.pb20 { padding-bottom:20px;}
.pb100 { padding-bottom:100px;}
.fs09e { font-size: 0.9em }
.fs12e { font-size: 1.2em }
.fs08e { font-size: 0.8em }
.wd1700 { max-width: 1700px;}

.wdauto { width: auto;}
.wd12p { width: 12%;}
.wd30p { width: 30%;}
.wd20p { width: 20%;}
.wd15p { width: 15%;}

.container {font-size: 1.15rem;}
.container * { word-break: keep-all;}

.d-lg-none { display:none;} /* pc 용 감추기 */
.d-sm-view { display:none;}

.con-head { font-weight: bold;}  /* 서브 컨텐츠 제목 */
.con-head h3 {  font-size: 1.95em; line-height: 1.2em; }
.con-head p { letter-spacing: -0.01em; font-size: 2.3em; padding-top: 0.3em; font-weight: 600;}
.con-head+.con-head { padding-top: 70px;}

.ls-tab-01 a {display:block; padding: 1.2em 0em; font-weight: 600; line-height:1; color:#3f3f3f;}
.ls-tab-01 ul { width:100%; height: 3em; display:flex; align-items: center; justify-content: center;  }
.ls-tab-01 ul li { position:relative; width:10em; background-color:#fff; border:1px solid #e2e2e2; border-left:0 }
.ls-tab-01 ul li:first-child { border-left:1px solid #e2e2e2}
.ls-tab-01 li:hover a, .ls-tab-01 li.active a{ font-weight:600; background:#ffae00; color:#fff; }

.ls-tab-02 a {display:block; color:#c8c8c8; padding: 10px 0; }
.ls-tab-02 a:hover, .ls-tab-02 a.active{ color:#ffae00; }
.ls-tab-02 a:hover span, .ls-tab-02 a.active span {  border-bottom:1px solid #ffae00; font-weight:600; }

.ls-icon-01:after {/*화살표*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15px' height='7px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M-0.003,4.199 L12.343,4.199 L9.565,6.998 L11.529,6.998 L15.003,3.500 L11.529,0.001 L9.565,0.001 L12.343,2.800 L-0.003,2.800 L-0.003,4.199 Z'/%3E%3C/svg%3E"); }
.ls-icon-02:after {/*새창*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15px' height='15px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M-0.000,15.000 L-0.000,-0.000 L6.672,-0.000 L6.672,1.667 L1.667,1.667 L1.667,13.333 L13.333,13.333 L13.333,8.333 L15.000,8.333 L15.000,15.000 L-0.000,15.000 ZM13.333,2.845 L5.678,10.500 L4.499,9.321 L12.154,1.667 L9.172,1.667 L9.172,-0.000 L15.000,-0.000 L15.000,5.833 L13.333,5.833 L13.333,2.845 Z'/%3E%3C/svg%3E"); }
.ls-icon-03:after {/*지도*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='17px' height='24px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 174, 0)' d='M8.900,23.825 C8.799,23.936 8.656,23.998 8.506,23.998 C8.357,23.998 8.214,23.936 8.112,23.825 C4.314,19.711 0.243,14.852 0.010,9.243 C-0.092,6.807 0.810,4.397 2.483,2.632 C4.092,0.934 6.231,-0.001 8.506,-0.001 C10.782,-0.001 12.921,0.934 14.530,2.632 C16.203,4.397 17.105,6.807 17.003,9.243 C16.770,14.852 12.698,19.711 8.900,23.825 ZM13.751,3.387 C12.347,1.906 10.485,1.091 8.506,1.091 C6.528,1.091 4.666,1.906 3.262,3.387 C1.791,4.939 0.999,7.057 1.088,9.197 C1.298,14.246 4.958,18.773 8.506,22.650 C12.054,18.773 15.715,14.246 15.925,9.197 C16.014,7.057 15.222,4.939 13.751,3.387 ZM8.506,13.901 C5.767,13.901 3.538,11.646 3.538,8.874 C3.538,6.102 5.767,3.847 8.506,3.847 C11.246,3.847 13.475,6.102 13.475,8.874 C13.475,11.646 11.246,13.901 8.506,13.901 ZM8.506,4.938 C6.362,4.938 4.617,6.704 4.617,8.874 C4.617,11.043 6.362,12.809 8.506,12.809 C10.651,12.809 12.396,11.043 12.396,8.874 C12.396,6.704 10.651,4.938 8.506,4.938 Z'/%3E%3C/svg%3E"); }
.ls-icon-04:after {/*전화*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 174, 0)' d='M5.552,19.999 C4.517,19.999 3.507,19.586 2.757,18.835 L0.411,16.487 C0.152,16.227 0.009,15.881 0.009,15.513 C0.009,15.145 0.152,14.799 0.411,14.539 L3.982,10.964 C4.519,10.427 5.392,10.427 5.928,10.964 L8.347,13.385 L13.401,8.326 L10.983,5.904 C10.447,5.367 10.447,4.493 10.983,3.956 L14.554,0.381 C15.074,-0.139 15.980,-0.139 16.500,0.381 L18.845,2.729 C19.754,3.639 20.168,4.931 19.952,6.186 C19.608,8.190 18.453,11.323 14.906,14.878 C14.905,14.878 14.905,14.879 14.904,14.879 C14.903,14.881 14.901,14.883 14.899,14.885 C14.897,14.887 14.896,14.888 14.894,14.890 C14.893,14.890 14.893,14.891 14.892,14.892 C11.341,18.442 8.211,19.598 6.210,19.943 C5.991,19.980 5.771,19.999 5.552,19.999 ZM4.955,11.458 C4.832,11.458 4.709,11.504 4.616,11.598 L1.045,15.173 C0.857,15.360 0.857,15.666 1.045,15.854 L3.390,18.201 C4.093,18.904 5.087,19.227 6.058,19.059 C7.933,18.736 10.878,17.640 14.266,14.251 C17.652,10.859 18.747,7.911 19.069,6.035 C19.235,5.066 18.915,4.067 18.212,3.363 L15.867,1.015 C15.679,0.827 15.375,0.827 15.187,1.015 L11.616,4.590 C11.429,4.777 11.429,5.083 11.616,5.270 L14.351,8.009 C14.526,8.184 14.526,8.467 14.351,8.642 L8.664,14.336 C8.489,14.511 8.206,14.511 8.031,14.336 L5.295,11.598 C5.201,11.504 5.078,11.458 4.955,11.458 Z'/%3E%3C/svg%3E"); }
.ls-icon-05:after {/*팩스*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='19px' height='20px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 174, 0)' d='M18.705,14.804 L16.031,14.804 L16.031,19.713 C16.031,19.874 15.901,20.004 15.740,20.004 L9.019,20.004 C8.859,20.004 8.729,19.874 8.729,19.713 L8.729,14.804 L5.801,14.804 C5.640,14.804 5.510,14.674 5.510,14.513 L5.510,1.800 C5.510,1.638 5.640,1.509 5.801,1.509 L18.705,1.509 C18.866,1.509 18.996,1.638 18.996,1.800 L18.996,14.513 C18.996,14.674 18.866,14.804 18.705,14.804 ZM9.310,19.422 L15.450,19.422 L15.450,14.804 L9.310,14.804 L9.310,19.422 ZM18.415,2.090 L6.091,2.090 L6.091,14.222 L9.019,14.222 L15.740,14.222 L18.415,14.222 L18.415,2.090 ZM15.400,11.283 C15.400,11.122 15.530,10.992 15.691,10.992 L17.092,10.992 C17.253,10.992 17.383,11.122 17.383,11.283 C17.383,11.444 17.253,11.574 17.092,11.574 L15.691,11.574 C15.530,11.574 15.400,11.444 15.400,11.283 ZM17.092,9.856 L15.691,9.856 C15.530,9.856 15.400,9.726 15.400,9.565 C15.400,9.405 15.530,9.274 15.691,9.274 L17.092,9.274 C17.253,9.274 17.383,9.405 17.383,9.565 C17.383,9.726 17.253,9.856 17.092,9.856 ZM17.092,8.138 L15.691,8.138 C15.530,8.138 15.400,8.008 15.400,7.847 C15.400,7.686 15.530,7.556 15.691,7.556 L17.092,7.556 C17.253,7.556 17.383,7.686 17.383,7.847 C17.383,8.008 17.253,8.138 17.092,8.138 ZM17.092,6.282 L7.414,6.282 C7.253,6.282 7.123,6.153 7.123,5.992 L7.123,3.243 C7.123,3.082 7.253,2.952 7.414,2.952 L17.092,2.952 C17.253,2.952 17.383,3.082 17.383,3.243 L17.383,5.992 C17.383,6.153 17.253,6.282 17.092,6.282 ZM16.802,3.534 L7.704,3.534 L7.704,5.701 L16.802,5.701 L16.802,3.534 ZM7.568,7.556 L8.970,7.556 C9.130,7.556 9.260,7.686 9.260,7.847 C9.260,8.008 9.130,8.138 8.970,8.138 L7.568,8.138 C7.407,8.138 7.278,8.008 7.278,7.847 C7.278,7.686 7.407,7.556 7.568,7.556 ZM7.568,9.274 L8.970,9.274 C9.130,9.274 9.260,9.405 9.260,9.565 C9.260,9.726 9.130,9.856 8.970,9.856 L7.568,9.856 C7.407,9.856 7.278,9.726 7.278,9.565 C7.278,9.405 7.407,9.274 7.568,9.274 ZM7.568,10.992 L8.970,10.992 C9.130,10.992 9.260,11.122 9.260,11.283 C9.260,11.444 9.130,11.574 8.970,11.574 L7.568,11.574 C7.407,11.574 7.278,11.444 7.278,11.283 C7.278,11.122 7.407,10.992 7.568,10.992 ZM10.275,7.556 L11.677,7.556 C11.838,7.556 11.968,7.686 11.968,7.847 C11.968,8.008 11.838,8.138 11.677,8.138 L10.275,8.138 C10.115,8.138 9.985,8.008 9.985,7.847 C9.985,7.686 10.115,7.556 10.275,7.556 ZM10.275,9.274 L11.677,9.274 C11.838,9.274 11.968,9.405 11.968,9.565 C11.968,9.726 11.838,9.856 11.677,9.856 L10.275,9.856 C10.115,9.856 9.985,9.726 9.985,9.565 C9.985,9.405 10.115,9.274 10.275,9.274 ZM10.275,10.992 L11.677,10.992 C11.838,10.992 11.968,11.122 11.968,11.283 C11.968,11.444 11.838,11.574 11.677,11.574 L10.275,11.574 C10.115,11.574 9.985,11.444 9.985,11.283 C9.985,11.122 10.115,10.992 10.275,10.992 ZM12.983,7.556 L14.385,7.556 C14.545,7.556 14.675,7.686 14.675,7.847 C14.675,8.008 14.545,8.138 14.385,8.138 L12.983,8.138 C12.823,8.138 12.693,8.008 12.693,7.847 C12.693,7.686 12.823,7.556 12.983,7.556 ZM12.983,9.274 L14.385,9.274 C14.545,9.274 14.675,9.405 14.675,9.565 C14.675,9.726 14.545,9.856 14.385,9.856 L12.983,9.856 C12.823,9.856 12.693,9.726 12.693,9.565 C12.693,9.405 12.823,9.274 12.983,9.274 ZM12.983,10.992 L14.385,10.992 C14.545,10.992 14.675,11.122 14.675,11.283 C14.675,11.444 14.545,11.574 14.385,11.574 L12.983,11.574 C12.823,11.574 12.693,11.444 12.693,11.283 C12.693,11.122 12.823,10.992 12.983,10.992 ZM14.335,17.668 L10.424,17.668 C10.264,17.668 10.134,17.537 10.134,17.377 C10.134,17.216 10.264,17.086 10.424,17.086 L14.335,17.086 C14.495,17.086 14.625,17.216 14.625,17.377 C14.625,17.537 14.495,17.668 14.335,17.668 ZM14.335,16.316 L10.424,16.316 C10.264,16.316 10.134,16.186 10.134,16.025 C10.134,15.864 10.264,15.734 10.424,15.734 L14.335,15.734 C14.495,15.734 14.625,15.864 14.625,16.025 C14.625,16.186 14.495,16.316 14.335,16.316 ZM3.689,16.316 L1.563,16.316 C0.702,16.316 0.002,15.615 0.002,14.753 L0.002,1.560 C0.002,0.698 0.702,-0.003 1.563,-0.003 L3.689,-0.003 C4.550,-0.003 5.250,0.698 5.250,1.560 L5.250,14.753 C5.250,15.615 4.550,16.316 3.689,16.316 ZM4.669,1.560 C4.669,1.019 4.229,0.579 3.689,0.579 L1.563,0.579 C1.023,0.579 0.583,1.019 0.583,1.560 L0.583,14.753 C0.583,15.294 1.023,15.734 1.563,15.734 L3.689,15.734 C4.229,15.734 4.669,15.294 4.669,14.753 L4.669,1.560 Z'/%3E%3C/svg%3E");}


/* 시험안내 */
.con-com-01 { overflow: hidden;  margin:0 auto; padding: 7em 0px 0 0px; position: relative;}
.con-com-01 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-01 .ls-tab-box .tab-drop-open { display:none;}
.con-com-01 .com-box-01 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-01 .com-box-02 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-01 .com-box-03 { background:#f3f6fa; padding-left:20px; padding-right:20px; }
.con-com-01 .com-box-04 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto; padding-bottom: 5em; }
.con-com-01 .con-box-02 {padding-top:6em;}
.con-com-01 .con-box-03 {padding: 5em 0;}
.con-com-01 .ls-box-in { display:flex;}
.con-com-01 .ls-box-01 h4 { text-align: left; letter-spacing: -0.01em;  font-size: 1.6em; line-height: 1.6em;}
.con-com-01 .ls-box-01 { width: 27%;}
.con-com-01 .ls-box-02 { width: 73%; text-align: left;}
.con-com-01 .ls-box-02 li { color:#353535}
.con-com-01 .dl-box-01 dt { font-size: 1.1em; position: relative; padding-left: 1.35em; font-weight:600;}
.con-com-01 .dl-box-01 dt:before { content:''; position: absolute; width: 1em; height:1em; left:0; top:50%; transform: translateY(-50%); background-size:contain; background-position: left center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px'%3E%3Cimage x='0px' y='0px' width='20px' height='20px' xlink:href='data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAMAAAC6V+0/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAB5lBMVEX/rgD/0Gv/zF7/6bv/tBP/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/uB7/sg7/rgD/wDn/z2n/sxH/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/xET/rgD/rgD/1n7/yVb/rgD/rgD/rgD/rgD/2IT/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/sQn/rwP/sxD/tBP/tx3/57P/+u//txz/sg3/1n3/2IP/8dL/35v//fj/8tb/wDj/vCz//Pf/////1Hf/8dP/9+f/txv/+ev/4Z//6Lf/24//46j/9Nz//fr/vzX/3ZP/6br/68H/sQr/7cb/yln/+/L///7/5az//v3/zmT/9uP/uib/sQv/9eH/vzT/89n/+Or/9N3/03T/5q//8M///fn/sgz/+/H/rgH/9d7/9uT/7sn/xk3/783/7cX/7MT/sAb//Pb/uCD/78z/yVT/thj/tRX/8tX/4J7/xUf/8tf//vz/+On/9+X/0Gz/4qX/5rD/4J3/6rz/35r/uiX/wT3/9d//xEX/sw//z2n/14D/zWH/46f/uB7/sQjgIh4jAAAAQnRSTlMAAAAAAAwqQTIWAVW/+9h5DyHF6Egu6vxsGOf+UaTqEv1/jt7OH/FE/ks8/RF2xl57zAMFvSLA5DHzqBoV4/rpjzP1AboDAAAAAWJLR0RVkwS4MwAAAAd0SU1FB+gFFBIeK0YHzXYAAAFBSURBVBjTTZDnP0JxFId/tggZZe8kIyJ7O1HXLHF0rQYZCdnKTDYhe6//VONSz5vzOc+770OIl5DQsHAW8Scikh0FLqJjOP8uNg7+iE9gHJcHPhKTPC45xc+BNDUtIJCQdM/T1i6Tuy/VkZEZRLhZnQBd3T29CmWfCvoHcDA7mOSo6SHZMI4gNYpq2RiiJpcQvlanH8cJFRomp3B6Bo1ayCOCWdPc/MCCGRdhyUQtr6yaIJ8I13B9w2IF3Nyybu/s7tkQCghPhft2PADj4ZH52HRyasOzQsK24vkFOuBS5wCdBagrLComIsBrBzrlCuPNLd7BPY0lhLAEqJQ+oPMRDTQ+ATxrSl0zxS/4+qah3+0fn1L3prJyl5RUfOkBvn+Y8bxKTxFOlV+Q6hqmnURcyyhhXb0vfYOI3djUzG9p9b6/EBFjhU5wBP0AAAAASUVORK5CYII=' /%3E%3C/svg%3E"); }
.con-com-01 .dl-box-01 li { position:relative; padding-left: 1.7em; padding-bottom: 0.4em; line-height: 1.4em;}
.con-com-01 .dl-box-01 li:before { content:'\203A'; left: 1em; position: absolute; top: -0.07em}
.con-com-01 .dl-box-01 dl { padding-bottom: 3em;}
.con-com-01 .table-box-01 table {border-top:1px solid #ffae00; line-height: 1.6em; text-align: center; border-spacing: 0; width:100%; table-layout: fixed;}
.con-com-01 .table-box-01 thead th, .con-com-01 .table-box-01 thead td {  font-weight:600; background:#fff3da}
.con-com-01 .table-box-01 thead th { width: 9em;}
.con-com-01 .table-box-01 tbody th { font-weight: normal;}
.con-com-01 .table-box-01 tbody td { border-left:1px solid #e2e2e2; }
.con-com-01 .table-box-01 td, .con-com-01 .table-box-01 th { padding: 0.5em 0.1em; border-bottom:1px solid #e2e2e2;}
.con-com-01 .table-box-01 + .table-box-01 { padding-top: 4em;}
.con-com-01 .ls-etc{padding-top:1em; font-size: 0.85em;}
.con-com-01 .con-box-04 h4 { text-align: center; letter-spacing: -0.01em;  font-size: 1.6em; line-height: 1.6em;}
.con-com-01 .con-box-04 {padding: 5em 0;}
.con-com-01 .ls-list-box { padding-top: 3em;  height:100%; margin:0 auto;  max-width: 1200px;  display:flex; justify-content: space-between; align-items: stretch;}
.con-com-01 .ls-list {position: relative; width: 16%; border-radius: 2em; padding: 3% 1% 2% 1%}
.con-com-01 .ls-list .ls-img-01 { padding:0.5em 0; max-width: 5em; height: auto; position: relative;    display: inline-block;    vertical-align: middle;}
.con-com-01 .ls-list .ls-img-01 img { max-width:100%;}
.con-com-01 .ls-list dt {  font-size: 1.1em; line-height: 1.3em; padding-bottom: 0.7em; font-weight: 600;}
.con-com-01 .ls-list dd { padding-top: 2em; line-height: 1.4em; font-size: 0.85em; position: relative; text-align: center; display:block; }
.con-com-01 .ls-list dd:after { content:''; width:100%; height: 1em; background-repeat: no-repeat; position: absolute; right:0; top:0; background-position: right; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='274px' height='7px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M269.975,0.007 L269.350,0.633 L272.168,3.074 L0.013,3.074 L0.013,3.928 L272.171,3.928 L269.350,6.370 L269.975,6.996 L274.010,3.502 L269.975,0.007 Z'/%3E%3C/svg%3E");} 
.con-com-01 .ls-list:last-of-type dd:after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='302px' height='7px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M298.206,-0.010 C296.286,-0.010 294.764,1.325 294.507,3.032 L0.001,3.032 L0.001,3.964 L294.507,3.964 C294.764,5.671 296.286,7.006 298.206,7.006 C300.306,7.006 302.008,5.436 302.008,3.498 C302.008,1.561 300.306,-0.010 298.206,-0.010 Z'/%3E%3C/svg%3E");}
.con-com-01 .h-dot { font-size: 1.1em; position: relative; padding-left: 1.35em; font-weight:600; margin-bottom:1.2em;}
.con-com-01 .h-dot:before { content:''; position: absolute; width: 1em; height:1em; left:0; top:50%; transform: translateY(-50%); background-size:contain; background-position: left center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px'%3E%3Cimage x='0px' y='0px' width='20px' height='20px' xlink:href='data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAMAAAC6V+0/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAB5lBMVEX/rgD/0Gv/zF7/6bv/tBP/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/uB7/sg7/rgD/wDn/z2n/sxH/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/xET/rgD/rgD/1n7/yVb/rgD/rgD/rgD/rgD/2IT/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/sQn/rwP/sxD/tBP/tx3/57P/+u//txz/sg3/1n3/2IP/8dL/35v//fj/8tb/wDj/vCz//Pf/////1Hf/8dP/9+f/txv/+ev/4Z//6Lf/24//46j/9Nz//fr/vzX/3ZP/6br/68H/sQr/7cb/yln/+/L///7/5az//v3/zmT/9uP/uib/sQv/9eH/vzT/89n/+Or/9N3/03T/5q//8M///fn/sgz/+/H/rgH/9d7/9uT/7sn/xk3/783/7cX/7MT/sAb//Pb/uCD/78z/yVT/thj/tRX/8tX/4J7/xUf/8tf//vz/+On/9+X/0Gz/4qX/5rD/4J3/6rz/35r/uiX/wT3/9d//xEX/sw//z2n/14D/zWH/46f/uB7/sQjgIh4jAAAAQnRSTlMAAAAAAAwqQTIWAVW/+9h5DyHF6Egu6vxsGOf+UaTqEv1/jt7OH/FE/ks8/RF2xl57zAMFvSLA5DHzqBoV4/rpjzP1AboDAAAAAWJLR0RVkwS4MwAAAAd0SU1FB+gFFBIeK0YHzXYAAAFBSURBVBjTTZDnP0JxFId/tggZZe8kIyJ7O1HXLHF0rQYZCdnKTDYhe6//VONSz5vzOc+770OIl5DQsHAW8Scikh0FLqJjOP8uNg7+iE9gHJcHPhKTPC45xc+BNDUtIJCQdM/T1i6Tuy/VkZEZRLhZnQBd3T29CmWfCvoHcDA7mOSo6SHZMI4gNYpq2RiiJpcQvlanH8cJFRomp3B6Bo1ayCOCWdPc/MCCGRdhyUQtr6yaIJ8I13B9w2IF3Nyybu/s7tkQCghPhft2PADj4ZH52HRyasOzQsK24vkFOuBS5wCdBagrLComIsBrBzrlCuPNLd7BPY0lhLAEqJQ+oPMRDTQ+ATxrSl0zxS/4+qah3+0fn1L3prJyl5RUfOkBvn+Y8bxKTxFOlV+Q6hqmnURcyyhhXb0vfYOI3djUzG9p9b6/EBFjhU5wBP0AAAAASUVORK5CYII=' /%3E%3C/svg%3E"); }
.con-com-01 .con-box-05 {padding-top: 6em; padding-bottom: 6em; border-bottom:1px solid #e2e2e2;}
.con-com-01 .con-box-06 { padding-top: 6em;}
.con-com-01 .ls-btn {text-align: left; padding-top: 1.5em;}
.con-com-01 .ls-btn a { font-weight:600; text-align: center; display:inline-block; border-radius: 1em; padding: 1.1em 1em; font-size: 0.85em; width:100%; max-width: 14em; background:#7463bf; color:#fff;}
.con-com-01 .ls-btn .ls-icon:after { position: relative; top:-0.1em;  content: ''; margin-left:1em; color: #fff; vertical-align: middle; display:inline-block; width: 1em; height:0.7em; background-size: contain; background-position: right center; background-repeat: no-repeat;}
.con-com-01 .ls-btn a:hover { background:#ffae00; }

/* 시험일정 */
.con-com-02 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-02 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-02 .ls-list-box li:nth-child(even) { background:#f3f6fa}
.con-com-02 .ls-list-box li { padding: 2em 20px;}
.con-com-02 .ls-list {box-shadow: 1px 1px 0.4em rgba(0,0,0,0.05); border:1px solid #e2e2e2; background:#fff; border-radius: 1em; max-width: 1200px; margin:0 auto; display:flex; align-items: center;}
.con-com-02 .ls-img-box {width:50%; height:100%; position: relative; border-radius: 1em; overflow: hidden;}
.con-com-02 .ls-img-box img {width:100%}
.con-com-02 .ing-test { position: absolute; left:1.5em; top:1.5em; vertical-align: middle; font-weight:600; padding: 0.3em 1em; margin-right:0.5em; font-size: 0.9em; color:#fff; display:inline-block; background:#ffae00; border-radius: 2em ;}
.con-com-02 .ls-info-box { width: 50%; padding: 1em 2em;}
.con-com-02 .ls-info-box dl { padding:0.35em 0; text-align: left; display:flex; justify-content: start; align-items: center;}
.con-com-02 .ls-info-box dt { font-weight:600; max-width: 6em; width: 6em;}
.con-com-02 .ls-btn-box { padding-top: 1.5em; display:flex; justify-content: space-between}
.con-com-02 .ls-btn-box a { font-weight:600; width: 48.5%; font-size: 1.1em; padding: 0.7em; border-radius: 0.7em; }
.con-com-02 .ls-btn-box .btn-type-01 { background:#ffae00; color:#fff;}
.con-com-02 .ls-btn-box .btn-type-02 { background:#fff; border:1px solid #e2e2e2; color:#7d7d7d;}
.con-com-02 .ls-btn-box .btn-type-03 { background:#e8e8e8; color:#7d7d7d;}
.con-com-02 .ls-btn-box .btn-type-04 { background:#ffe7b2; }
.con-com-02 .ls-btn-box .btn-type-01:hover { background:#7463bf}
.con-com-02 .ls-btn-box .btn-type-02:hover { color:#ffae00; border-color:#ffae00;}

/* 교재안내 */
.con-com-03 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-03 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-03 .ls-list-box li:nth-child(4n + 3):before {z-index:-1; content:''; left: -50vw; top:0; width: 150vw; height:100%; position: absolute; background:#f3f6fa}
.con-com-03 .ls-list-box li:nth-child(4n + 4):before {z-index:-1; content:''; left: 0vw; top:0; width: 100vw; height:100%; position: absolute; background:#f3f6fa}
.con-com-03 .ls-list-box li { position: relative; width:50%; padding: 2em 0;}
.con-com-03 .ls-list-box ul {display:flex; flex-wrap: wrap;  justify-content: start; }
.con-com-03 .ls-list-box { margin:0 auto; max-width: 1240px; padding-left:20px; padding-right:20px;  }
.con-com-03 .ls-list { border-radius: 1em; max-width: 1200px; margin:0 auto; display:flex; align-items: stretch;}
.con-com-03 .ls-img-box {width:37%; height:100%; position: relative; border-radius: 1em; overflow: hidden;}
.con-com-03 .ls-img-box img {max-width:100%;}
.con-com-03 .ls-img-box:after { left:0; top:0; width:100%; height:100%; position: absolute; content:''; border-radius: 1em; border:1px solid rgba(0, 0, 0, 0.05);}
.con-com-03 .ing-test { position: absolute; left:1.5em; top:1.5em; vertical-align: middle; font-weight:600; padding: 0.3em 1em; margin-right:0.5em; font-size: 0.9em; color:#fff; display:inline-block; background:#ffae00; border-radius: 2em ;}
.con-com-03 .ls-info-box { width: 63%; padding: 1em 2em 0em 2em;}
.con-com-03 .ls-info-box dl {  padding:0.35em 0; text-align: left; display:flex; justify-content: start; align-items: stretch;}
.con-com-03 .ls-info-box dt {font-weight:600; min-width: 3em; max-width: 3em; width: 3em;}
.con-com-03 .ls-info-box h4 { text-align: left; font-size: 1.1em; padding-bottom:0.5em}
.con-com-03 .ls-btn-box { padding-top: 1.5em; text-align: left;}
.con-com-03 .ls-btn-box a { display:block; text-align: center; font-weight:600; width:100%; max-width: 8em; padding: 0.35em 0.2em 0.4em; border-radius: 0.5em; }
.con-com-03 .ls-btn-box .btn-type-01 { background:#ffae00; color:#fff;}
.con-com-03 .ls-btn-box .btn-type-01:after {content:''; position: relative; margin-left: 1em; width: 1em; height:0.9em; top: -0.07em; vertical-align: middle; display:inline-block; background-position: center center; background-size: contain; background-repeat: no-repeat;}
.con-com-03 .ls-btn-box .btn-type-01:hover { background:#7463bf}
.con-com-03 .ls-btn { text-align: center; padding-top: 3.5em;}
.con-com-03 .ls-btn a {background:#fff; text-align: center; max-width:210px; color:#00acd5; border:1px solid #00acd5;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:1.1em 0px 1em 0; }
.con-com-03 .ls-btn a:hover { background:#00acd5; color:#fff; }

/* 자격유효검사 */
.con-com-05 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-05 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-05 .com-box-01 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-05 .box-area { border:1px solid #e2e2e2; background:#fafafa; padding: 3em 2em; box-shadow: 0px 0px 0.7em rgba(0,0,0,0.1); max-width: 40em; margin:0 auto; border-radius: 1em; }
.con-com-05 input[type=text] { padding: 0.7em; font-weight:600; text-align: center; width:100%; border:1px solid #e2e2e2; border-radius: 0.5em;}
.con-com-05 input[type=text]::placeholder { color:#000}
.con-com-05 .ls-etc { font-size: 0.9em; padding-top: 1em;}
.con-com-05 .ls-btn-box { padding-top: 2em; }
.con-com-05 .ls-btn-box a { font-size: 1.1em; display:inline-block; text-align: center; font-weight:600; width:100%; max-width: 12em; padding: 0.7em 0.7em 0.7em 0.7em; border-radius: 0.5em; }
.con-com-05 .ls-btn-box .btn-type-01 { background:#ffae00; color:#fff;}
.con-com-05 .ls-btn-box .btn-type-01:hover { background:#7463bf}

/* 치과보험청구사 */
.con-com-06 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-06 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-06 .com-box-01 { padding: 7em 0; background-size: cover; background-position: center center; background-repeat: no-repeat;}
.con-com-06 .com-box-02 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-06 .ls-box-in {  display:flex;}
.con-com-06 .ls-box-01 h4 { text-align: left; letter-spacing: -0.01em;  font-size: 1.6em; line-height: 1.6em;}
.con-com-06 .ls-box-01 { width: 27%;}
.con-com-06 .ls-box-02 { width: 73%; text-align: left;}
.con-com-06 .ls-box-02 p { line-height: 1.7em; color:#353535; padding-bottom: 2em;}
.con-com-06 .con-box-01 { color:#fff; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-06 .con-box-01 .ls-tt { padding-top: 0.8em; font-size: 2em; font-weight:600; line-height: 1.5em;}
.con-com-06 .ls-btn {text-align: center; padding-top: 3em;}
.con-com-06 .ls-btn a { font-weight:600; text-align: center; display:inline-block; border-radius: 0.7em; padding: 0.8em 1em; border:1px solid #fff; font-size: 1.1em; width:100%; max-width: 15em; background:transparent; color:#fff;}
.con-com-06 .ls-btn .ls-icon:after { position: relative; top:-0.1em;  content: ''; margin-left:1em; color: #fff; vertical-align: middle; display:inline-block; width: 0.7em; height:0.7em; background-size: contain; background-position: right center; background-repeat: no-repeat;}
.con-com-06 .ls-btn a:hover { background:#ffae00;  border-color: #ffae00;}
.con-com-06 .con-box-02 { padding-top: 7em; padding-bottom:2em; border-bottom:1px solid #e2e2e2;}
.con-com-06 .con-box-03 { padding-top: 4em}

/* 치과행정 */
.con-com-07 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-07 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-07 .com-box-01 {padding: 7em 0; background-size: cover; background-position: center center; background-repeat: no-repeat;}
.con-com-07 .com-box-02 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-07 .ls-box-in {  display:flex;}
.con-com-07 .ls-box-01 h4 { text-align: left; letter-spacing: -0.01em;  font-size: 1.6em; line-height: 1.6em;}
.con-com-07 .ls-box-01 { width: 27%;}
.con-com-07 .ls-box-02 { width: 73%; text-align: left;}
.con-com-07 .ls-box-02 p { line-height: 1.7em; color:#353535; padding-bottom: 2em;}
.con-com-07 .con-box-01 { color:#fff; max-width: 1340px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-07 .con-box-01 .ls-tt { padding-top: 0.8em; font-size: 2em; font-weight:600; line-height: 1.5em;}
.con-com-07 .ls-btn {text-align: center; padding-top: 3em;}
.con-com-07 .ls-btn a { font-weight:600; text-align: center; display:inline-block; border-radius: 0.7em; padding: 0.8em 1em; border:1px solid #fff; font-size: 1.1em; width:100%; max-width: 15em; background:transparent; color:#fff;}
.con-com-07 .ls-btn .ls-icon:after { position: relative; top:-0.1em;  content: ''; margin-left:1em; color: #fff; vertical-align: middle; display:inline-block; width: 0.7em; height:0.7em; background-size: contain; background-position: right center; background-repeat: no-repeat;}
.con-com-07 .ls-btn a:hover { background:#ffae00;  border-color: #ffae00;}
.con-com-07 .con-box-02 { padding-top: 7em; padding-bottom:2em; border-bottom:1px solid #e2e2e2;}
.con-com-07 .con-box-03 { padding-top: 4em}

/* 협회 */
.con-com-10 { overflow: hidden;  margin:0 auto; padding: 7em 0px 4em 0px; position: relative;}
.con-com-10 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-10 .com-box-01 {padding: 7em 0; background-size: cover; background-position: center center; background-repeat: no-repeat;}
.con-com-10 .com-box-02 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-10 .con-box-01 { color:#fff; max-width: 1340px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-10 .con-box-01 .ls-tt { padding-top: 0.8em; font-size: 2.4em; font-weight:600; line-height: 1.5em;}
.con-com-10 .con-box-02 { padding-top: 5em; padding-bottom:2em;}
.con-com-10 .ls-txt-01 strong { line-height: 1.7em; display:inline-block; font-size: 1.3em; padding-bottom:1.5em;}
.con-com-10 .ls-txt-01 { padding-bottom: 4em; line-height: 1.7em;}

/* 협회정관 */
.con-com-11 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-11 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-11 .com-box-01 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-11 h4 { font-size: 1.1em; display:block;}
.con-com-11 .con-box-01 { letter-spacing: -0.01em; line-height: 1.65em; text-align: left;}
.con-com-11 .ul-box li li { list-style-position: inside; text-align: left; list-style-type:decimal;}
.con-com-11 .ul-box li li li { list-style:none; padding-left: 1em;}
.con-com-11 .ul-box { padding-bottom: 4em;}
.con-com-11 .ul-box .li-list-none li { list-style: none;}
.con-com-11 h5 { padding-top: 2em; padding-bottom:0.7em; font-weight:normal;}

/* 오시는길 */
.con-com-12 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-12 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-12 .com-box-01 {max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-12 .ls-map-box .ls-info { padding-top: 2em;}
.con-com-12 .ls-map-box dl {    display: flex;    align-items: stretch;    text-align: left;    padding: 0.5em 0px;}
.con-com-12 .ls-map-box dt { min-width: 5em; color:#ffae00; font-weight: 600;max-width: 7em;  position: relative;    width: 20%;}
.con-com-12 .ls-map-box dt .ls-icon {vertical-align: middle; display: inline-block; margin-top: -0.2em; width: 1.15em; margin-right: 0.7em;  height: 1.25em;    position: relative;}
.con-com-12 .ls-map-box dt .ls-icon:after {    width: 100%; height: 100%;   background-size: contain;    background-position: center center;    background-repeat: no-repeat;  top: 50%;    transform: translateY(-50%);    display: inline-block;    content: '';    position: absolute; }
.con-com-12 .ls-map-box .ls-info dl:last-of-type .ls-icon { height: 1.1em;}
.con-com-12 .ls-map-box dd { width: 80%;}
.con-com-12 .ls-map-box iframe { height: 27em;}

/* 마이페이지 */
.con-com-13 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-13 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-13 .com-box-01 { text-align: left; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-13 .ls-box-in { display:flex; justify-content: space-between; align-items: stretch; }
.con-com-13 .ls-box-01 { width: 48.5%;}
.con-com-13 .ls-box-02 { background:#fafafa; width: 48.5%; padding: 2em; border-radius: 1em; border:1px solid #e2e2e2; box-shadow: 0px 0px 0.7em rgba(0,0,0,0.1); }
.con-com-13 .ls-box-01>div{ padding: 2em; border-radius: 1em; border:1px solid #e2e2e2; box-shadow: 0px 0px 0.7em rgba(0,0,0,0.1); }
.con-com-13 .ls-box-01>div+div { margin-top: 2em;}
.con-com-13 .h-dot { font-size: 1.1em; position: relative; padding-left: 1.35em; font-weight:600; margin-bottom:1.2em;}
.con-com-13 .h-dot:before { content:''; position: absolute; width: 1em; height:1em; left:0; top:50%; transform: translateY(-50%); background-size:contain; background-position: left center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px'%3E%3Cimage x='0px' y='0px' width='20px' height='20px' xlink:href='data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAMAAAC6V+0/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAB5lBMVEX/rgD/0Gv/zF7/6bv/tBP/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/uB7/sg7/rgD/wDn/z2n/sxH/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/xET/rgD/rgD/1n7/yVb/rgD/rgD/rgD/rgD/2IT/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/rgD/sQn/rwP/sxD/tBP/tx3/57P/+u//txz/sg3/1n3/2IP/8dL/35v//fj/8tb/wDj/vCz//Pf/////1Hf/8dP/9+f/txv/+ev/4Z//6Lf/24//46j/9Nz//fr/vzX/3ZP/6br/68H/sQr/7cb/yln/+/L///7/5az//v3/zmT/9uP/uib/sQv/9eH/vzT/89n/+Or/9N3/03T/5q//8M///fn/sgz/+/H/rgH/9d7/9uT/7sn/xk3/783/7cX/7MT/sAb//Pb/uCD/78z/yVT/thj/tRX/8tX/4J7/xUf/8tf//vz/+On/9+X/0Gz/4qX/5rD/4J3/6rz/35r/uiX/wT3/9d//xEX/sw//z2n/14D/zWH/46f/uB7/sQjgIh4jAAAAQnRSTlMAAAAAAAwqQTIWAVW/+9h5DyHF6Egu6vxsGOf+UaTqEv1/jt7OH/FE/ks8/RF2xl57zAMFvSLA5DHzqBoV4/rpjzP1AboDAAAAAWJLR0RVkwS4MwAAAAd0SU1FB+gFFBIeK0YHzXYAAAFBSURBVBjTTZDnP0JxFId/tggZZe8kIyJ7O1HXLHF0rQYZCdnKTDYhe6//VONSz5vzOc+770OIl5DQsHAW8Scikh0FLqJjOP8uNg7+iE9gHJcHPhKTPC45xc+BNDUtIJCQdM/T1i6Tuy/VkZEZRLhZnQBd3T29CmWfCvoHcDA7mOSo6SHZMI4gNYpq2RiiJpcQvlanH8cJFRomp3B6Bo1ayCOCWdPc/MCCGRdhyUQtr6yaIJ8I13B9w2IF3Nyybu/s7tkQCghPhft2PADj4ZH52HRyasOzQsK24vkFOuBS5wCdBagrLComIsBrBzrlCuPNLd7BPY0lhLAEqJQ+oPMRDTQ+ATxrSl0zxS/4+qah3+0fn1L3prJyl5RUfOkBvn+Y8bxKTxFOlV+Q6hqmnURcyyhhXb0vfYOI3djUzG9p9b6/EBFjhU5wBP0AAAAASUVORK5CYII=' /%3E%3C/svg%3E"); }
.con-com-13 .test-box { position: relative;}
.con-com-13 .edu-box { position: relative; }
.con-com-13 .qua-box { position: relative;}
.con-com-13 .dl-box-01 { padding-top: 2em; padding-bottom: 1em;}
.con-com-13 .dl-box-01 dt {position: relative; padding-left: 1.8em;  font-weight:600;}
.con-com-13 .dl-box-01 strong { font-weight:600;}
.con-com-13 .dl-box-01 dt:before { content:'\203A'; left: 1em; position: absolute; top: -0.07em }
.con-com-13 .dl-box-01 dd { padding-top: 0.5em;}
.con-com-13 .dl-box-01 li { position:relative; padding-left: 3em; color:#353535; padding-bottom: 0.2em; line-height: 1.4em; font-size: 0.9em;}
.con-com-13 .dl-box-01 li:before { content:'\002D'; left: 2em; position: absolute; top: -0.07em }
.con-com-13 .dl-box-01 dl { padding-bottom: 1.1em;}
.con-com-13 .table-box-01 table {border-top:2px solid #000; line-height: 1.6em; text-align: center; border-spacing: 0; width:100%; table-layout: fixed;}
.con-com-13 .table-box-01 thead th, .con-com-13 .table-box-01 thead td {  font-weight:600; background:#f1f1f1}
.con-com-13 .table-box-01 .wd-5e { width: 5em;}
.con-com-13 .table-box-01 .wd-15e { width: 15em;}
.con-com-13 .table-box-01 tbody th { font-weight: 600;}
.con-com-13 .table-box-01 td, .con-com-13 .table-box-01 th { padding: 0.5em 0.1em; border-bottom:1px solid #e2e2e2;}
.con-com-13 .table-box-01 { position: relative;}
.con-com-13 .table-box-01 + .table-box-01 { padding-top: 4em;}
.con-com-13 .table-box-01 th br { display:none;}
.con-com-13 .ls-etc { padding-top: 1em; color:#353535}
.con-com-13 .box-head { position: relative;}
.con-com-13 h4 {padding-bottom: 1em; font-size: 1.25em; font-weight:600;}
.con-com-13 .ls-more { position: absolute; right:0em; top:0em;}
.con-com-13 .ls-more a { font-size:0.65em;}
.con-com-13 .ls-more a:hover { font-weight: 600;}
.con-com-13 .ls-btn {text-align: center; padding-top: 1.5em;}
.con-com-13 .ls-btn a { font-weight:600; text-align: center; display:inline-block; border-radius: 0.7em; padding: 0.8em 1em; width:100%; max-width: 14em; background:#ffae00; color:#fff;}
.con-com-13 .ls-btn a:hover { background:#7463bf; }
.con-com-13 .dl-box-02 dl {  padding:0.35em 3px 0.35em 0; text-align: left; display:flex; justify-content: start; align-items: stretch;}
.con-com-13 .dl-box-02 dt {font-weight:600; min-width: 5em; max-width: 5em; width: 5em;}
.con-com-13 .ls-box-01 li { padding:1em 0; border-top:1px solid #e2e2e2;}
.con-com-13 .ls-box-01 li:nth-child(1) { border-top:2px solid #000;}
.con-com-13 .test-box li { display:flex; justify-content: space-between; align-items: stretch;}
.con-com-13 .test-box .ls-btn-box { padding: 0.35em 0;max-width: 5.5em; font-size: 0.9em;}
.con-com-13 .test-box .ls-btn-box a { padding: 1em 0.5em; display:flex; justify-content: center; align-items: center; }
.con-com-13 .qua-box .ls-btn-box { padding: 1.2em 0 1em 0;}
.con-com-13 .qua-box .ls-btn-box a {display:block; padding: 0.75em 0.5em;}
.con-com-13 .ls-btn-box { width:100%; text-align: center; }
.con-com-13 .ls-btn-box a { font-weight:600; margin:0 1%; border-radius: 0.7em; height:100%; }
.con-com-13 .qua-box .ls-btn-box { display:flex; justify-content: center; align-items: center; }
.con-com-13 .qua-box .ls-btn-box a { width:48%; }
.con-com-13 .btn-type-01 { background:#f3f6fa; border:1px solid #e2e2e2; color:#7463bf;}
.con-com-13 .btn-type-02 { border:1px solid #ffae00; color:#ffae00;}
.con-com-13 .btn-type-05 { border:1px solid #004ea2; color:#004ea2;}
.con-com-13 .btn-type-06 { border:1px solid #00acd5; color:#00acd5;}
.con-com-13 .btn-type-03 { border:1px solid #ffae00; color:#ffae00; position: relative;}
.con-com-13 .btn-type-04 { background:#f3f6fa; border:1px solid #e2e2e2; color:#acacac;}
.con-com-13 .btn-type-02:hover { background:#7463bf; border-color:#7463bf; color:#fff;}
.con-com-13 .btn-type-05:hover { background:#7463bf; border-color:#7463bf; color:#fff;}
.con-com-13 .btn-type-06:hover { background:#7463bf; border-color:#7463bf; color:#fff;}
.con-com-13 .btn-type-03:hover { background:#7463bf; border-color:#7463bf; color:#fff;}
.con-com-13 .btn-type-03:before { display:inline-block; content:''; vertical-align: middle; position: relative; width: 2em; height:0.8em; background-position: center center; background-repeat: no-repeat; background-size: contain; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='17px' height='15px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 174, 0)' d='M16.176,14.182 C16.176,14.634 15.808,15.000 15.353,15.000 L1.647,15.000 C1.192,15.000 0.824,14.634 0.824,14.182 C0.369,14.182 -0.000,13.813 -0.000,13.358 L-0.000,6.824 C-0.000,6.369 0.369,6.000 0.824,6.000 C1.278,6.000 1.647,6.369 1.647,6.824 L1.647,13.358 C1.647,13.360 1.646,13.362 1.646,13.364 C1.646,13.364 1.647,13.364 1.647,13.364 L15.353,13.364 L15.353,6.818 C15.353,6.366 15.722,6.000 16.176,6.000 C16.631,6.000 17.000,6.366 17.000,6.818 L17.000,13.364 C17.000,13.816 16.631,14.182 16.176,14.182 ZM5.001,6.529 L5.001,4.565 L7.801,7.343 L7.801,-0.003 L9.200,-0.003 L9.200,7.343 L11.999,4.565 L11.999,6.529 L8.500,10.002 L5.001,6.529 Z'/%3E%3C/svg%3E");}
.con-com-13 .btn-type-03:hover:before {  filter: brightness(0) grayscale(1) invert(1); }

/* 결제안내 */
.con-com-14 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-14 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-14 .com-box-01 { text-align: left; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-14 .ls-box-in { display:flex; justify-content: space-between; align-items: stretch; }
.con-com-14 .ls-box-01 { width: 58.5%; border-radius: 1em; overflow: hidden; border:1px solid #e2e2e2; box-shadow: 0px 0px 0.7em rgba(0,0,0,0.1); }
.con-com-14 .ls-box-02 {width: 38.5%; margin-left: 3%; min-width: 350px; border-radius: 1em; border:1px solid #e2e2e2; box-shadow: 0px 0px 0.7em rgba(0,0,0,0.1); }
.con-com-14 .test-box { background:#f3f6fa; padding:2em;}
.con-com-14 .user-box { padding:2em;}
.con-com-14 h4 {padding-bottom: 1em; font-size: 1.25em; font-weight:600;}
.con-com-14 .dl-box-01 dl { padding:0.35em 3px 0.35em 0; text-align: left; display:flex; justify-content: start; align-items: stretch;}
.con-com-14 .dl-box-01 dt {font-weight:600; min-width: 6em; max-width: 6em; width: 6em;}
.con-com-14 .dl-box-01 { padding-top:1em; border-top:2px solid #000;}
.con-com-14 .dl-box-01 dd input {    padding: 0.5em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 0.3em;    width: 100%;}
.con-com-14 .dl-box-01 dd {width:100%;}
.con-com-14 .user-box dl { padding-bottom: 1em; align-items: center;}
.con-com-14 .ls-etc { margin-top: 2em; text-align: center; background:#f3f6fa; padding:0.7em; border-radius: 0.3em; }
.con-com-14 .ls-pay-01 { padding: 2em 2em 1.5em 2em;}
.con-com-14 .ls-pay-02 { border-bottom:1px solid #e2e2e2; padding: 0em 2em 1.5em 2em;}
.con-com-14 .ls-pay-03 { padding: 2em;}
.con-com-14 .ls-info-01 p { padding-bottom: 1em;}
.con-com-14 .ls-info-01 a { position: relative;    display: block; border-radius: 0.3em;    background: #f3f6fa;    padding: 0.8em 1em;}
.con-com-14 .ls-info-01 span {    text-decoration: underline;    display: block;    top: 50%;    margin-top: 1px;    transform: translateY(-50%);    position: absolute;    right: 1em;}
.con-com-14 .dl-box-02 dl {    padding: 1em 0;    display: flex;    align-items: center;}
.con-com-14 .dl-box-02 dl:first-of-type { padding: 0.3em 0 0em 0;}
.con-com-14 .dl-box-02 dl:last-of-type {    font-weight: 600;    border-top: 1px solid #d3d3d3;}
.con-com-14 .dl-box-02 dt {    width: 155px;    min-width: 155px;    max-width: 155px;}
.con-com-14 .dl-box-02 dd {    text-align: right;    width: 100%;}
.con-com-14 .ls-check-box label {    cursor: pointer;    line-height: 1.4em; padding: 0.5em 0;    display: flex;}
.con-com-14 .ls-check-box span { position: relative; margin-top: -0.2em;}
.con-com-14 input[type=checkbox], .con-com-14 input[type=radio] {  vertical-align: middle;  position: relative;   min-width: 1em;    height: 1em;    margin-right: 0.5em;}
.con-com-14 .ls-btn {text-align: center; padding: 2em;}
.con-com-14 .ls-btn a { font-weight:600; font-size: 1.1em; text-align: center; display:inline-block; border-radius: 0.7em; padding: 0.8em 1em; width:100%; background:#ffae00; color:#fff;}
.con-com-14 .ls-btn a:hover { background:#7463bf; }



/* 로그인(page4),  아이디찾기(page6), 비밀번호찾기(page7), 아이디있을시(page9), 가입회원없을시(page8), 인증번호확인(page10), 비밀번호변경(page11)  */
.con-com-041 { padding: 5em 0px 8em 0px; position: relative;}
.con-com-041 .con-box-01 h3 { text-align: left; padding-bottom: 0.7em; font-size: 1.6em; font-weight: 800;}
.con-com-041 .con-box-01 h3.head-type-01 { text-align: center; color:#eb6100}
.con-com-041 .com-box-01 { padding-left:20px; padding-right:20px;}
.con-com-041 .con-box-01 { max-width: 460px; margin:0 auto; }
.con-com-041 .ls-input input {  width:100%; padding: 1em 2px; border:none; border-bottom:1px solid #cccccc; }
.con-com-041 .ls-input label { margin-top: 0.5em; display:block; position: relative;}
.con-com-041 .ls-input label span { display:block; color:#808080; position: absolute; top:50%; transform: translateY(-50%); left:0;}
.con-com-041 .ls-input label:focus span { display:none;}
.con-com-041 .ls-input { padding-bottom:1.5em;}
.con-com-041 .ls-idpw { padding-bottom:1.5em; text-align: left; font-size: 0.8em; margin-left: -0.75em}
.con-com-041 .ls-idpw a { padding: 0.8em;}
.con-com-041 .ls-idpw span { position: relative;}
.con-com-041 .ls-idpw span+span:after { position: absolute; background:#000; left:-1px; height:0.8em; width:1px; top:50%; transform: translateY(-50%); content:'';} 
.con-com-041 .ls-idpw-02 { padding-top: 2em; text-align: center; font-size: 0.8em; margin-left: -0.75em}
.con-com-041 .ls-idpw-02 a { padding: 0.8em;}
.con-com-041 .ls-idpw-02 span { position: relative;}
.con-com-041 .ls-idpw-02 span+span:after { position: absolute; background:#000; left:-1px; height:0.8em; width:1px; top:50%; transform: translateY(-50%); content:'';} 
.con-com-041 .ls-btn-01 input[type=submit] { background:#00acd5; border:1px solid transparent; text-align: center; max-width:100%; color:#fff; width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.9em 0px 0.9em 0;}
.con-com-041 .ls-btn-01 input[type=submit]:hover { background:#004ea2;  color:#fff; }
.con-com-041 .ls-btn-01 a { background:#00acd5; border:1px solid transparent; text-align: center; max-width:100%; color:#fff; width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.9em 0px 0.9em 0;}
.con-com-041 .ls-btn-01 a:hover { background:#004ea2;  color:#fff; }
.con-com-041 .ls-or span { position: relative; display:inline-block; background:#fff; padding:1.5em 0.7em;}
.con-com-041 .ls-or { position: relative;}
.con-com-041 .ls-or:before { content:''; width:100%; height:1px; background:#e2e2e2; position: absolute; top: 50%; left:0; transform: translateY(-50%);}
.con-com-041 .ls-btn-02 p { padding-bottom:0.8em;}
.con-com-041 .ls-btn-02 a { text-align: center;  border:1px solid transparent; max-width:100%;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.9em 0px 0.9em 0; }
.con-com-041 .ls-btn-02 a:before { width: 1.2em; height:1em; content:''; display:inline-block; vertical-align: middle; margin-right:0.5em; background-position: center center; background-repeat: no-repeat; background-size: contain;}
.con-com-041 .ls-sns-c a { background:#f7e409; color:#381c1e}
.con-com-041 .ls-sns-c a:hover { background:#efdc07; }
.con-com-041 .ls-sns-n a { background:#22c73c; color:#fff;}
.con-com-041 .ls-sns-n a:hover { background:#1dba36; }
.con-com-041 .ls-join a { background:#fff; color:#00acd5; border:1px solid #00acd5;}
.con-com-041 .ls-join a:hover {  background:#00acd5;  color:#fff; }
.con-com-041 .ls-join a:before { display:none;}
.con-com-041 .ls-txt-01 { padding:2em 0;}
.con-com-041 .ls-on-id { margin: 1em 0; border:1px solid #e2e2e2; border-radius: 0.2em; font-size: 1.4em; font-weight: 800; padding: 0.7em 0.5em;}
.con-com-041 .ls-txt-02 {  padding-top:1.5em; padding-bottom: 3em;}
.con-com-041 .ls-txt-02 p { font-size: 0.85em; color:#808080;}
.con-com-041 .ls-txt-03 { margin-top:1em; margin-bottom:1em; color:#00acd5; font-size: 0.85em; border-radius: 5px; background:#f4f4f5; padding: 1em; text-align: center;}
.con-com-041 .dl-box-01 dd {width: 70%;}
.con-com-041 .dl-box-01 {  padding-bottom: 2em; text-align: left; }
.con-com-041 .dl-box-01 dl { border-bottom:1px solid #cccccc; padding-bottom: 0.7em; padding-top:0.7em; display:flex; justify-content: start; align-items: center;}
.con-com-041 .dl-box-01 dt { font-weight:600; line-height: 1.6em; width: 30%;}
.con-com-041 .dl-box-01 input { padding: 0.6em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}
.con-com-041 .dl-box-02 dd {width: 70%;}
.con-com-041 .dl-box-02 { padding-bottom: 2em; text-align: left; }
.con-com-041 .dl-box-02 dl { border-bottom:1px solid #cccccc; padding-bottom: 0.7em; padding-top:0.7em; display:flex; justify-content: start; align-items: stretch;}
.con-com-041 .dl-box-02 dt { font-weight:600; padding-top: 0.7em; line-height: 1.6em; width: 30%;}
.con-com-041 .dl-box-02 dd span { display:block; padding-top: 0.9em;}
.con-com-041 .dl-box-02 dl:nth-child(1) { padding-bottom: 1.3em;}
.con-com-041 .dl-box-02 dd p { padding-top: 0.5em; color:#808080; font-size: 0.75em;}
.con-com-041 .dl-box-02 input { padding: 0.6em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}

/*히원가입*/
.con-com-051 { padding: 5em 0px 8em 0px; position: relative;}
.con-com-051 .com-box-01 { display:flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-051 .con-box-01 { text-align: left; width: 62%; padding-right: 5%;}
.con-com-051 .con-box-02 { padding-top: 3.9em; position: relative; text-align: left; width: 38%; overflow: hidden;}
.con-com-051 .con-box-01 h3 { padding-bottom: 1.3em; font-size: 1.6em; font-weight: 800;}
.con-com-051 input[type=text],[type=password], .con-com-03 textarea { padding: 0.6em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}
.con-com-051 .con-box-01 select { padding: 0.6em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}
.con-com-051 .dl-box-01 dd {width: 70%;}
.con-com-051 .dl-box-01 { padding-top: 0.5em; border-top:2px solid #000;}
.con-com-051 .dl-box-01 dl {border-bottom:1px solid #cccccc; padding-bottom: 0.7em; padding-top:0.7em; display:flex; justify-content: start; align-items: stretch;}
.con-com-051 .dl-box-01 dt { padding-top: 0.5em; line-height: 1.6em; width: 30%;}
.con-com-051 .dl-box-01 dd p { padding-top: 0.5em; color:#808080; font-size: 0.75em;}
.con-com-051 .dl-box-01 dt span { display:inline-block; position: relative; padding-right:0.3em; font-weight:600; vertical-align: middle;}
.con-com-051 .ls-info-01 { text-align: left;}
.con-com-051 .ls-info-01 details { padding-bottom:0.8em;}
.con-com-051 .ls-info-01 summary::marker {  content:''; }
.con-com-051 .ls-info-01 summary { font-size:0.85em; cursor: pointer; z-index:2; box-shadow: 3px 3px 10px rgba(0,0,0,0.07); position: relative; padding: 0.8em 1.5em; border:1px solid #e2e2e2; background:#f4f4f5; border-radius: 0.4em;}
.con-com-051 .ls-info-01 details[open] summary:after {  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21px' height='12px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M20.996,11.999 L10.500,1.325 L0.003,11.999 L0.003,10.676 L10.500,0.001 L20.996,10.676 L20.996,11.999 Z'/%3E%3C/svg%3E"); }
.con-com-051 .ls-info-01 summary:after { content:''; width:1.2em; height:1.2em; top:50%; transform: translateY(-50%); position: absolute; right: 2em; background-size: contain; background-position: center center; background-repeat: no-repeat; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21px' height='12px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M20.996,0.001 L10.500,10.675 L0.003,0.001 L0.003,1.324 L10.500,11.999 L20.996,1.324 L20.996,0.001 Z'/%3E%3C/svg%3E"); }
.con-com-051 .ls-info-01 .ls-txt-01 { overflow-y:auto;  height: 21em; color:#808080; font-size: 0.8em; z-index:1;position: relative; margin-top: -2em; box-shadow: 3px 3px 10px rgba(0,0,0,0.07); padding: 3.5em 1.7em 1.5em 1.7em; border:1px solid #e2e2e2; background:#fff; border-radius: 10px; }
.con-com-051 .ls-info-01 summary span { vertical-align: middle; }
.con-com-051 .ls-info-02 { padding-left: 1.55em; font-size: 0.85em;}
.con-com-051 .ls-btn { text-align: center; padding-top: 3.5em;}
.con-com-051 .ls-btn a {background:#00acd5; text-align: center; max-width:210px; color:#fff;  width:100%; border-radius: 30px;  line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.8em 0px 0.8em 0; border:0px;}
.con-com-051 .ls-btn a:hover { background:#004ea2; }
.con-com-051 .ls-btn a.red {background:#eb6100}
.con-com-051 .ls-btn a.red:hover {background:#444}
.con-com-051 input[type=checkbox], .con-com-051 input[type=radio] {position: relative; margin-top:0.5px; min-width: 18px; height: 18px; margin-right: 0.5em;}



/* 수강후기 목록 */
.con-com-091 { margin:0 auto; max-width: 1240px; margin:0 auto; position: relative; overflow:hidden; padding-top: 100px; padding-bottom: 7em;}
.con-com-091 .con-head { text-align: center; padding-left:20px; padding-right:20px; }
.con-com-091 .com-box-01 { max-width: 1280px; padding-left:20px; padding-right:20px; margin:0 auto; padding-bottom: 2em; padding-top: 5em; }
.con-com-091 .ls-list-box { padding-top: 2em; width:100%; display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 4%;}
.con-com-091 .ls-list { width: 100%; padding-bottom: 1em; border-radius: 10px; border:1px solid #e2e2e2; box-shadow: 3px 3px 10px rgba(0,0,0,0.07); overflow:hidden; margin-bottom:3em; }
.con-com-091 .ls-list .ls-img-01 img { object-fit:cover; width:100%; height:100%; border-bottom:1px solid #eee; }
.con-com-091 .ls-list .ls-img-01 { width: 100%; height: 215px; background:#f0f0f0; position: relative; display:flex; justify-content: center; align-items: center; overflow:hidden;}
.con-com-091 .ls-list:hover .ls-img-01:after { background:rgba(0,0,0,0.55); content:''; position: absolute; left:0; top:0; width:100%; height:100%;}
.con-com-091 .ls-list:hover .ls-more { opacity: 1;}
.con-com-091 .ls-list .ls-more { opacity: 0; z-index:2; font-size:0; position: absolute;  left:50%; top: 50%; transform: translate(-50%, -50%); }
.con-com-091 .ls-list .ls-more:after { content: '\253C';font-weight: 100; font-size: 2.4rem; color:#00acd5}
.con-com-091 .ls-list h3 { font-weight: normal; word-break: break-all; padding-top: 1em; padding-bottom:0.5em;}
.con-com-091 .ls-list a { text-align: left;}
.con-com-091 .ls-list .ls-ss { font-weight:600;}
.con-com-091 .ls-list .ls-ss span {padding-right: 1em; position: relative; }
.con-com-091 .ls-list .ls-ss-date span {font-size:0.8em; }
.con-com-091 .ls-list .ls-type { font-size: 0.8em; vertical-align: middle;}
.con-com-091 .con-box-02 .ls-more { font-weight: 600; letter-spacing: -0.5px; font-size: 0.9em;color:#3d81ff; line-height:1; text-align: center; display:inline-block; position: relative; padding: 0.3em 1.2em 0.5em 1.2em; border-radius: 7px; border:1px solid #fff;}
.con-com-091 .con-box-02 .ls-more:after { left: 5px; border-radius: 50%; width: 40px; height:40px; line-height: 40px; text-align: center; top:1px;  font-weight: 300; position: relative; content:'\2192'; display:inline-block;font-size: 1.1rem;}
.con-com-091 .con-box-02 .ls-more:hover:after { border-color:#3d81ff;}
.con-com-091 .con-box-02 .ls-more:hover { border-color:#3d81ff  }
.con-com-091 .ls-btn { text-align: center; padding-top: 3.5em;}
.con-com-091 .ls-btn a {background:#fff; text-align: center; max-width:210px; color:#00acd5; border:1px solid #00acd5;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:1.1em 0px 1em 0; }
.con-com-091 .ls-btn a:hover { background:#00acd5; color:#fff; }
.con-com-091 .more-info { padding:10px 20px; }

.con-com-111 { margin:0 auto; max-width: 1240px; margin:0 auto; position: relative; overflow:hidden; padding-top: 120px; padding-bottom: 7em;}
.con-com-111 .con-head { text-align: center; padding-left:20px; padding-right:20px; }
.con-com-111 .com-box-01 {text-align: left;  max-width: 1280px; padding-left:20px; padding-right:20px; margin:0 auto; padding-bottom: 2em; padding-top: 2em; }
.con-com-111 .ls-info img { max-width: 100%; display: inline-block}
.con-com-111 .ls-info {text-align: center; padding: 2em 1em 4em 1em; border-bottom:1px solid #e8e8e8}
.con-com-111 .ls-info .ls-txt-01 { text-align: left; padding-bottom: 1em;}
.con-com-111 .ls-head-box h4 {  font-size: 1.4em; padding: 1em 1em; border-top:4px solid #000; border-bottom:1px solid #e8e8e8}
.con-com-111 .ls-head-box .ls-nd { padding:1em;  border-bottom:1px solid #e8e8e8; display:flex; justify-content: space-between; align-items: center;}
.con-com-111 .ls-head-box .ls-name .ls-type { font-size: 0.8em; padding-left: 2em; display:inline-block; vertical-align: middle;}
.con-com-111 .ls-img { display:block; padding: 2em 0; text-align: center; max-width:100%;}
.con-com-111 .con-box-03 { margin:0 auto; padding:0px; max-width: 1240px;}
.con-com-111 .ls-box-01 { display:flex;  justify-content: space-between; align-items: center; border-top:1px solid #959595; border-bottom:1px solid #959595; padding:2em 0px}
.con-com-111 .con-box-03 h4 { font-weight: normal; padding-top:0.5em;}
.con-com-111 .ls-next {text-align: right; padding-right: 22px; min-width:300px; }
.con-com-111 .ls-prev {text-align: left; padding-left: 22px; min-width:300px; }
.con-com-111 .ls-prev p, .con-com-111 .ls-next p { font-size: 1.35em; font-weight: 600; color:#00acd5; position: relative; }
.con-com-111 .ls-prev p:after { content:'\2039';  position: absolute; left:-22px; font-size: 1.2em; top: -0.1em; line-height: 1.2em; }
.con-com-111 .ls-next p:after { content:'\203A';  position: absolute; right:-22px; font-size: 1.2em; top: -0.1em; line-height: 1.2em; }
.con-com-111 .ls-prev h4 { color:#646464}
.con-com-111 .ls-next h4 { color:#010101}
.con-com-111 .ls-full { width: 50px; height: 50px; font-size:0; position: relative;}
.con-com-111 .ls-full:after { width:100%; line-height: 3rem; position:absolute; left:50%; top: 50%; transform: translate(-50%, -50%); content:'\2261'; font-weight: 600; color:#00acd5; font-size: 2rem;  z-index:6}
.con-com-111 .ls-view iframe { width:100%; height:500px; }
.con-com-111 .ls-btn { text-align: center; padding-top: 3.5em;}
.con-com-111 .ls-btn a {background:#fff; text-align: center; max-width:210px; color:#00acd5; border:1px solid #00acd5;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:1.1em 0px 1em 0; }
.con-com-111 .ls-btn a:hover { background:#00acd5; color:#fff; }
.con-com-111 .btn-right { width:100%; text-align:right; }


/* 마이페이지 정보수정 및 게시판 작성 */
.con-com-18 { margin:0 auto; max-width: 1000px; margin:0 auto; position: relative; overflow:hidden; padding-top: 70px; padding-bottom: 5em;}
.con-com-18 .head-box-01 { position: relative; padding-bottom: 2em;}
.con-com-18 .com-box-01 { border-radius: 1em; min-height: 65vh; padding:3em 3em 4em 3em; background:#fff;}
.con-com-18 .dl-box-01 dd {  width: 100%;    }
.con-com-18 .dl-box-01 dd.middel {  display: flex;    justify-content: start;    align-items: center; }
.con-com-18 .dl-box-01 {  text-align: left;  border-top: 2px solid #000;}
.con-com-18 .dl-box-01 dl {   min-height: 4em;  border-bottom: 1px solid #cccccc;   padding-bottom: 0.7em;    padding-top: 0.7em;    display: flex;    justify-content: start;    align-items: stretch;}
.con-com-18 .dl-box-01 dt { padding-top:0.6em; padding-left: 10px;   line-height: 1.6em; width: 25%; max-width: 180px; min-width: 130px;}
.con-com-18 .dl-box-01 dd p {    padding-top: 0.5em;    color: #808080;    font-size: 0.85em;}
.con-com-18 .dl-box-01 dt span {    display: inline-block;    position: relative;    padding-right: 0.3em;    font-weight: 600;    vertical-align: middle;}
.con-com-18 .dl-box-01 .con-text { padding:2em 0;}
.con-com-18 .dl-box-01 input[type=text], .con-com-18 .dl-box-01 textarea {    padding: 0.7em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 5px;    width: 100%;}
.con-com-18 .dl-box-01 select {    padding: 0.7em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 5px;    width: 100%;}
.con-com-18 .ls-warning-box { text-align: left; padding: 20px 10px 30px 10px; border-bottom: 1px solid #e2e2e2; }
.con-com-18 .ls-warning-box h3 { position: relative; z-index:1; border-top-left-radius: 5px; border-top-right-radius: 5px; padding: 0.8em 20px 1.2em 20px; background:#e7e9f3 }
.con-com-18 .ls-warning-box .ls-warning-txt { overflow-y:auto; height: 15em; margin-top: -5px; background:#fff; z-index:2; position: relative; color:#808080; border-radius: 5px; font-size: 0.9em; padding: 1em 20px; border:1px solid #e7e9f3;}
.con-com-18 input[type=checkbox], .con-com-18 input[type=radio] {    position: relative;    margin-top: 0.5px;    min-width: 18px;    height: 18px;    margin-right: 0.5em;}
.con-com-18 .ls-warning-box .ls-agree {padding-top:1em;}
.con-com-18 .ls-warning-box .ls-agree span, .con-com-18 .ls-warning-box .ls-agree input { vertical-align: middle;}
.con-com-18 .ls-warning-box .ls-agree span { line-height:1; position: relative; margin-top: -3px;}
.con-com-18 .ls-btn { text-align: center; padding-top: 3em;}
.con-com-18 .ls-btn a { color:#fff; border:1px solid #00acd5; text-align: center; max-width:150px; background:#00acd5;  width:100%; border-radius: 40px;  line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.8em 0px 0.8em 0; }
.con-com-18 .ls-btn a:hover { background:#004ea2;  border:1px solid #004ea2;}
.con-com-18 .refund-box { display:flex; justify-content: space-between; align-items: stretch;}
.con-com-18 .refund-box>div { width: 48%;}
.con-com-18 .refund-info { border-radius: 1em; flex-direction: column; display:flex; justify-content: center; align-items: center; background:#f9fafe; width: 48%; border:1px dashed #00acd5}
.con-com-18 .refund-info h3 { text-align: center; padding-bottom:1em; font-weight: 800; font-size: 1.4em;}
.con-com-18 .dl-box-02 dd {   width: 90%;}
.con-com-18 .dl-box-02 { text-align: left;  border-top: 2px solid #000;}
.con-com-18 .dl-box-02 dl {  min-height: 4em;  border-bottom: 1px solid #cccccc;   padding-bottom: 0.7em;    padding-top: 0.7em;    display: flex;    justify-content: start;    align-items: center;}
.con-com-18 .dl-box-02 dt { font-weight: 600; padding-left: 10px;   line-height: 1.6em; width: 10%; max-width: 100px; min-width: 100px;}
.con-com-18 .dl-box-02 dd p {    padding-top: 0.5em;    color: #808080;    font-size: 0.75em;}
.con-com-18 .dl-box-02 dt span {    display: inline-block;    position: relative;    padding-right: 0.3em;    font-weight: 600;    vertical-align: middle;}
.con-com-18 .dl-box-03 dd {   width: 90%;}
.con-com-18 .dl-box-03 dl {  padding-bottom: 0.3em;    padding-top: 0.3em;    display: flex;    justify-content: start;    align-items: stretch;}
.con-com-18 .dl-box-03 dt { font-weight: 600; padding-left: 10px;  line-height: 1.6em; width: 10%; max-width: 100px; min-width: 100px;}
.con-com-18 .dl-box-03 dd p {    padding-top: 0.5em;    color: #808080;    font-size: 0.75em;}
.con-com-18 .dl-box-03 dt span {    display: inline-block;    position: relative;    padding-right: 0.3em;    font-weight: 600;    vertical-align: middle;}
.con-com-18 .dl-box-03 {text-align: left; margin:0 auto; max-width: 300px;}
.con-com-18 .ls-warning-input { padding: 1em 0 0em 0; text-align: left;}
.con-com-18 .ls-warning-input dt { font-weight: 600; padding-left: 10px;  line-height: 1.6em; width: 10%; max-width: 100px; min-width: 100px;}
.con-com-18 .ls-warning-input dd { padding: 1em 10px;}
.con-com-18 .ls-warning-input textarea {    padding: 0.7em 0 0.7em 10px;    border: 1px solid #e2e2e2;    border-radius: 5px;  height: 5em;  width: 100%;}
.con-com-18 .ls-warning { padding: 1em 15px; background:#fdefe5; color:#eb6100 }
.con-com-18 .member-box { display:block; }
.con-com-18 .ls-sns-box h3 { text-align: left; padding-bottom:1.4em;}
.con-com-18 .ls-sns-box .ls-info { color:#848484; font-size: 0.9em;}
.con-com-18 .ls-btn-02 a { font-size: 1.1em; text-align: center;  border:1px solid transparent; max-width:100%;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.9em 0px 0.9em 0; }
.con-com-18 .ls-btn-02 a:before { width: 1.2em; height:1em; content:''; display:inline-block; vertical-align: middle; margin-right:0.5em; background-position: center center; background-repeat: no-repeat; background-size: contain;}
.con-com-18 .ls-btn-02 span { font-size: 1.1em; text-align: center;  border:1px solid transparent; max-width:100%;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.9em 0px 0.9em 0; }
.con-com-18 .ls-btn-02 span:before { width: 1.2em; height:1em; content:''; display:inline-block; vertical-align: middle; margin-right:0.5em; background-position: center center; background-repeat: no-repeat; background-size: contain;}
.con-com-18 .ls-sns-c a { background:#f7e409; color:#381c1e}
.con-com-18 .ls-sns-c a:hover { background:#efdc07; }
.con-com-18 .ls-sns-n a { background:#22c73c; color:#fff;}
.con-com-18 .ls-sns-n a:hover { background:#1dba36; }
.con-com-18 .ls-sns-c span { background:#f7e409; color:#381c1e}
.con-com-18 .ls-sns-c span:hover { background:#efdc07; }
.con-com-18 .ls-sns-n span { background:#22c73c; color:#fff;}
.con-com-18 .ls-sns-n span:hover { background:#1dba36; }
.con-com-18 .ls-not-sns a { text-align:left; font-size: 0.9em; text-decoration: underline;}
.con-com-18 .ls-warning-box .ls-warning-txt.he10e { height: 10em;}
.con-com-18 .ls-login h3 { padding-bottom: 1em; font-size: 1.4em; font-weight:800; }
.con-com-18 .ls-login { padding-top: 3em; max-width: 400px; margin:0 auto;}
.con-com-18 .ls-login .ls-txt-03 { margin-top: 1em;  margin-bottom: 1em;   color: #00acd5;    border-radius: 5px;    background: #f4f4f5;    padding: 1em;    text-align: center;}


/* 신청하기 */
.con-com-031 { padding: 5em 0px 8em 0px; position: relative;}
.con-com-031 .com-box-01 { display:flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-031 .con-box-01 { text-align: left; width: 60%; padding-right: 7%;}
.con-com-031 .con-box-02 { position: relative; text-align: left; width: 40%; border:1px solid #eaeaea; border-radius: 0.7em; overflow: hidden;}
.con-com-031 .con-box-02.ls-close-pay:after { position:absolute; z-index:1; display:flex; justify-content: center; align-items: center; color:#eb6100; font-weight: 600; content:'추가정보 입력 후 수강신청이 가능합니다.'; width:100%; height:100%; left:0; top:0; background-color:rgba(255,255,255,0.8)}
.con-com-031 .ls-img-01 img { max-width:100%;}
.con-com-031 .con-box-01 h3 { padding-bottom: 1.3em; font-size: 1.25em; font-weight: 800;}
.con-com-031 input[type=text], .con-com-03 textarea { font-size: 0.9em; padding: 0.9em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}
.con-com-031 .con-box-01 select { font-size: 0.9em; padding: 0.9em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}
.con-com-031 .con-box-02 select { padding: 0.9em 0.7em; border:1px solid #e2e2e2; border-radius: 5px; width:100%;}
.con-com-031 textarea { height: 6em;}
.con-com-031 .dl-box-01 dd { padding-top:1em;}
.con-com-031 .dl-box-01 { padding-top: 0.5em; border-top:2px solid #000;}
.con-com-031 .dl-box-01 dl { padding-bottom: 1em; padding-top:1em;}
.con-com-031 .dl-box-01 dt { line-height: 1.6em; display:flex;}
.con-com-031 .dl-box-01 dt>span { display:inline-block; padding-right:1em; font-weight:600; vertical-align: middle;}
.con-com-031 .ls-check-box label { cursor: pointer; line-height: 1.4em; font-size: 0.9em; padding: 0.5em 0; display:flex; }
.con-com-031 input[type=checkbox], .con-com-03 input[type=radio] {position: relative; margin-top: 1.5px; min-width: 18px; height: 18px; margin-right: 0.5em;}
.con-com-031 .ls-check-box span { opacity: 0.9; }
.con-com-031 .ls-warning { font-size: 0.85em; border-radius: 5px; background:#f4f4f5; padding: 1em; text-align: center;}
.con-com-031 .ls-warning .checkup { width:80%; max-width:300px; text-align:left; margin:0 auto; line-height:2em; }
.con-com-031 .ls-pay-01 { padding:8%; background:#f4f4f5}
.con-com-031 .ls-info-01 { display:flex; border-bottom:1px solid #d3d3d3; padding-bottom:1em; justify-content: start; align-items: center;}
.con-com-031 .ls-img-01 { width:100%; max-width: 155px; }
.con-com-031 .ls-img-01 img{ max-width:100%; border-radius: 10px;}
.con-com-031 .ls-money {font-size: 1.4em;}
.con-com-031 .con-box-02 h4 {padding-bottom:0.3em; font-size: 1.05em; font-weight: 800;}
.con-com-031 .con-box-02 h3 {padding-bottom:1em; font-size: 1.2em; font-weight: 800;}
.con-com-031 .ls-info { padding-left:1.5em;}
.con-com-031 .ls-info-02 { padding-top: 1em;}
.con-com-031 .dl-box-02 dl { padding: 0.4em 0; display:flex; align-items: center;}
.con-com-031 .dl-box-02 dt { width: 155px; min-width: 155px; max-width: 155px; } 
.con-com-031 .dl-box-02 dd { width: 100%; } 
.con-com-031 .dl-box-03 dl { padding: 0.3em 0; display:flex; align-items: center;}
.con-com-031 .dl-box-03 dl:last-of-type { font-weight:600; border-top:1px solid #d3d3d3; margin-top:10px;padding-top:20px;}
.con-com-031 .dl-box-03 dt {  width: 155px; min-width: 155px; max-width: 155px; } 
.con-com-031 .dl-box-03 dd { text-align: right; width: 100%; } 
.con-com-031 .ls-check-box-02 { display:flex; flex:1;overflow: hidden; border-radius: 5px; border: 1px solid #e2e2e2;}
.con-com-031 .ls-check-box-02 span { display:block; width: 50%;  }
.con-com-031 .ls-check-box-02 input[type="radio"], .con-com-03 .ls-check-box-02 input[type="checkbox"] { display: none;}
.con-com-031 .ls-check-box-02 label { width: 100%; display: flex; text-align: center; justify-content: center;  align-items: center; cursor: pointer; height: 100%; background: #fff;  line-height: 1.3em;    padding: 0.7em 0rem 0.7em 0rem;    position: relative;}
.con-com-031 .ls-check-box-02 input[type="radio"]:checked + label, .con-com-03 .ls-check-box-02 input[type="checkbox"]:checked + label {    background: #00acd5;    color: #fff;    border: none;}
.con-com-031 .ls-pay-02 { padding:8%;}
.con-com-031 .ls-pay-03 { padding:0em 8%;}
.con-com-031 .ls-info-04 p { padding-bottom:1em;}
.con-com-031 .ls-info-04 a { position: relative; display:block;  font-size: 0.85em; border-radius: 5px; background:#f4f4f5; padding: 1em;}
.con-com-031 .ls-info-04 span { text-decoration: underline; display:block; top:50%; margin-top:1px; transform: translateY(-50%); position: absolute; right:1em;  }
.con-com-031 .ls-info-05 label { cursor: pointer; line-height: 1.4em; font-size: 0.85em; padding: 0.5em 0; display:flex; }
.con-com-031 .ls-btn { padding:10% 8%;}
.con-com-031 .ls-btn a { font-size: 1.1em; background:#00acd5; text-align: center; max-width:100%; color:#fff; border:1px solid #00acd5;  width:100%; border-radius: 30px; line-height:1; font-weight: 600; display:inline-block; position: relative; padding:0.8em 0px 0.8em 0; }
.con-com-031 .ls-btn a:hover { background:#004ea2; color:#fff; }

/* 주의사항 레이어 보기 */
.cau-content { position: fixed; z-indeX:40; top:0; left:o; width:100%; height:100vh; background:rgba(255,255,255,0.9); overflow:scroll;}
.cau-content .inbox { padding:3em; margin:0 auto; width:100%; max-width:1280px;  }
.cau-content .btn-right { text-align:right; font-weight:700; font-size:1.15em; padding:20px 0;}
.cau-content .cau-text { text-align:justify; }

/* 로그인로그아웃 */
.head-gnb li {position: relative; display:inline-block; }
.head-gnb li:after { content:''; position: absolute; right:-0.15em; top:50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.3); height: 0.7em; width:1px;}
.head-gnb li:last-of-type:after { display:none; }
.head-gnb a { font-size: 0.9em; display:block; padding: 0.8em 1em; }
.head-gnb {  border-bottom:1px solid rgba(0,0,0,0.1); text-align: right;}
.head-gnb ul { max-width: 1240px; margin:0 auto; padding: 0px 20px 0 10px;  }

/* 온라인문의 */
.con-com-15 { overflow: hidden;  margin:0 auto; padding: 7em 0px 7em 0px; position: relative;}
.con-com-15 .con-head { padding-bottom: 4em; text-align: center; max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-15 .com-box-01 { text-align: left; max-width: 1240px; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-15 .dl-box-01 dl { padding:1em 3px 1em 0; border-bottom:1px solid #d3d3d3; text-align: left; display:flex; justify-content: start; align-items: stretch;}
.con-com-15 .dl-box-01 dt {font-weight:600; min-width: 8em; max-width: 10em; width: 10em; padding-top: 0.4em;}
.con-com-15 .dl-box-01 { border-top:2px solid #000;}
.con-com-15 .dl-box-01 dd input {    padding: 0.5em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 0.3em;    width: 100%;}
.con-com-15 .dl-box-01 dd textarea {  height: 14em; padding: 0.5em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 0.3em;    width: 100%; }
.con-com-15 .dl-box-01 dd {width:100%;}
.con-com-15 .ls-btn {text-align: center; padding: 2em;}
.con-com-15 .ls-btn a { font-weight:600; font-size: 1.1em; text-align: center; display:inline-block; border-radius: 0.7em; padding: 0.8em 1em; width:100%; max-width: 15em; background:#ffae00; color:#fff;}
.con-com-15 .ls-btn a:hover { background:#7463bf; }
.con-com-15 .ls-check-box { padding-top: 1em;}
.con-com-15 .ls-check-box label {    cursor: pointer;    line-height: 1.4em; padding: 0.5em 0;    display: flex;}
.con-com-15 input[type=checkbox], .con-com-14 input[type=radio] {  vertical-align: middle;  position: relative;   min-width: 1em;    height: 1em;    margin-right: 0.5em;}
.con-com-15 .ls-check-box span { position: relative; margin-top: -0.2em;}
.con-com-15 .dl-box-01 select {   padding: 0.5em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 0.3em;    width: 100%;}
.con-com-15 .dl-box-01 p { padding-top: 1em; padding-bottom:1em;}
.con-com-15 .dl-box-01 .input-01 { height: 3em;  margin-right:3em; border:1px solid #e9e9e9; width: 8em; }
.con-com-15 .dl-box-01 .input-02 { height: 3em; border:1px solid #b8c9c2; background:#f7f7f7; width: 8em;   text-align: center;}
.con-com-15 .dl-box-03 { padding-top: 2em;}
.con-com-15 .dl-box-03 dt { font-weight: 600; padding-bottom:1em;}
.con-com-15 .dl-box-03 textarea { font-size: 0.9em;  height: 10em; padding: 0.5em 0.7em;    border: 1px solid #e2e2e2;    border-radius: 0.3em;    width: 100%; }



/* 레이어박스 */
.layer-box { z-index:20; position: fixed; width:100%; height:100%; left:0; top:0; background:rgba(194, 194, 194, 0.6)}
.layer-box .ls-layer-in {min-width: 300px; max-width: 50em; position:absolute; left:50%; top:50%; transform: translate( -50%, -50%); }
.layer-box .ls-layer-con { background:#fff;  border-radius: 1em;}
.layer-box .ls-img-01 { aspect-ratio: 16/16; border-radius: 1em; overflow: hidden; clear: both; display:block; max-width: 500px; }
.layer-box .ls-img-01 a { display:block;}
.layer-box .ls-img-01 img { object-fit: cover; width:100%; height:100%; object-position: center center;}
.layer-box .layer-btn-box { padding:1.2em 0; width:100%; color:#fff; z-index: 5; }
.layer-box .layer-btn { z-index: 4;display: flex;justify-content : center;align-items: center; clear: both; width: 100%; position: relative;}
.layer-box .layer-btn a { margin: 0 0.3em; width:1em; height:1em; line-height: 1; border-radius: 1em; display:block; color:#fff; position: relative; background:#ffffff;}
.layer-box .layer-btn a:hover, .layer-box .layer-btn .active { background:#69acab;}
.layer-box .layer-btn .active { width: 2.7em; }
.layer-box .layer-btn span { font-size:0; display:block;position: relative;}
.layer-box .layer-close { display:flex; justify-content: space-between; background:#000; border-radius: 2em; padding:0.5em 1.5em 0.7em 1.5em; }
.layer-box .layer-close a { display:block; position: relative; font-size: 1.1em; color:#fff;}
.layer-box .layer-close a:hover { color:#69acab; text-decoration: underline; }
.layer-box .layer-close .ls-close:before { display:inline-block; padding-right: 0.5em; content:'\2715';}
.layer-box .layer-in-box button { border:none; background:#fff; border-radius: 5em; overflow:hidden; height:3.6em; width:3.6em; position: absolute; top:40%; transform: translateY(-50%); }
.layer-box .layer-in-box button:after {  content:'';  background-size: contain; background-position: center center; background-repeat: no-repeat; position: absolute; transform: translate(-50%, -50%); top:50%; width:45%; height:45%; }
.layer-box .layer-in-box button:hover { background:#69acab}
.layer-box .layer-in-box button:hover:after { filter: brightness(0) grayscale(1) invert(1);}
.layer-box .slide-left { left:-15%;}
.layer-box .layer-in-box button span { font-size:0;}
.layer-box .slide-right { right: -15%;}
.layer-box .slide-left:after { left:45%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14px' height='25px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M14.008,24.995 L1.375,12.500 L14.008,0.004 L12.625,0.004 L-0.008,12.500 L12.625,24.995 L14.008,24.995 Z'/%3E%3C/svg%3E");}
.layer-box .slide-right:after {left:55%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14px' height='25px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M-0.008,24.996 L12.625,12.500 L-0.008,0.004 L1.374,0.004 L14.008,12.500 L1.374,24.996 L-0.008,24.996 Z'/%3E%3C/svg%3E");}



/* PC 사이즈 */
@media all and (max-width : 1920px)  { 

	
	
}
@media all and (max-width : 1680px)  { 

	
	
}
@media all and (max-width : 1440px)  { 
	
	.con-com-07 .con-box-01 .ls-tt { font-size: 2.2em;}

	.con-com-06 .con-box-01 .ls-tt { font-size: 2.2em;}

	.con-com-10 .con-box-01 .ls-tt { font-size: 2.2em;}

}

@media all and (max-width : 1280px)  { 

	header h1 { height: 2.5em;}

	.con-com-02 .ls-img-box { height:18.55em;}
	.con-com-02 .ls-img-box img { object-fit: cover; height:100%; width: 100%;object-position: center center;}

	.con-com-07 .con-box-01 .ls-tt { font-size: 1.8em;}

	.con-com-06 .con-box-01 .ls-tt { font-size: 1.8em;}

	.con-com-10 .con-box-01 .ls-tt { font-size: 1.8em;}

	.con-com-13 .table-box-01 th br { display:block;}
	.con-com-13 .table-box-01 .wd-7e { width: 6em}
	.con-com-13 .table-box-01 .wd-15e { width: 48%}
	/* .con-com-13 .table-box-01 .wd-15e { width: 10em} */

}

/* 패드류 기본 */
@media all and (min-width : 769px) and (max-width : 1024px) {
		
	

}


@media all and (max-width : 1024px){

	.head-gnb { display:none;}

	header .d-md-none { display:none;}
	header .d-lg-none { display: block;}
	header { height: 60px;}

	header:after { top: 60px;}
	header .box_inner { padding-top:0; padding-left: 20px; padding-right:20px; }
	header:after { display:none;}

	.menu-scroll .nav_wrap { display:none;}
	header .nav_head {min-width:auto; position: absolute; right: 70px; font-size: 0.8em;}
	.nav-head-box { padding-top: 0.14em;border-color:rgba(255,255,255,0.5)}
	.nav-head-box .nav-lang { font-weight:400;}

/* 	.snb-bg .ls-slide-texts { top:50%; transform: translate( -50%, -50%); }

	.snb { padding-top: 50px}
	.snb .snb-location span img { height: 12px} */

	
	.container { font-size: 1em;}

	footer { font-size: 0.9em; }
	footer .footer { display:block; text-align: center;}
	footer .foo-head-box { padding-bottom: 1em; margin:0 auto;}
	footer .foo-menu>ul { justify-content: center;}
	footer .col-box .copy { padding-top:1em;}
	footer .logo { width:100%; padding-top:0;}
	footer .logo h1 a { text-align: center; height: 3.3em; }
	footer .logo h1 img { height:100%; width:auto;}
	footer .col-box>p:nth-child(1) { font-size: 1.05em}
	
/* 	footer .col-box .copy { text-align: left;}
	footer { font-size: 0.9em; }
	footer .footer {flex-wrap: wrap; padding-top:0.5em; padding-bottom:1em;}	
	footer .foo-head-box { width:100%; text-align: left; padding-bottom: 2em;}
	footer .col-box {flex-direction: column; max-width:100%; width:100%; padding-left:0;}
	footer .col-box p { line-height: 1.8em;}
	footer .col-box b { font-weight: 600;}
	footer h1 { height: 2.6em;}
	footer .logo { width:100%;}
	footer .col-box span { padding-left:0; padding-right:0.5em;}
	footer .col-box .copy { font-size: 0.95em;}
	footer .sns-box { padding-top: 1em; margin-left:0;}
	footer .sns-box img { width: 32px;}
	footer .sns-box span { padding-left:0; padding-right: 0.5em;} */
		
	
	.page-top { width: 40px; height: 40px; }
	.scroll-page-top { width: 40px;}

	.scroll-box-2 .day-01 { padding-right: 5%;}
	.scroll-box-2 .inner-box ul { padding-left: 1.5em; padding-right: 1.5em;}

	.con-com-03 .ls-info-box { padding-right:1em; padding-top: 0.7em; padding-left: 1.5em;}
	.con-com-03 .ls-btn-box { padding-top: 1.2em;}

	.con-com-07 .con-box-01 .ls-tt { font-size: 1.5em;}

	.con-com-06 .con-box-01 .ls-tt { font-size: 1.5em;}

	.con-com-10 .con-box-01 .ls-tt { font-size: 1.5em;}

	.layer-box { font-size: 0.95em;}
}

@media all and (max-width : 1023px){

	/* .container { font-size: 0.85em;} */

	.con-com-031 .ls-img-01 { width: 100%; max-width:100%;}
	.con-com-031 .ls-info-01 { flex-wrap: wrap;}
	.con-com-031 .ls-info { width:100%; padding-left:0; padding-top: 1em;}
	.con-com-031 .dl-box-02 dt { min-width: 100px;}

	.layer-box { font-size: 0.9em;}
}

@media all and (max-width : 820px){

	.layer-box .ls-layer-in {min-width: 100%;  width:100%; max-width:100%; padding:0 30px; }
	.layer-box .layer-in-box button { display:none; }

}

@media all and (max-width : 768px){

	.container { font-size: 0.85em;}

	.con-head { font-size: 0.85em;}
	.con-head p { font-size: 2.1em } 
	.con-com-01 .con-head { padding-bottom: 3em;}

	header h1 { height: 1.8em;}
	header h1 a { padding-right: 0.5em;}

	.head-line .text { padding-bottom: 100px;}
	.head-line .text:after { top:90px }

	.footer { font-size: 0.85em; }
	/*footer .foo-menu>ul>li:nth-child(1),footer .foo-menu>ul>li:nth-child(2),footer .foo-menu>ul>li:nth-child(3) { display:none;}*/
	footer .foo-menu>ul>li>a { padding:1em 1.7em;}
	footer .foo-menu>ul { font-size: 0.85em; padding-left:0; padding-right:0; justify-content: center;}
	footer .foo-menu>ul>li:after { right: 0em;}
	footer .foo-menu>ul>li:last-of-type>a { padding-right:1.7em}
	footer .col-box span { display:block;}
	footer .col-box span b { display:none;}
	footer .col-box {text-align:left;}

	footer .foo-menu>ul { position: relative; flex-wrap: wrap;}
	footer .foo-menu>ul>li { display:inline-block}
	footer .foo-menu>ul>li:nth-child(3)::after { display:none}
	footer .foo-menu>ul>li:nth-child(4) { order:4 }
	footer .foo-menu>ul>li:nth-child(5) {  order:5 }
	footer .foo-menu>ul:before {content: "";background: #fff;order: 3;flex-basis: 100%;height: 1px;}


	.d-md-none { display: none!important;} /* pc 용 감추기 */
	.d-lg-none { display:block;} /* mobile 용 보여주기 */

	.snb-bg .ls-slide-texts { font-size: 0.9em; }   
	.snb-bg { height: 11em; }
	.snb-bg .ls-slide-backgrounds { height: 14.2em;}
	.snb-bg .ls-slide-texts .ls-head { font-size: 2.5em;}

	.snb li a:hover span:after, .snb li a.active span:after { bottom: -0.8em}


	

	.scroll-box-1 .inner-box .ls-img-01 { width: 3.25em; padding: 0.3em 0 0.5em}
	.scroll-box-1 .inner-box li a { padding-top: 1.1em; padding-bottom: 1.7em;}
	.scroll-box-1 .inner-box h3 { font-size:1.15em;}
	.scroll-box-1 .inner-box .ls-sub { font-size: 0.9em;}
	.scroll-box-1 .ls-slide-texts { font-size: 1.6em; padding-bottom: 1em;}
	.scroll-box-1 .ls-slide-texts .ls-img { height: 3em;}
	.scroll-box-1 .ls-slide-texts .ls-img img { height:100%;}
	.scroll-box-1 .ls-slide-backgrounds { height: 19.7em; /* top: 25px; */}
	.scroll-box-1 .ls-slide-backgrounds img { height: 100%; object-position:90% bottom;}

	.scroll-box-2 { padding:1.5em 0;}
	.scroll-box-2:before { display:none;}
	.scroll-box-2 h3 { font-size: 1.15em;}
	.scroll-box-2 .ls-more a { font-size: 0.75em;}
	.scroll-box-2 .day-01 { padding-right:3%;}
	.scroll-box-2 .day-box { letter-spacing: -0.01em;}
	.scroll-box-2 .inner-box ul { padding-left: 1.2em; padding-right:1.2em;}
	.scroll-box-2 .day-box>span { padding-top: 0.2em; display:inline-block}
	.scroll-box-2 .inner-box { font-size: 1.1em;}

	.scroll-box-3 { padding-top:1.5em; padding-bottom:3em;}
	.scroll-box-3 .inner-box { flex-wrap: wrap; font-size: 1.1em;}
	.scroll-box-3 .ls-box-01 { width: 49%;}
	.scroll-box-3 .ls-box-02 { width: 49%;}
	.scroll-box-3 .ls-box-03 { margin-top:1.5em; width:100%; display:flex;}
	.scroll-box-3 .ls-box-03 .ls-banner-01 { border-bottom:0; border-right:1px solid #e2e2e2}
	.scroll-box-3 .ls-box-03>div { width:50%;}
	
	.con-com-01 { padding-top: 5em; }
	.con-com-01 .ls-tab-box { position: relative;}
	.con-com-01 .ls-tab-box .tab-drop-open{ text-align: left; display:block; position:relative; padding:0 1.2em; height:3.4em; line-height:3.4em; font-size:0.95em; background-color:#ffae00;}
	.con-com-01 .ls-tab-box .tab-drop-open span{color:#fff; }
	.con-com-01 .ls-tab-box .tab-drop-arrow{color:#fff; font-weight:800; position:absolute; top:50%; transform: translateY(-50%); right:15px;}
	.con-com-01 .ls-tab-box .tab-drop-arrow:before { font-style: normal; content:"\2228"}
	.con-com-01 .ls-tab-box ul{font-size: 0.9em; display:block; margin:0; height:auto; position:absolute; top:100%; left:0px; right:0; background-color:#fff; border:1px solid #ddd; border-top:0; z-index:11;}
	.con-com-01 .ls-tab-box ul li{position:static; display:block; float:none; border:0; border-top:1px solid #eee; width:auto; background-color:transparent}
	.con-com-01 .ls-tab-box ul li:first-child{border-top:0; border-left:0}
	.con-com-01 .ls-tab-box ul li a{ font-weight:normal; display:flex; align-items:center; padding-top: 1em; padding-bottom:1em; padding-left: 1.2em; width:100%;}
	.con-com-01 .ls-tab-box ul li.selected a, .con-com-01 .ls-tab-box ul li:hover a,
	.con-com-01 .ls-tab-box ul li.active a{color:#ffae00; background-color:transparent; font-weight: 600; }
	.con-com-01 .ls-box-in { flex-wrap: wrap;}
	.con-com-01 .ls-box-01 { width:100%;}
	.con-com-01 .ls-box-02 { width:100%; padding-top: 2em;}
	.con-com-01 .table-box-01 thead th { width: 7.5em;}
	.con-com-01 .con-box-03 .table-box-01 thead th { width: 5em;}
	.con-com-01 .table-box-01 { font-size: 0.95em;}
	.con-com-01 .con-box-03 { border-top:1px solid #e2e2e2}
	.con-com-01 .ls-list dd:after {top:auto; bottom:-3.2em; left:16%; transform: translateX(-50%); right:auto; rotate: 90deg; width: 1.65em; height: 0.49em;background-position:right center }
	.con-com-01 .ls-list:last-of-type dd:after { display:none;}
	.con-com-01 .ls-list:last-of-type { padding-bottom:0;}
	.con-com-01 .ls-list-box { max-width: 280px; display:block;}
	.con-com-01 .ls-list { width:100%; display:flex; justify-content: center; align-items: center; padding-bottom: 3em;}
	.con-com-01 .ls-list .ls-img-01 { width: 24%;}
	.con-com-01 .ls-list dl { padding-left: 2em; width: 76%; text-align: left;}
	.con-com-01 .ls-list dd { text-align: left; padding-top: 0;}
	.con-com-01 .ls-list dt { padding-bottom:0.5em;}
	.con-com-01 .con-box-03 { padding: 3em 0;}
	.con-com-01 .con-box-04 { padding: 3em 0;}
	.con-com-01 .con-box-05 { padding-top: 4em; padding-bottom:4em;}
	.con-com-01 .con-box-06 { padding-top: 4em;}
	
	.con-com-02 { padding-top: 5em; }
	.con-com-02 .con-head { padding-bottom:2em;}

	.con-com-03 { padding-top: 5em; }
	.con-com-03 .con-head { padding-bottom:2em;}

	.con-com-05 { padding-top: 5em; }
	.con-com-05 .con-head { padding-bottom:3em;}
	.con-com-05 .ls-btn-box a { max-width: 100%}
	.con-com-05 .ls-btn-box {max-width: 40em; text-align: center; margin:0 auto;}
	.con-com-05 input[type=number] { font-size: 1.1em;}
	.con-com-05 .ls-etc { line-height: 1.6em;}

	.con-com-06 { padding-top: 5em; }
	.con-com-06 .con-head { padding-bottom:3em;}
	.con-com-06 .con-box-01 .ls-tt { font-size: 1.6em}
	.con-com-06 .ls-btn { padding-top: 2em;}
	.con-com-06 .ls-btn a { font-size: 1em;}
	.con-com-06 .com-box-01 { padding: 4em 0;}
	.con-com-06 .ls-box-in { flex-wrap: wrap;}
	.con-com-06 .ls-box-01 { width:100%;}
	.con-com-06 .ls-box-02 { width:100%; padding-top: 2em;}
	.con-com-06 .con-box-02 { padding-top:4em; padding-bottom:1em;}
	.con-com-06 .con-box-03 { padding-top: 3em;}

	.con-com-07 { padding-top: 5em; }
	.con-com-07 .con-head { padding-bottom:3em;}
	.con-com-07 .con-box-01 .ls-tt { font-size: 1.6em}
	.con-com-07 .ls-btn { padding-top: 2em;}
	.con-com-07 .ls-btn a { font-size: 1em;}
	.con-com-07 .com-box-01 { padding: 4em 0;}
	.con-com-07 .ls-box-in { flex-wrap: wrap;}
	.con-com-07 .ls-box-01 { width:100%;}
	.con-com-07 .ls-box-02 { width:100%; padding-top: 2em;}
	.con-com-07 .con-box-02 { padding-top:4em; padding-bottom:1em;}
	.con-com-07 .con-box-03 { padding-top: 3em;}

	.con-com-10 { padding-top: 5em; padding-bottom:0;}
	.con-com-10 .con-head { padding-bottom:3em;}
	.con-com-10 .con-box-01 .ls-tt { font-size: 1.6em}
	.con-com-10 .ls-txt-01 strong { font-size: 1.25em;}
	.con-com-10 .com-box-01 { padding: 4em 0;}

	.con-com-11 { padding-top: 5em; padding-bottom:0;}
	.con-com-11 .con-head { padding-bottom:3em;}

	.con-com-12 { padding-top: 5em;}
	.con-com-12 .con-head { padding-bottom:3em;}
	.con-com-12 .ls-map-box iframe { height: 16em;}

	.con-com-13 { padding-top: 5em;}
	.con-com-13 .con-head { padding-bottom:3em;}
	.con-com-13 .ls-box-in { flex-wrap: wrap;}
	.con-com-13 .ls-box-01 { width:100%; padding-bottom:1.5em;}
	.con-com-13 .ls-box-02 { width:100%;padding:2em 1.5em 2em 1.5em}
	.con-com-13 .dl-box-02 dt { min-width:4.5em; width:4.5em}
	.con-com-13 .test-box .ls-btn-box a { padding-left: 0.2em; padding-right: 0.2em;}
	.con-com-13 .test-box .ls-btn-box { max-width: 5em; padding:0;}
	.con-com-13 .ls-btn-box a { width:100%; }
	.con-com-13 .ls-box-01>div { padding:2em 1.5em 1em 1.5em}
	.con-com-13 .ls-box-01>div+div { margin-top:1.5em;}

	.con-com-14 { padding-top: 5em;}
	.con-com-14 .con-head { padding-bottom:3em;}
	.con-com-14 .ls-box-in { flex-wrap: wrap;}
	.con-com-14 .ls-box-01 { width:100%;}
	.con-com-14 .ls-box-02 { margin-left:0; margin-top:1.5em; width:100%;}
	.con-com-14 .dl-box-01 dt { min-width:5em; width:5em}

	.con-com-051 {padding-top: 3em; padding-bottom:9em;}
	.con-com-051 .con-box-01 { font-size: 1.1em;  width:100%; padding-right:0;}
	.con-com-051 .con-box-02 { font-size: 1.2em; width:100%; padding-top:2em;}
	.con-com-051 .dl-box-01 dt { max-width: 110px; min-width: 110px; }
	.con-com-051 input[type=checkbox], .con-com-03 input[type=radio] { min-width: 16px; height: 16px; margin-top:1px;}
	.con-com-051 .ls-btn a { max-width: 150px; font-size: 1.1em;}
	.con-com-051 .ls-info-01 summary  { padding: 1em;}
	.con-com-051 .ls-info-02 { padding-left: 1.05em; padding-top: 1em;}
	.con-com-051 .ls-info-02 label { line-height:1.5em; display:flex;}
	.con-com-051 .ls-info-01 details { padding-bottom: 0.6em;}

	/* 수강후기 */
	.con-com-091 { padding:60px 20px;}
	.con-com-091 .com-box-01 { padding-bottom: 2em; padding-top: 5em; }
	.con-com-091 .ls-list-box { grid-template-columns: repeat(1, minmax(0, 1fr)) }
	.con-com-091 .ls-list .ls-img-01 {height:185px;}
	
	.con-com-111 { padding-top:60px;}
	.con-com-111 .com-box-01 { padding-top:2em;}
	.con-com-111 .ls-head-box h4, .con-com-11 .ls-head-box .ls-nd,.con-com-11 .ls-info { padding-left:0.5em; padding-right: 0.5em}
	.con-com-111 .ls-head-box h4 { font-size: 1.2em; padding-top: 0.7em; padding-bottom: 0.7em;}

	.con-com-111 .ls-view iframe { width:100%; height:230px; }

	.con-com-111 .ls-prev { min-width:auto;}
	.con-com-111 .ls-next { min-width:auto;}

	.con-com-031 {padding-top: 3em; font-size: 1.15em;}
	.con-com-031 .con-box-02 { width:100%;}
	.con-com-031 .con-box-01 { width:100%; padding-bottom: 2em; padding-right:0;}
	.con-com-031 .ls-pay-01 { padding: 1.5em 0em;}
	.con-com-031 .ls-pay-02 { padding: 2em 1.3em;}
	.con-com-031 .ls-pay-03 { padding: 0 1.3em;}
	.con-com-031 .ls-btn { padding: 2em 1.3em;}
	.con-com-031 .ls-info-02 { padding-left: 1.3em; padding-right: 1.3em;}
	.con-com-031 .ls-info-01 { flex-wrap: nowrap;align-items: stretch; padding-left: 1.3em; padding-right: 0.5em; padding-bottom:1.5em;}
	.con-com-031 .ls-img-01 { min-width: 110px; max-width: 110px; width: 30%;}
	.con-com-031 .ls-info { width: 70%; padding-left: 1em; padding-top:0;}
	.con-com-031 .ls-img-01 img { border-radius: 7px;}
	.con-com-031 .dl-box-02 dt { min-width: 100px;}
	.con-com-031 .ls-info-04 p { padding-bottom: 0.7em;}
	.con-com-031 input[type=checkbox], .con-com-03 input[type=radio] { min-width: 16px; height: 16px; margin-top:1px;}


	.con-com-18 { padding-top: 50px; padding-bottom: 3em;}
	.con-com-18 .com-box-01 { padding: 2em; }

	.con-com-15 { padding-top: 5em;}
	.con-com-15 .con-head { padding-bottom:3em;}
	.con-com-15 .dl-box-01 dl { flex-wrap: wrap;}
	.con-com-15 .dl-box-01 dt { padding-bottom : 1em; width:100%; min-width:100%;}
	.con-com-15 .dl-box-02 dl { flex-wrap: wrap;}
	.con-com-15 .dl-box-02 dt { padding-bottom : 1em; width:100%; min-width:100%;}

	.layer-box { font-size: 0.75em;}
}

/* 모바일사이즈 기본 */
@media all and (max-width : 767px){

	.scroll-box-1 .inner-box ul { flex-wrap: wrap;}
	.scroll-box-1 .inner-box ul li { width: 50%;}
	.scroll-box-1 .inner-box li:nth-child(even) { background:#fff;}
	.scroll-box-1 .inner-box li:nth-child(2),.scroll-box-1 .inner-box li:nth-child(3),.scroll-box-1 .inner-box li:nth-child(6) { background:#fafafa}

	.scroll-box-2 .inner-box { flex-wrap: wrap;}
	.scroll-box-2 .inner-box>div { width: 100%;}
	.scroll-box-2 .ls-box-02 { margin-top: 1.5em;}
	.scroll-box-2 .ls-more { top: 0.7em;}

	.scroll-box-3 .inner-box .ls-more { margin-top: 3em;}

	.con-com-02 .ls-list { display:block}
	.con-com-02 .ls-img-box { width:100%; height:auto; }
	.con-com-02 .ls-info-box { width:100%; padding: 1.5em;}
	.con-com-02 .ls-info-box dl { padding: 0.4em 0;}
	.con-com-02 .ls-btn-box a { font-size: 1.1em; padding: 0.6em 0}
	
	.con-com-03 .ls-list-box li { display:block; width:100%; padding: 1.3em 0;}
	.con-com-03 .ls-img-box img { width:100%;}
	.con-com-03 .ls-img-box { max-width: 10em; width: 36% }
	.con-com-03 .ls-info-box { width: 64%; padding-right:0; padding-top:0.5em;}
	.con-com-03 .ls-list-box li:nth-child(4n + 3):before { opacity: 0;}
	.con-com-03 .ls-list-box li:nth-child(4n + 4):before { opacity: 0;}
	.con-com-03 .ls-list-box li:nth-child(even):before { opacity: 1; z-index:-1; content:''; left: -50vw; top:0; width: 150vw; height:100%; position: absolute; background:#f3f6fa}
	.con-com-03 .ls-info-box dl { font-size: 0.95em; }
	.con-com-03 .ls-btn-box a { padding-top: 0.4em}
	.con-com-03 .ls-btn-box { padding-top:1em;}
	

}

@media all and (max-width : 640px){

	

}

@media all and (max-width : 540px){
	
	.d-sm-none { display:none;}
	.d-sm-view { display:block;}

	.scroll-box-3 .ls-box-01 { width:100%;}
	.scroll-box-3 .ls-box-02 { margin-top: 1.5em; width:100%;}
	.scroll-box-3 .ls-box-03>div { width:100%;}
	.scroll-box-3 .ls-box-03 { display:block;}
	.scroll-box-3 .ls-box-03 .ls-banner-01 { border-right:0; border-bottom:1px solid #e2e2e2}

}


@media all and (max-width : 415px){

	
	.scroll-box-3 .ls-list-box ul { margin-right:0;}
	.scroll-box-3 .ls-list-box li { width:100%;  margin-bottom: 1em;}
	/* .scroll-box-3 .ls-list-box li:not(:nth-child(1)) { display:none;} */
	
	.scroll-box-4 .ls-list-box li { width:100%;}
	.scroll-box-4 .ls-list-box li:nth-child(3) { display:block;}
	/* .scroll-box-4 .ls-list-box li:not(:nth-child(1)) { display:none;} */

	.snb li {min-width:auto; flex:1;}

	.con-com-07 .con-box-01 dt {  padding-left:0; flex:auto; width:100%; max-width:100%;}
	.con-com-07 .con-box-01 dd { flex:auto; width:100%;}



}
/* 스타일 작업 종료 */
/*******************************************************************************************************************/






/* 중간 레이아웃 */
/**********************************************************************************************************************/
/* 여기부터 반응형 메인 박스 스타일 적용 */
/**********************************************************************************************************************/
#wrapper {width:100%;}
#wrapper:after {display:block;visibility:hidden;clear:both;content:""}

#container {position:relative;max-width:1000px;margin:0px auto;z-index:1;padding:0px}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {margin:0 0px 10px;font-size:1.2em;font-weight:bold;text-align:center;border-bottom:2px solid #ddd;padding-bottom:0px;}

/*index*/
.latest{width:100%;float:left}

#main_work ul:after {display:block;visibility:hidden;clear:both;content:""}
#main_work ul li{background:#fff;letter-spacing:-0.01em}
#main_work ul li.main_work_1{background:#f8f8f8;}
#main_work .work_txt span{ display:block;padding:5px 0;color:#808080;line-height:1.5em}

#lt_notice{clear:both}
#lt_notice,#lt_board,#lt_board2,#lt_board3,#lt_board4,#lt_board5,#lt_board6,#lt_gall{margin-top:20px}


/* PC 사이즈  1001px 픽셀사이즈까지  */
@media (min-width : 1361px) {
    
    #main_work .work_img{width:35%;height:122px;line-height:112px;display:block;float:left;}
    #main_work .work_txt{width:65%;height:122px;display:block;float:left;}
    #main_work .work_txt span.work_txt_tit{margin-top:20px ;font-weight:bold;font-size:1.25em;color:#111}
	
	.view_pc {display:block;}
	.view_tab {display:none;}
	.view_pctab {display:block;}
	.view_tabmobi {display:none;}
	.view_mobi {display:none;}

	.rbtn_icon {display:block;margin-top:25px;}
	.rbtn_icon .btn {margin-left:7px;}
}

/* 패드류 기본*/
@media all and (min-width : 601px) and (max-width : 1360px) {

    #main_work{margin-top:20px}
    #main_work ul li{float:left;width:33.3%;text-align:center;}
    #main_work .work_img{display:block;}
    #main_work .work_img img{max-width:100px;width:80%;height:auto}
    #main_work .work_txt span.work_txt_p{display:none;}
    #main_work .work_txt span.work_txt_tit{margin:0 0 15px;font-size:1.2em;color:#111;font-weight:bold}
	
	.view_pc {display:none;}
	.view_tab {display:block;}
	.view_pctab {display:block;}
	.view_tabmobi {display:block;}
	.view_mobi {display:none;}

	.rbtn_icon {display:none;margin-top:25px;}
	.rbtn_icon .btn {margin-left:7px;}

}

/* 모바일 기본*/
@media all and (max-width : 600px){

    #main_work{margin-top:20px}
    #main_work ul li{float:left;width:33.3%;text-align:center;}
    #main_work .work_img{display:block;}
    #main_work .work_img img{max-width:100px;width:80%;height:auto}
    #main_work .work_txt span.work_txt_p{display:none;}
    #main_work .work_txt span.work_txt_tit{margin:0 0 15px;font-size:1.2em;color:#111;font-weight:bold}
	
	.view_pc {display:none;}
	.view_tab {display:none;}
	.view_pctab {display:none;}
	.view_tabmobi {display:block;}
	.view_mobi {display:block;}

	.rbtn_icon {display:none;}
}



/* 하단 레이아웃 */
#ft {border-top:1px solid #dde4e9;background:#fafafa;text-align:center}
#ft h1 {width:0;height:0;font-size:0;line-height:0;overflow:hidden;}
#ft_company{padding:20px 20px 10px}
#ft_company a{font-weight:bold;display:inline-block;padding:0px 5px;font-size:1.12em;border-left:2px solid #eee}
.bd_no{border:none !important}
#ft_copy p{color:#000;padding-bottom:20px}
#ft_copy .ft_sns{padding:15px 20px}
#ft_copy .ft_sns a{padding:3px;}
#top_btn{position:fixed;bottom:10px ;right:10px;border:none;z-index:99}

/*group*/
#group .lt{margin-top:20px}
#group .lt_date{position:absolute;top:0;right:0;color:#5d938b}
@media all and (max-width : 375px) {
    #group .lt{margin-top:10px}
}

/* 게시물 선택복사 선택이동 */
#copymove {}
.copymove_current {float:right;color:#ff3061}
.copymove_currentbg {background:#f4f4f4}

/* 화면낭독기 사용자용 */
#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}

/* 캡챠 자동등록(입력)방지 기본 */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha #captcha_img {width:150px;height:60px;border:1px solid #e9e9e9;}
#captcha #captcha_reload {margin:0;padding:0 5px;width:32px;height:32px;border:0;background:url(../img/captcha.png) no-repeat 0 -30px;overflow:hidden; vertical-align:middle;overflow:hidden;cursor:pointer;text-indent:-999px}
#captcha #captcha_key {margin:0 0 0 4px;padding:0 5px;width:150px;height:60px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:2em}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha #captcha_mp3{width:32px;height:32px;margin:0;padding:0 5px;height:32px;border:0;background:url(../img/captcha.png) no-repeat 0 0;vertical-align:middle;overflow:hidden;cursor:pointer;overflow:hidden;text-indent:-999px}

/*단축키일람 */
.btn_cke_sc{background:#333;color:#fff;padding:5px;border:none;margin-bottom:5px}
.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}

/* 버튼 */
a.btn01 {display:inline-block;padding:8px 7px 7px;border:1px solid #ccc;background:#fafafa;color:#000;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;padding:8px 7px 7px;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 {padding:8px;border:0;background:#dfdfdf;color:#fff;letter-spacing:-0.1em;border-radius:0px}
fieldset .btn_submit {padding:0 7px;height:24px;line-height:1em}

a.btn_cancel {display:inline-block;padding:8px 7px 7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle;border-radius:0px}
button.btn_cancel {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;vertical-align:top;text-decoration:none;border-radius:0px}

a.btn_frmline, button.btn_frmline {display:inline-block;padding:0 5px;height:1.9em;border:0;background:#333;color:#fff;letter-spacing:-0.1em;text-decoration:none;vertical-align:top;line-height:1.9em} /* 우편번호검색버튼 등 */
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01 {display:inline-block;margin:0 0 3px;padding:8px 7px 7px;border:1px solid #d9ded9;background:#fff;color:#000;text-decoration:none;vertical-align:middle;border-radius:0px}
a.btn_b01:focus, .btn_b01:hover {text-decoration:none;color:#00c6b2}
a.btn_b02 {display:inline-block;margin:0 0 3px;padding:8px 7px 7px;border:1px solid #dfdfdf;background:#dfdfdf;color:#fff;text-decoration:none;vertical-align:middle;border-radius:0px}
a.btn_b02:focus, .btn_b02:hover {background:#00c6b2;transition: 0.8s;-webkit-transition: 0.8s;-moz-transition: 0.8s;-ms-transition: 0.8s;-o-transition: 0.8s;}
a.btn_admin {display:inline-block;margin:0 0 3px;padding:8px 7px 7px;border:1px solid #e8180c;background:#e8180c;color:#fff;text-decoration:none;vertical-align:middle;border-radius:0px} /* 관리자 전용 버튼 */
a.btn_admin:focus, a.btn_admin:hover {text-decoration:none}

/* 댓글 스타일 */
.cnt_cmt {display:inline-block;margin:0 0 0 3px;font-weight:bold}

/* 기본테이블 */
.tbl_wrap {margin:0 0 10px}
.tbl_wrap table {width:100%;border-collapse:collapse;border-radius:0px 5px 0 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;background:#dfdfdf;color:#fff;text-align:center;letter-spacing:-0.1em;}
.tbl_head01 thead th:first-child{border-top-left-radius:0px;}
.tbl_head01 thead th:last-child{border-top-right-radius:0px}
.tbl_head01 thead a {color:#fff}
.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:#666;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 {background:#fff;padding:10px;border-top:1px solid #eee;border-bottom:1px solid #e9e9e9;line-height:1.5em;word-break:break-all}

.tbl_head01n {font-size:17px; font-weight:300px; }
.tbl_head01n caption {padding:0 0 10px;color:#777;text-align:left}
.tbl_head01n thead th {padding:15px 0;background:#fff;color:#000;text-align:center; border-top:1px solid #000; }
.tbl_head01n thead th:first-child{border-top-left-radius:0px;}
.tbl_head01n thead th:last-child{border-top-right-radius:0px}
.tbl_head01n thead a {color:#000}
.tbl_head01n thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01n tfoot th {border-top:1px solid #666;border-bottom:1px solid #666;background:#fff;color:#000;}
.tbl_head01n tfoot td {border-color:#666;background:#fff;color:#000;font-weight:bold;text-align:center}
.tbl_head01n tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
.tbl_head01n td {background:#fff;padding:10px;border-top:1px solid #eee;border-bottom:1px solid #e9e9e9;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 {border-color:#666;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}


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

/* 폼 테이블 */
.tbl_frm01 {}
.tbl_frm01 th {padding:10px 0;width:90px;border:1px solid #e9e9e9;border-left:0;text-align:left}
.tbl_frm01 td {padding:10px 5px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:transparent}
.tbl_frm01 textarea, .frm_input {border:1px solid #c2c2c2;background:#fff;vertical-align:middle;line-height:2.3em;height:2.3em;-webkit-appearance:none;border-radius:5px}
.tbl_frm01 textarea {width:100%;height:100px}
.tbl_frm01 a {text-decoration:none}
.tbl_frm01 .frm_file {display:block;margin-bottom:5px;width:100%}
.tbl_frm01 .frm_info {display:block;padding:5px 0 0;color:#666;line-height:1.3em}

/* 자료 없는 목록 */
.empty_table {padding:20px 0 !important;text-align:center}
.empty_list {padding:20px 0 !important;text-align:center}

/* 필수입력 */
.required, textarea.required {background:url('../img/wrest.gif') #f7f7f7 top right no-repeat !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:#ccc}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {}
.new_win #win_title {margin:0 0 20px;padding:20px;border-top:3px solid #4e5d60;border-bottom:1px solid #e9e9e9;font-size:1.2em}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .tbl_wrap {margin:0 20px}
.new_win .win_ul {margin:-20px 0 20px 0;padding:0 20px;border-bottom:1px solid #455255;background:#484848;list-style:none}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;margin-left:-1px}
.new_win .win_ul a {display:block;padding:10px;border-right:1px solid #455255;border-left:1px solid #455255;color:#fff;font-weight:bold;text-decoration:none}
.new_win .win_desc {padding:10px 20px}

.new_win .win_btn {clear:both;margin:20px;text-align:center}
.new_win .win_btn a {display:inline-block;padding:0 10px;height:2.5em;background:#666;color:#fff;text-decoration:none;vertical-align:middle;line-height:2.5em}
.new_win .win_btn button {display:inline-block;padding:0 10px;height:2.5em;border:0;background:#666;color:#fff;text-decoration:none;line-height:2.5em}
.new_win .win_btn input {padding:0 10px;height:2.5em;line-height:2.5em}

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

/* 사이드뷰 */
.sv_wrap {display:inline-block;position:relative;font-weight:normal}
.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;border:1px solid #283646}
.sv_wrap .sv a {display:inline-block;margin:0;padding:3px;width:94px;border-bottom:1px solid #283646;background:#111;color:#fff !important;text-align:left}
.sv_wrap a:focus, .sv_wrap a:hover, .sv_wrap a:active {text-decoration:none}
.sv_on {display:block !important;position:absolute;top:16px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;margin:0px 0 20px;padding: 0 0;text-align:center;font-size:1.083em}
.pg {}
.pg_page, .pg_current {display:inline-block;padding:0 8px;height:30px;color:#000;letter-spacing:0;line-height:30px;vertical-align:middle}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {text-decoration:none}
.pg_start{background:url(../img/page_btn.gif) no-repeat 0 0 ;text-indent:-9999px;overflow:hidden;width:30px;height:30px;border:1px solid #eee;padding:0;border-radius:15px;border:1px solid #ddd}
.pg_prev {background:url(../img/page_btn.gif) no-repeat -31px 0;text-indent:-9999px;overflow:hidden;width:30px;height:30px;border:1px solid #eee;padding:0;border-radius:15px;border:1px solid #ddd}
.pg_end{background:url(../img/page_btn.gif) no-repeat -93px 0;text-indent:-9999px;overflow:hidden;width:30px;height:30px;border:1px solid #eee;padding:0;border-radius:15px;border:1px solid #ddd}
.pg_next {background:url(../img/page_btn.gif) no-repeat -63px 0;text-indent:-9999px;overflow:hidden;width:30px;height:30px;border:1px solid #eee;padding:0;;border-radius:15px;border:1px solid #ddd}
.pg_current {display:inline-block;margin:0 4px 0 0;background:#dfdfdf;color:#fff;border-radius:15px;font-weight:bold;font-weight:bold}

/* PC화면으로 */
#device_change {display:block;margin:5px;padding:5px 0;border:1px solid #eee;border-radius:2em;color:#000;font-size:1em;text-decoration:none;text-align:center}

.clear_01 { clear: both; line-height: 0px; font-size:0px}

.blank5 { height:5px}
.blank10 { height:10px}
.blank20 { height:20px}

.pdtb50 {padding: 50px 0px;}
.pdtb40 {padding: 40px 0px;}
.pdtb30 {padding: 30px 0px;}
.pdtb20 {padding: 20px 0px;}
.pdtb15 {padding: 15px 0px;}
.pdtb10 {padding: 10px 0px;}


.pd50 {padding: 50px;}
.pd40 {padding: 40px;}
.pd30 {padding: 30px;}
.pd20 {padding: 20px;}
.pd10 {padding: 10px;}


#ft_copy ul { padding:0px; margin: 0px;list-style:none;line-height:10px;}
#ft_copy ul li {color:#000; display:inline-block; padding: 5px 3px;}


.tip { background-color: #eaeaea; padding: 10px;line-height:17px;letter-spacing:0.05em;}
.tip input[type=text] { padding: 3px; border: 1px solid #dfdfdf; width: 300px}
.tip input[type=radio]  { width:20px}
.tip select { border:1px solid #dfdfdf; padding: 3px 5px; font-size: 12px}
.tip span { color:#000; font-weight: bold}



.stit h2 { font-size:15px; color:#346ba3; padding-top:0px; margin:0px; padding-bottom:15px ; text-align:left}
.stit h2 span { font-size:12px; padding-left:10px; color:#000}
.stit2 h2 { font-size:15px; color:#000; padding-top:0px; margin:0px 0 20px 0; padding-bottom:7px ; text-align:left; border-bottom: 1px dotted #ccc}



.pop_left { float:left; width:44%;}
.pop_left ul { padding:0px; margin:0px; list-style: none}
.pop_left ul li { float:left; border-bottom:1px solid #dfdfdf; font-size:13px; padding:10px 0 5px 0; text-align:left}
.pop_left .ti { width:30%}
.pop_left .con { width:70%; font-weight:bold}

.pop_right { float:right; width:44%; }
.pop_right ul { padding:0px; margin:0px; list-style: none}
.pop_right ul li { float:left; border-bottom:1px solid #dfdfdf; font-size:13px; padding:10px 0 5px 0; text-align:left}
.pop_right .ti { width:30%}
.pop_right .con { width:70%; font-weight:bold}

.pop_ti { font-size:40px; padding-bottom:20px; font-weight:bold; letter-spacing:20px; text-align:center;position:relative; border-bottom:1px solid #000; margin-bottom:20px}
.dojang { position:absolute; top:100px; right:30px; }



.tbl_frm02_pop {margin:0 0 0px}
.tbl_frm02_pop table {width:100%;border-collapse:collapse;border-spacing:0; border-left:1px solid #e9e9e9; border-right:1px solid #e9e9e9}
.tbl_frm02_pop th {width:70px;padding:10px 5px;border:1px solid #e9e9e9; background:#f5f8f9;text-align:left; color: #3a3a3a;font-size:12px; font-weight:bold}
.tbl_frm02_pop td {padding:10px 5px 10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;font-size:13px;}
.tbl_frm02_pop .CT { text-align:center}
.tbl_frm02_pop .RT { text-align:right}
.tbl_frm02_pop .hit { font-weight:bold; color: #000; font-size:15px}

.top_text {margin:0 auto;width:100%;max-width:1000px;color:#333;font-size:17px;text-align:left;}
.top_text .subtitle {font-size:37px;color:#333;padding-right:40px;}
.top_text .subtext {font-size:17px;color:#333;padding-top:30px;line-height:25px;padding-left:40px;padding-right:40px;}
.top_text .subicon {padding-top:30px;padding-right:40px;}
.top_text .subtext2 {font-size:13px;color:#333;padding-top:0px;line-height:25px;padding-left:40px;padding-right:40px;}

.sc_top_menu2 {margin:0 auto;width:100%;max-width:1400px;color:#101f39;padding-top:30px;font-size:17px;}
.sc_top_menu2 a {color:#101f39;}

.top_text2 {margin:0 auto;width:100%;max-width:1200px;color:#101f39;font-size:17px;text-align:right;}
.top_text2 .subtitle {font-size:37px;;color:#101f39;text-align:right;padding-left:40px;padding-right:40px;}
.top_text2 .subtext {font-size:17px;color:#101f39;padding-top:30px;line-height:25px;text-align:right;padding-left:40px;padding-right:40px;}
.top_text2 .subicon {padding-top:30px;text-align:right;padding-left:40px;padding-right:40px;}
.top_text2 .subtext2 {font-size:13px;color:#101f39;padding-top:0px;line-height:25px;text-align:right;padding-left:40px;padding-right:40px;}

.sc_top_menu3 {margin:0 auto;width:100%;max-width:1400px;color:#352f2a;padding-top:30px;font-size:17px;}
.sc_top_menu3 a {color:#352f2a;}

.top_text3 {margin:0 auto;width:100%;max-width:1200px;color:#352f2a;font-size:17px;text-align:center;}
.top_text3 .subtitle {font-size:37px;;color:#352f2a;text-align:center;padding-left:40px;padding-right:40px;}
.top_text3 .subtext {font-size:17px;color:#352f2a;padding-top:30px;line-height:25px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text3 .subicon {padding-top:30px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text3 .subtext2 {font-size:13px;color:#352f2a;padding-top:0px;line-height:25px;text-align:center;padding-left:40px;padding-right:40px;}

.top_text4 {margin:0 auto;width:100%;max-width:1200px;color:#e6d0a9;font-size:17px;text-align:center;}
.top_text4 .subtitle {font-size:37px;;color:#e6d0a9;text-align:center;padding-left:40px;padding-right:40px;}
.top_text4 .subtext {font-size:17px;color:#e6d0a9;padding-top:30px;line-height:25px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text4 .subicon {padding-top:30px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text4 .subtext2 {font-size:13px;color:#e6d0a9;padding-top:0px;line-height:25px;text-align:center;padding-left:40px;padding-right:40px;}

.top_text5 {margin:0 auto;width:100%;max-width:1200px;color:#ffffff;font-size:17px;text-align:center;}
.top_text5 .subtitle {font-size:40px;;color:#ffffff;text-align:center;padding-left:40px;padding-right:40px;}
.top_text5 .subtext {font-size:24px;color:#ffffff;padding-top:30px;line-height:38px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text5 .subicon {padding-top:30px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text5 .subtext2 {font-size:17px;color:#e6d0a9;padding-top:10px;line-height:30px;text-align:center;padding-left:40px;padding-right:40px;}

.top_text22 {margin:0 auto;width:100%;max-width:1200px;color:#101f39;font-size:17px;text-align:center;}
.top_text22 .subtitle {font-size:37px;;color:#101f39;text-align:center;padding-left:40px;padding-right:40px;}
.top_text22 .subtext {font-size:17px;color:#101f39;padding-top:30px;line-height:25px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text22 .subicon {padding-top:30px;text-align:center;padding-left:40px;padding-right:40px;}
.top_text22 .subtext2 {font-size:13px;color:#101f39;padding-top:0px;line-height:25px;text-align:center;padding-left:40px;padding-right:40px;}
