/*menu*/
.menu {
    height: 20px;
    position: absolute;
    right: 11px;
    top: 15px;
    width: 30px;
    z-index: 200;
}

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

.menu__line--center {
    top: 9px;
}

.menu__line--bottom {
    bottom: 0;
}

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

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

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

.square {
    width: 50px;
    height: 50px;
    background-color: #0A1428;
    position: fixed;
    right: 0;
    z-index: 199;
    cursor: pointer;
}

/*gnav*/
.gnav {
    background: rgba(10, 20, 40, 1);
    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__wrap ul {
    padding: 0;
    list-style-type: none;
}

.gnav__menu__item {
    margin: 40px 0;
}

.gnav__menu__item a {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 1.5em;
    /* font-weight: bold;
    padding: 40px; */
    text-decoration: none;
    transition: .5s;
    line-height: 1;

}

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

.gnav__menu__item span {
    font-size: 0.6em;
}