@charset "UTF-8";

.mb-show {display: none !important;}
.mb-hide {display: initial !important;}


header {
	position: fixed;
	top: 0;
	left: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1920px;
	padding:20px 90px;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
	background-color: #fff;
	transform: translateX(-50%);
}
header #logo a {
	display: block;
	width: 87px;
	height: 89px;
	text-indent: -9999px;
	background-image: url(/resource/images/logo.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
header #gnb {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
header #gnb li {
	position: relative;
	margin-left:40px;
}
header #gnb li:after {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #e17477;
	transition: all 0.2s;
	content:'';
}
header #gnb li a {
	color:#333;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: -1px;
}
header #gnb li.on:after {
	width: 100%;
}
header #gnb li.on a {
	color: #e17477;
}

footer {
	padding:50px 0;
	background-color: #0e1435;
}
footer .inner {
	width: 100%;
	max-width: 1360px;
	margin:0 auto;
	padding:0 30px;
	box-sizing: border-box;
} 
footer p {
	color:#fff;
	font-size: 14px;
	text-align: center;
}
footer p+p {
	margin-top: 5px;
}

article img,
section img {
	max-width: 100%;
	vertical-align: middle;
}

@media screen and (max-width:1620px) {
	header {
		flex-flow: column;
		justify-content: center;
		padding:11px 50px;
	}
	header #gnb {
		width: 100%;
		justify-content: center;
	}
	header #gnb li {
		margin:10px 0 10px 40px;
	}
}
@media screen and (max-width:720px) {
	.mb-hide {display: none !important;}
	.mb-show {display: initial !important;}

	header {
		padding:15px 0;
	}
	header #logo {
		margin-bottom: 15px;
	}
	header #logo a {
		width: 65px;
		height: 64px;
		background-size: cover;
	}
	header #gnb li {
		margin:10px 15px;
	}

	footer p {
		font-size: 18px;
	}
}