#menu {
    width: 100%;
    max-width: 1128px;
    height: 70px;
    margin: 0 auto;
    padding: 0
    }
#menu li {
    display: block;
    float: left;
    width: 16.6%;
    margin: 0;
    padding: 0;
    height: 70px;
    list-style: none
    }
#menu li a {
    display: block;
    background-color: #2ca35e;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-right: 1px solid #fff;
    height: 70px;
    line-height: 70px
    }
#menu li:first-child a {
    border-left: 1px solid #fff
    }
#menu li:last-child a {
    border-right: 1px solid #fff
    }
#menu li a:hover {
    background: #0c863f;
    color: #fff
    }
#toggle {
    display: none
    }
@media all and (min-width: 768px) and (max-width: 800px) {
    #menu-box {
        width: 100%;
        min-width: 1130px;
        height: auto;
        overflow: hidden
        }
    }
/* 画面サイズが768px以下の場合に適用**/
@media only screen and (max-width: 768px) {
    #menu-box {
        width: 100%;
        height: auto
        }
    #menu li {
        width: 16.6%;
        border-bottom: 1px solid #0c863f
        }
    }
@media all and (min-width: 568px) and (max-width: 768px) {
    #menu-box {
        font-size: 70%
        }
    }
/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {
    #menu {
        display: none
        }
    #menu li {
        width: 100%
        }
    #toggle {
        display: block;
        position: relative;
        width: 100%;
        background: #0c863f
        }
    #toggle a {
        display: block;
        position: relative;
        padding: 20px 0 20px;
        border-bottom: 1px solid #0c863f;
        color: #FFF;
        text-align: center;
        text-decoration: none
        }
    #toggle:before {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        width: 30px;
        height: 30px;
        margin-top: -15px;
        background: #FFF
        }
    #toggle a:before, #toggle a:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        width: 30px;
        height: 6px;
        background: #0c863f
        }
    #toggle a:before {
        margin-top: -9px
        }
    #toggle a:after {
        margin-top: 3px
        }
    #menu li:first-child a {
        border: none
        }
    #menu li:last-child a {
        border: none
        }
    }