@charset "utf-8";
@import url(./fonts.css);

/* Reset */
* {
	padding: 0;
	margin: 0;
	word-break: keep-all;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body,
input,
select,
textarea,
button,
img,
fieldset {
	border: none;
}

header,
section,
nav,
footer {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal
}

ul,
ol,
li {
	list-style: none
}

button {
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
}

button,
input,
select {
	margin: 0;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

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

img,
fieldset,
iframe {
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

td,
th {
	padding: 0
}

hr,
legend {
	display: none;
}

a {
	text-decoration: none;
	color: #222;
}

button,
select,
input {
	color: #222;
	font-family: 'Pretendard';
}

address {
	font-style: normal;
}

/* Normalize */
html {
overflow-x: hidden;
	font-size: 62.5%;
}

html::-webkit-scrollbar{
width: 0.5rem;
}

html::-webkit-scrollbar-track{
background-color: #222;
}

html::-webkit-scrollbar-thumb{
border-radius: 1rem;
background-color: var(--main-color);
}

body {
	font-family: 'Pretendard';
	font-size: 1rem;
	color: #222;
	letter-spacing: -0.8px;
}

:root {
	--main-color: #00287A;
	--sub-color: #6EB6FF;
	--area-width: 1280px;
}

/* Hide */
.txt_hide {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	font-size: 1px;
	line-height: 0;
	overflow: hidden;
}