@charset "UTF-8";
/* reset */
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;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
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;
    color:inherit;
}
html{
    display:block;
    width:100%;
    margin:0 auto;
    font-size:62.5%;
}
/* 바디 */
body{
    font-family: 'SUIT', sans-serif;
    font-weight:400;
    font-size:1.6rem;
    max-width:1920px;
    min-width: 320px;
    min-height:100vh;
    margin:0 auto;
    word-break: keep-all;
    letter-spacing: -0.05em;
    color:#495057;
}
.pc{
    display:none;
}
.mobile{
    display:block;
}
/* 헤더 */
.header{
    display:block;
    width:100%;
    margin:0 auto;
    z-index: 99;
}
.logo_area{
    display: block;
    width:100%;
    margin:0 auto;
    padding:16px;
    background:#fff;
    position: fixed;
    top:0;
    left:50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.logo_bx{
    display:block;
    height:18px;
    width:auto;
}
.logo_bx > a{
    display:block;
    width:auto;
    height:100%;
}
.logo_bx > a > img.pc{
    display:none;
    width:auto;
    height:100%;
}
.logo_bx > a > img.mobile{
    display:block;
    width:auto;
    height:100%;
}
.nav_area{
    display:block;
    width:100%;
    margin:0 auto;
    position: fixed;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.nav_bx{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width:100%;
}
.menu{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width:25%;
    background:#F1F3F5;
    text-align: center;
}
.menu.active{
    background:#3584ff;
    color:#fff;
    font-weight:700;
}
.menu > a{
    display: block;
    width:100%;
    height:100%;
    padding:13px 9px;
    text-align: center;
}
@media (min-width:768px){
    .pc{
        display:block;
    }
    .mobile{
        display:none;
    }
    .header{
        background:#3584ff;
        width:100%;
        padding:16px;
        position: fixed;
        top:0;
        left:50%;
        transform: translateX(-50%);
    }
    .header > .inner{
        width:100%;
        max-width:1024px;
        margin:0 auto;
        display:flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .logo_area{
        position: inherit;
        width:auto;
        transform: inherit;
        background:transparent;
        margin:0;
        padding:0;
    }
    .logo_bx{
        height:40px;
    }
    .logo_bx > a > img.pc{
        display:block;
    }
    .logo_bx > a > img.mobile{
        display:none;
    }
    .nav_area{
        position: inherit;
        width:auto;
        margin:0;
        transform: inherit;
    }
    .nav_bx > li:first-child{
        display: none;
    }
    .menu{
        width:auto;
        margin-left:16px;
        color:#fff;
        background:transparent;
        font-weight:700;
    }
}