/* 固定表示時のスタイル */
.is-fixed {
position: fixed;
top: 200px;/*場合によって変更してください*/
left: 0;
z-index: 2;
width: 100%;
}
@media screen and (max-width:764px){
section{width:100%;}
.nav-menu {	width:100%;}
.is-fixed {
    top: 79px;
}
.nav-menu ul li {
    border-right: 1px solid #f3f3f3;
    box-sizing: border-box;
}
.nav-menu ul li:last-child {
    border-right: 0;
}
}	