@charset "utf-8";

/* Web Font Load */
/* @import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css); */

/* Type Selector Reset */

@font-face {
    font-family: 'Noto Sans KR';
    src:url('NotoSansKR-Regular.otf') format('opentype');
    /* 이런식으로 weight를 지정해서 사용할 수도 있다!*/
    font-weight: 400;
}
@font-face {
    font-family: 'Noto Sans KR';
    src:url('NotoSansKR-Bold.otf') format('opentype');
    /* 이런식으로 weight를 지정해서 사용할 수도 있다!*/
    font-weight: 700;
} 

.container_postbtn {
    display: none;
}

body {
	-webkit-text-size-adjust: 100%;
	font-weight: 400;
	font-family: 'Noto Sans KR', sans-serif !important;
	font-size: 16px;
}
html, body {
	width: 100%;
	height: 100%;
	min-width: 1280px;
	margin: 0 auto;
	padding: 0;
	font-size: 100%;
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
	margin: 0;
	padding: 0;
}
header, section, article, aside, nav, hgroup, details, menu, figure, figcaption {
	background-color: #ffffff;
	display: block;
}
a {
	text-decoration: none;
}

ul li {
	list-style: none;
}
img, fieldset {
	border: none;
	vertical-align: top;
}
.header {
	height: 100px;
	background-color: #ffffff;
}
.header_layout {
	display: flex;
    box-sizing: border-box;
	justify-content: space-between;
	align-items: center;
    max-width: 1920px;
    height: 100%;
    padding: 20px;
    margin: 0 auto;
}
.header_layout_logo img {
	height: 50px;
}
.header_layout_lang a {
	margin-left: 10px;
}
.main_menu_ul {
	display: flex;
	box-sizing: content-box;
	flex-direction: row;
	justify-content: center;
	border-bottom: 1px solid #dbdbdb;
}
.main_menu_li {
	padding: 0px 20px 5px;
}
.main_menu_li a {
	font-weight: 700;
	color: #a6a6a6;
}
.main_menu_li.active a {
	font-weight: 700;
	color: #000000;
}
.sub_menu_ul {
	display: none;
	box-sizing: content-box;
	flex-direction: row;
	justify-content: center;
	height: 25px;
}
.sub_menu_ul.active {
	display: flex;
}
.sub_menu_li {
	padding: 5px 10px 0;
}
.sub_menu_li a {
	color: #a6a6a6;
}
.sub_menu_li.active a {
	color: #000000;
}

.slick_box {
	height: calc(100vh - 200px);
	background-color: #303030;
}
.slick-slide img {
	height: calc(100vh - 200px);
    width: 100%;
    max-width: 1920px;
    object-fit: scale-down;
    margin: 0 auto;
}
.slick-prev,
.slick-next {
	background: rgba(0,0,0,0.3);
    border-radius: 25px;
	z-index: 100;
	width: 50px;
	height: 50px;
}
.slick-prev {
	left: 20px;
}
.slick-next {
	right: 20px;
}
.slick-prev:focus,
.slick-next:focus {
    color: rgba(255, 255, 255, 0.75);
    outline: none;
    background: rgba(0,0,0,0.3);
}
.slick-prev:hover,
.slick-next:hover {
    color: #dbdbdb;
    outline: none;
    background: rgba(0,0,0,0.3);
}
.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    line-height: 58px;
}

.footer {
	height: 100px;
	background-color: #ffffff;
}
.footer_layout {
	display: flex;
    box-sizing: border-box;
	justify-content: center;
	align-items: center;
    max-width: 1920px;
    height: 100%;
    padding: 20px;
    margin: 0 auto;
}
.footer_layout p {
	color: #a6a6a6;
}