@charset "UTF-8";




* {
    box-sizing: border-box;
  }
/* 폰트 패밀리 */
/* font-family: 'Noto Serif KR', serif; */
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, button, input, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: 'Noto Sans KR', sans-serif,'Noto Serif KR', serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	scroll-behavior: smooth;
}
body {
	line-height: 1;
    word-break: keep-all;
    color: #333;
	
}
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;
}
#wrap{
	width:100%;
	overflow:hidden;
    position: relative;
}
.container{
	width:1280px;
	margin:0 auto;
}

a{
    text-decoration: none;
    outline: none;
    color: #333;
}

caption{
	display:none;
}

/* 스크롤바 */


::-webkit-scrollbar{
	width:6px;
	border-radius:10px;
	overflow:hidden;
}


::-webkit-scrollbar-thumb{
	border-radius:10px;
	background-color:#333;
	height:20%;
}
::-webkit-scrollbar-track{
	background-color:#999;
}