@charset "utf-8";
/* CSS Document */

/*menu*//* grandmenu.jsと併用すること */
.menu{
    height: 34px;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 45px;
    z-index: 99;
}
.menu__line{
    background: #CC0000;
    display: block;
    height: 3px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 15px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 15px;
    transform: rotate(45deg);
	    background: #FFF;
}
.menu__line--center.active{
    transform:scaleX(0);
		    background: #FFF;
}
.menu__line--bottom.active{
    bottom: 15px;
    transform: rotate(135deg);
		    background: #FFF;
}

/*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%;
    position: absolute;
    width: 100%;
}
.gnav__menu{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
}
@media (max-width: 700px) {
.gnav__menu{
    width: 250px;
}}
	
	
.gnav__menu__item{
    margin: 40px 0 40px 100px;
    opacity: 0;
}
@media (max-width: 700px) {
.gnav__menu__item{
    margin: 20px 0 25px 100px;
    opacity: 0;
	font-size: 0.9em
}}


.gnav__menu__item span {
    font-size: 0.5em
}
.gnav__menu__item a{
    color: #fff;
    font-size: 1.6em;
    font-weight: 700;
    text-decoration: none;
    transition: .5s;
}

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