@charset "utf-8";
/********************************************
	HEADER
********************************************/
#header{position:fixed;top:0;display:flex;justify-content:space-between;gap:0px; align-items: center;width: 100%;height:var(--header-height); margin:0 auto;transition:all 0.1s ease-in-out; -webkit-transition:all 0.1s ease-in-out;z-index: 4; padding:0 var(--wrap-padding) 0 0; box-sizing: border-box;  }
#header .header-inner{display:flex;justify-content:space-between;gap:20px; align-items: center;width: 100%; max-width:1200px; height:100%;margin:0 auto;transition:all 0.3s ease-in-out; -webkit-transition:all 0.3s ease-in-out; }
#header .logoArea{width:250px; height:100%; transition:all 0.2s ease-in-out; -webkit-transition:all 0.2s ease-in-out;z-index:4;}
#header .logo{display:inline-block;width:100%;background:url(/images/layout/logo.png) 50% 50% no-repeat #000;background-size:auto 65px;height:100%;  text-indent: -9999px;box-sizing: border-box; }

body#subPage #header{background-color: rgba(255,255,255,1);box-shadow: 0px 1px 10px rgba(22,22,22,0.08) ; }

#gnb {flex:1;display:inline-flex;justify-content:center; }
#gnb > h2 {position:absolute;font-size:0;line-height:0;overflow:hidden;}
/* 수정된 gnb */
.gnb-new {position:relative; height:var(--header-height); margin:0px auto;}
.gnb-new ul, .gnb-new li {list-style: none; margin: 0; padding: 0;}
.gnb-new ul {}
.gnb-new ul li { float: left; min-height: 1px; vertical-align: middle;position: relative;}
.gnb-new ul li.hover{position: relative;cursor: default;}
.gnb-new ul ul {visibility: hidden; position: absolute; top: 100%; left: 0;width: 100%;height:100%;}
.gnb-new ul ul li {float: none;}
.gnb-new ul ul ul {top:0px; left: auto; right: -99.5%; }
.gnb-new ul li:hover > ul { visibility: visible; }
.gnb-new ul ul {bottom: 0; left: 0;}
.gnb-new ul ul {margin-top: 0; }
.gnb-new ul ul li {font-weight: normal;}
.gnb-new > ul { *display: inline-block; }
.gnb-new:after, .gnb-new ul:after {content: '';display: block; clear: both; }

.gnb-new > ul > li > a {display:flex; align-items: center; text-align: center;font-family: 'LINESeedKR-Bd'; color:#fff; text-decoration:none; font-size:15px;letter-spacing:0em;text-transform:uppercase; padding: 0 40px;line-height:var(--header-height); }
.gnb-new ul ul{text-transform: none;min-width:100%; }
.gnb-new ul ul a {display:flex;justify-content: center; align-items: center; height:40px; font-weight:400; font-size:13px; color: #fff;line-height:1.2;text-transform:capitalize; padding:0px 5px;background:#000;border-top:0px solid rgba(255, 255, 255, .2); } 
.gnb-new ul ul li:hover > a {background: var(--concept-color); color: #fff; }
.gnb-new ul li.active > a {background:#000;color: #FFF;}
/* .gnb-new > ul > li.active > a {background:#000;color: #FFF;} */
.gnb-new ul li.last ul {left: auto;right: 0; }
.gnb-new ul li.last ul ul {left: auto;right: 99.5%;}
.gnb-new ul ul li.last{margin-bottom:10px; } 
.gnb-new > ul > li:hover > a, .gnb-new > ul > li.active > a {background:#000;color: #fff !important;}
/* .gnb-new > ul > li:hover > a, .gnb-new > ul > li.active > a {background:#000;color: #FFF;}*/ /* 1depth menu hover */

/* 상단 레이아웃 white버전 - 스크롤 반응시 상단 메뉴 */
#header:hover{background-color: rgba(255,255,255,1);color:#000; }
#header:hover .gnb-new > ul > li > a {color:#000;}
#header.bg_on{background-color: rgba(255,255,255,1);border-bottom:0px solid #ddd;box-shadow: 0px 1px 10px rgba(22,22,22,0.08) ;  color:#000; }
#header.bg_on .gnb-new > ul > li > a {color:#000;}

#header.bg_on .hamburger-inner,
#header.bg_on .hamburger-inner:after,
#header.bg_on .hamburger-inner:before {position: absolute; width: 27px; height: 3px; background-color: #000 !important;transition: transform .3s ease .2s, background-color .3s ease .2s, opacity .3s ease .3s;}

/* 바디에 스크롤 막는 방법 */
.not_scroll{
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%
}

.not_scroll .cont {
  position: relative;
  top: 0;
}

/* new mobile-menu */
.nav-but-wrap{/* display:inline-flex; */ position:fixed; top:0; right:5%; display:none;justify-content:flex-end; align-items: center; width:50px;height:var(--header-height); text-align:right; transition : all 0.3s ease-out; z-index:100; margin-top:4px;  }
.nav-but-wrap.bg_on .menu-icon__line {background-color: var(--second-color);} 
body.nav-active .nav-but-wrap.bg_on{height:var(--header-height);  }
body.nav-active .nav-but-wrap.bg_on .menu-icon__line {background-color: #fff;} 

.menu-icon {height: 30px;width: 30px;position: relative;z-index:5;cursor: pointer;display: block;}
.menu-icon__line {height: 2px;width: 30px;display: block;background-color: #fff; margin-bottom: 7px;cursor: pointer;-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;transition: background-color .5s ease, -webkit-transform .2s ease;transition: transform .2s ease, background-color .5s ease;transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;}
.menu-icon__line-left {width: 16.5px;-webkit-transition: all 200ms linear;transition: all 200ms linear;}
.menu-icon__line-right {width: 16.5px;float: right;-webkit-transition: all 200ms linear;-moz-transition: all 200ms linear;-o-transition: all 200ms linear;-ms-transition: all 200ms linear;transition: all 200ms linear;}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {width: 30px;}

.nav {position: fixed;z-index: 98; }
.nav:before, .nav:after {content: "";position: fixed;width: 100vw;min-height: 100vh;height:100%;background: rgba(9,9,12,0.6);border-bottom-left-radius: 200%;z-index:-1;-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;-webkit-transform: translateX(100%) translateY(-100%);transform: translateX(100%) translateY(-100%);}
.nav:after {background: rgba(9,9,12,1);-webkit-transition-delay: 0s; transition-delay: 0s;}
.nav:before {-webkit-transition-delay: .2s; transition-delay: .2s;}

.nav__content {position: fixed;visibility: hidden;top: 50%;/* margin-top: 20px; */ -webkit-transform: translate(0%, -50%); transform: translate(0%, -50%);display:flex; flex-direction: column;justify-content:flex-start; width: 100%;text-align:left; padding:120px 0 40px; overflow-y: auto;height:100%; box-sizing: border-box;}
.nav__logo{display: block;opacity: 0;text-align: center; min-height:40px; }
.nav__logo img{max-height:40px;}

.nav__list-item {position: relative;display: block;-webkit-transition-delay: 0.8s;transition-delay: 0.8s;opacity: 0; overflow: hidden;-webkit-transform: translate(100px, 0%); transform: translate(100px, 0%);-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;transition: opacity .2s ease, -webkit-transform .3s ease;transition: opacity .2s ease, transform .3s ease;transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;margin-top: 0;margin-bottom: 0;}
.nav__list-item > a{ position: relative;text-decoration: none;font-family: 'LINESeedKR-Bd'; font-size:22px;line-height: 1.15;letter-spacing: 1px; color:var(--light-bgcolor);overflow: hidden; cursor: pointer;padding:16px 5px 6px; margin-bottom:10px;z-index: 2;display: inline-block;/*text-transform: uppercase;*/ -webkit-transition: all 200ms linear; transition: all 200ms linear; padding-right:24px; }
.nav__list-item > a:after{ position: absolute;content: '';/* top: 50%;margin-top: -2px; */ bottom:0px; left: 50%;width: 0;height: 0;opacity: 0;background-color:  var(--concept-color);z-index: 1; -webkit-transition: all 200ms linear;transition: all 200ms linear; }
.nav__list-item > a.has-sub::before{ position: absolute;content: '';top: 50%;margin-top:2px; right:0; border-style:solid;border-width: 9px 6px 0 6px;border-color: #fff transparent transparent transparent; -webkit-transition: -webkit-transform .65s ease; transition: transform .65s ease;}
.nav__list-item > a:hover:after{ height: 3px;opacity: 0;left: 0;width: 100%;}
.nav__list-item > a:hover{color: rgba(255,255,255,1);}
.nav__list-item.active-nav > a{color: rgba(255,255,255,1);}
.nav__list-item.active-nav > a:after{ height: 3px;opacity: 0;left: 0;width: 100%;}
.nav__list li.open  > a.has-sub::before{-webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg);border-color: #fff transparent transparent transparent;}

/* 하위 메뉴 open 추가 */
.nav__list{position: relative; margin: 0;z-index: 2; display:flex; /* align-items: center; */ flex-direction: column;width:100%; -webkit-transition: all .25s ease-in;transition: all .25s ease-in; box-sizing: border-box;}
.nav__list > li{border-bottom:1px solid rgba(255, 255, 255, .1); padding:0 10%; box-sizing: border-box;}
.nav__list, .nav__list ul, .nav__list li {list-style: none;}
.nav__list > li li a {display: block;outline: none;text-decoration: none;color:rgba(255,255,255,.8); font-weight:400;  font-size:16px;line-height:1;padding:12px 5px;}
.nav__list li.open a{color:#fff;}
.nav__list li.open li a {color:rgba(255,255,255,.8);}
.nav__list li.open li a:hover{color:#fff;}
.nav__list li.active a{color:#fff;}
.nav__list li li.active a{color:#fff;}
.nav__list li.open > a:after{ height: 3px;opacity: 0;left: 0;width: 100%;}
.nav__list li.open > a{color: rgba(255,255,255,1);}
.nav__list li.open > ul{padding:0px 0 20px;}
/* 하위 메뉴 추가 open END */

.nav__list li li a.tt {color:#f1f1f1;  font-size:15px;line-height:1;font-weight:500;padding: 10px 5px 15px;}

body.nav-active .nav__content {visibility: visible;}
body.nav-active .menu-icon__line {background-color: #fff;-webkit-transform: translate(0px, 0px) rotate(-45deg);transform: translate(0px, 0px) rotate(-45deg);}
body.nav-active .menu-icon__line-left {width: 15px;-webkit-transform: translate(2px, 4px) rotate(45deg);transform: translate(2px, 4px) rotate(45deg);}
body.nav-active .menu-icon__line-right {width: 15px;float: right;-webkit-transform: translate(-3px, -3.5px) rotate(45deg);transform: translate(-3px, -3.5px) rotate(45deg);}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {width: 15px;}
body.nav-active .nav {visibility: visible;}
body.nav-active .nav:before, body.nav-active .nav:after {-webkit-transform: translateX(0%) translateY(0%); transform: translateX(0%) translateY(0%);border-radius: 0;}
body.nav-active .nav:after {-webkit-transition-delay: .1s; transition-delay: .1s;}
body.nav-active .nav:before {-webkit-transition-delay: 0s;transition-delay: 0s;}
body.nav-active .nav__list-item {opacity: 1;-webkit-transform: translateX(0%); transform: translateX(0%);-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;transition: opacity .3s ease, transform .3s ease, color .3s ease;transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;}
body.nav-active .nav__list-item:nth-child(0) {-webkit-transition-delay: 0.7s;transition-delay: 0.7s;}
body.nav-active .nav__list-item:nth-child(1) {-webkit-transition-delay: 0.8s; transition-delay: 0.8s;}
body.nav-active .nav__list-item:nth-child(2) {-webkit-transition-delay: 0.9s;transition-delay: 0.9s;}
body.nav-active .nav__list-item:nth-child(3) {-webkit-transition-delay: 1s;transition-delay: 1s;}
body.nav-active .nav__list-item:nth-child(4) {-webkit-transition-delay: 1.1s;transition-delay: 1.1s;}
body.nav-active .nav__list-item:nth-child(5) {-webkit-transition-delay: 1.2s;transition-delay: 1.2s;}
body.nav-active .nav__list-item:nth-child(6) {-webkit-transition-delay: 1.3s;transition-delay: 1.3s;}
body.nav-active .nav__list-item:nth-child(7) {-webkit-transition-delay: 1.4s; transition-delay: 1.4s;}
body.nav-active .nav__list-item:nth-child(8) {-webkit-transition-delay: 1.5s;transition-delay: 1.5s;}
body.nav-active .nav__list-item:nth-child(9) {-webkit-transition-delay: 1.6s;transition-delay: 1.6s;}
body.nav-active .nav__list-item:nth-child(10) {-webkit-transition-delay: 1.7s;transition-delay: 1.7s;}

body.nav-active .nav__lang {opacity: 1;}
body.nav-active .nav__logo {opacity: 1;}

body.nav-active{   
  overflow: hidden;
/* position: fixed;width: 100%;height: 100% */
}

body.nav-active #header.bg_on{border-bottom:0px solid #ebebeb;background-color:transparent;height:var(--header-height);}
body.nav-active #header.bg_on .menu-icon__line {background-color: #fff;} 
body.nav-active #header .logo{ display:none; }
body.nav-active #gnb{ display:none; }
body.nav-active #header .util{display:none; }
body.nav-active #header .language{display:none; }
body.nav-active #header .submenu-lagnuage-wrap{display:none; }
body.nav-active .text-bl{background: rgba(9,9,12,1);-webkit-transition-delay: .3s; transition-delay: .3s; }
/* Header END */

/* #Progress top btn */
.progress-wrap {position: fixed;right:15px;bottom:20px;height: 46px;width: 46px;cursor: pointer;display: block;border-radius: 50%;box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);z-index: 10000;opacity: 0;visibility: hidden;transform: translateY(15px);-webkit-transition: all 200ms linear;transition: all 200ms linear;}
.progress-wrap.active-progress {opacity: 1;visibility: visible;transform: translateY(0);}
.progress-wrap::after {position: absolute;font-family: 'unicons';content: '\e84b';text-align: center;line-height: 46px;font-size: 24px;color:var(--concept-color);left: 0;top: 0;height: 46px;width: 46px;cursor: pointer;display: block;z-index: 1;-webkit-transition: all 200ms linear;transition: all 200ms linear;}
.progress-wrap:hover::after {opacity: .5;}
.progress-wrap::before {position: absolute;font-family: 'unicons';content: '\e84b';text-align: center;line-height: 46px;font-size: 24px;opacity: 0;background-image: linear-gradient(298deg, var(--red), var(--yellow));-webkit-background-clip: text;-webkit-text-fill-color: transparent;left: 0;top: 0;height: 46px;width: 46px;cursor: pointer;display: block;z-index: 2;-webkit-transition: all 200ms linear;transition: all 200ms linear;}
.progress-wrap:hover::before {opacity: 1;}
.progress-wrap svg path { fill: none; }
.progress-wrap svg.progress-circle path {stroke:var(--concept-color);stroke-width: 4;box-sizing:border-box;-webkit-transition: all 200ms linear; transition: all 200ms linear;}

/* top btn 다른 스타일 */
.btn_up_layer {position:fixed;bottom:20px;right:10px;display:none;flex-direction: column;justify-content:center;align-items:center; gap:5px; text-align: center; width:65px;  height:65px;background:var(--second-color);border-radius:8px;z-index:100;cursor:pointer;transition:all 0.5s ease-in-out; -webkit-transition:all 0.5s ease-in-out; box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.07); }
.btn_up_layer .icon {width:100%;height:14px; text-align: center;background:url(/images/layout/top-arrow-s.png) 50% 0% no-repeat; background-size:auto 14px; }
.btn_up_layer .button-text {font-weight: 600;color:#fff; font-size:13px;letter-spacing:-0.02em;}
.btn_up_layer.active{display:flex;}

/* footer  */
.footer{width:100%;border-top:1px solid #ddd;margin:0px auto;padding:40px 5%; box-sizing: border-box;}
.footer:after {content:""; display:block; clear:both; height:0;}
.footer ul{display:flex; flex-direction: column; align-items: center; text-align: center; gap:5px; }
.footer li{display:inline-flex; justify-content: center; flex-wrap: wrap; gap:5px 15px; }
.footer li p{font-weight: 300;color:#666;font-size:14px;line-height:1.45; }
.footer li p.bold{font-weight:500;color:#333; }
.footer li p.copy{font-size:13px;}
.footer li p.sns{}

.i-insta{display:inline-flex;width:20px; height:20px; /* border:1px solid #666; border-radius: 50%; */ background:url(/images/layout/ico-instagram.png) 50% 50% no-repeat;background-size:auto 18px;  text-indent: -9999px; }

.f_smenu {display:flex;align-items:center;}
.f_smenu > a {position:relative;display:inline-block;font-weight: 400;font-size:14px;color: #ddd;padding-left: 25px;}
.f_smenu > a::after {position:absolute; left:0; top:50%;transform:translateY(-50%);content: ' '; width: 4px;height: 4px;background:#aaa;border-radius:50%;margin-left:10px; }
.f_smenu > a:first-child{padding-left:0px;}
.f_smenu > a:first-child::after {position:absolute; left:0; top:50%;transform:translateY(-50%);content: ' '; width: 0px;height: 0px;margin-left:0px; }
.f_smenu .bold{font-weight:600;color: #eee;}

.ellipsis01{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ellipsis02{overflow: hidden;text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 2; /* 라인수 */ -webkit-box-orient: vertical; word-wrap:break-word; line-height: 1.3em;height: 2.6em; /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */}
.ellipsis03{overflow: hidden;text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 3; /* 라인수 */ -webkit-box-orient: vertical; word-wrap:break-word; line-height: 1.3em;height: 3.9em; /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */} 
.ellipsis04{overflow: hidden;text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp: 4; /* 라인수 */ -webkit-box-orient: vertical; word-wrap:break-word; line-height: 1.3em;height: 5.2em; /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */} 

/*img 관련 */
.imgMax{max-width:100%;}
.imgFix{width:100%;}
.fullsize{display: inline-block;width: 100%;}
.fullsize img{width: 100%;}

.slideImg{position: relative; display: inline-block; width:100%; height:0px;padding-top:75%;overflow: hidden;border:1px solid #eee; border-radius:0px;background-size: cover; background:#fff;box-sizing: border-box; }
.slideImg img{position: absolute; top: 0; left: 0; right: 0; bottom: 0;width:100%; height:100%;object-fit: cover; object-position: 50% 50%; }
.slideImg.mid{padding-top: 56.25%; }
.slideImg.mid-none{padding-top: 56.25%;border:0px solid #eee; }
.slideImg.full{padding-top: 100%; }
.slideImg.full-circle{padding-top: 100%;border-radius:50%;border:0px;}

/* 팝업 Basic */
.popupWrap_A{position:relative;display:flex; align-items:center; width: 100%; height:100vh;/*background:#fff;*/margin:0 auto;padding:0 2%; box-sizing: border-box;}/* basic */
.popupWrap_A img{max-width: 100%;}

.icon-close-black{position: absolute;right:20px;top:10px;width:21px; height:21px;background:url(../images/layout/close_black.png) 50% 50% no-repeat;text-indent: -9999px; z-index:2}
.icon-close-white{position: absolute;right:5px;top:0px;width:21px; height:21px;background:url(../images/layout/close_white.png) 50% 50% no-repeat;text-indent: -9999px; z-index:2}
.icon-close-white.p-inner{right:20px;top:13px;}
.icon-close-black.p-inner{right:20px;top:13px;}
.icon-close-circle{position: absolute;right:15px;top:15px;width:30px; height:30px;background:url(../images/layout/close_white.png) 50% 50% no-repeat var(--concept-color);background-size:auto 12px; border-radius:50%; text-indent: -9999px; z-index:2}
.icon-close-pop{position: absolute;right:0px;top:0px; width:50px; height:50px;background:url(../images/layout/close_white.png) 50% 50% no-repeat var(--concept-color);background-size:auto 14px; text-indent: -9999px; z-index:2}

.popupBox_A{position:relative;width: 100%;padding:0px;/* background:#fff; */ margin-top:30px;border-radius:0px; overflow: auto; } /* basic - x버튼 위에 */
.popupBox_A img{max-width: 100%;}
/* 스크롤바 설정*/
.popupBox_A::-webkit-scrollbar{width: 10px;}
.popupBox_A::-webkit-scrollbar:vertical {width: 10px;}
.popupBox_A::-webkit-scrollbar:horizontal {height: 10px;}
.popupBox_A::-webkit-scrollbar-thumb{background-color: var(--concept-color);}
.popupBox_A::-webkit-scrollbar-track{background-color: #242424;}

.pop-title {font-weight:700;font-size:17px;line-height:1;color:#222;letter-spacing:-0.02em;} /* popup title */
.pop--topline{width:100%; padding:20px 25px 10px; border-bottom:1px solid #dfdfdf; }
.pop--top{width:100%; padding:15px 25px; background:var(--concept-color) /*#222*/; } 

.popup--inner{width:100%;background:#fff; max-height:85vh; padding:35px;box-sizing: border-box;position:relative;overflow: auto;  }

/* // 팝업 Basic */

.textTb{display: inline-block; width:100%;margin-bottom:20px; font-family: 'Pretendard'; }
.textTb .tit1{font-weight: 700;color:#333;font-size:16px;line-height:1.45;letter-spacing:-0.01em;margin-bottom:10px;}
.textTb .txt1{color:#555;font-size:13px;line-height:1.45;letter-spacing:-0.01em;}
.textTb .txt2{color:#555;font-size:13px;line-height:1.45;letter-spacing:-0.01em;margin-bottom:10px;}
.textTb .txt3{color:#555;font-size:13px;line-height:1.45;letter-spacing:-0.01em;padding-left:20px;margin-bottom:8px;box-sizing: border-box;}
.textTb .txt4{color:#555;font-size:13px;line-height:1.45;letter-spacing:-0.01em;padding-left:40px;margin-bottom:8px;box-sizing: border-box;}

/*5/4 비율 이상 */
@media all and (min-device-aspect-ratio:5/4) { 
} 
/*5/4 비율 이하 */
@media all and (max-device-aspect-ratio:5/4) {   
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* video 사용할 경우 */
.video_wrap{position: relative; margin:0px auto; padding-bottom: 56.25%;height: 0;overflow: hidden;}
.youtubeP{position: absolute;top: 0;left: 0;width: 100%; height: 100%;}

.content-video{position:relative; width:100%; margin:0 auto; text-align:center; background-color: #000; overflow:hidden; vertical-align:top; padding: 0px;}
.content-video:after {clear:both;display:block;height:0;overflow:hidden;visibility:hidden;content:"";} 
.content-video-txt{z-index: 2; position:absolute; top:50%;transform:translateY(-50%);text-align:center; }
.content-video video{background-color: #000;opacity:1;vertical-align:top;max-width:100%;height:auto}

.pc_only{display: inline-block;}
.mo_only{display: none;}

/********************************************
	MAIN
********************************************/
.scroll-ani{position: absolute; left:50%;  transform:translateX(-50%); bottom:16px;width:12px; height:30px; z-index: 2;}
.mousey { display: inline-flex; justify-content: center; width:12px;padding: 0px;height:24px; border: 2px solid rgba(255,255,255, .6);border-radius: 25px;opacity:1;box-sizing: content-box;}
.scroller {width: 4px;height: 4px;border-radius:50%;background-color:#fff; animation-name: scroll-ani; animation-duration: 2.2s; animation-timing-function: cubic-bezier(.15,.41,.69,.94);animation-iteration-count: infinite;}
@keyframes scroll-ani {
  0% { opacity: 0; }
  10% { transform: translateY(4px); opacity: 1; }
  50% {  opacity: 1; }
  100% { transform: translateY(20px); opacity: 0;}
}

.section-1{display:flex; flex-direction: column; align-items: center; width:100%;height:600px;  margin:0px auto; padding:0px; overflow: hidden; box-sizing: border-box; position: relative;}
.section-1 .background {position: absolute; top: 0; left: 0; width: 100%; height: 100%;  margin:0 auto; background-image: url('/images/main/sec1.jpg'); background-size: cover; background-repeat: no-repeat; opacity: .8; } 
.section-1.aos-animate .background {opacity:1; }

.main-inner{ width:100%;max-width:var(--area-width); margin:0px auto; padding:var(--sec-padding-h) var(--sec-padding-w); border-left:1px solid #ddd;  border-right:1px solid #ddd;  box-sizing: border-box;}
/* section-2 */
.section-2{width:100%; margin:0px auto; padding:0; box-sizing: border-box;}
.section-2 ul{display:flex; flex-wrap: wrap; gap:60px; margin-bottom:80px; box-sizing: border-box;}
.section-2 li{width:calc(50% - 30px) }
.section-2 li:last-child{margin-top:20px; }
.section-2 p{margin-top:40px;}

/* section-3 */
.section-3{width:100%; margin:0px auto; background: #f9f9f9; padding:0; box-sizing: border-box;}
.section-3 .titleArea{width:100%;max-width:var(--area-width); margin:0px auto;text-align: center;padding:var(--sec-padding-h) var(--sec-padding-w) 60px; border-left:1px solid #ddd;  border-right:1px solid #ddd;  box-sizing: border-box; }
.section-3 .titleArea h2{margin-bottom:0px;}
.section-3 .titleArea h3{margin-bottom:40px;}
.section-3 .titleArea p{line-height: 1.6; margin-bottom:40px;}

.section-3 .middleArea {width:100%; height:600px; position:relative; overflow:hidden; }
.section-3 .bottom-inner{ width:100%;max-width:var(--area-width); margin:0px auto; padding:60px var(--sec-padding-w); border-left:1px solid #ddd;  border-right:1px solid #ddd;  box-sizing: border-box;}

.sec3_image_list { width:100%; height:100%; position:absolute; top:0px; left:0px; z-index:1; }
.sec3_image_list .image {width:100%; height:100%; position:absolute; top:0px; left:0px; z-index:1; opacity:0;-webkit-transition: all 0.5s ease; transition: all 0.5s ease;-webkit-transform: scale(1.1); transform: scale(1.1);}
.sec3_image_list .image.active { opacity:1; -webkit-transform: scale(1); transform: scale(1); }
.sec3_image_list .image .overlay { width:100%; height:100%; }

.sec3_item_list {width:100%; height:100%; position:absolute; top:0px; left:0px; z-index:2;display:flex;flex-wrap:wrap;}
.sec3_item_list .item {height:100%; border-right:1px solid rgba(255,255,255,0.3);-ms-flex: 1 1 0%; -webkit-flex: 1 1 0%; flex: 1 1 0%; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;}
.sec3_item_list .item:last-of-type { border-right:none; }
.sec3_item_list a {color:#fff !important; display:block; width:100%; height:100%; position:relative;-moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;}
.sec3_item_list .item a:after {width:100%; height:100%; content:''; display:block; position:absolute; top:0px; left:0px; background:rgba(0,0,0,0.5); z-index:1; opacity:0;-webkit-transition: opacity 0.2s ease; transition: opacity 0.2s ease;}
.sec3_item_list .item.active a:after { opacity:1; }
.sec3_item_list .content {position:absolute; left:0px; bottom:-100%; padding:0 50px 50px; z-index:2; -webkit-transition: bottom 0.7s cubic-bezier(0.22, 1, 0.36, 1); transition: bottom 0.7s cubic-bezier(0.22, 1, 0.36, 1);}
.sec3_item_list .image_wrap{position:absolute; left:0; top:0; width:100%; height:100%; z-index: 0; display:none; }
/* .sec3_item_list .image_wrap img{position: absolute; top: 0; left: 0; right: 0; bottom: 0;width:100%; height:100%;object-fit: cover; object-position: 50% 50%; } */
.sec3_item_list .title {line-height:1.2; font-weight:700;color:#fff; word-break:break-all; }
.sec3_item_list .title span { display:block; }
.sec3_item_list .title .main_title { font-weight:700;color:#fff; font-size:28px; }
.sec3_item_list .title .sub_title { margin-top:13px;font-weight:400;color:rgba(255, 255, 255, 1);font-size:17px;  }

.sec3_item_list .desc { opacity:0; top:15px; font-weight:400;font-size:17px;color:#fff;line-height:1.6; margin-top:30px; position:relative; }
.sec3_item_list .desc br{display:none; }
.sec3_item_list .bottom_title { opacity:0; top:15px; font-weight:600;font-size:16px;color:#fff;line-height:1;  margin-top:30px;  position:relative; display:inline-block; padding:0 20px 0 0; }
.sec3_item_list .bottom_title:after {content: ' ';position: absolute; top: 50%;right: 0px; width: 8px; height: 8px; margin-top: -4px;border: 1px solid #fff;border-top: none;border-right: none; transform: rotate(-135deg);  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transition: opacity 0.5s ease 0s; transition: opacity 0.5s ease 0s;}
.sec3_item_list .bottom_title span { -webkit-transition: opacity 0.5s ease 0s; transition: opacity 0.5s ease 0s; }
.sec3_item_list .item.active .desc { opacity:1; top:0; -webkit-transition: all 0.7s ease 0.2s; transition: all 0.7s ease 0.2s; }
.sec3_item_list .item.active .bottom_title { opacity:1; top:0px; -webkit-transition: all 0.7s ease 0.4s; transition: all 0.7s ease 0.4s; }
.sec3_item_list .bottom_title:hover:after { opacity:0.5; }
.sec3_item_list .bottom_title:hover span { opacity:0.5; }

.section-4{display:flex; flex-direction: column; justify-content: center; align-items: center; width:100%;height:600px;  margin:0px auto; padding:0px; overflow: hidden; box-sizing: border-box; position: relative;}
.section-4 .background {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('/images/main/sec4.png'); background-size: cover; background-repeat: no-repeat; opacity: .8; z-index: -1;} 
.section-4.aos-animate .background {opacity:1; }
.section-4 .cont{display:flex; flex-direction: column; justify-content: center; align-items: center; width:100%;height:100%;position: relative;}
.section-4 .tit {font-weight:700;color:#fff; font-size:28px;} 
.section-4 .txt {margin-top:20px;font-weight:400;color:rgba(255, 255, 255, 1);font-size:17px;} 

/* basic-swiper */
.basic-swiper{width:100%;box-sizing: border-box;}
.basic-swiper .swiper-slide {width:100%; margin:0 auto; padding:0px;  box-sizing:border-box; display: flex;justify-content: center; align-items: center; transition: all 0.5s ease-in-out; }
.basic-swiper .swiper-slide img{max-width:100%;}

.basic-swiper-img{width:100%;}
.basic-swiper-img img{width:100%;}

/* basic-swiper 버튼관련 */ 
.basic-swiper .swiper-button-prev,  
.basic-swiper .swiper-button-next{width:40px; height:40px; background-size: 40px auto; top:50%; margin-top:-20px; opacity: .8; z-index: 3;} /*크기*/
.basic-swiper .swiper-button-prev{background-image: url(/images/sub/swiper-prev.png); left:0px; } /*이미지,위치*/
.basic-swiper .swiper-button-next{background-image: url(/images/sub/swiper-next.png); right:0px; }

.basic-swiper .swiper-pagination{padding-bottom:10px;}
.basic-swiper .swiper-pagination-bullet {width:10px;height:10px;margin:0px 4px;display: inline-block;border-radius:24px; background:#fff; border:0; opacity: .6;}
.basic-swiper .swiper-pagination-bullet-active {width:10px;height:10px;background:#000;}
/* basic-swiper END */

.box_button{width:100%;text-align: center;}
.box_button > *{display:inline-flex; justify-content: center;align-items: center; gap:5px; min-width:260px; height:60px; font-weight:300; font-size:16px; color: #fff;  background: #000; padding:0px 10px; box-sizing: border-box; -webkit-transition: all 0.35s ease; transition: all 0.35s ease;}
.box_button > *:hover{ background:var(--concept-color);color: #fff;}
.box_button > * > span{font-weight:600; }

/* text */
.tit-xlg{font-weight:700;font-size:40px;color:#000;line-height:1.3;letter-spacing:0;}
.tit-lg{font-weight:700;font-size:30px;color:#000;line-height:1.3;letter-spacing:0;}
.tit-md{font-weight:700;font-size:24px;color:#000;line-height:1.3;letter-spacing:0;}
.tit-sm{font-weight:700;font-size:18px;color:#000;line-height:1.3;letter-spacing:0;}
.tit-s{font-weight:700;font-size:16px;color:#000;line-height:1.3;letter-spacing:0;}

.txt-lg{font-weight:400;font-size:24px;color:#333;line-height:1.5;}
.txt-md{font-weight:400;font-size:18px;color:#333;line-height:1.5;}
.txt-sm{font-weight:300;font-size:16px;color:#333;line-height:1.5;}
.txt-s{font-weight:300;font-size:14px;color:#333;line-height:1.5;}

.tit--round{position:relative;font-weight:700;font-size:24px;color:#333;line-height:1.3; padding-left:20px;box-sizing: border-box;}
.tit--round::before{position:absolute;content: ' ';left:0;top:12px;background:var(--concept-color);border-radius:24px; width:12px; height:6px;  /* border-radius:50%; width:7px; height:7px;*/ }

.bullet-tit{position:relative;font-weight:400;font-size:18px;color:#444;line-height:1.45; padding-left:15px;letter-spacing:0em;line-height:1.4;box-sizing: border-box;}
.bullet-tit::before{position:absolute;content: ' ';left:0;top:11px; width:4px; height:4px;background:var(--concept-color); border-radius:50%; }

.bullet-txt{position:relative;font-weight:300;font-size:16px;color:#444;line-height:1.45; padding-left:10px;letter-spacing:0em;line-height:1.4;box-sizing: border-box;}
.bullet-txt::before{position:absolute;content: ' ';left:0;top:10px; width:4px; height:4px;background:var(--concept-color); border-radius:50%; }

.bullet-stxt{position:relative;font-weight:300;font-size:14px;color:#444;line-height:1.45; padding-left:8px;letter-spacing:0em;line-height:1.4;box-sizing: border-box;}
.bullet-stxt::before{position:absolute;content: ' ';left:0;top:7px; width:3px; height:3px;background:var(--concept-color); border-radius:50%; }

.line-list{position:relative;font-weight:400;font-size:16px;color:#444;line-height:1.45; padding-left:12px;box-sizing: border-box;}
.line-list::before{position:absolute;content: '-';left:0;top:0px;font-size:16px;color:#444; }

.gallery--list{width:100%;box-sizing: border-box;}
.gallery--list .thumb{position: relative;width:100%; height:0px;padding-top:75%;overflow: hidden;border-radius:0px;border:1px solid #f1f1f1; background:#f9f9f9; box-sizing: border-box;}
.gallery--list .thumb img{position: absolute; top: 0; left: 0; right: 0; bottom: 0;width:100%; height:100%;object-fit: cover; object-position: 50% 50%; border-radius:0px; -webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s; }
.gallery--list:hover .thumb img{-webkit-transform: scale(1.1) rotate(0.02deg); -moz-transform: scale(1.1) rotate(0.02deg); -ms-transform: scale(1.1) rotate(0.02deg); -o-transform: scale(1.1) rotate(0.02deg); transform: scale(1.1) rotate(0.02deg);}
.gallery--list .textArea{margin-top:20px;text-align: left; padding:0 5px; box-sizing: border-box;}
.gallery--list .category{font-weight:600;font-size:16px;color:#222;line-height:1;letter-spacing:-0.01em;}
.gallery--list .tit{font-weight:500;font-size:16px;color:#222;letter-spacing:-0.01em; /* overflow: hidden;text-overflow: ellipsis;display: -webkit-box; -webkit-line-clamp:2;-webkit-box-orient: vertical; word-wrap:break-word; line-height: 1.3em; height: 2.6em; */ }
.gallery--list .date{font-weight:300;font-size:14px;color:#666;line-height:1.45;letter-spacing:-0.01em;margin-top:10px;}

.list-typeA{width:100%;margin:0px auto;} /* 3 :  */
.list-typeA ul{display:flex;flex-wrap: wrap; }
.list-typeA li{width:32.3333%;margin:0 0% 1.5% 1.5%;box-sizing: border-box; }
.list-typeA li:nth-child(3n-2){margin:0 0% 1.5% 0;}
.list-typeA.border li{background:#fff;border:1px solid #dfdfdf; }

.list-typeB{position:relative;width:100%;}   /* 4 :  */
.list-typeB ul{display:flex;flex-wrap: wrap;width:100%;}
.list-typeB li{width:23%;margin:0 0% 60px 2.6666%; cursor:pointer;transition:all 0.3s;}
.list-typeB li:nth-child(4n-3){margin:0 0% 60px 0%;}
.list-typeB li:hover{/*margin-top:-5px;  box-shadow: 1px 1px 16px 0px rgba(22,22,22, 0.08); */ }


/*  SUB LAYOUT :: 비주얼 */
/* #visual{overflow:hidden; position:relative; width:100%; margin:0 auto; height:var(--sub-visual-height);background-size:cover !important;box-sizing: border-box; border-radius: 16px; }  */
#visual{overflow:hidden; position:relative;width:100%;height:var(--sub-visual-height); margin:0 auto; background-size:cover !important;box-sizing: border-box;} 
#visual .visual-img-con{position:absolute; left:0; width:100%; height:100%; -ms-transform: scale(1.08,1.08) rotate(0.0001deg); -o-transform: scale(1.08,1.08) rotate(0.0001deg);-moz-transform: scale(1.08,1.08) rotate(0.0001deg); -webkit-transform: scale(1.08,1.08) rotate(0.0001deg); transform: scale(1.08,1.08) rotate(0.0001deg);-webkit-transition:transform 5s  ease-in-out ;-moz-transition:transform 5s ease-in-out ;-o-transition:transform 5s ease-in-out ;-ms-transition:transform 5s ease-in-out ;transition:transform 5s ease-in-out ;}
#visual::after{ position:absolute; left:0; top:0;content: ''; width:100%;height:100%;  background:#000;opacity: .3; z-index: 1;} 

#visual.type1::after{opacity:0; } 

#visual .visual-txt-con{position:relative; display:flex; width:100%; max-width:var(--area-width); justify-content:center; flex-direction: column; margin:0 auto;height:100%;padding:20px 5% 0; box-sizing: border-box; z-index:2;}
#visual .visual-tit{font-family: 'LINESeedKR-Bd'; font-size:45px;color:#fff; line-height: 1.2; letter-spacing:0em;text-shadow: -1px 1px 10px 10px rgba(0,0,0,0.2);text-transform: uppercase; margin:0 auto; box-sizing: border-box;}
#visual .visual-location{-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s}
#visual .visual-location > ul{display:flex;justify-content: center; align-items: center; gap:0;}
#visual .visual-location > ul li{position:relative;display: inline-block;padding-left: 25px;font-weight:300;font-size:14px;color: #fff;text-shadow: 1px 1px 16px rgba(0,0,0,0.3); line-height: 1;letter-spacing:-0.01em;} 
#visual .visual-location > ul li::after {position:absolute; left:0; top:50%;transform:translateY(-50%);content: ''; background: url(/images/layout/location_bg.png) 0% 50% no-repeat;width: 6px;height:11px;/*width: 5px;height: 5px;background:#dbdbdb;border-radius:50%;*/margin-left:10px; }
#visual .visual-location > ul .i_home{display: inline-block;width:16px; height:13px;background: url(/images/layout/ico_home_w.png) 50% 50% no-repeat;text-indent: -9999px;}
#visual .visual-location > ul li:first-child{padding-left:0px; }
#visual .visual-location > ul li:first-child::after {width: 0px;height: 0px;margin-left:0px; }
/* #visual .visual-img-con{position:absolute; left:0; top:0; width:100%; height:100%; clip-path: polygon(80% 20%, 80% 80%, 20% 80%, 20% 20%); border-radius: 120px; transition: clip-path ease 2s, background-position cubic-bezier(0, 0, 0.35, 1) .8s; }
#visual.active .visual-img-con{clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0); border-radius:0px;} */

#visual .visual-tit, #visual .visual-location{
	   opacity:0;filter:Alpha(opacity=0); visibility:hidden;
     -ms-transform: translateY(20px) rotate(0.0001deg);
    -o-transform: translateY(20px) rotate(0.0001deg);
    -moz-transform: translateY(20px) rotate(0.0001deg);
    -webkit-transform: translateY(20px) rotate(0.0001deg);
     transform: translateY(20px) rotate(0.0001deg); 

	-moz-transition:transform .8s, opacity 1.0s;
		-ms-transition:transform .8s, opacity 1.0s;
		-webkit-transition:transform .8s, opacity 1.0s;
		-o-transition:transform .8s, opacity 1.0s;
		transition:transform .8s, opacity 1.0s;
}

#visual.active .visual-img-con{
	-ms-transform: scale(1.0,1.0) rotate(0.0001deg);
    -o-transform: scale(1.0,1.0) rotate(0.0001deg);
    -moz-transform: scale(1.0,1.0) rotate(0.0001deg);
    -webkit-transform: scale(1.0,1.0) rotate(0.0001deg);
     transform: scale(1.0,1.0) rotate(0.0001deg);
}
#visual.active .visual-tit, #visual.active .visual-location{
	opacity:1.0;filter:Alpha(opacity=100); visibility:visible;
	-ms-transform: translateY(0) rotate(0.0001deg);
    -o-transform: translateY(0) rotate(0.0001deg);
    -moz-transform: translateY(0) rotate(0.0001deg);
    -webkit-transform: translateY(0) rotate(0.0001deg);
     transform: translateY(0) rotate(0.0001deg); 
}

/* 효과 */
#visual.active .visual-tit{-webkit-transition-delay:0.3s; -moz-transition-delay:0.3s; -o-transition-delay:0.3s; -ms-transition-delay:0.3s; transition-delay:0.3s}
#visual.active .visual-location{-webkit-transition-delay:0.6s; -moz-transition-delay:0.6s; -o-transition-delay:0.6s; -ms-transition-delay:0.6s; transition-delay:0.6s}

.visual-img-con.tbg01{background: url("/images/sub/subtop-1.png") 50% 0% no-repeat rgb(255, 255, 255); background-size:cover;  }
.visual-img-con.tbg02{background: url("/images/sub/subtop-2.png") 50% 0% no-repeat rgb(255, 255, 255); background-size:cover;  }
.visual-img-con.tbg03{background: url("/images/sub/subtop-3.png") 50% 0% no-repeat rgb(255, 255, 255); background-size:cover;  }
.visual-img-con.tbg04{background: url("/images/sub/subtop-4.png") 50% 50% no-repeat rgb(255, 255, 255); background-size:cover;  }
.visual-img-con.tbg05{background: url("/images/sub/subtop-5.png") 50% 0% no-repeat rgb(255, 255, 255); background-size:cover;  }
.visual-img-con.tbg06{background: url("/images/sub/subtop-6.png") 50% 0% no-repeat rgb(255, 255, 255); background-size:cover;  }

.menuTab-wrap.active{position:fixed; left:0; top:var(--header-top-height);width:100%;border-radius:0px; border-bottom:0px solid #e1e1e1; background:var(--concept-color); }
.menuTab-wrap{/*position:absolute; left:0; bottom:0;*/position:relative; width:100%; margin:0 auto;height:var(--menuTab-height);background: rgba(255,255,255,1); /* border-bottom:1px solid #e1e1e1; */   padding:0px var(--wrap-padding); box-sizing: border-box;overflow:hidden;/*animation: menuAni 1s 0.2s both;*/ -webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s;  z-index:2;}
/* tab */
.menuTab{width:100%;margin:0 auto; height:var(--menuTab-height); padding:0px ;position:relative; /*max-width:var(--area-width);*/ }
.menuTab .x-scroll{display:flex; /* justify-content: center; */ }
.menuTab ul{display:flex; /* justify-content: center;*/ align-items: center;width:100%;height:100%;gap:0px; box-sizing: border-box; }
.menuTab ul.tabs {white-space: nowrap;}
.menuTab li{margin-right:40px;}
.menuTab li:last-child{margin-right:40px;}

.menuTab a{display:flex;align-items:flex-end; justify-content: center;text-align:center;height:var(--menuTab-height);font-weight:700;font-size:18px;line-height:1; /* border-width:0; border-style:solid;border-color:var(--concept-color);padding:0 2px; border-radius:0px;*/ box-sizing: border-box;color:rgba(0, 0, 0, .3);}
.menuTab li.active a{color:var(--second-color);}
.menuTab li:hover a{color:var(--second-color);}
.menuTab .icon-newwin{display: inline-block; margin-left:5px; width:10px; height:10px; background:url(/images/layout/newwin.png) 0% 50% no-repeat;background-size:10px auto;}

.menuTab-wrap.active .menuTab a{align-items:center; color:rgba(255, 255, 255, .4);}
.menuTab-wrap.active .menuTab li.active a{color:rgba(255, 255, 255, 1);}
.menuTab-wrap.active .menuTab li:hover a{color:rgba(255, 255, 255, 1);}

@keyframes menuAni {
  0% {opacity: 0; transform: translateY(-20px);}
  100% {opacity: 1; transform: translateY(0);}
}

#contents{padding-top:var(--sub-visual-height);}
.container {position:relative; width:100%;margin:0; padding:130px 0; min-height:600px; background: #fff; box-sizing: border-box;}
.inner{position:relative; width:100%;max-width:var(--content-width);margin:0 auto;padding:0;box-sizing: border-box;}
.inner:after {display:block; clear:both; content:'';}

.container article{padding-top:90px;}
.container article:first-child{padding-top:0px;}
.container article p{margin-bottom:40px;}

.titleBox{position:relative; width:100%; font-weight:700; font-size:30px;color:#fff;line-height:1.2;letter-spacing:0.02em;text-transform: uppercase; background: #000; padding:15px 15px 15px 25px; margin-bottom:30px; box-sizing: border-box;}
.titleBox::before{position:absolute;content: ""; left:0; top:0;  width:8px; height:100%;  background: var(--sub-color);}
.titleBox br{display:none;}

.title{position:relative; font-weight:700; font-size:24px;color:var(--second-color);line-height:1.2;letter-spacing:0.02em;padding:5px 0px 5px 20px;box-sizing: border-box; margin-bottom:40px;}
.title::before{position:absolute;content: "";left:0; top:0;  width:5px; height:100%;  background: var(--sub-color);}

.image_full{width:100%;}
.image_full img{width:100%;}

.products-top{display:flex;flex-wrap: wrap; gap:50px;}
.products-top .box{flex:1; }
.products-top .box > a{width:100%;}
.products-top .box:hover{cursor: pointer;}
.products-top .box img{width:100%;}

.txt-line{position:relative; width:fit-content; line-height:1.6; padding-bottom:2px;  -webkit-transition: all 200ms linear; transition: all 200ms linear;  }
.txt-line::before{position:absolute;content: "";left:0; bottom:0;  width:100%; height:4px; background: var(--sub-color); opacity: .6; -webkit-transition: all 200ms linear;transition: all 200ms linear;}

.border-box{width:100%;border:1px solid #ddd;margin:40px auto 0px; padding:30px; box-sizing:border-box; }

.products-info{width:100%;margin-bottom:40px;}
.products-info ul{display:flex;flex-wrap: wrap; gap:50px; margin-top:50px;}
.products-info u:first-child{margin-top:0px;}
.products-info li{flex:1;}
.product-tit{width:100%;font-weight:700;font-size:20px;color:#000;line-height:1.3; margin-bottom:40px;border-bottom:1px solid #ddd; padding:10px; box-sizing:border-box; }

.products-btns{display:flex; justify-content:center; gap:80px;}
.products-btns > *{display:inline-flex; justify-content: center;align-items: center; gap:5px; min-width:260px; height:60px; font-weight:300; font-size:16px; color: #fff;  background: #535353; padding:0px 10px; box-sizing: border-box; -webkit-transition: all 0.35s ease; transition: all 0.35s ease;}
.products-btns > *:hover{color: #fff; opacity: .7;}

.product-price{display:flex; justify-content: flex-end; align-items: center; gap:2px;font-weight:400; font-size:16px;color:#000;line-height:1; margin-top:15px;padding-right:5px; box-sizing:border-box; }
.product-price > span{font-weight:600;color:#000;}
.product-price > span.tt{font-family: 'GmarketSansLight'; margin-left:10px;}

.page_ing{text-align: center; padding-top:120px;background:url(/images/layout/ic_error.png) 50% 0% no-repeat;background-size:auto 100px; margin-top:100px; }
.page_ing > p{text-align: center;font-weight:400; font-size:18px;color:#666;line-height:1.45;    }
.page_ing > p > span{font-weight:700; color:#000; }

.contact{margin:100px auto;}
.contact > h3{ text-align: center; line-height: 1.6;letter-spacing:0em;}
.contact > h3 > span{font-weight:700;}
.contact ul{display:flex; justify-content: center; width:100%; max-width:1000px; margin:0px auto;}
.contact li{flex:1; display: inline-flex; flex-direction: column; align-items: center; text-align: center; border-left:1px solid #ddd; padding:0 5%; box-sizing: border-box;}
.contact li:first-child{ border-left:0;}
.contact .icon{margin-bottom:30px;}
.contact .icon img{height:50px; opacity: .9;}
.contact .icon-tit{font-weight:700;font-size:20px;color:#333;line-height:1.2;letter-spacing:0em;margin-bottom:10px;}
.contact .icon-txt{font-weight:400;font-size:16px;color:#333;line-height:1.45;letter-spacing:0em;}

/* table--scroll 좌우사용 */
.table-scroll-auto {margin: 0 auto;overflow: auto;  border-right:1px solid #dfdfdf;  border-top:1px solid #dfdfdf;
	scrollbar-arrow-color: #fff; /* IE 6+ scroll styles */
	scrollbar-face-color: #999;
	scrollbar-shadow-color: #333;
	scrollbar-highlight-color: #000;
	scrollbar-darkshadow-color: #000;
	scrollbar-track-color: #ddd; /* Last IE 6+ scroll styles */
	scrollbar-color: #999 #ddd; /* Firefox 64+ */
	scrollbar-width: thin; /* Firefox 64+ */
	width: 100%;    
  }
  
  .table-scroll-auto::-webkit-scrollbar {width: 6px;height: 6px;}
  .table-scroll-auto::-webkit-scrollbar-track {background: padding-box #ddd;border-radius: 4px;}
  .table-scroll-auto::-webkit-scrollbar-thumb {background: padding-box #999;border-radius: 4px;}
  .table-scroll-auto::-webkit-scrollbar-thumb:hover { background: padding-box #aaa;}
  .table-scroll-auto::-webkit-scrollbar-thumb:active {background: padding-box #333;box-shadow: inset 0 0 3px rgba(192, 192, 192, 0.5);}
  
  .table-scroll-auto {position: relative;z-index:1;margin: auto;width:100%;  /* max-height:800px;*/ }
  .table-scroll-auto table {width: 100%;margin: auto;min-width:500px;border-collapse: collapse;font-variant-numeric: tabular-nums; vertical-align: middle; table-layout: fixed;}
  .table--wrap {position:relative;}
  .table-scroll-auto th {padding:15px 20px;vertical-align:middle; background:#f9f9f9; border-bottom:1px solid #dfdfdf; border-left:1px solid #dfdfdf; font-size:16px;font-weight:500;line-height:1;letter-spacing:-0.02em;/* position: -webkit-sticky;position:sticky;top:0;z-index:2; */ }
  .table-scroll-auto thead {position: -webkit-sticky;position:sticky;top:0;z-index:2; }
  .table-scroll-auto td {padding:15px 20px; border-bottom:1px solid #dfdfdf; border-left:1px solid #dfdfdf; font-size:16px;color: #333;font-weight:400;line-height:1.4;letter-spacing:-0.02em;background: #fff;}
  .table-scroll-auto td img{vertical-align:middle;}
  .table-scroll-auto td span{margin:0 2px;}
  /*
    .table-scroll-auto th:first-child,  .table-scroll-auto td:first-child{border-left:0px solid #dfdfdf; }
   */
  .table-scroll-auto tfoot,.table-scroll-auto tfoot th, .table-scroll-auto tfoot td {position:-webkit-sticky;position:sticky;bottom:0;background:#666;color:#fff;}

  .table-scroll-auto.atable table {min-width:100%;table-layout: fixed;}
  .table-scroll-auto.atable th{background:#f9f9f9; text-align:left;padding:15px 20px;line-height:1.3; }
  .table-scroll-auto.atable td{padding:25px 20px; line-height:1.3;}
  .table-scroll-auto.atable.border-non th,   .table-scroll-auto.atable.border-non td{border:0;}

  .table-scroll-auto.btable table {min-width:100%;table-layout: fixed; border-bottom:1px solid #dfdfdf;}
  .table-scroll-auto.btable th{background:#f9f9f9; text-align:left;padding:8px 5px;line-height:1;border-left:0;font-size:13px;}
  .table-scroll-auto.btable td{text-align:left;padding:5px;line-height:1.3;border:0;font-size:13px;}

  .table-scroll-auto th.bg-3, .table-scroll-auto td.bg-3{background:#fcfcf6;}
  .table-scroll-auto th.bg-2, .table-scroll-auto td.bg-2{background:#f4f8fc;}
  .table-scroll-auto th.bg-1, .table-scroll-auto td.bg-1{background:#f8f7f5;}
  
  .table-scroll-auto .rborder{border-right:1px solid #dfdfdf;}

  .table-scroll-auto td > p{margin-top:5px; margin-bottom:0 !important;}
  .table-scroll-auto td > p:first-child{margin-top:0px;}
  /* table--scroll 좌우사용 END */

.pre-wrap{width:100%;white-space: pre-wrap;margin-bottom:40px;  }


/* 오늘 하루 보지 않기 팝업 */
.main-popup {position: fixed; left:0;top:0;justify-content:center;align-items: center;flex-direction: column; width:100%;height:100vh;margin: auto;z-index:99;display: none;}
.main-popup::before{position:absolute;top:0;left:0;content: ' ';  width:100%; height:100vh;background:#000;-ms-filter: alpha(opacity=50); filter: alpha(opacity=50); opacity:0.5; -moz-opacity:0.5;z-index:10;}
.main-popup.on{display:flex;}

.layer-cont{display:flex; flex-direction: column;width:100%;max-width:500px; margin:0 auto; background-color: #fff; box-shadow: 0 2px 16px -2px rgba(0, 0, 0, .2);z-index:99;}
.popupimg-wrap{width:100%;}
.popupimg-wrap img{width:100%;}

.main-popup-btn{width:100%; display:flex;justify-content:space-between;align-items: center; margin:0 auto; border-top:1px solid #ddd;background:#fff; box-sizing: border-box; z-index:99; }
.main-popup-btn > *{flex:1;padding:12px 0px; text-align:center; box-sizing: border-box;}
.main-popup-btn > *:first-child{border-right:1px solid #ddd; }
.main-popup-btn .btn-close {width:100%;font-weight:500;font-size:14px;line-height:1;color:#333;}
.main-popup-btn .btn-today-close{width:100%;font-weight:500;font-size:14px;line-height:1; color:#666;}

/*  tab */
.categoryTab{width:100%;margin:0 auto 20px; border:1px solid #ddd; border-radius: 4px; padding:15px;box-sizing: border-box;}
.categoryTab ul{display:flex;flex-wrap: wrap;justify-content: center; align-items: center;width:100%;gap:10px; box-sizing: border-box;}
.categoryTab li{}
.categoryTab a{display:flex;align-items: center; justify-content: center;text-align:center;height:26px;font-weight:400;font-size:14px;line-height:1;color:#666;background:#fafafa; border:1px solid #ddd; padding:0 16px; border-radius:30px; box-sizing: border-box;}
.categoryTab li.active a{font-weight:600;color:#fff; background:var(--sub-color);border:1px solid var(--sub-color);}
.categoryTab li:hover a{font-weight:600;color:#fff; background:var(--sub-color);border:1px solid var(--sub-color);}

/* board list-tb */
.boardList {width:100%;margin:0px auto;border-top:1px solid #333;}
.boardList ul {display:flex; width:100%;/*flex-wrap: wrap;*/justify-content: space-between;align-items: center; border-bottom: 1px solid #dfdfdf;}
.boardList .list-head{background-color: #fafafa;height:35px;text-align:center;}
.boardList .list-body{background-color: #fff;padding:12px 0px; text-align:left;}
.boardList li{border-left: 1px solid #dfdfdf;padding:0 15px;box-sizing: border-box;}
.boardList li:first-of-type{border-left:0;}

.boardList .etc-blank{flex:0 0 0px;}
.boardList .stit_mo{position: relative;display:none;font-weight:300;font-size:12px;color:#888;line-height:1;letter-spacing:-0.02em;margin-right:5px; padding-right:7px; }
.boardList .stit_mo::after {background:#dfdfdf; right:0; top:1px; width:1px; height:10px;display: block; position: absolute; content: ""; z-index: 1;}

.boardList .tit-name{flex:0 0 300px;font-weight: 500;font-size:15px;color:#333;line-height:1;} 
.boardList .tit-tel{flex:0 0 150px;font-weight: 500;font-size:15px;color:#333;line-height:1;}
.boardList .tit-address{flex:1;font-weight: 500;font-size:15px;color:#333;line-height:1;}

.boardList .name{flex:0 0 300px;font-size:15px;color:#666;line-height:1;}
.boardList .tel{flex:0 0 150px;font-size:15px;color:#666;line-height:1;}
.boardList .address{flex:1;font-size:15px;color:#666;line-height:1.3;} 

.boardList .nodata{flex:0 0 100%; padding:100px 0px;font-size:14px;color:#666;line-height:1;text-align:center;}


.tab-contents{display:block; width:100%;padding:40px 0;overflow: hidden;}

.dropdownbox-wrap{position:relative;width:90%;margin:10px auto 20px;display:none;z-index: 2;}
/* 모바일 dropdownbox */
.dropdownbox {margin: 0 auto;width:100%; cursor: pointer;}
.dropdownbox > p {position: relative;display:flex;align-items:center; height:40px; padding: 0px 20px; background:#fff; border:1px solid #dfdfdf;font-weight:600;font-size:14px;color:#000;user-select: none;-moz-user-select:none;-khtml-user-select: none;}
.dropdownbox > p:after { content: ""; width: 8px; height: 8px; border: 1px solid var(--concept-color); border-top: none; border-left: none; display: block; margin-top: -6px; pointer-events: none; position: absolute; right:15px;top: 50%; transform: rotate(45deg); -webkit-transition: all 0.15s ease-in-out; transition: all 0.15s ease-in-out;}
.optionArea {position: relative;margin: 0 auto;width:100%;overflow: hidden;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in;transition: all 0.3s ease-in;cursor: pointer;user-select: none;-moz-user-select:none;-khtml-user-select: none; display:none; padding:8px 0;background:#fafafa; border:1px solid #dfdfdf;border-top:0; box-sizing: border-box;}
.optionArea li {text-align:left;padding:10px 20px;font-weight:500;font-size:14px;;color:#666;line-height: 1.4; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in;-o-transition: all 0.3s ease-in;transition: all 0.3s ease-in;}
.optionArea li:hover {}
.optionArea.showMenu {display:block;}
/* 모바일 dropdownbox END */







  








  
