
*{
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: normal;
}

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;
}
 a{
	text-decoration: none;
 }
/* header */
header{
	z-index: 9999;
	position: sticky;
    top: 0;
    width: 100%;
	background-color: #fff;
}

header .header_inner{
	width: 100%;;
	max-width: 1180px;
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 15px 30px;
	margin: auto;
}

header .header_logo img{
	width: 150px;
}

header .nav .nav_list{
	display: flex;
}

header .nav .nav_list .nav_list_item{
	color: #777;
	text-decoration: none;
    align-items: center;
	padding: 0 15px;
    font-size: 17px;
}


footer{
	width: 100%;
    background: #31323a;
    padding: 30px 15px;
}

footer .footer_inner{
	width: 90%;
	margin: auto;
}

footer p span{
	color :#d5d5d5;
	font-size: 14px;
}

footer .footer_logo{
	margin: 0 0 20px 0;
}

footer .footer_logo img{
	width: 130px;
}

footer .footer_content{
	display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
}

.footer_content>p span+span:before {
    content: "|";
    margin: 0 8px;
    color: #9a9999;
}

footer .footer_copy{
	margin: 25px 0;
}

@media screen and (max-width: 1180px) {
	header .header_inner{
		max-width: 100%;
	}
}

@media screen and (max-width: 500px) {
	header .header_inner {
		padding: 15px 10px;
	}
	header .nav .nav_list .nav_list_item {
		padding: 0 10px;
		font-size: 16px;
	}
}

