@charset "utf-8";

/*========= ナビゲーションのためのCSS ===============*/

.g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:#999;
    /*動き*/
    transition: all 0.6s;

}

/*アクティブクラスがついたら位置を0に*/
.g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
.g-nav.panelactive .g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

.g-nav li{
    list-style: none;
    text-align: center;
}

.g-nav li a{
    color: #333;
    text-decoration: none;
    padding:10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}




/*========= ボタンのためのCSS ===============*/
.openbtn{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:5%;
    right: 40px;
    cursor: pointer;
    width: 40px;
    height:40px;
}
    
/*×に変化*/    
.openbtn span{
    display: block;
    position: absolute;
    width: 40px;
    border-bottom: solid 1px #fff;
    -webkit-transition: .35s ease-in-out;   /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;      /*変化の速度を指定*/
    transition: .35s ease-in-out;           /*変化の速度を指定*/
  }

.openbtn span:nth-of-type(1) {
    top:5px;
}

.openbtn span:nth-of-type(2) {
    top: 18px;
}

.openbtn span:nth-of-type(3) {
    top: 32px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.openbtn.active span:nth-of-type(3){
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}















