/* reset.css ÃßÈÄ cssÆÄÀÏ ÇÏ³ª·Î ÅëÇÕ */
html, body, div, span, 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, strong, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* common.css */
* {
    -ms-overflow-style: none; /* ÀÎÅÍ³Ý ÀÍ½ºÇÃ·Î·¯, ¿§Áö */
    scrollbar-width: none;  /* ÆÄÀÌ¾îÆø½º */
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none; /* Å©·Ò, »çÆÄ¸®, ¿ÀÆä¶ó, ºê·¹ÀÌºê */
}

html {
	font-family: "Pretendard Variable","Noto Sans KR","¸¼Àº °íµñ", Helvetica, sans-serif;
	color: #252525;
    background: #fff;
}

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

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    vertical-align: top;
}

#wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Desktop (1024px ~) */
.inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Tablet (744px ~ 1023px) */
@media screen and (min-width: 744px) and (max-width: 1023px) {
    .inner {
        padding: 0 24px;
    }
}

/* Mobile (390px ~ 743px) */
@media screen and (min-width: 390px) and (max-width: 743px) {
    .inner {
        padding: 0 16px;
    }
}

/* Small Mobile (320px ~ 389px) */
@media screen and (max-width: 389px) {
    .inner {
        padding: 0 10px;
    }
}