#hamburger-menu {
    background: #1a4d9a;
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100vw;
    height: 10vh;
    z-index: 99;
}

#wrapper nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    background: #1a4d9a;
    opacity: 0.9;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 99;
}
#wrapper nav ul li {
    display:block;
    padding: 3vh 3vw;
}
#wrapper nav ul li a {
    font-size: 8vw;
    padding-left: 3vw;
    text-decoration: none;
    color: #ffffff;
    user-select: none;
}
.btn-gnavi {
    position: fixed;
    top: 3vh;
    left: 20px;
    width: 30px;
    height: 24px;
    z-index: 100;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
.btn-gnavi .bar {
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
.btn-gnavi.open .bar {
    display: none;
}
.btn-gnavi #close-menu {
    position: absolute;
    display: none;
    top: -15px;
    width: 30px;
    height: 24px;
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    user-select: none;
}
.btn-gnavi.open #close-menu {
    display: inline;
}
#wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #ffffff;
}
#wrapper .contents section:nth-child(odd) p {
    left: 10%;
}
#wrapper .contents section:nth-child(even) p {
    left: 10%;
}

/*#hamburger-infordio {*/
/*    padding-left: 42vw;*/
/*}*/
