@charset "utf-8";

/* ----------------------------- */
/* Basic
/* ----------------------------- */
html {
    font-size: 62.5%;
}
html,body {
    height: 100%;
    word-break: keep-all;
    word-wrap: break-word;
}
body {
    font-family: 'NotoSansDemiLight', 'malgun gothic', 맑은고딕, 'Dotum', 돋움, 'Arial', 'sans-serif';
	font-weight: normal;
    font-size: 1.8rem;
    line-height: normal !important;
    color: #000;
}

/* ----------------------------- */
/* color
/* ----------------------------- */
.c-pink {
	color: #ed1941;
}


/* ----------------------------- */
/* common
/* ----------------------------- */
.wrap {
	max-width: 1440px;
	margin: 0 auto;
}
.wrap-in {
	max-width: 1400px;
	margin: 0 auto;
}

/* ----------------------------- */
/* header
/* ----------------------------- */
header {
	width: 100%;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0);
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}

/* quick */
header .quick {
	position:absolute; 
	top: 34px;
	left: 23px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header .quick a {
	display: inline-block;
	padding: 0 25px;
	font-size: 1.4rem;
	color: #ccc;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header .quick a:nth-child(2) {
	border-left: 1px solid #838383;
}

/* logo */
header .logo {
	text-align: center;
	max-height: 70.4px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header .logo img {
	width: 88px;
	height: 88px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transform: scale(1);
	transform-origin:top center;
	vertical-align: top;
	object-fit: contain;
}

/* hamberger */
header .nav {
	position: absolute;
	top: 29px;
	right: 50px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header .nav .hamberger {
	position: relative;
	width: 52px;
	height: 29px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	z-index: 1020;
}

header .nav .hamberger.on span {
	background: #fff !important;
}
header .nav .hamberger span {
	position:absolute; 
	right: 0;
	display: block;
	height: 1px;
	background: #fff;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header .nav .hamberger span:first-child {
	width: 61%;
	top: 0;
}
header .nav .hamberger span:nth-child(2) {
	width: 100%;
	top: 14px;
}
header .nav .hamberger span:nth-child(3) {
	width: 80%;
	bottom: 0;
}

/* ----------------------------- */
/* header_scroll
/* ----------------------------- */
header.scroll {
	background: #fff;
	background: rgba(255, 255, 255, 1);
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.06);
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
/* quick */
header.scroll .quick {
	top: 19px;
	left: 10px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header.scroll .quick a {
	padding: 0 20px;
	font-size: 1.3rem;
	color: #000;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
/* logo */

header.scroll .logo {
	
}
header.scroll .logo img {
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transform: scale(0.8);
	
}
/* hamberger */
header.scroll .nav {
	top: 20px;
	right: 20px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header.scroll .nav .hamberger {
	width: 42px;
	height: 29px;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
header.scroll .nav .hamberger span {
	background: #000;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
/* ----------------------------- */
/* nav
/* ----------------------------- */
nav {
	display: none;
	width: 30%;
	height: 100%;
	padding: 120px 30px 0;
	position: fixed;
	top: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.95);
/* 	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s; */
	z-index: 1010;
}
nav ul li a {
	display: block;
	padding: 4px 10px 30px;
	color: #ccc;
	font-size: 2.8rem;
	font-family: "NotoSansMedium";
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
nav ul li:before {
	opacity: 0;
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: #ed1941;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
nav ul li:hover a {
	color: #ed1941;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
nav ul li:hover:before {
	opacity: 1;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/* ----------------------------- */
/* footer
/* ----------------------------- */
footer {
	background: #2e2e2e;
}
.f-content {
	width: 52.6%;
	float: left;
	padding: 5% 0 6% 13.5%;
}
.f-content .f-logo {
	margin-bottom: 39px;
}
.f-content .f-logo img {
	width: 116px;
	height: 68px;
}
.f-content .f-link {
	font-size: 0;
	letter-spacing: -5px;
	margin-bottom: 9%;
}
.f-content .f-link a {
	display: inline-block;
	width: 24%;
	padding: 14px 20px;
	margin-right: 10px;
	color: #cfcfcf;
	border: 1px solid #5b5b5b;
	font-size: 1.6rem;
	letter-spacing: 0;
	background: url("/share/images/arrow_grey_r.svg") no-repeat center right 20px;
	background-size: 14px 9px;
}
.f-con {
	font-size: 1.6rem;
	color: #cfcfcf;
}
.f-con ul {
	font-family: "RobotoRegular";
}
.f-con ul li {
	margin-bottom: 10px;
}
.f-con ul li span {
	display: inline-block;
	margin-right: 10px;
	color: #ed1941;
}
.f-con .copyright {
	margin-top: 20px;
	font-size: 1.4rem;
	color: #6f6f6f;
}

.f-telnum {
	float: left;
	width:47.4%;
	background: #171717;
	padding: 5% 13.5% 5% 8%;
}
.f-telnum h3 {
	color: #ed1941;
	font-family: "RobotoMedium";
	font-size: 3.6rem;
	margin-bottom: 7%;
}
.f-telnum ul li {
	position:relative; 
	width: 100%;
	color: #9c9c9c;
	margin-bottom: 15px;
}
.f-telnum ul li:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #313131;
	z-index: 1;
}
.f-telnum ul li span {
	display: inline-block;
	position: relative;
	padding-right: 20px;
	background: #171717;
	z-index: 10;
}
.f-telnum ul li strong {
	display: inline-block;
	position: relative;
	float: right;
	padding-left: 20px;
	color: #cfcfcf;
	background: #171717;
	z-index: 10;
}

/* ----------------------------- */
/* Responsive
/* -----------------------------
/* Layout Max Size : 1440px
/* Desktop Size	: 1024px < Screen <= 1280px
/* Tablet Size	: 1024px < Screen <= 768px
/* Mobile Size	: 767px < Screen
/* ----------------------------- */




@media screen and (max-width:1440px) {
	/* ----------------------------- */
	/* common
	/* ----------------------------- */
	.wrap,
	.wrap-in {
		max-width: 94%;
		margin: 0 3%;
	}

	/* ----------------------------- */
	/* footer
	/* ----------------------------- */
	.f-content {
		padding: 5% 4%;
	}
	.f-content .f-link a {
		width: 30%;
	}
	.f-telnum {
		padding: 5% 4%;
	}
}

@media screen and (max-width:960px) {
	/* ----------------------------- */
	/* header
	/* ----------------------------- */
	/* quick */
	header .quick {
		top: 27px;
		left: 18px;
	}
	header .quick a {
		padding: 0 20px;
		font-size: 1.3rem;
	}

	/* logo */
	header .logo img {
		transform: scale(0.8);
	}

	/* hamberger */
	header .nav {
		top: 23px;
		right: 40px;
	}
	header .nav .hamberger {
		width: 42px;
		height: 29px;
	}
	/* ----------------------------- */
	/* nav
	/* ----------------------------- */
	nav {
		width: 40%;
		height: 100%;
	}

	/* ----------------------------- */
	/* footer
	/* ----------------------------- */
	.f-content,
	.f-telnum {
		width: 100%;
		float: none;
		padding: 5%;
	}
	.f-content .f-logo,
	.f-telnum h3 {
		text-align: center;
	}
}

@media screen and (max-width:768px) {

	/* ----------------------------- */
	/* Basic
	/* ----------------------------- */
	body {
		font-size: 1.6rem;
	}
	/* ----------------------------- */
	/* nav
	/* ----------------------------- */
	nav {
		width: 100%;
		height: 100%;
		text-align: center;
	}
	nav ul li:before {
	opacity: 0;
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	margin: 0 auto;
	background: #ed1941;
	-webkit-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
}

@media screen and (max-width:640px) {
	/* ----------------------------- */
	/* header
	/* ----------------------------- */
	/* quick */
	header .quick {
		top: 12px;
		left: 4%;
	}
	header .quick a {
		padding: 0 10px;
		font-size: 1.0rem;
	}
	header .quick a:first-child {
		padding-left: 0;
	}

	/* logo */
	header .logo {
		height: 52px;
	}
	header .logo img {
		transform: scale(0.6);
	}

	/* hamberger */
	header .nav {
		top: 17px;
		right: 4%;
	}
	header .nav .hamberger {
		width: 32px;
		height: 21px;
	}
	header .nav .hamberger span:nth-child(2) {
		width: 100%;
		top: 10px;
	}
	/* ----------------------------- */
	/* header_scroll
	/* ----------------------------- */
	header.scroll {
		background: #fff;
		background: rgba(255, 255, 255, 1);
		box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.06);
	}
	/* quick */
	header.scroll .quick {
		top: 12px;
		left: 4%;
	}
	header.scroll .quick a {
		padding: 0 10px;
		font-size: 1.0rem;
		color: #000;
	}
	header.scroll .quick a:first-child {
		padding-left: 0;
	}
	/* logo */
	header.scroll .logo img {
		transform: scale(0.6);
	}
	/* hamberger */
	header.scroll .nav {
		top: 17px;
		right: 4%;
	}
	header.scroll .nav .hamberger {
		width: 32px;
		height: 21px;
	}
	header.scroll .nav .hamberger span {
		background: #000;
	}
	/* ----------------------------- */
	/* footer
	/* ----------------------------- */
	.f-content,
	.f-telnum {
		padding: 10% 5%;
	}
}

@media screen and (max-width:640px) {
	/* ----------------------------- */
	/* footer
	/* ----------------------------- */
	.f-content .f-logo img {
		width: 70px;
		height: 40px;
	}
	.f-content .f-link a {
		width: 100%;
		padding: 14px 20px;
		margin-right: 0;
		margin-bottom: 10px
	}
	.f-telnum h3 {
		font-size: 2.8rem;
	}

}