#wrap {padding-top: 6rem;}
.header {
    position: fixed;left: 0;top: 0;
    background-color: #f9fafe;
    z-index: 100;
    height: 6rem;width: 100%;
    justify-content: space-between;align-items: center;
    padding: 0 1.5rem;
    display: none;
}
.header_home .open {height: 2rem;width: 2rem;}
.header_home .logo {width: 10rem;}
.header_sub .prev,
.header_sub .dummy {
    height: 2rem;
    width: 2rem;
    padding: 0 .5rem;
}
.header_sub .category {font-size: 1.8rem;font-weight: bold;}



/* nav */
nav.on .inner {display: block;left: 0;}
nav.on .outer {display: block;}
nav.on .inner .inner_header {left: 0;}
nav .outer {
    background-color: rgba(0, 0, 0, .5);
    min-height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top:0;
    z-index: 999;
    display: none;
}
nav .inner {
    position: fixed; 
    z-index: 1000;
    left: -100%;
    top: 0;
    height: 100%;width:100%;
    background-color: #fff;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
    overflow-y: scroll;
    padding-top: 6rem;
}
nav .inner .inner_header {
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1);
    position: fixed;left: -100%;top: 0;
    background-color: #26a89e;
    height: 6rem;
    width: 100%;
    padding: 0 2rem;
    display: flex;justify-content: start;align-items: center;
}
nav .inner .inner_header .close {width: 2rem;}
nav .inner .banner {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
nav .inner .part {
    padding-top: 0;
    margin-bottom: 0rem;
}
nav .inner h1 {
    font-size: 2rem;
    display: flex;justify-content: space-between;align-items: center;
    margin-top: 2rem;
}
nav .inner h1 .more {
    width: fit-content; height: fit-content;
    padding: .3rem .8rem;padding-top: .5rem;
    border-radius: .3rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
}
