@charset "UTF-8";

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* 테마 */
	:root {

		--font-default: "Pretendard Variable", "Pretendard","Geist",  sans-serif;
	}

html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: var(--font-default);
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	line-height: 1.25em;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	word-break: keep-all;
}

html, body { font-size: 16px; color: var(--color-lightblack); overflow-x: hidden; }


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img{
	max-width:100%;
	vertical-align: top;
}


@media screen and (max-width: 1023px) {
html, body { font-size: 15px; }
}


@media screen and (max-width: 767px) {
html, body { font-size: 14px; }
}