html, body {margin:0; padding:0; overflow-x:hidden; font-family: 'Pretendard', sans-serif; color: #2c2c2c; letter-spacing: -0.5px; cursor: default; background: #fafafa;}
#aside {display: none;}

/******************* animation *******************/
@keyframes fade  {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp  {
	0% {
		opacity: 0;
		transform: translate3d(0, 80%, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}

@keyframes scaleUp  {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn  {
	0% {
		width: 100%;
		border-radius: 0px;
		transform: scale(1.1);
	}
	to {
		width: 95%;
		border-radius: 30px;
		transform: scale(1);
	}
}
/******************* animation *******************/


/****************** Çì´õ ******************/
header.header {
	position: relative;
	width: 100%;
    margin: 0 auto;
    z-index: 10;
}
header.header::before {
    content: '';
    display: inline-block;
    width: 100%;
    opacity: 0.1;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
header.header.hover::before {
    height: 380px;
}
.header .inner {
    position: relative;
	width: calc(100% - 100px);
    margin: 0 auto;
    padding: 20px 0;
    height: 120px;
}
.logo {	
	float: left;
	display: inline-block;
    width: 200px;
    vertical-align: middle;
}
.logo a {	
    display: block;
    width: 160px;
    height: 80px;
    background: url("../img/main/logo.png") no-repeat left center / 100%;
    text-indent: -9000px;
}
#header #gnb {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}
#header #gnb li {
	position: relative;
    display: inline-block;
    margin-left: 44px;
    font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.5px;
	text-transform: uppercase;
    cursor: pointer;
}
#header #gnb li a {
	color: #0c0c0c;
}
#header #gnb .mMenu > li.active > a {
	font-weight: bold;
	color: #2c2c2c;
}
.gnb-2depth {
	position: absolute;
    width: 100%;
    background: #f9f9f9;
}
#header #gnb .mMenu .clearfix {
	display: none;
	position: absolute;
    top: 50px;
    left: 50%;
	transform: translateX(-50%);
    width: 150px;
    margin: 0 auto;
    padding: 15px 20px;
	background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 1px rgba(0, 0, 0, .25), 0 8px 20px rgba(0, 0, 0, .15);
    overflow-x: hidden;
}
#header #gnb .mMenu .clearfix.active {
	display: block;
}
#header #gnb .mMenu .clearfix .item {
	margin-bottom: 5px;
}
#gnb .mMenu .clearfix .item:last-child {
	margin-bottom: 0;
}
#header #gnb .mMenu .clearfix .item a {
    font-size: 18px;
    line-height: 30px;
}
#header #gnb .mMenu .clearfix a:hover {
	font-weight: bold;
	color: #fb72b0;
}
.app {
    display: inline-block;
	margin-top: 20px;
    float: right;
	width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
	font-weight: 600;
    text-align: center;
    border: 1px solid #fb72b0;
    color: #fb72b0;
    border-radius: 50px;
    vertical-align: middle;
}
.header-right {
	width: 100%;
	height: 42px;
	line-height: 42px;
	background: #f9f9f9;
	list-style:none
}
.hr-inner {
	display: flex;
	justify-content: end;
	width: calc(100% - 100px);
	margin: auto;
}
.hr-inner li {
	font-size: 16px;
	opacity: 0.6;
}
.login, .header-right li {	
	display: block;
	margin-left:20px;
	font-size: 14px;
	font-weight: 500;
	color: #0c0c0c;
	cursor: pointer;
}
.inner:after {
	content: "";
	display: block;
	clear: both;
}
/****************** Çì´õ ******************/

/****************** ¸ð¹ÙÀÏ ¸Þ´º ******************/
.menuWrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 80px 6% 0;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    box-sizing: border-box;
	overflow-y: scroll;
    z-index: 10;
}
.menuWrap.show {
	right: 0;
}
.moItem {
	width: 100%;
    height: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
	cursor: pointer;
}
.moItem:first-child {
	padding-top: 0;
}
.moItem a {
	display: block;
	padding: 0;
	font-size: 18px;
	line-height: initial;
	color: #333;
}
.moItem > a {
	font-size: 24px;
	font-weight: 600;
}
.menu-title {
	text-align: center;
}
.moItem > a .mArrow, .moSub a .mArrow {
	float: right;
	margin-top: 12px;
	vertical-align: bottom;
	transition: all .4s ease-in;
}
.moItem > a.active .mArrow {
	transform: rotate(180deg);
}
.moItem > a.active {
	color: #2c2c2c;
}
.moItem span:first-child {
	display: block;
	float: left;
	font-size: 26px;
	font-weight: 500;
}
.moItem span:nth-child(2) {
	display: block;
	float: right;
	font-size: 30px;
	font-weight: 400;
	transform: rotate(0deg);
	transition: all .3s ease-in;
}
.moItem:hover span:last-child {
	transform: rotate(360deg);
}
.moItem:after {
	content: "";
	display: block;
	clear: both;
}
.moSub {
	display: none;
	position: relative;
    margin: 0 auto;
    padding: 0 0 15px;
}
.moSub li {
	width: 100%;
	display: block;
}
.moSub a {
	margin: 14px 0;
}
.moSub li:last-child a {
	margin-bottom: 0;
}
.moSubIn a {
	margin: 0;
	padding: 5px 18px;
}
.moSub .add > a {
	padding: 10px 0 4px;
    margin: 0;
}
.moSubIn {
	padding-bottom: 14px;
	opacity: 0.75;
}
.add .moSubIn a {
	font-size: 16px;
}
.add:last-child .moSubIn {
	padding-bottom: 0;
}
.moItem > a:after, .moSub a .mArrow:after {
	content: "";
	display: block;
	clear: both;
}
/****************** ¸ð¹ÙÀÏ ¸Þ´º ******************/

/****************** ÇÜ¹ö°Å ¸Þ´º ******************/
.menuBtn {
	display: none;
	position: absolute;
	top: 50%;
    right: 5%;
	transform: translateY(-50%);
    z-index: 99;
}
.menuBtn.exposure {
	display: block;
}
.hamBtn {
	position: relative;
}
.hamBtn.active .mTrigger span {
	background: #000013;
}
.mTrigger, .closeBtn {
	display: block;
	position: relative;
	width: 28px;
    height: 22px;
	cursor: pointer;
}
.closeBtn, .closeBtn span {
	display: inline-block;
	box-sizing: border-box;
}
.mTrigger span, .closeBtn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #2c2c2c;
	border-radius: 4px;
}
.mTrigger.active.revers span {
	background: #fff;
}
header.active .mTrigger span, .header:hover .mTrigger span, .closeBtn span {
	background: #333;
}
.mTrigger span:nth-of-type(1), .closeBtn span:nth-of-type(1) {
	top: 0;
}
.mTrigger span:nth-of-type(2), .closeBtn span:nth-of-type(2) {
	top: 10px;
}
.mTrigger span:nth-of-type(3), .closeBtn span:nth-of-type(3) {
	bottom: 0;
}
.mTrigger.active span:nth-of-type(1), .closeBtn span:nth-of-type(1) {
	-webkit-transform: translateY (10px) rotate (-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.mTrigger.active span:nth-of-type(2), .closeBtn span:nth-of-type(2) {
	opacity: 0;
}
.mTrigger.active span:nth-of-type(3), .closeBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}

.closeBtnWrap {
	position: absolute;
	top: 33px;
    right: 5%;
    z-index: 99;
}
/****************** ÇÜ¹ö°Å ¸Þ´º ******************/


/****************** ÇªÅÍ ******************/
#footer {
	padding: 80px 0;
	border-top: 1px solid #ddd;
}
#footer .section {
	position: relative;
}
#footer .section > strong {
	display: block;
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: 800;
}
#footer .info {
	margin-bottom: 30px;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.6;
}
#footer .info li {
	display: inline-block;
	margin-right: 26px;
}
/*
#footer .info li:last-child {
	display: block;
}
*/
#footer .info strong {
	font-weight: bold;
}
#footer small {
	font-size: 17px;
	font-weight: 400;
	color: #313131;
	opacity: 0.7;
}
#footer #top-btn {
	position: absolute;
    top: 0;
    right: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	width: 130px;
	height: 54px;
	line-height: 54px;
	border-radius: 50px;
	background: #2c2c2c;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	border: none;
	transition: all .3s ease-in;
}
#footer #top-btn img {
	margin-left: 10px;
}
#footer #top-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}
/****************** ÇªÅÍ ******************/



@media all and (max-width:1281px){
	.logo a {width: 150px;}
	#header #gnb {width: 75%;}
	#header #gnb li {font-size: 20px; margin-left: 30px;}
	.app {width: 100px; height: 40px; line-height: 40px; font-size: 15px;}
}

@media all and (max-width:1201px){
	.header .inner {width: calc(100% - 80px);}
}

@media all and (max-width:1025px){
	.header .inner {width: calc(100% - 40px);}
	header.header, .header .inner {height: 100px;}
	#header #gnb, .header-right, .app {display: none;}
	.menuBtn {display: block;}
	.login {margin-left: 0;}

	.logo a {width: 138px; height: 60px;}

	.m-login {margin-bottom: 30px; font-size: 16px;	}
	.m-login li {display: inline-block; list-style: none;}
	.m-login a {display: inline-block; margin-right: 5px; padding-right: 10px; font-size: 14px; border-right: 1px solid #ccc;}
	.m-login a:last-child {border-right: 0;}
	.login {display: inline-block; margin-right: 5px;}

	#footer {padding: 60px 0;}
	#footer .section-in > strong {font-size: 19px; margin-bottom: 12px;}
	#footer .info {width: calc(100% - 120px); margin-bottom: 22px; font-size: 16px;}
	#footer small {font-size: 15px;}
	#footer #top-btn {width: 110px; height: 50px; line-height: 50px; font-size: 17px;}
}

@media all and (max-width:641px){
	#footer {padding: 50px 0;}
	#footer .section-in > strong {font-size: 18px; margin-bottom: 12px;}
	#footer .info {width: 100%; margin-bottom: 22px; font-size: 15px; line-height: 2;}
	#footer .info li {display: block; margin-right: 0;}
	#footer small {font-size: 14px;}
	#footer #top-btn {top: -10px; width: 90px; height: 40px; line-height: 40px; font-size: 14px;}
	#footer #top-btn img {margin-left: 6px; width: 10px;}
}

@media all and (max-width:481px){
	header.header, .header .inner {height: 90px;}
	.logo a {width: 110px; height: 50px;}
	.mTrigger, .closeBtn {width: 24px; height: 18px;}
	.mTrigger span:nth-of-type(2), .closeBtn span:nth-of-type(2) {top: 8px;}
	.closeBtn span:nth-of-type(1) {top: -4px;}

	.moItem {padding: 14px 0;}
	.moItem span:first-child {padding-top: 8px; font-size: 20px;}
	.moItem a {font-size: 15px;}
	.m-login {font-size: 14px;}
}