@charset "UTF-8";
/* NOTICE. 웹 브라우저마다 default값으로 적용되어 있는 스타일을 초기화 시킴*/


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}


/* 테마 */
	:root {
		--color-theme: #00aabe;
		--color-black: #000;
		--color-lightblack: #252629;
		--color-white: #FFF;
		--color-fontgray: #60616a;
		--color-fontlightgray: #a0a0a0;
		--color-fontlightgray2: #848484;
		--color-linegray: #e9e9e9;
		--color-linegray2: #e5e5e7;
		--color-lightgray: #F9F9F9;
		--color-red: #BA000B;
		--color-green: #3ab54a;
		--color-blue: #1000ae;
		--color-yellow: #c5a900;

		--font-default: "Pretendard", "Noto Sans KR", sans-serif;
	}
html, body { font-size: 16px; }

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;
}

sup, sub { font-size: 0.85em; }


/* 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: 1279px) {
html, body { font-size: 14px; }
}