@charset "UTF-8";

/*==============================================================

	style.css
	
==============================================================*/

/* fonts */
/*=================================*/
@import url("./font.css");


/* setting */
/*=================================*/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
mark,
nav,
section,
summary {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	font-family: sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

ul,
ol {
	list-style: none;
}

input,
button,
select,
textarea {
	background: transparent;
	border: none;
	/* outline: none; */
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
}

*:focus {
	outline: 3px solid #000;
	outline-offset: 0;
}


em {
	font-style: normal;
}

img,
picture,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

section {
	position: relative;
}

/* 공통 class */
html,
body {
	font-size: 10px;
	color: #222222;
	font-family: "Pretendard Variable", Pretendard, "GyeonggiMillenniumBackground", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.hidden,
.blind {
	position: absolute !important;
	top: auto !important;
	left: auto !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	text-indent: 0rem !important;
}

img {
	display: block;
	width: 100%;
	height: auto;
}


br.br-pc {
	display: block;
}

br.br-tablet {
	display: none;
}

br.br-mo {
	display: none;
}

span.span-pc {
	display: block;
}

div.div-mo {
	display: none;
}

.inner_1920 {
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	max-width: 192.0rem;
}

/* ico */
.ico-cont {
	position: relative;
}
i[class^="ico-"] {
	display: inline-block;
	vertical-align: top;
}



/* layout */
/*=================================*/
html,
html body {
	display: flex;
	width: 100%;
	min-height: 100%;
}

.wrap {
	overflow: hidden;
	width: 100%;
}


section {
	position: relative;
}

/* section-header */
/*=================================*/
.section-header {}

.section-header .logo {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 80px;
}

.section-header .logo img {
	width: 100%;
}

.section-header .logo>a {
	display: block;
	width: 127px;
	height: 68px;
	background-color: transparent;
}

/* section-main */
/*=================================*/
.section-main {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background: #0A0A0A url(../images/bg_main_pc.png) no-repeat 0 0 / cover;
	aspect-ratio: 1920 / 900;
}

.section-main .main-cont {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 10;
	padding: 80px;
	width: max-content;
	height: auto;
	transform: translateY(-50%);

}
.section-main .main-cont .title {
	color: #FFF;
	font-family: "GyeonggiMillenniumBackground";
	font-size: 48px;
	font-weight: 400;
	line-height: 68px;
	letter-spacing: -0.96px;
}
.section-main .main-cont .title > b {
	font-weight: 700;
}

/* SIZE 1920 기준 */
@media all and (max-width: 1920px) {

	html,
	body {
		font-size: calc(100vw * 10/1920);
	}

	br.br-pc {
		display: none;
	}

	br.br-tablet {
		display: block;
	}

	br.br-mo {
		display: none;
	}

}

/* SIZE 768 기준 */
@media all and (max-width: 768px) {

	html,
	body {
		font-size: calc(100vw * 10/750);
	}

	br.br-pc {
		display: none;
	}

	br.br-tablet {
		display: none;
	}

	br.br-mo {
		display: block;
	}

	.inner_1920 {
		max-width: 100%;
		height: auto;
	}

	.section-header .logo {
		padding: 4.44444444vw;
	}
	.section-header .logo>a {
		width: 17.77777778vw;
		height: 9.44444444vw;
	}

	.section-main {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		background: #0A0A0A url(../images/bg_main_mo.png) no-repeat 0 0 / cover;
		aspect-ratio: auto;
	}
	.section-main .main-cont {
		padding: 0 6.66666667vw;
		top: 66.66666667vw;
		transform: none;
	}
	.section-main .main-cont .title {
		color: #FFF;
		font-size: 6.66666667vw;
		line-height: 8.88888889vw;
		letter-spacing: -0.13333333vw;
	}

}

/* SIZE 480 기준 */
@media all and (max-width: 480px) {

	br.br-pc {
		display: none;
	}

	br.br-tablet {
		display: none;
	}

	br.br-mo {
		display: block;
	}

	div.div-mo {
		display: block;
	}

}