@charset "utf-8";

@font-face { font-family: 'Paperlogy'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');   font-weight: normal;   font-style: normal;}
@font-face { font-family: 'Paperlogy'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');   font-weight: 500;   font-style: normal;}
@font-face { font-family: 'Paperlogy'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');   font-weight: 600;   font-style: normal;}
@font-face { font-family: 'Paperlogy'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');   font-weight: 700;   font-style: normal;}
@font-face { font-family: 'Paperlogy'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');   font-weight: 800;   font-style: normal;}
@font-face { font-family: 'Paperlogy'; src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');   font-weight: 900;   font-style: normal;}
@font-face {    font-family: 'yg-jalnan';    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.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: 'Paperlogy', 'Noto Sans KR', 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:0px}
#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; color:#333333; font-weight:500}
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:#333333;}
a:hover { color:#ff1cb7;}
input, select, textarea {font-family: 'Paperlogy', 'Noto Sans KR', sans-serif; font-weight:500}
/* header 메뉴 */
header {z-index: 15; width: 100%; margin: 0 auto; flex-wrap: wrap;display:flex;justify-content: center;align-items: center; position:fixed;  background:rgba(0,0,0,0.73) }
/* 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 {order:2; z-index: 12;flex-basis: content;text-align: left;}
header h1 img { max-width:100%;}
header h1 .yes-scroll { display:none;}
header h1 a { display: inline-block;}
header .box_inner { z-index:4; position: relative;display:flex; max-width: 1240px; width: 100%;justify-content:  space-between; align-items: center;}
header .box_inner:before { content:''; position: absolute; left:50%; transform: translateX(-50%); top:0; background:#fff; width: 100vw; height:100%; }
header .box_inner:after { content:''; position: absolute; left:50%; transform: translateX(-50%); bottom:-1px; background:rgba(229,91,146,0.2); width: 100vw; height:1px; }
header:not(.menu-scroll) .nav_wrap { display: none;}
.menu-scroll .yes-scroll { display:inline-block;}
.menu-scroll .no-scroll { display:none;}
.site-view h1 img { filter:none; }
/* header:hover, .menu-scroll { background:#fff} */

header .head-box { position: relative; z-index:5; width:100%;}
header .head-box .head-inner {  max-width: 1600px; width:100%; padding-left:20px; padding-right:20px; padding-top: 0.96em; margin:0 auto; }
header .head-box .inner-box { margin-right:auto; position: relative; color:#fff; display:flex; justify-content: end; align-items: center; width:100%;}
header .head-box .head-txt { padding-left: 1em; padding-right:1em; letter-spacing: -0.04em; font-weight:400; font-size: 2em;}
header .head-box i { position: relative; transform: translateY(0.17em);}
header .head-box i img { max-width:100%;}
header .head-box .head-logo { padding-left: 4%;}
header .head-box .head-logo img { max-width:100%;}

/*웹용 메뉴*/
.nav_web {order:1; height:100%;  flex: 1 1 auto; max-width: 1260px; padding-left:20px; padding-right:20px; position: relative; background:#fff;}
.nav_web>ul {font-size: 1.5em; font-weight: 500; width:100%; height: 100%; max-width: 100%; display: flex; justify-content: space-between; align-items: center; }
.nav_web>ul>li:hover>a { height:100%;}
.nav_web>ul>li { min-width: 108px; flex: 1; height: 100%; margin-left:1px; position:relative;  display: inline-block; text-align: center;}
.nav_web>ul>li>a { display:flex; justify-content: center; align-items: center; height:100%; padding: 0.5em 0;}
.nav_web a {width:100%;}
.nav_web ul ul {position: absolute; width:100%; font-weight: 400; font-size: 0.85em; display: none; background:#000; min-height: 170px; padding: 15px 10px 0 10px; }
.nav_web ul ul a {display:block; word-break:keep-all; color:#fff; padding: 6px 0px;}
.nav_web ul ul a:hover {color:#ff1cb7;}
.nav_web>ul>li:hover ul {display:block;  }

/*모바일용메뉴*/
.nav_md {width: 100%; height: calc(100% - 90px); top:0; right:0; position: fixed; z-index: 11; background:rgba(252,252,238,0.95);} 
.nav_md_wrap { position:absolute; right:0; /* background-color:rgba(0,0,0,0.9); */ height: 100%; width: 100%; /* max-width: 570px;  */ background-size: contain; background-position: left bottom; background-repeat: no-repeat;}
.nav_md_wrap>ul { height: calc(100% - 60px); padding: 40px 30px 50px 30px; background-position: calc(100% - 30px) calc(100% + 2px); background-size: 100px auto; background-repeat: no-repeat;}
.nav_md_wrap>ul>li { position:relative;  width: 100%; max-width: 100%;display: inline-block; border-bottom:1px solid rgba(0,0,0, 0.15) }
.nav_md_wrap>ul>li>a { font-size: 1.4em; padding:5px 5px 30px 5px;}
.nav_md_wrap>ul>li:hover ul { display: block;}
.nav_md_wrap>ul>li:last-of-type {border:none;}
.nav_md ul li:nth-child(1) { font-size: 1.2em; }
.nav_md ul li:nth-child(1) a { font-weight: 700;}
.nav_md ul a { 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_wrap>ul>li::after { content:''; top:50%; transform: translateY(-50%); width:10px; height: 15px; background-position: center center; background-size: contain; position: absolute; right:0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14.75px' height='26.75px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='0.5px' stroke-linecap='butt' stroke-linejoin='miter' opacity='0.702' fill='none' d='M1.250,0.693 L13.806,13.249 L1.250,25.805 '/%3E%3C/svg%3E");}
.nav_md .close { position:absolute; right: 10px; width: 40px; height: 50px; z-index: 11;}
.nav_md .close a { position: relative; display: block; font-size:0;width: 100%; height: 100%;}
.nav_md .close a:after {transform: translate(-50%, -50%); top: 50%;  left:50%; position:absolute; content:'\2715'; font-weight: 100; color:#aaaaaa; font-size: 2.3rem; z-index:6}
.nav_md .nav-sns { position: absolute; bottom:45px; left:35px;}
.nav_md .nav-sns img { height: 30px; width: auto;}
.nav_md .nav-sns a { display:inline-block; padding: 0 10px; }
.nav_head_md { padding: 0 20px 0 25px; display:flex; justify-content: center; align-items: center; text-align: left; height:60px; background:rgba(0,0,0,0.73)/*  border-bottom:1px solid #d3d1d0; */}
.nav_head_md h1 { width: 100%;}
.nav_head_md .close { margin-left:auto; order:2; }
.nav_head_md p a:after  { width:100%; line-height: 4rem; position:absolute; left:50%; top: 25%; transform: translate(-50%, -50%); content:'\2261'; font-weight: 200; color:#fff; font-size: 3rem;  z-index:6  }
.nav_head_md p span { margin-right: 5px;text-align: center; display:inline-block; border-radius: 30px; width: 26px; height:26px;/*  background-color:#9cc40d;  */} 
.nav_head_md a { font-size: 0.9em;}
.nav_head_md p span img { position: relative;  width: 12px; height: auto; }
/* .nav_head_md h1 img { filter: contrast(3) brightness(0) grayscale(1) hue-rotate(360deg) saturate(0) invert(1)!important;} */
  
/*사이트맵*/
.sitemap-box {display: none;width: 100%; height: 100vh; top:0; right:0; position: fixed; z-index: 5; background-color:#222222;} 
.sitemap-box:before {position: absolute; z-index:1; background:#ffffff; width: 40%; content:''; height:100%; left:0; top:0;}
.sitemap-out { z-index:2; max-width: 1320px; padding-left:20px; padding-right:20px; margin:0 auto; position:relative; display:flex; height:100%; justify-content: center; align-items: stretch; width: 100%; /* max-width: 570px;  */ background-size: contain; background-position: left bottom; background-repeat: no-repeat; }
.sitemap-out .sitemap-info { width:40%; margin-top: auto; max-width: 460px; text-align: left; padding-bottom: 15em;} 
.sitemap-out .sitemap-info p { font-weight: 500; line-height:2em;}
.sitemap-out .sitemap-info .copy { padding-top:2em; font-size: 0.9em; opacity: 0.5; font-weight: 400;}
.sitemap-in { width:60%;  position:relative; margin-top: auto; margin-bottom:auto; padding-left: 5%; min-height: 470px;}
.sitemap-in h2 { font-size:0; width:100%; text-align: left; color:#fff; padding-bottom:1em;}
.sitemap-in>ul { max-width: 1300px; margin:0 auto;  padding: 50px 20px 50px 20px;}
.sitemap-in>ul>li {display:flex; align-items: stretch; padding-left: 1em; position:relative;  width: 100%; max-width: 100%; }
.sitemap-in>ul>li>a { max-width: 360px; width:100%; font-size: 3.4em; opacity: 0.4; font-weight: 600; padding: 17px 0;}
.sitemap-in>ul>li:hover ul { display:block;}
.sitemap-in a:hover {color:#fff;}
.sitemap-in ul ul {display:none; /*  background-color: rgba(255,255,255,0.2); */ padding:30px 0% 30px 0px;}
.sitemap-in ul ul a {font-size: 1em; font-weight: 300; padding: 7px 0; }
.sitemap-in ul a { position:relative; padding: 10px 50px; display: block; text-align: left; color:#fff;}
.sitemap-box .close { position:absolute; right:1.5em; width: 50px; height: 50px; top:22px; z-index: 11;}
.sitemap-box .close a { position: relative; display: block; font-size:0;width: 100%; height: 100%; color:#fff; border-radius: 100px;}
.sitemap-box .close a:after {transform: translate(-50%, -50%); top: 50%;  left:50%; position:absolute; content:'\2715'; font-weight: 200; color:#fff; font-size: 1.7rem; z-index:6}

/* 메뉴 스크롤 시 */
.menu-scroll { /*background-color:rgba(255,255,255, 0.7); */}
/* .menu-scroll .box_inner { border-bottom:1px solid #d2d2d2;} */
.menu-scroll .nav_web ul ul {width: 100%; top: 100px; position:absolute; display: block; border-top:1px solid #e6e6e6;}
.menu-scroll .nav_web { z-index:4;}
.menu-scroll .nav_web li li a { padding:7px 0; }
.menu-scroll .nav_web li:not(.nav_head) a { text-align: center; clear: both; width: 100%; display:flex; align-items: center; justify-content: center;}
.menu-scroll .nav_web>ul>li>a { position: relative; height:100%; text-align: center; color:#000; font-weight: 500;}  
.menu-scroll .nav_web>ul>li:hover>a { color:#00a0e9}
.menu-scroll h1 img { filter: none;}
/* header:not(.menu-scroll) .nav_wrap { display: none;} */
.menu-scroll .nav_wrap { border-top:1px solid #efefef; display: block; z-index:1;width: 100%; height: 210px; background-color:rgba(255,255,255, 0.7); position: absolute; left:0; top: 100px;} /* 2depth 배경 */

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

/* 메인 스크롤 아이콘(왼쪽) */
.scroll-ud-btn { top:50%; transform: translateY(-50%); position:fixed; right:30px; z-index:10;}
.scroll-ud-btn a {  opacity: 0.4;  display:block; padding: 15px 25px; font-size:0;}
.scroll-ud-btn span { border-radius: 20px; display:block; width:7px; height:7px; position: relative; background:#c9c9c9}
.scroll-ud-btn a.active {  opacity: 1; }

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

/*메인상단 슬라이드 뒷배경*/
.scroll-box-1 { position:relative; width: 100%; min-height: 1100px; height: calc(100vh - 180px);  }
.scroll-box-1 .ls-slide-backgrounds { background-size:cover; position:absolute; left:0; top:0; width: 100%; height:calc(100% + 180px); overflow:hidden;}
.scroll-box-1 .ls-slide-backgrounds .bg-img-01 { height:100%; }
.scroll-box-1 .ls-slide-backgrounds img {object-fit: cover; min-height: 960px; height:100%; width: 100%; object-position: center top;}
.scroll-box-1-1 { background-position: center 96%; background-repeat: no-repeat; z-index: 2; position: relative; margin:0 auto; margin-bottom: 25em; display:flex; justify-content: start; align-items: center; flex-direction: column; max-width: 1440px; padding-left:20px; padding-right:20px; height:100%; width:100%;/*  left:50%; top:50%; transform: translate(-50%, -50%); */}
.scroll-box-1 .ls-box-in img { max-width:100%;}
.scroll-box-1 .ls-box-in {padding-top: calc(4vh + 140px); text-align: center; max-width: 1440px; width:100%; position: relative; }
.scroll-box-1 .ls-box-01 {position: relative;}
.scroll-box-1 .ls-img-02 { padding-top: 14.6vh;}
.scroll-box-1 .ls-img-04 { position: absolute; }
.scroll-box-1 .ls-txt-01 { font-weight: 700; letter-spacing: 0.01em; font-size: 1.2em; color:#fff; text-shadow: 0.1em 0.1em 0.1em rgba(7,11,99,0.33);}
.scroll-box-1 .ls-btn {position: relative; padding-top: 1.5em;}
.scroll-box-1 .ls-btn a { position: relative; line-height:1em; display:inline-block; width:100%; letter-spacing: 0.01em; max-width: 11em; padding: 0.37em 1em; border:1px solid #333333; text-align: center; border-radius: 4em; font-size: 1.2em; font-weight: 600; color:#fff; background:#fd85c6;}
.scroll-box-1 .ls-btn a:hover:before { content:''; z-index:0; position: absolute; width:100%; height:100%;  border-radius: 4em; left:0; top:0; background:#ff51b4; }
.scroll-box-1 .ls-btn span { position: relative; vertical-align: middle; display:inline-block; padding-left: 7%; }
.scroll-box-1 .ls-btn img {position: relative; display:inline-block; vertical-align: middle; max-width:100%;}
.scroll-box-1 .scroll-box-bg {pointer-events: none;  position: absolute; left:50%; transform: translateX(-50%); bottom:2em; padding-top: 35%; width:100%; max-width: 1034px; background-position: center bottom; background-repeat: no-repeat; background-size: contain;}

/* 벛꽃 */
.cherry_blossom {
    overflow: hidden;
	z-index:1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    perspective: 1000px;
}
.cherry_blossom .petal { 
    position: absolute;
    background: linear-gradient(-45deg, #e17aa9 0%, #e58abf 40%, #ec8cc5 80%);
  	background-repeat: repeat;
    border-radius: 10% 80% 60% 80%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transform-style: preserve-3d;
    transition: transform 1200ms linear;
	scale:1.5;
}
.cherry_blossom .petal:before {content: '';
	position: absolute; left:0; top:0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeBlend mode='screen'/%3E%3C/filter%3E%3Crect width='500' height='500' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
	mix-blend-mode: color-burn;border-radius: 10% 50% 40% 50%; pointer-events: none; }

@keyframes fall {
    0% {
        top: 0;
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    50% {
        top: 60%;
        opacity: 0.2;
    }
	70% {
        top: 70%;
        opacity: 0;
    }
	100% {
        top: 100%;
        opacity: 0;
    }

}

/*서브상단 뒷배경*/
.snb-bg { height: 37em; z-index:1; }
.snb-bg .ls-slide-backgrounds { position:absolute; left:0; top:0; width: 100%; height: 100%; z-index:-1; overflow:hidden;}
.snb-bg .ls-slide-backgrounds.snb-po-01 { height: 67.3em;}
.snb-bg .ls-slide-backgrounds.snb-po-02 { height: 45em}
.snb-bg .ls-slide-backgrounds.snb-po-03 { height: 45em}
.snb-bg .ls-slide-backgrounds .snb-bg-01 { height:100%;}
.snb-bg .ls-slide-backgrounds .snb-bg-01 { height: 67.3em;}
.snb-bg .ls-slide-backgrounds img { object-fit: cover; height: 100%; width: 100%; object-position: center top;}
.snb-bg .box_inner { height: 100%; clear: both; position: relative;  }
.snb-bg .ls-slide-texts { z-index:2; width: 100%; margin:0 auto; color:#fff; position:relative; padding-top: 28.5em; /* left:50%; top:87%; transform: translate( -50%, -87%); */}
.snb-bg .ls-slide-texts .ls-head { font-size: 3.4em; font-weight: 600;}
.snb-bg .ls-slide-texts .ls-head img { max-width:100%;}
.snb-bg .box_inner img { max-width:100%; object-fit: cover; object-position: center top; }
.snb-bg .box_inner .ls-img-01 {z-index:1; padding-left:20px; padding-right:20px;  width: 100%; color:#fff; position: absolute; bottom:-12em;/*  transform: translateY(-7em); */}
/* .snb-bg .box_inner .ls-img-01 { border:1px solid red; max-width: 1200px; margin:25em auto 0 auto; height:100%; padding-right: 20px; position: relative; padding-left:20px; padding-top: 30%;}
.snb-bg .box_inner .ls-img-01 img { left:0; top:0; position: absolute; object-fit: cover; object-position: center bottom; } */

.snb { margin:0 auto;  width: 100%; position: relative ; height: 75px; background:rgba(0,0,0,0.7)}
.snb ul {margin:0 auto; height:100%; display: flex; justify-content: center;}
.snb li {flex-basis: fit-content; height: 100%; flex:auto; max-width: 20%;}
.snb li a {width: 100%; position: relative; color:#fff; display: block; padding: 20px 1%; height: 100%;line-height: 2em}
.snb li a.active, .snb li a:hover { color:#000; background:#fff;}
.snb li a:after { content:''; width:1px; height: 32%; right:0; background:#fff; position: absolute; top:50%; transform: translateY(-50%);}
.snb li:last-of-type a:after { display:none;}

.snb-md { font-size: 1rem;z-index: 10; position: relative; height: 50px;background:rgba(255,255,255,1); }
.snb_list { width: 100%; position: absolute; background:rgba(0,0,0,0.8);  font-size: 0.9em; padding-top:10px; padding-bottom:10px;}
.snb-md li { width: 100%;}
.snb-md li a { line-height:1.8;text-align: left; color:#fff;position: relative; display: block; padding: 7px 20px 7px 20px; }
.snb-md li a:hover, .snb-md li a.active { color:#cea759} 
.snb-md i {  font-size:0;font-style: normal; position: absolute; right: 20px;}
.snb-md i:after {  font-size:0.7rem; content:'\25BC'; color:#000; position: absolute; right: 0px; top:5px;}
.snb-md li:last-of-type a:after { display: none;}
.snb-md .sel-menu {  text-align: left; height: 100%; border-bottom:1px solid #b2b2b2; }
.snb-md .sel-menu a { width: 100%; padding-top: 12px; padding-left: 20px; display: block; color:#000;height: 100%; }

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

.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:#fd85c6;}
.bgc-02 { background-color:#00a5ad;}
.bgc-03 { background-color:#fd85c6;}
.bgc-04 { background-color:#fb5eb3;}
.bgc-05 { background-color:#fcd3e9;}
.bgc-06 { background-color:#90c31f;}
.bgc-07 { background-color:#000000;}
.bgc-08 { background-color:#fff;}
.fc-01 { color:#fd85c6}
.fc-02 { color:#00a5ad}
.fc-03 { color:#fd85c6}
.fc-04 { color:#fb5eb3}
.fc-05 { color:#acacac}
.fn-01 { font-family: 'yg-jalnan', 'Noto Sans KR', sans-serif!important; }
.fn-02 { font-family: 'Noto Sans KR', sans-serif!important; }
.fs-01 { font-weight: 300;}

/*푸터*/
footer { background:rgba(0,0,0,0.78);position: relative; width: 100%;  word-break: keep-all; font-size: 0.95em; height: 180px; z-index: 16}
footer .box-inner {margin:0 auto;  width: 100%; max-width: 1200px; padding: 2em 20px; position: relative;}
.footer {position: relative; width:100%; height: 100%;color:#fff;  }
.footer .col-box-in { padding-top: 3em;  border-top:1px solid #fff; text-align: left; width:100%; display:flex; justify-content: space-between; align-items: center;  }
.footer .col-box-01 {text-align: center; display:block; line-height: 1.4em;}
.footer .col-box-01 p:nth-child(1) { padding-top:1em;}
.footer .col-box-01 p { display:inline-block;}
.footer .copy { font-size: 0.85em; padding-top: 0.5em;}
.footer h3 {white-space: nowrap; display:inline-block; font-weight:400; padding-right: 0.2em}
.footer .col-box-02 span { padding:0 0.2em;  }
.footer .col-box-02 { display:flex; justify-content: center; align-items: center;}
.footer .col-box-02 img { max-width:100%;}
.footer .col-box-02>div { display:flex; justify-content: center; align-items: center; padding: 0 1em;}
.footer .col-box-01 span {display:inline-block; padding-left: 0.5em; padding-right:0.5em;}

/* 페이지 up */
.page-top {z-index:4; position:absolute; right: 20px; bottom: 158px; height: 49px; width: 49px;}
.page-top a { font-size: 0; font-weight: 600; padding-top: 35%;position: relative;color:#518488; display: block; width: 49px; height: 49px; background:#fff; border:1px solid #518488; border-radius: 30px;}
.page-top a:after { font-size: 1.2rem; content:'\2517';position: absolute; left:46%; top:30%;transform: translate(-50%, -30%) rotate(135deg);}
.page-top a:hover { background:#518488; color:#fff;}

.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%;}
.wd25p { width: 25%;}
.wd24 { width: 24px;}
.wd15p { width: 15%;}

.container {font-size: 1.25rem; letter-spacing: -0.05em;}
.container * { word-break: keep-all;}
.conntent_inner {position:relative; z-index:2;}

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

.con-head {}  /* 서브 컨텐츠 제목 */
.con-head h2 {  font-weight: 600; font-size:1.15em;}
.con-head+.con-head { padding-top: 70px;}
.con-head .head-txt { padding-top:1.6em; font-weight: normal; font-size: 1.5em; }

.ls-tab-01 a {font-size: 0.95em; display:flex; justify-content: center; align-items: center; position: relative; color:#c8c8c8; height: 55px; border-top:1px solid #c8c8c8;  border-bottom:1px solid #c8c8c8; border-right:1px solid #c8c8c8;}
.ls-tab-01 li:first-of-type a {  border-left:1px solid #c8c8c8}
.ls-tab-01 a:hover, .ls-tab-01 a.active{ color:#d50049; background:#fff; border-color:#d50049}
.ls-tab-01 a:hover:after, .ls-tab-01 a.active:after { position: absolute; left:-1px; top:0; height:100%; width:1px; content:''; background:#d50049}

.ls-tab-02 a {display:block; color:#000000; padding: 10px 0; }
.ls-tab-02 a:hover, .ls-tab-02 a.active{ color:#cea759; }
.ls-tab-02 a:hover span, .ls-tab-02 a.active span {  font-weight:600; }

.txt-head { max-width: 9.5em; text-align: center; width:100%; position: relative; display:inline-block; font-size: 1.75em; }
.txt-head span {width:100%; height:100%; padding: 0.35em 0.2em 0.35em 0.2em; font-weight:900; letter-spacing: 0; border-radius: 1em; border-bottom-left-radius: 0; z-index:2; position: relative; background:#fd85c6; color:#fff; display:block;}
.txt-head i { position: absolute; z-index: 2; right: -1.2em; top: -1em; height:3em; display: inline-block;}
.txt-head i img { max-height:100%}
.txt-head:before { position: absolute; z-index:1; right:-0.2em; bottom: -0.2em; content:''; border-radius: 1em; border-bottom-left-radius: 0; background:#05aec7; width:100%; height:100%;}

/* 대회소개 */
.con-com-01 {z-index:4; margin:0 auto; position: relative; overflow-x:hidden; margin-top:-2.5em; }
.con-com-01 .con-head { text-align: center; padding-left:20px; padding-right:20px; }
.con-com-01 .com-box-01 {position: relative;  margin:0 auto; max-width: 1240px;padding-left:20px; padding-right:20px;}
.con-com-01 .com-box-02 {position: relative; margin:0 auto; max-width: 1240px;padding-left:20px; padding-right:20px; }
.con-com-01 .com-box-01 img { max-width:100%}
.con-com-01 .con-box-02 h4 { font-size: 1.65em; font-weight:700; padding-bottom: 1em}
.con-com-01 .txt-head { margin-bottom:2.5em;}
.con-com-01 .con-box-02 { padding-top:7em; padding-bottom:4em;}
.con-com-01 .con-box-02 .ls-box-in {  padding-bottom: 0.5em; align-items: center;}
.con-com-01 .con-box-05 { color:#fff;}
.con-com-01 .dl-box-01 { text-align: left; display:flex; width:100%;  justify-content: center; font-weight:700; letter-spacing: 0;}
.con-com-01 .dl-box-01 dl {width: 50%; font-size: 1.3em; line-height:1.2em;display:flex; padding-bottom: 0.5em; justify-content: start; align-items: center;}
.con-com-01 .dl-box-01 dt { position: relative;  background:#fd85c6; color:#fff; border-radius: 1em; border-bottom-left-radius: 0; display: block; padding: 0.1em 1.2em;}
.con-com-01 .dl-box-01 dd { display: block; padding-left: 0.5em;}
.con-com-01 .con-box-01 {  position: relative;}
.con-com-01 .ls-txt-01 { position: relative; z-index:2; margin:0 auto; font-size: 1.3em; max-width: 39em; line-height: 1.3em; color:#000; }
.con-com-01 .ls-txt-01 i { font-style:normal; position: relative; display:inline-block; color:#fff;}
.con-com-01 .ls-txt-01 i:before { z-index:-1; background:#fd85c6; width: 100%; height: 115%; top:-10%; position: absolute; left:0; content:'';}
.con-com-01 .ls-txt-01 p { padding-bottom: 1.2em;}
.con-com-01 .ls-img-01 { position: relative; padding-bottom: 20%; }
.con-com-01 .ls-flower { position: absolute; transform: translateY(-45%);}
.con-com-01 .ls-table-01 table { width:100%; border-spacing: 0px; font-size: 1.1em; table-layout: fixed;}
.con-com-01 .ls-table-01 th { position: relative; font-weight:600; color:#fff; padding: 0.5em 0; border-top-left-radius: 1.06em;  border-top-right-radius: 1.06em; background:#05a2ab}
.con-com-01 .ls-table-01 th:after { position: absolute;z-index:3; content:''; width:1px; height:100%; background:#fff; right:0px; top:0;}
.con-com-01 .ls-table-01 th:before { position: absolute;z-index:3; content:''; width:1px; height:100%; background:#fff; left:0px; top:0;}
.con-com-01 .ls-table-01 tbody td {font-weight:500; border-bottom:1px solid #05a2ab; padding: 0.5em 0;}
.con-com-01 .ls-table-01 tbody tr:last-of-type td { border-width: 4px}
.con-com-01 .ls-img-03 { padding-top: 3.5em;}
.con-com-01 .ls-img-03 img { max-width:100%;}
.con-com-01 .con-box-03 {text-align: center; background-repeat: no-repeat; background-size: cover; background-position: center 32%;}
.con-com-01 .con-box-04 {background:#fbf8db; }
.con-com-01 .con-box-04 .txt-box, .con-com-01 .con-box-06 .txt-box { order:2; padding-bottom:2em;}
.con-com-01 .con-box-04 .ls-img-04, .con-com-01 .con-box-06 .ls-img-04 { order:1; padding-left:0; padding-right: 1em; }
.con-com-01 .con-box-05 {background:#231d77; }
.con-com-01 .con-box-06 {text-align: center; background-repeat: no-repeat; background-size: cover; background-position: center bottom;}
.con-com-01 .inner-box { max-width: 1250px; padding-top: 6em; padding-bottom:6.5em; padding-left:20px; padding-right:20px; margin:0 auto;}
.con-com-01 .list-box-01 {display:flex; justify-content: space-between; align-items: center; column-gap:2px; }
.con-com-01 .list-box-01 img { max-width:100%;}
.con-com-01 .event-head { color:#fff; margin-bottom:0.6em; }
.con-com-01 .event-head span {font-size: 1.4em;padding: 0.27em 1em; display:inline-block; border:1px solid #fff; border-radius: 4em; border-bottom-left-radius: 0; background:#05aec7; }
.con-com-01 .com-box-03 .ls-box-in { text-align: left; display:flex; align-items: stretch; justify-content: space-between;}
.con-com-01 .ls-img-04 img { max-width:100%;}
.con-com-01 .ls-img-04 { width: 37%;  padding-left: 1em;}
.con-com-01 .txt-box {width: 62%; position: relative; transform: translateY(-0.2em);}
.con-com-01 .txt-box h5 {z-index:0; text-wrap: nowrap; font-size: 2.2em;  position: relative; color:#333333;}
.con-com-01 .txt-box h5:before { z-index:-1; content:attr(data-content); position: absolute; left:0;-webkit-text-stroke: 4px #fff;  }
.con-com-01 .txt-box ul { padding-top: 1.2em;}
.con-com-01 .txt-box li { font-weight:500; font-size: 1.3em;}
.con-com-01 .dl-box-02 { padding-top: 1.5em; text-align: left; }
.con-com-01 .dl-box-02 dl { font-size: 1.1em; font-weight: 500; display:flex; padding-bottom: 0.5em; justify-content: start; align-items: flex-start;}
.con-com-01 .dl-box-02 dt { min-width: 4.7em; text-align: center; position: relative; font-weight:600;  border-radius: 4em; border-bottom-right-radius: 0; background:#fd85c6; color:#fff; display: block; padding: 0.35em 0.7em;}
.con-com-01 .dl-box-02 dd { display: block; padding-left: 0.5em; font-size: 1.182em; margin-top: 0.3em}
.con-com-01 .dl-box-02 .txt-etc { font-size: 0.7em; padding-top: 1em;}
.con-com-01 .ls-btn a { max-width: 12em; font-weight: 700; padding: 0.2em; text-align: center; width:100%; position: relative; display:inline-block; font-size: 1.6em; background:#ffff; color:#333333; border:2px solid #333333;}
.con-com-01 .ls-btn a:before { position: absolute;z-index:-1; right:-0.2em; bottom: -0.2em; content:''; background:#333333; border:2px solid #333333; width:100%; height:100%;}
.con-com-01 .ls-btn a:after {display:inline-block; padding-left: 0.2em; content:'\279E'; font-weight:200; }
.con-com-01 .ls-btn a:hover { background:#fd85c6}
.con-com-01 .dl-box-03 { padding-top: 3em; text-align: left; }
.con-com-01 .dl-box-03 dl { font-size: 1.1em; font-weight: 500; display:flex; padding-bottom: 0.5em; justify-content: start; align-items: flex-start;}
.con-com-01 .dl-box-03 dt { min-width: 8em; text-align: center; position: relative; font-weight:600;  border-radius: 4em; border-bottom-right-radius: 0; background:#fd85c6; color:#fff; display: block; padding: 0.35em 0.7em;}
.con-com-01 .dl-box-03 dd { text-wrap: nowrap; display: block; padding-top: 0.1em; font-size: 1.4em; font-weight: 700; padding-left: 0.5em}
.con-com-01 .com-box-04 { position: relative; text-align: center;}
.con-com-01 .com-box-04 .box-bg { position: absolute; height:100%; width:100%; background-size: cover; background-position: 28% center; background-repeat: no-repeat;}
.con-com-01 .com-box-04 h4 { text-align: left; font-size: 1.4em; font-weight: 700; padding-bottom: 1em;}
.con-com-01 .com-box-04 h4:before { content:'\25FC'; position: relative; top:-0.1em; font-size: 0.9em; display:inline-block; padding-right:0.4em;}
.con-com-01 .com-box-04 h5 { padding-top:1em; font-weight: 500; font-size: 1.1em;}
.con-com-01 .com-box-04 .txt-head { margin-top:3.7em;}
.con-com-01 .con-box-07 {padding-bottom: 2em;margin:0 auto; width:100%; max-width: 1240px; padding-left:20px; padding-right:20px}
.con-com-01 .con-box-08 {margin:0 auto; width:100%; max-width: 1240px; padding-left:20px; padding-right:20px}
.con-com-01 .con-box-09 { margin:0 auto; width:100%; max-width: 1240px; padding-left:20px; padding-right:20px; transform: translateY(-3em); padding-bottom: 3em; }
.con-com-01 .ls-img-list { grid-template-columns:repeat(3, minmax(0, 1fr)) ; column-gap: 4em; display:grid;}
.con-com-01 .ls-img-list img { width:100%; height:100%; position: absolute; top:0; left:0; object-fit: cover; object-position: center center;}
.con-com-01 .ls-img-list .ls-img-05 { padding-top: 70%; position: relative; overflow: hidden; box-shadow: 5px 3px 7px rgba(0,0,0,0.3); }
.con-com-01 .ls-img-list .ls-list { margin-bottom:3em;}
.con-com-01 .ls-btn-02 { margin:0 auto; max-width: 38em}
.con-com-01 .ls-btn-02 a { display:inline-block; position: relative; width:100%; background:#fd85c6; color:#fff;border-radius: 4em; border-bottom-right-radius: 0; width:100%; text-align: center; padding: 0.4em 0.5em; font-size: 2.5em; font-weight:800;}
.con-com-01 .ls-btn-02 a:before { content:''; top: 0.15em; left: 0.15em; width:100%; height:100%; position: absolute;border-radius: 4em; border-bottom-right-radius: 0; z-index:-1; background-color: transparent; border:1px solid #fd85c6}
.con-com-01 .ls-btn-02 a:hover {background:#00a5ad;}
.con-com-01 .ls-btn-02 img { max-width:100%;}

/* 참가신청 */
.con-com-02 { margin:0 auto; position: relative; overflow:hidden; padding-bottom:5em; padding-top: 10em}
.con-com-02 .con-head { text-align: center; padding-left:20px; padding-right:20px; }
.con-com-02 .com-box-01 {position: relative; padding-top:2em; margin:0 auto; max-width: 1240px;padding-left:20px; padding-right:20px;}
.con-com-02 .com-box-02 {position: relative; padding-top:2em; margin:0 auto; max-width: 1240px;padding-left:20px; padding-right:20px;}
.con-com-02 .ls-txt-01 { font-weight:600; font-size: 1.4em; padding:3em 0 ;}
.con-com-02 .ls-txt-01 li {line-height: 1.8em;}
.con-com-02 .ls-input-01 { font-size: 1.3em; display:flex; justify-content: space-between; align-items: stretch;}
.con-com-02 .ls-input-01 > div { width: 46%;}
.con-com-02 .ls-input-01 dl{  font-weight: 600; display:flex; justify-content: start; align-items: center; }
.con-com-02 .ls-input-01 dt {text-align: left; display: block;  width: 30%; min-width: 5.7em; padding-bottom:1em;}
.con-com-02 .ls-input-01 dt:before { content:'\00B7'; display:inline-block; vertical-align: middle; color:#888888; padding-right: 0.1em;}
.con-com-02 .ls-input-01 dd { padding-top: 0.01em; display: block; padding-left: 0.5em; width: 100%; padding-bottom:1em;}
.con-com-02 .ls-input-01 input {font-size:0.9em; border-radius: 0.3em; border:1px solid #a9acac; padding-top:0.05em; padding-bottom:0.15em; background:#eeeeee;  width:100%; padding-left: 1em; padding-right:1em;}
.con-com-02 .ls-input-01 input::placeholder { font-size: 0.8em; color:#888888;line-height: 0.75em; padding-bottom:0.8em;}
.con-com-02 .ls-plus { padding-bottom: 2em; text-align: left; font-weight: 500; margin-top: 0.1em; padding-left:0.7em;}
.con-com-02 .ls-plus a {position: relative; display: block; height: 3em;}
.con-com-02 .ls-plus a:hover { color:#45b5b9 }
.con-com-02 .ls-plus span { padding-right:1em; display:inline-block; vertical-align: middle; height:100%; }
.con-com-02 .ls-plus img { max-height:100%;}
.con-com-02 .ls-ta-01 textarea { border:1px solid #a9acac; width:100%; height: 11em; padding:10px; font-size: 0.75em; }
.con-com-02 .ls-ta-01 { text-align: left; padding-top: 2em;}
.con-com-02 .ls-ta-01 label { display:flex; font-size: 0.85em; color:#333333; margin-top: 0.5em; }
.con-com-02 .ls-ta-01 input { width: 18px; height:18px;}
.con-com-02 .ls-ta-in span { display: inline-block; padding-left: 0.5em; vertical-align: middle;}
.con-com-02 .ls-ta-in { padding: 4.5% 5.5% 5% 5.5%; background:#eeeeee; border-radius: 1em; box-shadow: 5px 5px 10px rgba(0,0,0, 0.15);}
.con-com-02 .ls-check { padding:1em 0; text-align: left; font-size: 1.2em; font-weight:600;}
.con-com-02 .ls-check input { vertical-align: middle; width: 1.3em; height:1.3em;}
.con-com-02 .ls-btn { padding-top:2em; text-align: center;}
.con-com-02 .ls-btn a { display:inline-block; background:#333; color:#fff; max-width: 9.5em; width:100%; text-align: center; padding: 0.45em 0.5em; border-radius: 4em; font-size: 1.9em; font-weight:800;}
.con-com-02 .ls-btn a:hover {background:#fd85c6;}
.con-com-02 .ls-btn-i { text-align: center; padding:2em 0;font-weight: 600; font-size: 1.2em;}
.con-com-02 .ls-btn-i p { padding-bottom:0.5em;}
.con-com-02 .ls-btn-i a { display:inline-block; width: 10em; border:1px solid #333; background:#05a2ab; border-radius: 2em; line-height: 1em; padding: 0.3em 1em; }
.con-com-02 .ls-btn-i a:hover  {background:#333; color:#fff;}

/* 히스토리 */
.con-com-03 { margin:0 auto; position: relative; overflow:hidden; padding-bottom:5em; padding-top: 12em}
.con-com-03 .com-box-01 { max-width: 1260px; margin:0 auto; padding-left:20px; padding-right:20px; }
.con-com-03 .ls-txt-01 p { line-height: 1.8em;}
.con-com-03 .ls-txt-01 { font-weight:600; font-size: 1.4em; padding:2em 0 ;}
.con-com-03 .dl-box-01 { width:100%; margin:0 auto; text-align: left; }
.con-com-03 .dl-box-01 dl { font-weight:500; border-bottom:1px solid #929292; font-size: 1.2em; display:flex; padding:0.6em 0; justify-content: start; align-items: center;}
.con-com-03 .dl-box-01 dt {background:#eeeeee; text-align:center; min-width: 5.8em; font-weight:600; width:5.8em; position: relative; border:1px solid #d4d3d3; display: block; padding: 0.35em 0;}
.con-com-03 .dl-box-01 dd { display: block; padding-left: 1em;  letter-spacing: -0.03em; }
.con-com-03 .com-box-02 .ls-box-in {max-width: 1260px; margin:0 auto; padding-left:20px; padding-right:20px; display:flex; justify-content: space-between; align-items: stretch;}
.con-com-03 .com-box-02 .ls-img-01 { width: 43%; padding-left:5%;}
.con-com-03 .com-box-02 .ls-img-01 img { max-width:100%;}
.con-com-03 .com-box-02 .dl-box-01 { width: 57%;}
.con-com-03 .com-box-02 h3 {font-size: 1.8em; font-weight:700; padding-bottom: 0.3em; border-bottom:1px solid #929292;}
.con-com-03 .com-box-02 .ls-img-list {grid-template-columns:repeat(3, minmax(0, 1fr)) ;column-gap: 10px;display:grid; padding-top: 0.7em; }
.con-com-03 .com-box-02 .ls-img-list img { border:1px solid #bdbcbc; width:100%; object-fit: cover; aspect-ratio:10/5.7;}
.con-com-03 .com-box-02 .ls-more a {  font-size: 0.8em}
.con-com-03 .com-box-02 .ls-more { text-align: right;}
.con-com-03 .com-box-02>div { padding: 5em 0;}
.con-com-03 .com-box-02>div:nth-child(even) { background:#fcfcee;}
.con-com-03 .com-box-02>div:nth-child(even) .ls-img-01 { order:1; padding-right: 5%; padding-left:0; }
.con-com-03 .com-box-02>div:nth-child(even) .dl-box-01 { order:2;  }

/* 오시는길 */
.con-com-04 { margin:0 auto; position: relative; overflow:hidden; padding-bottom:8em; padding-top: 12em}
.con-com-04 .com-box-01 { max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px; }
.con-com-04 .con-box-02 { padding-top: 3em;}
.con-com-04 .ls-txt-01 { font-weight:700; font-size: 1.4em; padding:3em 0 ;}
.con-com-04 .ls-txt-01 span { display:inline-block; position: relative;}
.con-com-04 .ls-txt-01 span:first-of-type:after { content:':';}
.con-com-04 .ls-map { border:1px solid #e0e0e0; width:100%; height: 34em; padding:0;}
.con-com-04 .ls-box-in {padding-top: 3em; line-height: 1.4em; text-align: left; display:flex; justify-content: space-between; align-items: stretch; }
.con-com-04 .ls-box-01 { display:flex;  justify-content: start; align-items: stretch; }
.con-com-04 .ls-box-02 { display:flex;  justify-content: start; align-items: stretch; padding-right: 20px }
.con-com-04 .ls-img-01 { padding-right: 1.5em;}
.con-com-04 .ls-txt-02 { padding-top: 0.6em; font-weight:600; font-size: 1.6em;}
.con-com-04 .ls-txt-02 strong { display:block; padding-bottom: 0.5em; font-weight:600;}
.con-com-04 .ls-box-in p { line-height: 1.7em; font-size: 0.75em;}

/* 공지이벤트 목록 */
.con-com-05 { margin:0 auto; position: relative; overflow:hidden; padding-bottom:8em; padding-top: 12em}
.con-com-05 .com-box-01 { max-width: 1240px; margin:0 auto; padding-left:20px; padding-right:20px; }
.con-com-05 .con-box-01 { padding-top: 4em; text-align: right;}
.con-com-05 .con-box-01 .ls-more a { max-width: 7.4em; font-weight: 700; padding: 0.15em; text-align: center; width:100%; position: relative; display:inline-block; font-size: 1.2em; background:#ffff; color:#333333; border:1px solid #929292;}
.con-com-05 .con-box-01 .ls-more a:before { position: absolute;z-index:-1; right:-0.2em; bottom: -0.22em; content:''; background:#000; border:1px solid #929292; width:100%; height:100%;}
.con-com-05 .con-box-01 .ls-more a:hover { background:#fd85c6}
.con-com-05 .ls-table-01 { font-size: 1.2em; padding-top: 1em; }
.con-com-05 .ls-table-01 th { font-weight: 600; border-width:2px}
.con-com-05 .ls-table-01 td, .con-com-05 .ls-table-01 th { padding-left: 5px; padding-right:5px; border-bottom:1px solid #333333; padding-top: 0.7em; padding-bottom:0.7em}
.con-com-05 .ls-table-01 th:nth-child(1), .con-com-05 .ls-table-01 td:nth-child(1) { width: 13%}
.con-com-05 .ls-table-01 th:nth-child(2), .con-com-05 .ls-table-01 td:nth-child(2) { width: 13%}
.con-com-05 .ls-table-01 th:nth-child(4), .con-com-05 .ls-table-01 td:nth-child(4) { width: 20%}
.con-com-05 .ls-table-01 td:nth-child(3) { text-align: left;}
.con-com-05 .ls-table-01 table {  border-top:2px solid #000; width:100%;table-layout:fixed; text-align: center; border-collapse: collapse;}
.con-com-05 .ls-table-01 td { font-weight:500; font-size: 0.9em;}
.con-com-05 .ls-table-01 td span { display:inline-block; width: 80%; max-width: 5em; padding: 0.15em 0 }
.con-com-05 .ls-table-01 .type-01, .con-com-05 .ls-table-01 .type-03 { color:#fff;}
.con-com-05 .ls-table-01 td a {width:100%; padding-top: 0.1em; display:inline-block;overflow: hidden; text-overflow:ellipsis;white-space:nowrap; }

/* 페이지처리 */
.paginate { font-size: 0;position:relative;display: block; width: 100%; clear: both; text-align: center; padding: 30px 0 15px 0px; line-height: 100%; }
.paginate img {vertical-align: middle; display:inline-block;}
.paginate a {  margin: 0 1px; padding:7px 10px; vertical-align: middle; font-size: 0.8rem; line-height: 100%;display:inline-block; }
.paginate a {position:relative;  }
.paginate a span {  display:inline-block; position: relative;}
.paginate a:hover span:after,  .paginate .active span:after { display:inline-block  }
.paginate a:hover,  .paginate .active { font-weight: 700; color:#51cab6;}
.paginate .slide-left,  .paginate .slide-right { width: 30px; height:40px; font-size:0;border-radius: 7px;}
.paginate .slide-left:after { position: absolute; left:50%; top:50%; transform: translate(-50%, -50%); font-size:0.7rem; margin-left:-2px; content:'\003C';}
.paginate .slide-right:after { position: absolute; left:50%; top:50%; transform: translate(-50%, -50%); font-size:0.7rem; margin-left:2px; content:'\003E';}

.con-com-06 { margin:0 auto; position: relative; overflow:hidden; padding-bottom:8em; padding-top: 12em}
.con-com-06 .com-box-01 {position: relative; margin:0 auto;  max-width:1240px; padding-left:20px; padding-right:20px;}
.con-com-06 .ls-img-01 img { max-width: 100%;}
.con-com-06 .dl-box-01 { font-size: 1.3em; padding:5em 0 2em 0; margin:0 auto; max-width: 18em;}
.con-com-06 .dl-box-01 dl{  display:flex; padding-bottom: 1em; justify-content: start; align-items: center;}
.con-com-06 .dl-box-01 dt { text-align: left; display: block;  width: 30%; min-width: 5em; font-weight: 700; }
.con-com-06 .dl-box-01 dd { display: block; padding-left: 1em; width: 100%;}
.con-com-06 .dl-box-01 input { border-radius: 0.2em; border:1px solid #a9acac; width:100%; padding-top: 0.1em; padding-bottom:0.1em; padding-left: 1em; padding-right:1em;}
.con-com-06 .ls-btn a { display:inline-block; background:#333333; color:#fff; max-width: 8em; width:100%; text-align: center; padding: 0.3em 0.5em; border-radius: 4em; font-size: 1.3em; font-weight:600;}
.con-com-06 .ls-btn a:hover {background:#00a5ad;}
.con-com-06 .ls-txt-01 { font-weight:500; font-size: 1.1em; padding:3em 0 ;}
.con-com-06 .ls-txt-01 h3 { padding-bottom: 1em; text-align: left; font-weight:500;}
.con-com-06 .ls-txt-01 h3 span { vertical-align: middle; display:inline-block}
.con-com-06 .ls-txt-01 h3 span:nth-child(1) { width: 2.5em; padding-right: 0.5em}
.con-com-06 .ls-txt-01 h3 span img { max-width:100%;}
.con-com-06 .ls-txt-01 ul { line-height: 1.6em; padding: 2em 1em; border:1px solid #cccccc}

.con-com-07 { margin:0 auto; position: relative; overflow:hidden; padding-bottom:8em; padding-top: 12em}
.con-com-07 .com-box-01 { position: relative; margin:0 auto;  max-width:1240px; padding-left:20px; padding-right:20px;}
.con-com-07 .con-box-01 { padding-top: 7em;}
.con-com-07 .head-box { font-weight:600; font-size: 1.1em; padding: 1em; background:#fce3f1; border-top:3px solid #333; border-bottom:2px solid #333; display:flex; align-items: center;}
.con-com-07 .head-box h3 { text-align: left;}
.con-com-07 .ls-type { max-width: 4em; margin-right: 1em; padding: 0.1em 0; text-align: center; width:100%;}
.con-com-07 .ls-day { min-width: 6em;  margin-left: auto;}
.con-com-07 .txt-box { border-bottom:2px solid #333; font-weight:600; padding: 4%; text-align: left;}
.con-com-07 .txt-box img { max-width:100%;}
.con-com-07 .ls-btn {padding-top: 3em;}
.con-com-07 .ls-btn a { font-size: 1.1em; display:inline-block; background:#05a2ab; font-weight:600; padding: 0.5em 0.4em; color:#fff; width:100%; max-width: 7em;}
.con-com-07 .ls-btn a:hover { background:#fd85c6}
.con-com-07 .type-01, .con-com-07 .type-03 { color:#fff;}

.con-com-08 { margin:0 auto; position: relative; overflow: hidden; padding-left:20px; padding-right:20px; padding-bottom:8em; padding-top: 12em; margin-top: -1.5em}
.con-com-08 .con-box-01 { padding-top: 3em;}
.con-com-08 .com-box-01 { max-width: 52.5em; width:100%; margin:2.5em auto 0 auto; position: relative; padding: 2.5em 1em 4.5em 1em; box-shadow: 7px 10px 10px rgba(0,0,0, 0.1); border:1px solid #fedaee; border-radius: 1em; background:#fff;}
.con-com-08 .ls-txt-01 {  font-size: 1.2em; padding:2em 0 ;} 
.con-com-08 .ls-txt-01 li:last-of-type { padding-top:2em;}
.con-com-08 .ls-txt-02 { font-size: 1.2em; padding:2em 0 ; line-height: 1.4em} 
.con-com-08 .ls-txt-02 li:last-of-type { padding-top:2em;}
.con-com-08 .ls-img-01 { margin:0 auto; text-align: center; width: 5em; opacity: 0.8;} 
.con-com-08 .ls-img-01 img { max-width:100%;}
.con-com-08 .ls-img-02 { margin:0 auto; text-align: center; width: 12em; opacity: 0.7;} 
.con-com-08 .ls-img-02 img { max-width:100%;}
.con-com-08 .ls-btn { padding-top: 1em;}
.con-com-08 .ls-btn a { margin:0 2%; display:inline-block; background:#05a2ab; color:#fff; max-width: 8em; width:100%; border:1px solid #000; text-align: center; padding: 0.4em 0.5em; border-radius: 4em; font-size: 1.2em; font-weight:600;}
.con-com-08 .ls-btn a:hover {background:#fd85c6;}
.con-com-08 .ls-btn .ls-back {background:#333333; }
.con-com-08 .ls-btn .ls-back:hover { background:#fd85c6}



/*팝업*/
.popup-layer { position:fixed; top:0px; z-index:20; width:100%; height:100vh; background:rgba(0,0,0,0.5); }

/*팝업*/
.pop-type { font-weight: 500; border:1px solid #000; position: relative; background:#fff; }
.pop-type h1 {border-bottom:1px solid #000; font-weight:700; font-size: 1.55em; line-height:1.5em; padding: 0.4em 0; height: 60px; color:#fff; text-align: center;}
.pop-type .pop-close { height:60px; font-size:0; position:absolute; width: 50px; right:5px; top: -1px;}
.pop-type .pop-close a { display:block; width:100%; height:100%;}
.pop-type .pop-close:after { font-size: 1.7rem; left:50%; top:50%; transform: translate(-50%, -50%); content:'\2715'; position: absolute;}
.pop-type .ls-con-box {font-size: 1.3em; padding: 2em 1.5em; line-height: 1.5em; margin:0 auto;}
.pop-type a {position:relative; z-index:5; }

.pop-box-01 h1 { background:#00a2ab;}
.pop-box-02 h1 { background:#333;}
.pop-box-03 h1 { background:#333;}
.pop-box-04 h1 { background:#333;}
.pop-box-05 h1 { background:#333;}
.pop-box-06 h1 { background:#333;}

/* 이벤트안내 */
.pop-box-01 { max-width:500px; margin:17em auto; }
.pop-box-01 .ls-con-box { max-width:950px }
.pop-box-01 .ls-con-box .ls-txt-02 p { padding-bottom: 1em;}
.pop-box-01 .ls-txt-02 li { list-style: decimal; padding-bottom: 1em;}
.pop-box-01 .ls-txt-02 ul { padding-left: 1.2em;}

/* 신청확인-정보확인 */
.pop-box-02 { max-width:500px; margin:17em auto; }
.pop-box-02 .pop-close { color:#fff;}
.pop-box-02 .ls-con-box { text-align: center; max-width:500px }
.pop-box-02 .ls-img-01 { margin:0 auto;  text-align: center; width: 7em; padding-bottom:0.5em;}
.pop-box-02 .ls-img-01 img { max-width:100%;}
.pop-box-02 .ls-txt-01 { font-size: 1.15em; }
.pop-box-02 .ls-btn { padding-top: 2em;}
.pop-box-02 .ls-btn a { margin:0 3%; border:1px solid #000; display:inline-block; background:#00a5ad; color:#fff; max-width: 8em; width:100%; text-align: center; padding: 0.3em 0.5em; border-radius: 4em; font-size: 1em; font-weight:600;}
.pop-box-02 .ls-btn a:hover {background:#fd85c6;}
.pop-box-02 .ls-btn .ls-back { background:#333333}

/* 신청확인-이메일체크 */
.pop-box-03 { max-width:500px; margin:17em auto; }
.pop-box-03 .pop-close { color:#fff;}
.pop-box-03 .ls-con-box { text-align: center; max-width:500px }
.pop-box-03 .ls-img-01 { margin:0 auto;  text-align: center; width: 7em; padding-bottom:0.5em;}
.pop-box-03 .ls-img-01 img { max-width:100%;}
.pop-box-03 .ls-txt-01 { font-size: 1.15em; }
.pop-box-03 .ls-btn { padding-top: 2em;}
.pop-box-03 .ls-btn a { margin:0 3%; border:1px solid #000; display:inline-block; background:#00a5ad; color:#fff; max-width: 8em; width:100%; text-align: center; padding: 0.3em 0.5em; border-radius: 4em; font-size: 1em; font-weight:600;}
.pop-box-03 .ls-btn .ls-back { background:#333333}
.pop-box-03 .ls-btn a:hover {background:#fd85c6;}

/* 신청확인-휴대폰 */
.pop-box-04 { max-width:500px; margin:17em auto; }
.pop-box-04 .pop-close { color:#fff;}
.pop-box-04 .ls-con-box { text-align: center; max-width:500px }
.pop-box-04 .ls-img-01 { margin:0 auto;  text-align: center; width: 7em; padding-bottom:0.5em;}
.pop-box-04 .ls-img-01 img { max-width:100%;}
.pop-box-04 .ls-txt-01 { font-size: 1.15em; }
.pop-box-04 .ls-btn { padding-top: 2em;}
.pop-box-04 .ls-btn a { margin:0 3%; border:1px solid #000; display:inline-block; background:#00a5ad; color:#fff; max-width: 8em; width:100%; text-align: center; padding: 0.3em 0.5em; border-radius: 4em; font-size: 1em; font-weight:600;}
.pop-box-04 .ls-btn a:hover {background:#fd85c6;}
.pop-box-04 .ls-btn .ls-back { background:#333333}

/* 신청확인-참가자 */
.pop-box-05 { max-width:500px; margin:17em auto; }
.pop-box-05 .pop-close { color:#fff;}
.pop-box-05 .ls-con-box { text-align: center; max-width:500px }
.pop-box-05 .ls-img-01 { margin:0 auto;  text-align: center; width: 7em; padding-bottom:0.5em;}
.pop-box-05 .ls-img-01 img { max-width:100%;}
.pop-box-05 .ls-txt-01 { font-size: 1.15em; }
.pop-box-05 .ls-btn { padding-top: 2em;}
.pop-box-05 .ls-btn a { margin:0 3%; border:1px solid #000; display:inline-block; background:#00a5ad; color:#fff; max-width: 8em; width:100%; text-align: center; padding: 0.3em 0.5em; border-radius: 4em; font-size: 1em; font-weight:600;}
.pop-box-05 .ls-btn a:hover {background:#fd85c6;}
.pop-box-05 .ls-btn .ls-back { background:#333333}

/* 전화문의 */
.pop-box-06 { max-width:500px; margin:17em auto; }
.pop-box-06 .pop-close { color:#fff;}
.pop-box-06 .ls-con-box { max-width:500px }
.pop-box-06 .ls-con-box .ls-txt-02 p { padding-bottom: 1em;}
.pop-box-06 .ls-con-in { display:flex; justify-content: center; align-items: center; padding-bottom:1em;}
.pop-box-06 .ls-con-in .ls-txt-01 {font-weight: 700; font-size: 1.15em; width:100%; max-width: 13em; text-align: center;}
.pop-box-06 .ls-con-in .ls-img-01 { text-align: right; width: 4.5em;  }
.pop-box-06 .ls-con-in .ls-img-01 img { max-width:100%;}
.pop-box-06 .ls-txt-02 {font-size: 1.15em;text-align: center;}


/*게시판*/
.bo_fx { margin-top:70px; }
#bo_v { margin-top:70px; }
.board_list {  }
.board_list table { }
.board_list table tr {}
.board_list table tr th {border-top:1px solid #000; border-bottom:1px solid #000; padding:13px 0; font-weight:500;}
.board_list table tr td {border-bottom:1px solid rgba(0,0,0,0.23); padding:13px 0; font-weight:400;}
.board_list .td_subject {text-align:left; }
.board_list .bsearch {float:right}
.is-box-2_board {padding: 0 0 150px 0; max-width:1280px; margin:0 auto;  text-align:left;}



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

	.con-com-01 .txt-box h5 { font-size: 2.79vw;}
	
}

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

	header .head-box .head-txt { font-size: 2vw;}
	header .head-box i { width: 10vw;}
	header .head-box .head-logo { width: 20vw;}

	.con-com-01 .dl-box-03 dd { text-wrap: wrap;}
	

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


	.nav_web>ul {font-size: 1.4em;}
	/* header h1 img { height: 30px; } */

	.container { font-size: 1.15em;}
   
} 


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

}

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

	.container { font-size: 1.05em;}

	.con-com-01 .ls-img-list { column-gap: 2em;}
	.con-com-01 .dl-box-01 { font-size: 0.75em}
	.con-com-01 .ls-table-01 table { font-size:1em;}

	.con-com-03 .com-box-02 .dl-box-01 { font-size: 0.8em}

	.con-com-05 .ls-input-01 dt {min-width: 90px;}



}
@media all and (max-width : 800px){
	
}
/* 
@media all and (min-height : 1201px), (min-width: 1921px) {
	.scroll-box-1-1 { justify-content: center;}
	.scroll-box-1 .ls-box-in { padding-top: 0;}
}
 */
/* 모바일사이즈 기본 */
@media all and (max-width : 768px){ 

	header .box_inner:before { display:none; }
	header .head-box { display:none;}
	header { height: 60px; }
	header h1 { flex-basis : unset; width:100%; text-align: center; padding-right: 80px;}
	header h1 a { height: 2.96em;}
	header h1 a img { height:100%;}
	header h1 i { display:inline-block; padding-right: 10px; position: relative; transform: translateY(7px);}
	header h1 i img { max-width: 80px;}
	header .box_inner:after { display:none;}

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

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

	.snb-bg .ls-slide-texts { max-width: 275px; padding-top: 21em}

	.snb-bg .ls-slide-backgrounds.snb-po-01 { height: 54em}
	.snb-bg .ls-slide-backgrounds.snb-po-02 { height: 32em}
	.snb-bg .ls-slide-backgrounds.snb-po-03 { height: 37em}
	.snb-bg .ls-slide-backgrounds .snb-bg-01 { position: relative; padding-top: 130%; height: auto; }
	.snb-bg .ls-slide-backgrounds img { position: absolute; width: 768px; height:auto; top: 0; left: 50%; transform: translateX(-50%); }
	.snb-bg .ls-slide-texts .ls-head img { width: 200px}
	.snb-bg { height: 31em }
	.snb-bg .box_inner .ls-img-01 { bottom: -3em; max-width: 400px; left:50%; transform: translateX(-50%);}
	
	.snb { height: 55px; }
	.snb li a {font-size: 1em; padding-left: 1em; padding-right:1.2em;}
	.snb li a:after { height:10px;}
	.snb ul { padding-left: 35px; background-size: 17px auto;}
	.snb li:last-of-type a { padding-right:0;}

	.page-top { transform: scale(0.8); bottom: 65px; right: 10px;}
	.page-top a:after { left:48%;}

	footer { height: 90px; font-size: 7.1px} 
	footer .box-inner { padding:2em 5px 0 5px;}
	.footer .col-box-02 span { height: 24px;}
	.footer .col-box-02 span img { height:100%;}

	.scroll-box-1 { overflow: hidden; height:calc(100vh - 90px); min-height: 575px;}
	.scroll-box-1-1 { height:100%; min-height: 575px; }
	.scroll-box-1 .ls-slide-backgrounds { height:100%}
	.scroll-box-1 .ls-slide-backgrounds img { height:100%; min-height:auto; min-width: 280px; width:100%;}
	.scroll-box-1 .ls-btn img { width: 20px;}
	.scroll-box-1 .ls-btn a{ max-width:200px; width:100%; padding-top:0.33em; padding-bottom:0.33em;  font-size: 1.6em;}
	.scroll-box-1 .ls-btn {padding-left: 5%; padding-right:5%; padding-top: 1.2em}
	.scroll-box-1 .ls-box-in { padding-top: calc(1em + 60px)}
	.scroll-box-1 .ls-box-01 { max-width: 310px; margin:0 auto; }
	.scroll-box-1 .ls-banner { max-width:310px; position: relative; right:auto; bottom:auto; max-height:100%; overflow:visible;}
	.scroll-box-1 .ls-img-02 img { max-width:100%;}
	.scroll-box-1 .ls-img-01 { padding-left: 18%; padding-right:18%;}
	.scroll-box-1 .ls-img-01 img { width:100%; max-width: 400px;}
	.scroll-box-1 .ls-img-02 { width:100%; padding-top: 100px; padding-left:10px; padding-right:10px;}
	.scroll-box-1 .ls-img-02 img { width:100%; max-width: 500px;}
	.scroll-box-1 .ls-txt-01 { font-size: 0.95em}
	.scroll-box-1 .scroll-box-bg { transform: translateX(calc(-50% - 10px)); bottom: 30px;}
 
	.container { font-size: 0.8em;}
	.con-head { font-size: 1em;}
	.con-head .head-txt { font-size: 1.3em;}

	.ls-tab-01 a { padding-top:5px; padding-bottom:5px;}

	.txt-head { font-size: 1.4em; }
	.txt-head i { height: 2.5em;}

	.con-com-01 .ls-img-01 { padding-top: 3em;}
	.con-com-01 .ls-txt-01 { font-size: 1.25em; line-height: 1.4em;}
	.con-com-01 .ls-txt-01 p { padding-bottom: 1.3em;}
	.con-com-01 .con-box-02 { padding-top: 4.5em;}
	.con-com-01 .dl-box-01 { margin:0 auto; max-width: 280px;  flex-wrap: wrap; }
	.con-com-01 .dl-box-01 dl {font-size: 1em; width:100%;}
	.con-com-01 .con-box-02 .ls-box-in { padding-bottom: 1em;}
	.con-com-01 .ls-table-01 table { font-size: 0.85em; table-layout: auto;}
	.con-com-01 .ls-table-01 th:nth-child(2) { display:none;}
	.con-com-01 .ls-table-01 tr:nth-child(1) td:nth-child(2) { display:none;}
	.con-com-01 .ls-table-01 tr:nth-child(3) td:nth-child(2) { display:none;}
	.con-com-01 .ls-table-01 tr:nth-child(4) td:nth-child(2) { display:none;}
	.con-com-01 .ls-table-01 tbody tr:last-of-type td { border-width: 1px;}
	.con-com-01 .ls-table-01 tbody td { padding: 0.7em 0;}
	.con-com-01 .ls-img-03 { padding-top:2.5em;}
	.con-com-01 .ls-img-02 { padding-top: 1em}
	.con-com-01 .ls-img-02 .ls-btn-02 a { font-size: 1.2em; padding: 0.4em 0.5em 0.45em 0.5em}
	.con-com-01 .ls-btn-02 a { font-weight:600; font-size: 1.4em; border-radius: 2em;  padding: 0.35em 0.5em 0.4em 0.5em; border:1px solid #333333 }
	.con-com-01 .ls-btn-02 a:before { display:none;}
	.con-com-01 .list-box-01 { max-width: 400px; margin:0 auto; flex-wrap: wrap; column-gap: 0px; padding-left: 10px; padding-right:10px;}
	.con-com-01 .list-box-01 li { width: 49.8%; padding-bottom: 1.4em;}
	.con-com-01 .con-box-03 .inner-box { padding-top: 2.5em; padding-bottom:1.5em; }
	.con-com-01 .inner-box { padding-top:4em; padding-bottom:3em;}
	.con-com-01 .con-box-03 { background-position: 9% 27%; background-size: auto 119% }
	.con-com-01 .event-head span { font-size: 1.2em; border-radius: 1em; padding: 0.17em 1em}
	.con-com-01 .com-box-03 .ls-box-in { flex: wrap;}
	.con-com-01 .txt-box h5 { font-size: 1.25em;}
	.con-com-01 .txt-box {text-align: center; width:100%;}
	.con-com-01 .txt-box h5 { display:inline-block}
	.con-com-01 .txt-box h5:before { -webkit-text-stroke-width: 1.5px;}
	.con-com-01 .ls-img-04 { width:100%; padding: 1.2em 0 0.5em 0}
	.con-com-01 .con-box-04 .ls-img-04, .con-com-01 .con-box-06 .ls-img-04 {padding-right:0;}
	.con-com-01 .txt-box li { font-size: 1em;}
	.con-com-01 .dl-box-02 dl { justify-content: center;}
	.con-com-01 .dl-box-02 dt { border-radius: 4em; padding: 0.15em 0.5em; min-width: 4.2em; }
	.con-com-01 .dl-box-02 dd { font-size: 1.1em;}
	.con-com-01 .dl-box-02 .txt-etc { transform: translateX(-4em);}
	.con-com-01 .con-box-05 .dl-box-02 { margin:0 auto;  max-width: 340px;font-size: 0.8em}
	.con-com-01 .con-box-05 .dl-box-02 dl { justify-content: start; }
	.con-com-01 .con-box-05 .dl-box-02 dt { font-size: 0.9em; border-bottom-right-radius: 0; padding: 0.3em 0.2em 0.35em 0.2em}
	.con-com-01 .con-box-05 .dl-box-02 dl:nth-child(2) dd { letter-spacing: -0.08em;}
	.con-com-01 .dl-box-03 {padding-top:1em;}
	.con-com-01 .dl-box-03 dl { justify-content: center; flex-wrap: wrap;}
	.con-com-01 .dl-box-03 dd { width:100%; padding-top: 1em; text-align: center; font-size:1em;  }
	.con-com-01 .dl-box-03 dd b { font-weight:900}
	.con-com-01 .dl-box-03 dt { padding: 0.15em 0.5em}
	.con-com-01 .con-box-06 { background-position: 62% 70%; background-size: auto 111% }
	.con-com-01 .con-box-09 { transform: none; padding-top: 3em;}
	.con-com-01 .com-box-04 .box-bg { background-position: 47% center;}
	
	.con-com-02 { padding-top: 8em;}
	.con-com-02 .ls-txt-01 { padding-bottom:0em; font-size: 1.1em;}
	.con-com-02 .ls-input-01 { max-width: 320px; padding-left: 20px; padding-right:20px; margin:0 auto; flex-wrap: wrap; font-size: 1.1em;}
	.con-com-02 .ls-input-01 > div { width:100%;}
	.con-com-02 .ls-check { text-align: center;}
	.con-com-02 .ls-btn { padding-top:1em; padding-bottom:1em;}
	.con-com-02 .ls-btn a { font-size: 1.4em;}
	.con-com-02 .ls-btn-i { font-size: 1em;}
	.con-com-02 .ls-plus { display:inline-block; max-width: 250px; }
	.con-com-02 .ls-plus a { height: 2.5em; font-weight:700;}
	.con-com-02 .ls-txt-01 li { font-weight: 700;}
	.con-com-02 .com-box-02 { padding-top: 5em;}
	.con-com-02 .ls-input-01 dt { font-weight:700;}
	.con-com-02 .ls-ta-in span { position: relative; margin-top: 0.1em}

	.con-com-03 { padding-top: 8em;}
	.con-com-03 .com-box-02 .ls-img-01 { width:100%; padding-bottom: 2em;}
	.con-com-03 .com-box-02 .ls-img-01 img { max-width: 150px;}
	.con-com-03 .com-box-02 .dl-box-01 { width:100%;}
	.con-com-03 .com-box-02 .dl-box-01 dl{ font-size: 0.85em; }
	.con-com-03 .com-box-02 .ls-box-in {flex-wrap: wrap;}
	.con-com-03 .ls-box-in .ls-img-01 { order:0; padding-left:0;}
	.con-com-03 .com-box-02>div:nth-child(even) .ls-img-01 { padding-right:0;}
	.con-com-03 .ls-box-in .dl-box-01  { order:1;}
	.con-com-03 .com-box-02 .dl-box-01 { font-size:1em;}
	.con-com-03 .ls-txt-01 { font-size: 1.1em;}
	.con-com-03 .com-box-02 h3 { text-align: center; font-size: 1.4em}
	.con-com-03 .com-box-02 .ls-img-list { column-gap: 5px;}
	.con-com-03 .dl-box-01 dd { letter-spacing: 0;}
	.con-com-03 .com-box-02>div { padding:3.5em 0;}
	.con-com-03 .com-box-02>div:nth-child(even) { background:#fff;}
	.con-com-03 .com-box-02>div:nth-child(odd) { background:#fcfcee;}
	.con-com-03 .con-box-01 { }

	.con-com-04 { padding-top: 8em;}
	.con-com-04 .con-box-02 { padding-top:0;}
	.con-com-04 { padding-bottom: 7em }
	.con-com-04 .ls-txt-01 { font-size: 1.1em; padding-bottom: 1.5em;}
	.con-com-04 .ls-box-in { padding-top:2em; display:block;}
	.con-com-04 .ls-txt-01 span:first-of-type {background:#05a2ab; border-radius: 1em; color:#fff; padding: 0.2em 0.7em;}
	.con-com-04 .ls-txt-01 span:first-of-type:after { display:none;}
	.con-com-04 .ls-img-01 img { width: 33px; }
	.con-com-04 .ls-txt-02 { padding-top: 0.4em; font-size: 1.25em;}
	.con-com-04 .ls-box-01 { padding-bottom:2em;}
	.con-com-04 .ls-map { padding:0; height: 27em;}
	.con-com-04 .ls-txt-02 strong { font-weight:700;}

	.con-com-05 { padding-top: 8em;}
	.con-com-05 .ls-table-01 { font-size: 0.95em;}
	.con-com-05 .ls-table-01 th:nth-child(1), .con-com-05 .ls-table-01 td:nth-child(1) { width: 35px;}
	.con-com-05 .ls-table-01 th:nth-child(4), .con-com-05 .ls-table-01 td:nth-child(4) { width: 80px;}
	.con-com-05 .ls-table-01 th:nth-child(2), .con-com-05 .ls-table-01 td:nth-child(2) { width: 50px;}
	.con-com-05 .con-box-01 .ls-more a:before { bottom: -3px; right: -3px;  }
	.con-com-05 .con-box-01 .ls-more a { font-size: 1em;}
	.con-com-05 .ls-table-01 td, .con-com-05 .ls-table-01 th { padding-top: 0.5em; padding-bottom: 0.5em}
	.con-com-05 .ls-table-01 td span { width: 96%;}

	.con-com-06 { padding-bottom: 4em; padding-top: 8em;}
	.con-com-06 .dl-box-01 { font-size: 1em; max-width: 250px;}
	.con-com-06 .dl-box-01 input { padding-top:0.15em; padding-bottom: 0.15em;}
	.con-com-06 .ls-btn a { font-size: 1.1em; border:1px solid #000; background:#05a2ab}
	.con-com-06 .ls-txt-01 h3 { text-align: center;}
	.con-com-06 .ls-txt-01 li:nth-child(1) { padding-bottom:1em;}
	.con-com-06 .ls-txt-01 h3 span:nth-child(1) { width: 2.2em}

	.con-com-07 { padding-bottom: 4em; padding-top: 8em;}
	.con-com-07 .head-box { padding: 0.4em;}
	.con-com-07 .ls-btn a { font-size: 0.95em;}
	.con-com-07 .con-box-01 { padding-top: 3.5em;}

	.con-com-08 { padding-bottom: 0em; padding-top: 2.2em;}
	.con-com-08 .ls-btn a { padding: 0.2em 0 0.3em 0; font-size: 1.1em; max-width: 7em;}
	.con-com-08 .con-box-01 .ls-btn a:nth-child(2) { display:none;}
	.con-com-08 .ls-btn .ls-back { margin:0;}
	.con-com-08 .com-box-01 { box-shadow: none; padding-left:0; padding-right:0; border:0; background:transparent }
	.con-com-08 .con-box-01 { max-width: 52.5em; width:100%; top:-1.5em; margin:2.5em auto 0 auto; position: relative; padding: 3em 0.5em 3.5em 0.5em; box-shadow: 6px 6px 6px rgba(0,0,0, 0.1); border:1px solid #fedaee; border-radius: 1em; background:#fff;}
	.con-com-08 .con-box-02 { max-width: 52.5em; width:100%; top:-1.5em; margin:2.5em auto 0 auto; position: relative; padding: 3em 0.5em 3.5em 0.5em; box-shadow: 6px 6px 6px rgba(0,0,0, 0.1); border:1px solid #fedaee; border-radius: 1em; background:#fff;}
	.con-com-08 .ls-img-01 {width: 4em}
	.con-com-08 .ls-img-02 {width: 7em}
	.con-com-08 .ls-txt-01 { padding:1em 0; font-size: 1.1em}
	.con-com-08 .ls-txt-02 { padding:1em 0; font-size: 1.1em}

	.pop-type { font-size: 0.7em;}
	.pop-type .pop-close { width: 40px; height: 35px; right:0;}
	.pop-type h1 { font-size: 1.25em; height: 35px;}
	.pop-type .pop-close:after { font-size: 1.1rem;}
	.pop-type .ls-con-box { font-size: 1.1em;}
	.pop-type .ls-btn a { padding: 0.15em 0.5em 0.2em 0.5em}

	.pop-box-06 .ls-con-in .ls-img-01 { width: 3.2em;}
	.pop-box-06 .ls-con-in .ls-txt-01 { font-weight: 500;}

	 /*게시판*/
	.bo_fx { margin-top:20px;  }
	#bo_v { margin-top:20px;padding-left:10px; padding-right:10px; font-size:0.8em;  }
	.board_list {  }
	.board_list table { }
	.board_list table tr {}
	.board_list table tr th {border-top:1px solid #000; border-bottom:1px solid #000; padding:13px 0; font-weight:500;}
	.board_list table tr td {border-bottom:1px solid rgba(0,0,0,0.23); padding:13px 0; font-weight:400;}
	.board_list .td_subject {text-align:left; }
	.board_list .bsearch {float:right}
	.is-box-2_board {padding:50px 10px; max-width:1340px; margin:0 auto; font-size:0.8em; }


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

	.con-com-01 .ls-img-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

	.con-com-01 .ls-img-list { grid-template-columns: repeat(1, minmax(0, 1fr)); }
	.con-com-01 .ls-img-list .ls-img-05 { padding-top: 85%;}
	.con-com-01 .con-box-07 .ls-img-list .ls-list:nth-child(4) img { object-position: right center;}
	.con-com-01 .con-box-08 .ls-img-list .ls-list:nth-child(2) img { object-position: 30% center;}
	.con-com-01 .con-box-08 .ls-img-list .ls-list:nth-child(3) img { object-position: right center;}



}


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






/* 중간 레이아웃 */
/**********************************************************************************************************************/
/* 여기부터 반응형 메인 박스 스타일 적용 */
/**********************************************************************************************************************/
#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;}