@charset "utf-8";
/* CSS Document */

body{
margin:0;
font-family:"Noto Sans KR",sans-serif;
background:#f8f9fb;
}

.site_header{
background:#0d3a63;
padding:14px 0;
}

.header_inner{
width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo a{
color:#fff;
font-size:18px;
font-weight:600;
text-decoration:none;
}

.logo img{
height:30px;
}

.nav_menu a{
color:#fff;
margin-left:20px;
text-decoration:none;
font-size:14px;
}

.nav_menu a:hover{
opacity:0.8;
}

.site_footer{
margin-top:80px;
padding:30px 0;
background:#f2f2f2;
text-align:center;
}

.footer_menu{
margin-bottom:8px;
}

.footer_menu a{
text-decoration:none;
color:#333;
font-size:14px;
margin:0 8px;
}

.footer_copy{
font-size:13px;
color:#777;
}
.user_name{
color:#fff;
margin-left:20px;
font-size:14px;
}

.footer_inner{
width:1100px;
margin:0 auto;
}

.footer_info{
font-size:13px;
color:#666;
line-height:1.8;
margin:10px 0;
}

/* =========================
   모바일
========================= */

@media (max-width:768px){

.header_inner{
width:100%;
padding:0 15px;
box-sizing:border-box;
}

.nav_menu{
display:flex;
align-items:center;
flex-wrap:wrap;
}

.nav_menu a{
margin-left:10px;
font-size:13px;
}

.site_footer{
margin-top:30px;
}

.footer_inner{
width:100%;
padding:0 15px;
box-sizing:border-box;
}

.footer_info{
font-size:12px;
line-height:1.6;
}

.footer_copy{
font-size:11px;
}


}