.click_none {
    display: none;
}

/*menu*/
.menu {
    height: 20px;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .menu {
        right: 30px;
        top: 40px;
    }
}

.menu__line {
    background: #111;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
}

.menu__line--center {
    top: 9px;
    width: 60%;
    left: 11px;
}

.menu__line--bottom {
    bottom: 0;
}

.menu__line--top.active {
    top: 8px;
    background: #fff;
    transform: rotate(45deg);
}

.menu__line--center.active {
    transform: scaleX(0);
}

.menu__line--bottom.active {
    bottom: 10px;
    background: #fff;
    transform: rotate(135deg);
}

/*gnav*/
.gnav {
    background: rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}

.gnav__wrap {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}

.gnav__menu__item {
    margin: 40px 0;
}

.gnav__menu__item a {
    color: #fff;
    font-size: 4em;
    font-weight: bold;
    padding: 40px 0 40px 40px;
    text-decoration: none;
    transition: .5s;
}

.gnav__menu__item a:hover {
    color: #666;
}