@charset "UTF-8";

/* SUIT / font-family: 'SUIT', sans-serif; */
@font-face {
    font-family: 'SUIT';
    src: url('../fonts/SUIT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

/* Archivo / font-family: 'Archivo', sans-serif; */
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

/* Pretendard */
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Light.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-display: swap;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
	font-family: "Pretendard", sans-serif;
	font-weight: 400;
}

img {
    border: 0;
    vertical-align: top;
}

ul {
    list-style: none;
}
em {
	font-style: normal;
}

input,
select,
button {
    vertical-align: middle;
}

label, button {
    cursor: pointer;
}

a {
    color: #0D1015;
    text-decoration: none;
}

body {
	overflow-y: auto;
}

/*
	c-header 100
	c-container 50
	c-popup 200
*/

.c-wrap {
	overflow: hidden;
	position: relative;
	min-width: 1320px;
	padding-top: 94px;
}

.c-header {
	position: fixed;
	top: 0; 
	left: 0;
	width: 100%;
	min-width: 1320px;
	height: 94px;
	background-color: #394726;
	font-size: 0;
	-webkit-transition: all .5s;
	-ms-transition: all .5s;
	transition: all .5s;
	z-index: 100;
}
.c-h1 {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.c-logo {
	display: block;
	width: 53px;
	height: 45px;
	background: url('../images/common/c-logo.png') no-repeat center center;
	background-size: 100% auto !important;
}
.c-gnb {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -moz-box-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	height: 100%;
}
.c-gnb_list {
	font-size: 0;
	text-align: right;
	height: 100%;
}
.c-gnb_item {
	display: inline-block;
	position: relative;
	height: 100%;
	vertical-align: top;
}
.c-gnb_item + .c-gnb_item {
	margin-left: 57px;
}
.c-gnb_link {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	height: 100%;
	color: #fff;
	font-size: 20px;
	font-family: 'Archivo', sans-serif;
	font-weight: 500;
}
.c-2depth_list {
	display: none;
	position: absolute;
	top: 94px;
	left: 50%;
	width: 164px;
	background-color: #fff;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}
.c-2depth_list > li > a {
	display: block;
    padding: 9px 0;
	background-color: #fff;
	color: #394726;
	font-size: 20px;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
	font-family: 'Archivo', sans-serif;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
.c-2depth_list > li > a:hover {
	background-color: #394726;
	color: #fff;
}
.c-lang {
	position: relative;
	height: 100%;
	font-size: 0;
	margin-left: 20px;
}
.c-lang_trigger {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	position: relative;
	min-width: 164px;
	height: 100%;
	padding: 0 20px 0 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	font-family: 'Archivo', sans-serif;
	background: url('../images/common/c-lang_trigger.png') no-repeat center center;
	background-size: 22px auto !important;
}
/*.c-lang_trigger:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 8px;
	margin-top: -4px;
	background: url('../images/common/c-lang_arrow.png') no-repeat center center;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
.c-lang.active .c-lang_trigger:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}*/
.c-lang_list {
	display: none;
	position: absolute;
	top: 94px;
	left: 50%;
	width: 164px;
	background-color: #fff;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 10;
}
.c-lang_list > li > a {
	display: block;
    padding: 9px 0;
	background-color: #fff;
	color: #394726;
	font-size: 20px;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
	font-family: 'Archivo', sans-serif;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
.c-lang_list > li > a:hover {
	background-color: #394726;
	color: #fff;
}

.c-footer {
	padding: 40px 0;
	background-color: #E9E9E9; 
}
.c-footer_logo {
	width: 195px;
	height: 19px;
	background: url('../images/common/c-footer_logo.png') no-repeat;
	background-size: 100% auto !important;
	font-size: 0;
}
.c-footer_info {
	margin-top: 30px;
	color: #0D1015;
	font-size: 20px;
	text-align: left;
	font-weight: 500;
	line-height: 1.6;
}
.c-copyright {
	margin-top: 35px;
	color: #0D1015;
	font-size: 18px;
	text-align: left;
	font-weight: 500;
	line-height: 1.6;
}
.c-footer_sns {
	position: absolute;
	bottom: 40px;
	right: 0;
	font-size: 0;
	text-align: left;
}
.c-footer_sns > a {
	display: inline-block;
	width: 35px;
	height: 35px;
	background-position: center center;
	background-repeat: no-repeat;
	vertical-align: middle;
	background-size: 100% auto !Important;
}
.c-footer_sns > a.sns--facebook {
	background-image: url('../images/common/sns--facebook.png');
}
.c-footer_sns > a.sns--twitter {
	background-image: url('../images/common/sns--twitter.png');
}
.c-footer_sns > a.sns--youtube {
	background-image: url('../images/common/sns--youtube.png');
}
.c-footer_sns > a.sns--instagram {
	background-image: url('../images/common/sns--instagram.png');
}
.c-footer_sns > a.sns--tictalk {
	background-image: url('../images/common/sns--tictalk.png');
}
.c-footer_sns > a:hover {
	-webkit-animation: footerSns .7s;
	animation: footerSns .7s;
}
@-wekbit-keyframes footerSns {
	50% {
		margin-top: -5px;
	}
	100% {
		margin-top: 0;
	}
}
@keyframes footerSns {
	50% {
		margin-top: -5px;
	}
	100% {
		margin-top: 0;
	}
}
.c-footer_sns > a + a {
	margin-left: 17px;
}
.c-footer_links {
	position: absolute;
	top: 38px;
	right: 0;
}
.c-footer_link > a {
	display: block;
	position: relative;
	min-width: 234px;
	color: #0D1015;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	text-align: left;
}
.c-footer_link > a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 100%;
	background: url('../images/common/c-footer_link.png') no-repeat center center;
	background-size: 100% auto !Important;
}
.c-footer_link > a:hover:after {
	-webkit-animation: footerLink .7s;
	animation: footerLink .7s;
}
@-wekbit-keyframes footerLink {
	50% {
		right: 5px;
	}
	100% {
		right: 0;
	}
}
@keyframes footerLink {
	50% {
		right: 5px;
	}
	100% {
		right: 0;
	}
}



@media (max-width: 1380px){
	.c-wrap {
		min-width: 1380px;
	}
	.c-header {
		width: 1380px;
		min-width: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.c-header::-webkit-scrollbar {
		display: none;
	}
	.c-header .c-aligner {
		width: 1380px;
	}
	.c-h1 {
		left: 30px;
	}
	.c-footer_links {
		right: 30px;
	}
	.c-footer_sns {
		right: 30px;
	}
}