.header{
    position: fixed;
}
@media screen and (max-width: 960px) {
    /* 화면을 기준으로 높이를 정한다. */    
    .menu-wrapper {
        /* page.js에서 --main-height 값을 정하기 때문에 !important를 한다. */
        height: calc(100vh - var(--header-height)) !important;
    }   
}