@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');   /*notosansKR*/
@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;}



.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", 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;}
body, html {width: 100%;}
#wrap {background: transparent; text-align: center; }
*, *:after, *:before {box-sizing: border-box; padding:0; margin:0;}
img { display:inline-block; font-size: 0;}
/* header, .main_silde {width: 100%;} */
a {text-decoration: none; color:#000;}
a:hover { color:#e6bb0a;}
input, select, textarea {font-family: "Paperlogy", 'noto sans KR', sans-serif;}

/* header 메뉴 */
header {z-index: 15; width: 100%; margin: 0 auto; flex-wrap: wrap;display:flex;justify-content: center;align-items: center;position:fixed; height: 140px;}
header h1 {z-index: 12; /* height: 3.8em; */ flex-basis: content;text-align: left;}
header h1 img { max-height: 100%;}
header h1 a { display: inline-block; height:100%;}
header .box_inner {z-index:4; position: relative;display:flex; max-width: 1815px; padding: 0px 20px 0 20px; width: 100%; height: 100%;justify-content:  space-between; align-items: center;}
header:not(.menu-scroll) .nav_wrap { display: none;}
header .logo-block { display:none;}

/*웹용 메뉴*/
.nav_web { margin-left: auto; padding-left: 3%; padding-right: 3%; max-width:820px; height: 100%; flex:1 1 820px; position: relative;}
.nav_web a { letter-spacing: -0.03em; height: 100%;}
.nav_web>ul {width:100%; height: 100%; display: flex; align-items: center; }
.nav_web>ul>li { position: relative; flex: auto; flex-shrink: 1; height: 100%;display: inline-block; text-align: center;}
.nav_web>ul>li>a>span { position: relative;}
.nav_web>ul>li>a {display: flex; justify-content: center;align-items: center; position: relative; font-size: 1.15em; font-weight: 500;}
.nav_web li li a { display:block; text-align: center; font-weight:500; padding: 0.7em 0; color:#959595;}
.nav_web li li a:hover {font-weight: 700;color:#fada05}
.nav_web a { position: relative;  width:100%;}
.nav_web ul ul li { height:100%; font-size: 1em;}
.nav_web ul ul li:last-of-type{ border-right:none;}
.nav_web ul ul { position: absolute; width:100%; display:none; padding-top: 0.5em;}
.nav_web ul ul:after { content:''; display:block; top:-1.5em; border-radius: 1em; position: absolute; line-height: 0.65em; height:0.65em; width: 0.65em; left:50%; transform: translateX(-50%); background:#fada05;} 
.nav_web>ul>li:hover ul { display:block;}

/* 상단-인스타/쇼핑몰 */
.nav-head-banner { z-index: 11;}
.nav-head-banner ul { display:flex; justify-content: center; align-items: center; font-size: 0.85em; width:100%;}
.nav-head-banner li { padding-left:1em;}
.nav-head-banner a { width:100%; display:block;}
.nav-head-banner a:after {  background-size: contain; background-repeat: no-repeat; background-position: center center; }
.nav-head-banner .ls-insta a { position: relative; font-size:0; width: 30px; height: 30px; }
.nav-head-banner .ls-insta a:after { position: absolute; content:''; transform: translate(-50%, -50%); left: 50%; top:50%; width:58%; height:58%; }
.nav-head-banner .ls-shop a { position: relative; width: 7em; padding-left: 28px; height: 30px; font-weight:500; line-height:2.3em; }
.nav-head-banner .ls-shop a:after { position: absolute; display:inline-block; content:''; transform: translateY(-50%); left: 0%; top:50%; width:30%; height:54%; }
.nav-head-banner .ls-shop span { display:inline-block; vertical-align: middle;}

/*모바일용메뉴*/
.nav_md {width: 100%; height: 100%; top:0; right:0; position: fixed; z-index: 10;} 
.nav_md_head { z-index: 20; position: relative; top:0; left:50%; transform: translateX(-50%); max-width: 1775px; display:flex; align-items: center; padding: 0px 20px 0 20px; width: 100%; height: 90px;}
.nav_md .nav_md_wrap { position:absolute; right:0; top:0; background:#fada05; height: 100%; width: 100%; }
.nav_md .nav-md-box { position: relative; display:flex; width:100%; height:100%; z-index:2;}
.nav_md .nav-md-ul { padding-top: 7em; width: 100%; position: relative;}
.nav_md .nav-md-list { vertical-align: middle; max-height: 800px; }
.nav_md .nav-md-list>li { position: relative; }
.nav_md .nav-md-list>li>a { text-align: left; padding: 0.4em 20px 0.4em 30px; font-size: 2.7em; display:block; font-weight:800; width: 100%;}
.nav_md .nav-md-list>li>a:hover { color:#000;}
.nav_md .nav-md-list ul { text-align: left; display:none; width:100%; padding-left:33px;}
.nav_md .nav-md-list>li:hover ul { display:block;}
.nav_md .nav-md-list>li li a { padding: 0.3em 0; font-size: 1em; font-size: 0.95em }
.nav_md .nav-md-list>li li a:hover { font-weight:600; color:#000;}
.nav_md .nav-md-list>li li span {position: relative; display:inline-block}
.nav_md .nav-md-ul a { display:block;}

/* 메뉴 스크롤 시 */
.menu-scroll { background-color:#fff; }
.menu-scroll .nav_web>ul>li>a { color:#000; }
.menu-scroll h1 img { filter: none;}
.menu-scroll .nav_wrap {display: block; box-shadow: 3px 0px 10px rgba(0,0,0,0.25); z-index:-1; width: 100%; height: 12em;background-color:#fff; position: absolute; left:0; top: 140px;} 
.menu-scroll .nav_wrap::after { z-index:1; content:''; position: absolute; height:140px; top:-140px; width:100%; left:0; background:#fff;}
.menu-scroll .nav_web ul ul { opacity: 1;}
.menu-scroll ul ul { display:block;}
.menu-scroll .logo-block { display:inline-block;}
.menu-scroll .logo-default { display:none;}

/* 메뉴 스크롤 검정 */
.menu-scroll-black .logo-block { display:inline-block;}
.menu-scroll-black .logo-default { display:none;}

/* 모바일메뉴보기 버튼 */
header .nav-head { width: 46px; height:46px; position: relative; z-index: 17;}
header .view-nav { z-index:1; position: absolute; border-radius: 40px; top: 0px;  right: 0px;  width: 46px;  height: 46px; display: block; }  
header .view-nav span {  position: absolute; top: -9999px; left: -9999px; }
header .view-nav i {  position: absolute; left: 12px; display: block; width: 53%; height: 3px; border-radius: 1em; background-color: #000; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
header .view-nav i:nth-child(1) {   top: 13px; }
header .view-nav i:nth-child(2) {   top: 21px;/*   width: 50%; */ }
header .view-nav i:nth-child(3) {   top: 29px;/*   width: 50%; */ }
header .view-nav.open {-webkit-transform: rotate(45deg);transform: rotate(45deg); }
header .view-nav.open i {width: 24px; height: 3px; }
header .view-nav.open i:nth-child(1) {top: 48%;left: 11px; }
header .view-nav.open i:nth-child(2) {top: 48%;left: 11px;-webkit-transform: rotate(90deg);transform: rotate(90deg); }
header .view-nav.open i:nth-child(3) { display:none;}

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

/*메인상단 슬라이드*/
.scroll-box-1 { position:relative; width: 100%; height: 100vh; background:#fada05; overflow: hidden;}
.scroll-box-1-1 { height: 100%;z-index: 2;}
.scroll-box-1 .main-txt-box { position: relative; max-width: 1620px; height:100%; }
.scroll-box-1 .main-txt-box img { max-width:100%;}
.scroll-box-1 .slide-box { width:100%; padding: 0px 0px; max-width: 1620px; text-align: center; display:flex; justify-content: center; align-items: center; position:absolute; left:50%; top:55%; transform: translate(-50%, -50%);}
.scroll-box-1 i { display:block;}
.scroll-box-1 .img-item { background-position:left center; background-size: cover; background-repeat: no-repeat;}
.scroll-box-1 .img-mouse { display:block; content:""; z-index:2; position: absolute; left:50.35%; top:17.5%; width:217px; height: 177px; }
.scroll-box-1 .img-bug { display:block; content:""; z-index:2; position: absolute; left:9.6%; top:38.2%; width:136px; height: 134px; }
.scroll-box-1 .img-duck { display:block; content:""; z-index:2; position: absolute; left:74.4%; top:60%; width:179px; height: 186px; }

/*글림 패밀리 소개*/
.scroll-box-2 { position:relative; width: 100%; height: auto; overflow:hidden; background:#f9f9f9; padding-top: 13em; padding-bottom: 12em; }
.scroll-box-2 .ls-slide-backgrounds {position:absolute; left:0; bottom:0; width: 100%; height: auto; overflow:hidden;}
.scroll-box-2 .ls-slide-backgrounds img {object-fit: cover; object-position: 32% center; max-height: auto; height: auto; width: 100%;}
.scroll-box-2 .scroll-box-2-1 { height:100%; width:100%; display: table; table-layout: fixed; position: relative; }
.scroll-box-2 .box-area { height:100%; display:table-cell; width:100%;vertical-align:middle; }
.scroll-box-2 .inner-box {  margin: 0px auto; display:flex; align-items: center; max-width: 1400px; padding-left:20px; padding-right:20px;}
.scroll-box-2 .m-head { width:50%; padding-left: 4%; position: relative; text-align: left;}
.scroll-box-2 .m-head h2 { font-size: 2em; padding-bottom: 1.8em; line-height: 1.15em; font-weight: 700; }
.scroll-box-2 .m-head p { font-size: 1.15em; line-height: 2em; max-width: 520px; }
.scroll-box-2 .box-inner { width: 50%; padding-left: 4%; text-align: center;}
.scroll-box-2 .ls-img-01 img { max-width:100%; }
.scroll-box-2 .ls-btn {padding-top: 4em;}
.scroll-box-2 .ls-btn a {  text-align: center;  background:#fada05; max-width: 10em; width: 100%;    border-radius: 30px;    font-size: 0.9em;    line-height: 1;    font-weight: 500;    display: inline-block;    position: relative;    padding: 1.1em 0px 1.2em 0; }
.scroll-box-2 .ls-btn a:hover { color:#fff; background:#000;}

/*product*/
.scroll-box-3 { position:relative; width: 100%; overflow:hidden; background-color: #f5f2e5; padding-top: 11.3em; padding-bottom: 11em; }
.scroll-box-3 .scroll-box-3-1 { height:100%; width:100%; display: table; table-layout: fixed; position: relative; }
.scroll-box-3 .m-head { position: relative; text-align: center; padding-bottom: 1.5em; margin:0 auto; max-width: 1400px; padding-left:20px; padding-right:20px; }
.scroll-box-3 .m-head h2 { font-size: 2em; padding-bottom: 1.8em; line-height: 1.15em; font-weight: 700; }
.scroll-box-3 .box-area { display:table-cell; width:100%;vertical-align:middle; }
.scroll-box-3 .inner-box { margin: 0px auto; max-width: 100%;}
.scroll-box-3 .box-inner { position: relative; margin:0 auto; padding-left:20px; padding-right:20px;}
.scroll-box-3 .slide-box { transform: translate3d(-0, 0, 0); display:flex; justify-content:center;}
.scroll-box-3 .ls-list { min-width: 297px; margin: 0 28px; }
.scroll-box-3 .ls-list img { max-width:100%; object-fit: cover; ;}
.scroll-box-3 .ls-list a { display:block; position: relative; height:100%;}
.scroll-box-3 .ls-list .ls-txt-box { width:100%; text-align: center; padding-top:2.5em;}
.scroll-box-3 .ls-txt-01 strong { color:#383838;  font-weight:600;}
.scroll-box-3 .ls-txt-01 p { color:#959595; font-size:0.9em; font-weight: 500; padding-top: 1em;}
.scroll-box-3 .ls-list a:hover .ls-icon {opacity: 1;}
.scroll-box-3 .ls-btn {padding-top: 4em;}
.scroll-box-3 .ls-btn a {  text-align: center;  background:#fada05; max-width: 10em; width: 100%; border-radius: 30px;  font-size: 0.9em;    line-height: 1;    font-weight: 500;    display: inline-block;    position: relative;    padding: 1.1em 0px 1.2em 0; }
.scroll-box-3 .ls-btn a:hover { color:#fff; background:#000;}
.scroll-box-3 .slide-l-btn { left:4.2em;}
.scroll-box-3 .slide-r-btn { right:4.2em;}
.scroll-box-3 .slide-btn {  position: absolute; width: 2.66em; height: 2.66em; top:calc(53% - 3em ); z-index:4; transform: translateY(-50%);}
.scroll-box-3 .slide-btn button { display:inline-block; border:0; background:#fff; border-radius: 6em; width: 2.66em; height: 2.66em; box-shadow: 0em 0em 0.22em rgba(0,0,0,0.25);}
.scroll-box-3 .slide-btn button span { clip-path: polygon(0 0, 0 0, 0 0); width:1px; height:1px; overflow: hidden; position: absolute; margin:-1px; }
.scroll-box-3 .slide-btn button:after { top: 50%; left:50%; transform: translate(-50%, -50%); width: 36%; height: 36%; content: '';  background-position: center center;  position: absolute; background-size: contain; background-repeat: no-repeat; }
.scroll-box-3 .slide-btn .slide-right:after { transform: translate(-50%, -50%) rotate(180deg); }

/* rat's */
.scroll-box-4 { position:relative; width: 100%; height: auto; overflow:hidden; background:#36271a; padding-top: 13.5em; padding-bottom: 16em; }
.scroll-box-4 .ls-slide-backgrounds {position:absolute; left:0; bottom:0; width: 100%; height: 100%; overflow:hidden;}
.scroll-box-4 .ls-slide-backgrounds img {object-fit: cover; object-position: center center; height: 100%; width: 100%;}
.scroll-box-4 .scroll-box-4-1 { height:100%; width:100%; display: table; table-layout: fixed; position: relative; }
.scroll-box-4 .box-area { height:100%; display:table-cell; width:100%;vertical-align:middle; }
.scroll-box-4 .inner-box { margin: 0px auto; display:flex; align-items: center; max-width: 1400px; padding-left:20px; padding-right:20px;}
.scroll-box-4 .m-head { color:#fff; width:45%; padding-left: 4%; position: relative; text-align: left;}
.scroll-box-4 .m-head h2 { font-size: 2em; padding-bottom: 1.8em; line-height: 1.15em; font-weight: 700; }
.scroll-box-4 .m-head p { font-size: 1.15em; line-height: 2em; max-width: 500px; }
.scroll-box-4 .box-inner { width: 55%; padding-right:3%; padding-left: 3%; text-align: center;}
.scroll-box-4 .ls-img-01 img { max-width:100%; }
.scroll-box-4 .ls-btn {padding-top: 4em;}
.scroll-box-4 .ls-btn a {  text-align: center;  background:#fada05; max-width: 10em; width: 100%;    border-radius: 30px;  font-size: 0.9em;    line-height: 1;    font-weight: 500;    display: inline-block;    position: relative;    padding: 1.1em 0px 1.2em 0; }
.scroll-box-4 .ls-btn a:hover { color:#fff; background:#000;}

/* insta */
.scroll-box-5 { position:relative; width: 100%; overflow:hidden; }
.scroll-box-5 .ls-img-rat { position:absolute; left:60.3%; top:0; max-width: 299px;  max-height: 217px; width: 16.5vw; height: 12vw; background-size: cover; background-repeat: no-repeat; background-position: center center;}
/* .scroll-box-5 .ls-slide-backgrounds img {   object-fit: contain; object-position: left top; } */
.scroll-box-5 .scroll-box-5-1 { height:100%; width:100%; display: table; table-layout: fixed; position: relative; }
.scroll-box-5 .box-area {  height:100%;  display:table-cell; width:100%; vertical-align:middle; }
.scroll-box-5 .inner-box { position: relative; margin:0 auto;max-width: 1830px; padding-left:20px; padding-right:20px; padding-top: 11.3em; padding-bottom: 13em; }
.scroll-box-5 .box-inner {position: relative; margin-top: 4.6em;}
.scroll-box-5 .m-head { position: relative; text-align: center; padding-bottom: 1em;}
.scroll-box-5 .m-head h2 {font-size: 2em; padding-bottom: 1em; line-height: 1.15em; font-weight: 700; }
.scroll-box-5 .list-box  {z-index:2; flex-wrap: wrap; display:flex; justify-content: space-between; width:100%; height:100%; align-items: center;}
.scroll-box-5 .ls-list {z-index:2; width: 19.3%;height:100%;}
.scroll-box-5 .ls-list a {text-align: left; display: block; color:#fff}
.scroll-box-5 .ls-img-01 { max-width:345px; max-height:345px; overflow:hidden; }
.scroll-box-5 .ls-img-01  img { width:100%; height:100%; object-fit: cover; object-position: initial;}
.scroll-box-5 .ls-img-bg { z-index: 3; position: absolute; left: 12.7%; bottom:-38%; width: 9.5vw; height: 8.8vw; max-width:180px; max-height: 168px; background-size: cover; background-repeat: no-repeat; background-position: center center;  }

/*서브상단 뒷배경*/
.snb-bg { height: 33em; position: relative; background:#fff4b5}
.snb-bg .ls-slide-backgrounds { position:absolute; left:50%; transform: translateX(-50%); bottom:3em; width: 100%; max-width: 1745px; height:21.3em; text-align: right; overflow:hidden;}
.snb-bg .ls-slide-backgrounds div { height:100%;}
.snb-bg .ls-slide-backgrounds img { object-fit: cover; height: 100%; object-position: center bottom}
.snb-bg .box_inner { height: 100%; clear: both; position: relative; text-align: left; margin:0 auto; max-width: 1355px; padding-left:20px; padding-right:20px;}
.snb-bg .ls-slide-texts { width: 100%;  position:absolute; left:0; top: 55%; transform: translateY(-50%); padding-left:20px; padding-right:20px;}
.snb-bg .ls-slide-texts .ls-head { font-size: 3.2em; font-weight: 700; padding: 0.5em 0; letter-spacing: -0.02em; line-height: 1.3em;}
.snb-bg .ls-slide-texts p { font-size: 1.2em; line-height: 1.4em; }

.snb { width: 100%;  position: relative ; z-index:3; height: 4em; background:#ffda00}
.snb .snb-in {position: relative; z-index:3; width:100%; height:100%;margin: 0 auto; max-width: 1400px; padding-left:20px; padding-right:20px; }
.snb ul { position: relative; display: flex; justify-content: start; align-items: center; height:100%;}
.snb li {position: relative; height:100%; margin-right:1px;}    
.snb li a { color:#fff; font-size: 1.1em; font-weight:500; padding-left:2.2em; padding-right:2.2em; display:table; width:100%; height:100%; position: relative;}
.snb li a>span { display:table-cell; vertical-align: middle; height:100%; position: relative;}
.snb li a.active, .snb li a:hover {color:#000; background:#fff; }

/* .snb li a:after { opacity: 0; z-index: 4;  left: 50%; transform: translateX(-50%);  position: absolute;    bottom: -1px;    height: 3px;    background: #ffda00;    width: 100%;    content: '';}
.snb li a>span { opacity: 0.4; display:flex; justify-content: center; align-items: center; height:100%; position: relative;}
.snb li a:hover:after, .snb li a.active:after { opacity: 1;}
.snb li a.active, .snb li a:hover {color:#ffda00; }
.snb li a.active span, .snb li a:hover span { opacity: 1;} */

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

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

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

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

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

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

sup { font-size: 0.5em;}

.bgc-01 { background-color:#fada05;}
.bgc-02 { background-color:#000000;}
.bgc-03 { background-color:#7e6b5a;}
.bgc-04 { background-color:#48c5ff;}
.bgc-05 { background-color:#fc1f7c;}
.bgc-06 { background-color:#90c31f;}
.bgc-07 { background-color:#000000;}
.bgc-08 { background-color:#fff;}
.fc-01 { color:#fada05}
.fc-02 { color:#ff9600}
.fc-03 { color:#6170dc}
.fc-04 { color:#48c5ff}
.fc-05 { color:#c71528}
.fn-01 { font-family: 'Noto Sans KR', sans-serif!important; }
/* .fn-02 { font-family: 'GmarketSansBold', 'Noto Sans KR', sans-serif!important; } */
.fs-01 { font-weight: 300;}

/*푸터*/
footer { background:#e9e9e9;position: relative; width: 100%; word-break: keep-all; font-size: 0.85em; }
footer .box-inner {margin:0 auto;  width: 100%; max-width: 1840px; padding: 7em 20px 5em 20px; position: relative;}
footer .footer { margin:0 auto; max-width: 1360px; color:#434343; position: relative; width:100%; height: 100%; text-align: left;}
footer .col-box-in { text-align: left; width:100%;  }
footer .foo-logo img { max-height:100%;}
footer .foo-logo { position:relative; left:-0.3em; height: 6.5em; margin-bottom: 3em; }
footer .col-box p { display:block; line-height:2.2em;}
footer .col-box .pfe-list span+span { padding-left: 0.5em; display:inline-block;}
footer .col-box strong { display:block; padding-bottom:1em; font-size: 1.2em; font-weight: 900;}

/* sns + top */
.page-top {  z-index: 4; position: fixed; right: 30px; bottom: 30px; height: 6em; width: 6em;}
.page-top a { color:#323232; font-size: 1.05em; border: 1px solid #c6c9ce; box-shadow: 0px 0px 0.3em rgba(0,0,0,0.22); position: relative;  line-height:1;  display: block;    width: 100%;    height: 100%;    background: #fff;    border-radius: 5em;}
.page-top p {  position: absolute; top:50%; left:50%; transform: translate(-50%, -50%);}
.page-top span { display:block; padding-top: 0.5em}
.page-top .top-icon { width:100%; height:1em; display:block; background-size: contain; background-position: center center; background-repeat: no-repeat; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='10px' height='13px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 0, 0)' d='M9.925,5.469 L5.396,0.959 L0.866,5.469 L1.552,6.152 L4.910,2.809 L4.910,12.027 L5.881,12.027 L5.881,2.809 L9.239,6.152 L9.925,5.469 Z'/%3E%3C/svg%3E"); }

/* 푸터-인스타/쇼핑몰 */
.foot-banner { position: absolute; right:20px; bottom:5em;}
.foot-banner ul { display:flex; justify-content: center; align-items: center; width:100%;}
.foot-banner li { padding-left:1em;}
.foot-banner a { width:100%; display:block;}
.foot-banner a:after { background-size: contain; background-repeat: no-repeat; background-position: center center; }
.foot-banner .ls-insta a { position: relative; font-size:0; width: 30px; height: 30px; }
.foot-banner .ls-insta a:after { position: absolute; content:''; transform: translate(-50%, -50%); left: 50%; top:50%; width:57%; height:57%; }
.foot-banner .ls-shop a { position: relative; width: 7em; padding-left: 20px; height: 30px; font-weight:500; line-height:2.25em; }
.foot-banner .ls-shop a:after { position: absolute; display:inline-block; content:''; transform: translateY(-50%); left: 0%; top:50%; width:20%; height:53%; }
.foot-banner .ls-shop span { display:inline-block; vertical-align: middle;}


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

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

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

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

.con-head {font-weight: 700}  /* 서브 컨텐츠 제목 */
.con-head h3 { font-size: 2.6em;}
.con-head p { letter-spacing: -0.01em; font-size: 1.65em; padding-top: 0.3em;}
.con-head+.con-head { padding-top: 70px;}

.ls-tab-01 a { font-size: 1.05em; color:#aaaaaa; border-radius: 5em; display:block; border:1px solid #aaaaaa; padding: 0.4em 0 0.5em 0; line-height:1;}
.ls-tab-01 ul { display:flex; }
.ls-tab-01 a:hover, .ls-tab-01 a.active{ font-weight:600; color:#fff; border-color:#000; background:#000; }

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

.ls-icon-01:after {/*인스타*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='328px' height='328px'%3E%3Cpath fill-rule='evenodd' fill='rgb(34, 30, 31)' d='M327.394,255.739 C326.271,265.464 323.523,274.724 318.914,283.334 C306.455,306.604 287.213,320.978 261.427,326.590 C259.070,327.104 256.694,327.532 254.327,327.999 C194.108,327.999 133.890,327.999 73.672,327.999 C73.202,327.792 72.748,327.452 72.261,327.395 C62.536,326.272 53.275,323.524 44.666,318.915 C21.395,306.456 7.021,287.215 1.409,261.429 C0.896,259.071 0.468,256.696 -0.000,254.328 C-0.000,194.109 -0.000,133.892 -0.000,73.673 C0.208,73.204 0.548,72.749 0.604,72.262 C1.726,62.537 4.478,53.279 9.083,44.666 C21.536,21.383 40.788,7.027 66.571,1.411 C68.928,0.897 71.304,0.469 73.672,0.001 C133.890,0.001 194.108,0.001 254.327,0.001 C254.796,0.209 255.251,0.549 255.737,0.606 C265.462,1.729 274.721,4.480 283.334,9.086 C306.615,21.537 320.975,40.789 326.588,66.572 C327.102,68.929 327.531,71.305 327.998,73.673 C327.998,133.892 327.998,194.109 327.998,254.328 C327.791,254.797 327.450,255.252 327.394,255.739 ZM300.472,80.511 C300.471,78.286 300.152,76.054 299.876,73.838 C296.747,48.773 273.644,27.784 248.395,27.566 C220.323,27.323 192.248,27.510 164.175,27.510 C164.175,27.492 164.175,27.474 164.175,27.456 C137.488,27.456 110.802,27.430 84.116,27.485 C80.611,27.493 77.084,27.722 73.605,28.157 C48.796,31.261 27.671,54.508 27.579,79.528 C27.373,135.460 27.495,191.395 27.524,247.329 C27.525,249.661 27.853,252.000 28.135,254.322 C31.124,278.888 54.449,300.320 79.131,300.416 C135.170,300.636 191.212,300.510 247.252,300.487 C249.583,300.486 251.923,300.172 254.243,299.874 C279.343,296.644 300.330,273.568 300.422,248.312 C300.626,192.379 300.500,136.445 300.472,80.511 ZM252.461,95.601 C240.960,95.304 232.055,86.022 232.408,74.698 C232.759,63.394 242.056,54.343 253.065,54.588 C264.371,54.840 273.760,64.470 273.425,75.470 C273.076,86.892 263.704,95.892 252.461,95.601 ZM163.987,245.985 C118.715,245.980 82.009,209.262 82.013,163.987 C82.018,118.699 118.715,82.012 164.006,82.016 C209.285,82.019 245.989,118.728 245.984,164.005 C245.979,209.274 209.254,245.992 163.987,245.985 ZM164.060,109.467 C133.767,109.438 109.373,133.885 109.467,164.179 C109.560,194.337 133.927,218.582 164.098,218.533 C194.256,218.485 218.542,194.148 218.531,163.981 C218.522,133.814 194.224,109.497 164.060,109.467 Z'/%3E%3C/svg%3E");}
.ls-icon-02:after {/*쇼핑몰*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='318px' height='294px'%3E%3Cpath fill-rule='evenodd' fill='rgb(34, 30, 31)' d='M268.328,174.074 C245.729,179.133 225.512,173.706 208.162,158.214 C207.395,157.530 206.632,156.840 205.731,156.031 C179.395,182.097 139.343,182.414 112.541,156.150 C111.810,156.769 111.039,157.390 110.303,158.052 C91.156,175.295 68.851,180.354 44.568,172.675 C20.928,165.200 6.895,147.966 1.700,123.926 C-1.001,111.425 0.314,98.992 5.312,87.123 C14.522,65.254 23.743,43.387 33.148,21.601 C38.979,8.094 49.920,1.360 64.252,0.621 C76.318,-0.002 88.439,0.431 100.537,0.430 C150.556,0.422 200.574,0.459 250.593,0.405 C263.127,0.392 273.911,4.246 281.989,14.099 C284.087,16.659 285.834,19.662 287.089,22.726 C295.954,44.358 304.686,66.047 313.389,87.743 C327.996,124.155 306.586,165.509 268.328,174.074 ZM285.299,96.705 C277.565,76.987 269.495,57.399 261.545,37.765 C258.581,30.449 257.431,29.690 249.344,29.690 C199.670,29.687 149.997,29.688 100.323,29.688 C89.736,29.688 79.149,29.683 68.563,29.691 C62.426,29.696 61.484,30.328 59.136,35.845 C50.480,56.191 41.751,76.508 33.220,96.906 C31.718,100.498 30.483,104.367 30.058,108.211 C28.249,124.619 38.517,140.409 53.646,145.048 C70.381,150.178 88.141,143.412 96.315,128.628 C99.806,122.313 105.143,119.141 112.175,119.101 C119.269,119.062 124.866,121.936 128.613,128.317 C142.895,152.653 175.926,152.540 189.965,128.168 C193.598,121.861 199.014,118.746 206.302,118.864 C213.459,118.980 218.658,122.227 222.082,128.489 C229.937,142.854 246.378,149.527 263.355,145.302 C277.678,141.737 288.375,127.492 289.196,111.701 C287.927,106.691 287.171,101.480 285.299,96.705 ZM31.739,187.920 C38.933,186.669 46.051,190.733 48.270,197.633 C48.964,199.794 49.172,202.186 49.184,204.473 C49.279,222.920 49.267,241.367 49.302,259.814 C49.311,264.283 49.572,264.548 54.060,264.546 C122.925,264.517 191.791,264.483 260.657,264.442 C264.846,264.440 265.275,264.009 265.278,259.844 C265.289,240.236 265.235,220.629 265.310,201.023 C265.339,193.576 270.903,187.531 278.305,186.537 C285.071,185.629 291.908,189.915 294.003,196.588 C294.581,198.428 294.762,200.457 294.770,202.402 C294.861,221.776 294.958,241.152 294.889,260.526 C294.832,277.278 284.721,289.849 268.707,293.158 C266.009,293.716 263.161,293.696 260.383,293.698 C226.298,293.732 192.214,293.720 158.130,293.720 C158.130,293.806 158.130,293.894 158.130,293.980 C123.349,293.980 88.566,294.001 53.784,293.970 C38.055,293.956 25.850,285.685 21.412,271.869 C20.398,268.713 19.751,265.298 19.724,261.994 C19.553,242.272 19.568,222.548 19.621,202.825 C19.642,195.218 24.709,189.144 31.739,187.920 Z'/%3E%3C/svg%3E");}
.ls-icon-03:after {/*방향키*/background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='12px' height='17px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(83, 83, 83)' stroke-width='2px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M8.000,15.003 L0.996,8.000 L8.000,0.996 '/%3E%3C/svg%3E");}

/*  about us */
.con-com-01 { overflow: hidden;  margin:0 auto; padding:10em 0px 10em 0px; position: relative;}
.con-com-01 .con-head { padding-bottom: 3em; text-align: center; max-width: 1660px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-01 .com-box-01 { z-index:2; position: relative; max-width: 1660px; margin:0 auto; padding-left:20px; padding-right:20px; padding-bottom: 5em;}
.con-com-01 .com-box-02 { z-index:1; background:#ffda00; position: relative;}
.con-com-01 .com-box-03 { max-width: 1660px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-01 .con-box-02 { position: relative; max-width: 1360px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-01 .ls-txt-01 { font-weight:500; color:#545759; line-height: 1.8em; font-size: 1.2em; padding-bottom:1.2em; }
.con-com-01 i { display:block;}
.con-com-01 .img-item { margin:0 auto; background-position:center bottom; background-size: cover; background-repeat: no-repeat;}
.con-com-01 .img-glim {z-index:2; left:50%; top:0; transform: translateX(-50%); position: absolute; width:54.9vw; height: 17vw; min-width: 360px; min-height: 109px; max-width: 749px; max-height: 226px }
.con-com-01 .img-rat {z-index:2; left:11%; top:0; transform: translateX(-50%); position: absolute; width:18.8vw; height: 18.8vw; max-width: 332px; max-height: 332px }
.con-com-01 .img-i-box-1 { position: relative; padding-bottom:17em;}
.con-com-01 .img-i-box-1:before {z-index:-2; position: absolute; content:''; left:-100%; top:-1px; background:#fff; width:500%; min-height: 85px; height: 13.2vw; max-height: 176px; }
.con-com-01 .img-i-box-2 { position: relative; padding-bottom:15em;}
.con-com-01 .img-i-box-2:before {z-index:-2; position: absolute; content:''; left:-100%; bottom:0; background:#fff; width:500%; height: 5.9em; max-height: 176px; }
.con-com-01 .h3-ti { display:inline-block; position: relative; font-size: 1.4em;}
.con-com-01 .h3-ti:after { position: absolute; content:''; height:1px; width:100%; bottom: -2px; left:0; background:#000;}
.con-com-01 .list-box { display:flex; justify-content: space-between; overflow: hidden; padding-top: 7.5em; }
.con-com-01 .list-box dl { width: 25%; }
.con-com-01 .list-box dt { width:100%; position: relative; font-size: 1.6em;font-weight: 700; padding-bottom: 1em;}
.con-com-01 .list-box dt:after { position: absolute; content:''; height:1px; width:200%; bottom: -2px; left:0; background:#fff;}
.con-com-01 .list-box dd:after { position: absolute; content:''; border-radius: 1em; line-height: 0.86em; height:0.86em; width:0.86em; top:-0.36em; left: 50%; transform: translateX(-50%); background:#fff;}
.con-com-01 .list-box dd { position: relative; padding-top: 1.8em; font-size: 1.1em; line-height: 1.5em;}
.con-com-01 .list-box li { padding-bottom:1em;}
.con-com-01 .ls-box-in {margin: 0px auto; display:flex; align-items: center; max-width: 1200px; padding-top: 5em; }
.con-com-01 .txt-box {letter-spacing: -0.02em; color:#545759; font-weight: 500; text-align: left; font-size: 1.15em; line-height: 2em; width:50%; }
.con-com-01 .ls-txt-02 { max-width: 560px; }
.con-com-01 .img-box {width: 50%; padding-left: 4%; text-align: center;}
.con-com-01 .img-box img { max-width:100%;}
.con-com-01 .con-box-03 {padding-top:2em;}

/*  brand */
.con-com-02 { overflow: hidden;  margin:0 auto; padding:10em 0px 11em 0px; position: relative;}
.con-com-02 .con-head { padding-bottom: 5em; text-align: center; max-width: 1660px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-02 .con-head h3 { font-size: 2.8em}
.con-com-02 .com-box-01 { z-index:2; position: relative; max-width: 1760px; margin:0 auto;}
.con-com-02 .ls-img-01 img { object-fit: cover; max-width: 600px; max-height: 462px; width: 73vw; height: 65vw;}
.con-com-02 .ls-img-02 img { max-width:100%;}
.con-com-02 .ls-txt-01 { padding: 3.5em 0 4em 0; font-size: 1.45em; font-weight:500; line-height: 1.7em; color:#545759; }
.con-com-02 .con-box-01 { padding-left:20px; padding-right:20px;}

/* 제품소개 */
.con-com-03 { overflow: hidden;  margin:0 auto; padding: 9em 0px 8em 0px; position: relative;}
.con-com-03 .com-box-01 { max-width: 1410px; padding-left:20px; padding-right:20px; margin:0 auto; }
.con-com-03 .con-head { padding-bottom: 5em; text-align: center; max-width: 1660px; margin:0 auto; padding-left:20px; padding-right:20px;}
.con-com-03 .con-head h3 { font-size: 2.8em}
.con-com-03 .ls-tab-box ul { display:flex; justify-content: center; align-items: center;}
.con-com-03 .ls-tab-box a { display:block; padding: 0 1.4em; }
.con-com-03 .list-box { overflow: hidden; flex-wrap: wrap; display:flex; align-items: center; padding-top:4em; margin-right: -2.5em;}
.con-com-03 .ls-list { position: relative; padding: 3em 0; width: calc(25% - 2.5em); margin-right:2.5em;}
.con-com-03 .ls-list a { display:block; position: relative; height:100%;}
.con-com-03 .ls-list .ls-txt-box { width:100%; text-align: center; padding-top:1.7em;}
.con-com-03 .ls-txt-01 strong { color:#383838; font-size: 1.2em; font-weight:600;}
.con-com-03 .ls-txt-01 p { color:#959595; font-size:0.9em; font-weight: 500; padding-top: 1em;}
.con-com-03 .ls-img-01 { position: relative; border-radius: 0.7em; overflow: hidden;}
.con-com-03 .ls-list a:hover .ls-img-01:after { z-index:1;}
.con-com-03 .ls-list a:hover { color:#000;}
.con-com-03 .ls-list a:hover .btn-shop { z-index:2;}
.con-com-03 .ls-img-01 img { width:100%; min-height:410px; transition: transform 0.3s;}
.con-com-03 .ls-list a:hover img { transform: scale(1.05);}
.con-com-03 .ls-img-01:after {z-index: -2; background:rgba(0,0,0,0.53); border:0.5em solid #ffda00; border-radius: 0.7em;  content:''; width:100%; height:100%; left:0; top:0; position: absolute;}
.con-com-03 .btn-shop { z-index: -2; position: absolute; left:50%; top:50%; transform: translate(-50%, -50%); }
.con-com-03 .btn-shop:after { content:'';  left:50%; top:50%; transform: translate(-50%, -50%); width:5.2em; height:5.2em;line-height: 5.2em; border-radius: 5em; overflow: hidden; position: absolute;  z-index: 2; background:#ffda00 }
.con-com-03 .btn-shop i {z-index:3; width: 100%; height:1.32em; position: relative; display:block; text-align: center;}
.con-com-03 .btn-shop i:after { left:0; top:0; position: absolute; width:100%; height:100%; content:''; background-position: center center; background-repeat: no-repeat; background-size: contain;}
.con-com-03 .btn-shop span { font-weight: 500; z-index:3; position: relative; display:block; font-size: 0.8em; padding-top: 0.5em;}

/* 페이지번호 */
.paginate {position:relative;display: block; width: 100%; clear: both; text-align: center; padding-top: 5em; line-height: 100%; font-weight:700; font-size: 0.9em; }
.paginate strong { position: relative; display:inline-block; padding: 0.5em 0.9em 0.5em 0.9em; vertical-align: middle; color:#fff;}
.paginate strong:before { z-index:-1; left:50%; top:48%; transform: translate(-50%, -50%);  width:2em; height:2em; content:''; position: absolute; border-radius: 2em; background:#ffda00;}
.paginate a {vertical-align: middle; position:relative;display:inline-block; padding: 0.5em 0.9em 0.5em 0.9em;}
.paginate a:hover { color:#fff;}
.paginate a:hover:before  { z-index:-1; left:50%; top:48%; transform: translate(-50%, -50%);  width:2em; height:2em; content:''; position: absolute; border-radius: 2em; background:#ffda00;}

/* 개인정보 처리방침 레이어 */
.layer_popup {position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(255,255,255,0.9);z-index:1000;display:none; overflow-y:scroll;}
.layer_popup .inner {width:100%;max-width:1640px; margin:0 auto;}
.layer_popup .inner .box {padding:0 20px;}
.layer_popup .inner .close_top {text-align:right; margin-top:45px;}
.layer_popup .inner .close_top .imgbox {cursor:pointer;}
.layer_popup .inner .con {width:100%; max-width:1400px; margin:0 auto; margin-top:5%; line-height:30px;}
.layer_popup .inner .con .inbox {padding:20px;}


/*게시판 : 인증현황 */
#news_list { width:100%; margin-left:10px;  }
#news_list .gl_list { display:inline-block; width:24%;   }
.bo_list1 { width:100%; display:flex; justify-content: center; align-items: flex-start;}
.bo_list1 li {width:100%; max-width:280px; height:450px; overflow:hidden; padding:10px; }
.bo_list1 .bo_image1 { width:100%; overflow:hidden; height:380px; border:1px solid #eee; }
.bo_list1 .bo_image1 img {object-fit: cover; height: 380px; width: 100%; padding:10px; }
.bo_list1 .bo_title1 {margin-top:20px; height:80px; text-align:center; }
.bo_list1 .bo_title1 .tt { font-size:1.05em; font-weight:700; max-height:100px; overflow:hidden; word-break: keep-all;}
.bo_list1 .bo_title1 .st { margin-top:10px; color:#767676; font-size:0.9em; }
.bo_list1 .bo_title1 .dt { margin-top:10px; font-size:0.8em; color:#767676;  }
.vo_title1 { border-top:2px solid #000; border-bottom:1px solid #ccc; padding:50px 20px 40px 20px; text-align:center; margin-bottom:50px; margin-top:0px;  }
.vo_title1 .tt { font-size:1.7em; font-weight:600; margin-bottom:20px; }
.vo_title1 .st { font-size:0.9em; color:#888; font-weight:400; }
.vo_list_btn1 { text-align:center; margin:80px 0; }
.vo_list_btn1 a { border:1px solid #eee; background:#ffda00; color:#fff; padding:15px 70px; font-weight:500; }
.vo_list_btn1 a:hover { background:#ccc; color:#000; }

/*게시판 : 일반 */
.bo_list2 { width:100%; }
.bo_list2 table {width:100%; border-collapse:collapse;}
.bo_list2 table thead th { border-top:2px solid #000; border-bottom:1px solid #000;  padding:20px 7px; text-align:center; }
.bo_list2 table tbody td { border-bottom:1px solid #e5e5e5; padding:20px 7px; }
.bo_list2 table tbody td.text-center {text-align:center;}
.bo_list2 a:hover { color:#ffda00; }

#bo_list2_search { margin:0 auto; text-align:center; margin-bottom:50px; padding:50px 0; }
#bo_list2_search select { width:120px; height:40px; border:1px solid #cfcfcf;  }
#bo_list2_search input[type=text] { width:300px; height:40px;  border:1px solid #cfcfcf; padding:0 10px; }
#bo_list2_search input[type=submit] { width:90px; height:40px;  border:1px solid #ffda00; color:#ffda00; background:#fff; }
#bo_list2_search input[type=submit]:hover { color:#fff; background:#ffda00; }

/* 사내소식 */
#news_list3 { width:100%; margin-left:10px;  }
#news_list3 .gl_list { display:inline-block; width:24%;   }
.bo_list3 { width:100%; display:flex; justify-content: center; align-items: flex-start;}
.bo_list3 li {width:100%; max-width:400px; height:380px; overflow:hidden; padding:10px; }
.bo_list3 .bo_image1 { width:100%; overflow:hidden; height:210px; border:1px solid #eee; }
.bo_list3 .bo_image1 img {object-fit: cover; height: 210px; width: 100%; padding:0px; }
.bo_list3 .bo_title1 {margin-top:20px; height:80px; text-align:left; }
.bo_list3 .bo_title1 .tt { font-size:1.35em; font-weight:700; max-height:100px; overflow:hidden; word-break: keep-all; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bo_list3 .bo_title1 .st { margin-top:10px; color:#767676; font-size:0.9em; word-break: break-all; }
.bo_list3 .bo_title1 .dt { margin-top:10px; font-size:0.8em; color:#767676;  }

#bo_v_atc * { word-break: break-all; }

.main_footer { font-size:0.75em; }


.more-ls-btn {padding-top: 4em;}
.more-ls-btn a {  text-align: center;  background:#fada05; max-width: 10em; width: 100%;    border-radius: 30px;    font-size: 0.9em;    line-height: 1;    font-weight: 500;    display: inline-block;    position: relative;    padding: 1.1em 0px 1.2em 0; }
.more-ls-btn a:hover { color:#fff; background:#000;}



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


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

	.scroll-box-1 .img-mouse { width: 13.396vw; height: 11vw;}
	.scroll-box-1 .img-bug { width: 8.3959vw; height: 8.19vw;}
	.scroll-box-1 .img-duck { width: 11.05vw; height: 11.33vw;}
		
	
	
}
@media all and (max-width : 1440px)  { 
	
	.scroll-page-top { right: 20px;}

	/* .con-com-14 .ls-subject br { display:none;} */

}

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

	/* .nav_md .nav-md-list { font-size: 0.8em;}
	.nav_md .head-foo { font-size: 0.9em;}
	.nav_md .ls-bar-f { display:none;}
	.nav_md .ls-bar-f+span { display:block;}
 */
/* 	.con-head p { font-size: 2.2em;} */
	
	.container { font-size: 1.05rem;}

	footer .col-box-in span { display:inline-block;}
/* 
	.con-com-03 .map-info { flex-wrap: wrap;}
	.con-com-03 .dl-box-01 { padding-top: 2em;}

	.con-com-05 .list-box li { width:calc(25% - 5em);} */





}

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

	/* .scroll-box-2 .ls-list { width:100%;}
	.scroll-box-2 .box-inner { width:100%;}
	.scroll-box-2 .ls-img-01 {min-height: 12.5em;}
	.scroll-box-2 .ls-img-01 img { width:100%; object-position: right center;} */

}

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

}


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

	header .d-md-none { display:none;}
	header .d-lg-none { display: block;}
	header { height: 100px;}
	header:after { top: 50px;}
	header:after { display:none;}
	header .box_inner { padding-right: 10px;}

	header h1 { height: 4em;}
	
/* 	header .view-nav { width: 35px; height: 35px;}
	header .view-nav i:nth-child(1) { top: 13px;}
	header .view-nav i:nth-child(2) { top: 20px}
	header .view-nav i { left: 9px;}
	header .view-nav { top: 5px;} */

	.nav-head-banner { margin-left: auto;}
	.nav-head-banner .ls-shop span { display:none;}
	.nav-head-banner .ls-shop a:after { width: 72%; height: 72%}
	.nav-head-banner .ls-shop a { width: 30px;}
	.nav-head-banner .ls-insta a:after { width: 70%; height: 70%}

	.menu-scroll .nav_wrap { display:none;}
	.menu-scroll:after { display:none;}

	/* .nav_md_head { height: 70px;} */

	.snb .snb-in:after { left:20px; width:calc(100% - 40px)}
	.snb li { padding-left: 1%; padding-right:1%;}


	.container { font-size: 0.95em;}

	/* .page-top { bottom: 3em;  } */

	/* .con-com-05 .list-box li { width:calc(33.333% - 5em); margin-bottom: 3em;} */
	

	.con-com-03 .ls-img-01 img { width:100%; min-height:300px;}

	

}

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


	/* .nav_md .nav-md-list>li>a { font-size: 2.4em} */

	.container { font-size: 0.8em;}

/* 	footer .col-box:nth-child(2) { display:none;}
	footer .col-box:nth-child(1) { width:100%; display:block;text-align: center;}
	footer .foo-logo { padding-right:0; height:3em; }
	footer .col-p {margin-top: 3em; padding-top:2.5em; border-top: 1px solid rgba(255,255,255,0.3);  } */




}

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

/* 	.con-com-03 .dl-box-01 { flex-wrap: wrap;}
	.con-com-03 .dl-box-01 dl { width:100%; padding-bottom:1em; } */
	
	

}

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

	header { height: 65px; }
	header h1 { margin-top: auto; position: relative; left:-0.2em; height: 3.2em; }
	header h1 a { vertical-align: bottom;}
	/* header .view-nav { scale:0.7; right: -7px } */

	

	.container { font-size: 0.75em;}

	.footer { font-size: 0.7em;}
	footer .box-inner { padding-top:6em;}
	footer .foo-logo { margin-bottom: 2.5em;}
	
	.page-top {scale: 0.75;}
	.page-top { bottom: 0px; right:0px;}
	.foot-banner { display:none;}

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

	.snb-bg .ls-slide-texts {  font-size: 1.1em; }   
	.snb-bg { height: 27em; overflow: hidden;}
	.snb-bg .ls-slide-texts .ls-head { font-size: 2.2em}
	.snb-bg .ls-location { font-size: 0.6em;}
	.snb-bg .ls-slide-texts p { font-size: 1em;}
	.snb-bg .ls-slide-backgrounds { height: 13.7em; left: 52%;}
	
	.snb { height:4.2em;}
	.snb .snb-in { padding-left:0; padding-right:0;}
	.snb li a { font-size: 1.3em; padding:0;}
	.snb ul { justify-content: center; width:100%; max-width:360px; margin:0 auto;}
	.snb ul li { max-width:33%; flex: 1;}
	.snb li a.active, .snb li a:hover { color:#fff; background:transparent;}

	
	.scroll-box-1 { height:100%; width:100%; overflow:hidden; }
	.scroll-box-1 .slide-box { top: 0; left:0; margin:0 auto; display:block; transform: none; position: relative; height:100%; }
	.scroll-box-1 .main-txt-box-md { padding-left: 20px; padding-right:20px; text-align: center; vertical-align: middle; width:100%; height:100%; position: relative;}
	.scroll-box-1 .main-txt-box-md img { max-width:100%;}
	.scroll-box-1 .txt-wel { height:100%;}
	.scroll-box-1 .main-txt-in { position: relative; max-width: 435px; width:100%; text-align: center; margin:0 auto;}
	.scroll-box-1 .img-bug {  top: 49.8%; /* width: 12vw; height: 12vw;  */ width: 90px; height: 90px; /* min-width: 70px; min-height: 65px; */ }
	.scroll-box-1 .img-mouse { left: 19.6%; top: 35.7%; /* width: 12vw; height: 12vw;  */ width: 147px; height: 121px; /* min-width: 70px; min-height: 65px; */ }
	.scroll-box-1 .img-duck { top: 75.8%; left: 68.5%; width: 120px; height: 124px;}

	.scroll-box-2 { padding-top: 5em; padding-bottom:5em;}
	.scroll-box-2 .inner-box { flex-wrap: wrap;}
	.scroll-box-2 .m-head { width:100%; text-align: center; }
	.scroll-box-2 .m-head p { max-width:100%; padding-top: 2em;}
	.scroll-box-2 .box-inner { display:none;}
	.scroll-box-2 .m-head .ls-img-01 { max-width: 435px; margin:0 auto;}
	.scroll-box-2 .ls-btn { padding-top:3em;}
	.scroll-box-2 .ls-btn a { font-size: 1em;}

	.scroll-box-3 { padding-top: 6em; padding-bottom:6em;}
	.scroll-box-3 .ls-txt-01 strong { font-size: 1.1em;}
	.scroll-box-3 .ls-txt-01 p { font-size: 0.85em;}
	.scroll-box-3 .ls-list {}
	.scroll-box-3 .ls-list .ls-txt-box { padding-top: 2em;}
	.scroll-box-3 .ls-btn { padding-top:3em;}
	.scroll-box-3 .ls-btn a { font-size: 1em;}
	.scroll-box-3 .slide-l-btn { left:2em; }
	.scroll-box-3 .slide-r-btn { right:2em;}

	.scroll-box-4 { padding-top: 6em;}
	.scroll-box-4 .ls-slide-backgrounds { bottom:-40%;}
	.scroll-box-4 .ls-slide-backgrounds img { height: 60%; object-position: 56.1% bottom;}
	.scroll-box-4 .inner-box { flex-wrap: wrap;}
	.scroll-box-4 .m-head { width:100%; text-align: center; }
	.scroll-box-4 .m-head p { max-width:100%; padding-top: 2em;}
	.scroll-box-4 .box-inner { display:none;}
	.scroll-box-4 .m-head .ls-img-01 { padding-left: 4em; padding-right:4em; max-width: 435px; margin:0 auto;}
	.scroll-box-4 .ls-btn { padding-top:3em;}
	.scroll-box-4 .ls-btn a { font-size: 1em;}

	.scroll-box-5 .m-head p {font-size: 1.25em;}
	.scroll-box-5 .m-head { padding-bottom: 4em;}
	.scroll-box-5 .ls-img-rat {left:auto; right:-3.75em; width: 150px; height: 110px; }
	.scroll-box-5 .ls-img-bg { left: 0%;  bottom:-5.3em; width: 85px; height: 85px; }
	.scroll-box-5 .box-inner { max-width: 600px; margin:0 auto;}
	.scroll-box-5 .inner-box { padding-top: 6em; padding-bottom:10em;}
	.scroll-box-5 .list-box { overflow: hidden; margin-right: -0.6em; width:auto;}
	.scroll-box-5 .ls-list { width:calc(50% - 0.6em); padding-bottom: 0.6em; min-width:auto; margin-left:0; margin-right: 0.6em;}
	.scroll-box-5 .ls-list:not(:nth-child(-n+4)) { display:none;} /* 5번째부터 안보이기 */	

	.con-head h3 {font-size: 1.9em;}

	.ls-tab-02 a {font-size: 1.1em;}

	.con-com-01 { padding-top: 6em; padding-bottom:6em;}
	.con-com-01 .com-box-01 { padding-bottom: 3em;}
	.con-com-01 .con-box-02 { padding-bottom:5em;}
	.con-com-01 .ls-txt-01 { font-size: 1.1em;}
	.con-com-01 .img-i-box-1{ padding-bottom: 12em;}
	.con-com-01 .h3-ti { font-size: 1.25em;}
	.con-com-01 .list-box {  position: relative;flex-wrap: wrap; padding-top:2em; margin-top:4em; }
	.con-com-01 .list-box dl { display:flex; justify-content: space-between; width:100%;}
	.con-com-01 .list-box dl:before { content:''; position: absolute; left:50%; top:0; height:100%; width:1px; transform: translateX(-50%); background: #fff;}
	.con-com-01 .list-box dt:after { display:none;}
	.con-com-01 .list-box dt { width:50%; text-align: right; padding-right:1.3em; font-size: 1.4em }
	.con-com-01 .list-box dd { width:50%; padding-left:2em; padding-top:0; text-align: left;}
	.con-com-01 .list-box dd:after {  left:-0.35em;  top:0.35em; height: 0.72em; line-height: 0.72em; width: 0.72em; transform: none; }
	.con-com-01 .list-box dl:nth-child(even) dt { order:2; text-align: left; padding-right:0; padding-left:1.3em;}
	.con-com-01 .list-box dl:nth-child(even) dd { order:1; text-align: right; padding-left:0; padding-right:2em;}
	.con-com-01 .list-box dl:nth-child(even) dd:after { left:auto; right:-0.35em; }
	.con-com-01 .list-box dl+dl { padding-top: 2em;}
	.con-com-01 .img-i-box-2 { display:none;}
	.con-com-01 .con-box-03 { padding-top: 6em;}
	.con-com-01 .ls-box-in { flex-wrap: wrap;}
	.con-com-01 .txt-box { font-size: 1.1em; width: 100%; order:2; padding-top: 3em; }
	.con-com-01 .ls-txt-02 { max-width:100%;}
	.con-com-01 .img-box { width: 100%; order:1; padding-left:1em; padding-right:1em;}

	.con-com-02 { padding-top: 6em; padding-bottom:8em;}
	.con-com-02 .con-head h3 { font-size: 2.1em;}
	.con-com-02 .con-head p { font-size: 1.25em;}
	.con-com-02 .ls-txt-01 { font-size: 1.1em; margin:0 auto; max-width: 280px;}
	.con-com-02 .ls-img-01 img { max-width: 400px; max-height: 320px;}

	.con-com-03 { padding-top: 6em; padding-bottom:8em;}
	.con-com-03 .con-head h3 { font-size: 2.1em;}
	.con-com-03 .con-head p { font-size: 1.25em;}
	.con-com-03 .list-box { margin-right:-2em;}
	.con-com-03 .ls-list { width:calc(50% - 2em); margin-right:2em; padding-bottom: 1em;}
	.con-com-03 .ls-txt-01 strong { font-size: 1.25em;}
	.con-com-03 .ls-img-01 img { width:100%; min-height:200px;}

	.paginate { font-size: 1.35em;}


	
	/*게시판 : 인증현황 */
	#news_list { width:100%; margin-left:0px;  }
	#news_list .gl_list { display:inline-block; width:48%;   }
	.bo_list1 { width:100%; display:flex; justify-content: center; align-items: flex-start;}
	.bo_list1 li {width:100%; max-width:280px; height:250px; overflow:hidden; padding:10px; }
	.bo_list1 .bo_image1 { width:100%; overflow:hidden; height:190px; border:1px solid #eee; }
	.bo_list1 .bo_image1 img {object-fit: cover; height: 190px; width: 100%; padding:5px; }
	.bo_list1 .bo_title1 {margin-top:10px; height:50px; text-align:center; }
	.bo_list1 .bo_title1 .tt { font-size:0.9em; font-weight:600; max-height:100px; overflow:hidden; word-break: keep-all;}
	.bo_list1 .bo_title1 .st { margin-top:10px; color:#767676; font-size:0.9em; }
	.bo_list1 .bo_title1 .dt { margin-top:10px; font-size:0.8em; color:#767676;  }
	.vo_title1 { border-top:2px solid #000; border-bottom:1px solid #ccc; padding:30px 10px 20px 10px; text-align:center; margin-bottom:50px; margin-top:0px;  }
	.vo_title1 .tt { font-size:1.3em; font-weight:600; margin-bottom:10px; }
	.vo_title1 .st { font-size:0.9em; color:#888; font-weight:400; }
	.vo_list_btn1 { text-align:center; margin:80px 0; }
	.vo_list_btn1 a { border:1px solid #333; color:#333; padding:15px 70px; border-radius:30px; font-weight:600; }
	.vo_list_btn1 a:hover { background:#333; color:#fff; }

		
	/*게시판 : 일반 */
	.bo_list2 { width:100%; }
	.bo_list2 table {width:100%; border-collapse:collapse;}
	.bo_list2 table thead th { border-top:2px solid #000; border-bottom:1px solid #000;  padding:20px 7px; text-align:center; }
	.bo_list2 table tbody td { border-bottom:1px solid #e5e5e5; padding:20px 7px; }
	.bo_list2 table tbody td.text-center {text-align:center;}
	.bo_list2 a:hover { color:#51b431; }

	#bo_list2_search { margin:0 auto; text-align:center; margin-bottom:50px; }
	#bo_list2_search select { width:80px; height:40px; border:1px solid #cfcfcf;  }
	#bo_list2_search input[type=text] { width:120px; height:40px;  border:1px solid #cfcfcf; padding:0 10px; }
	#bo_list2_search input[type=submit] { width:50px; height:40px;  border:1px solid #51b431; color:#51b431; background:#fff; }
	#bo_list2_search input[type=submit]:hover { color:#fff; background:#51b431; }

	#bo_list_admin th:nth-of-type(2) {display:none;}
	#bo_list th:nth-of-type(1) {display:none;}
	#bo_list_admin td:nth-of-type(2) {display:none;}
	#bo_list td:nth-of-type(1) {display:none;}

	/* 사내소식 */
	#news_list3 { width:100%; margin-left:0px;  }
	#news_list3 .gl_list { display:inline-block; width:100%;   }
	.bo_list3 { width:100%; display:flex; justify-content: center; align-items: flex-start;}
	.bo_list3 li {width:100%; max-width:400px; height:400px; overflow:hidden; padding:10px; }
	.bo_list3 .bo_image1 { width:100%; overflow:hidden; height:210px; border:1px solid #eee; }
	.bo_list3 .bo_image1 img {object-fit: cover; height: 210px; width: 100%; padding:0px; }
	.bo_list3 .bo_title1 {margin-top:20px; height:80px; text-align:left; }
	.bo_list3 .bo_title1 .tt { font-size:1.35em; font-weight:700; max-height:100px; overflow:hidden; word-break: keep-all; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.bo_list3 .bo_title1 .st { margin-top:10px; color:#767676; font-size:0.9em; }
	.bo_list3 .bo_title1 .dt { margin-top:10px; font-size:0.8em; color:#767676;  }

	.main_footer { font-size:1em; }

	
}

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




}


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


}

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

	.scroll-box-1 .img-mouse { width: 30.949vw; height: 25.476vw; }
	.scroll-box-1 .img-bug { width: 18vw; height: 18vw;}
	.scroll-box-1 .img-duck { width: 22vw; height: 26vw;}

}


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

	.scroll-box-1 .img-mouse { left: 19.4%;}

	.con-com-03 .list-box { margin-right:0;}
	.con-com-03 .ls-list { width:100%; margin:0;}


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






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