/*------ハンバーガーメニュー------*/
#hambmenu {
    background-color: #242F3E;
    position: fixed;
    right: 0px;
    left: 0px;
    z-index: 100;
    display: flex;
}

#hambmenu nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    background: #333;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    overflow-y: scroll;
}

#hambmenu nav ul li {
    display: block;
    padding: 3px;
    text-decoration: none;
    color: #ddd
}

#hambmenu nav ul li a {
    text-decoration: none;
    color: #ddd
}

#hambmenu > a {
    height: 50px;
    width: 85px;
}

#hambmenu > a  > img{
    border: 0px;
}

#logo{
    height: 50px;
}

.openbtn1 {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 100;
}

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 23px;
}

.openbtn1 span:nth-of-type(3) {
    top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.listIn::before {
    content: "\25B6";
    color: white;
    display: inline-block;
    margin-right: 6px;
    opacity: 0.25;
    vertical-align: middle;
    transition: 0.1s ease-in-out;
}

.listIn-down::before {
    transform: rotate(90deg);
}

.nested {
    display: none;
    padding-left: 20px;
}

.active {
    display: block;
}