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

/*アクティブになったエリア*/
#drawer-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}
/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
	background-color: rgba(59,61,64,1);
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	left: -50px;
    bottom: -50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#drawer-nav__list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#drawer-nav.panelactive #drawer-nav__list{
     display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#drawer-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
/*     position: absolute; */
    z-index: 999;
/*
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
*/
}
/*背景が出現後にナビゲーションを表示*/
#drawer-nav.panelactive ul {
    opacity:1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#drawer-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes gnaviAnime{
	0% {
		opacity: 0;
	}100% {
		opacity: 1;
	}
}

/*リストのレイアウト設定*/
#drawer-nav li{
	text-align: center; 
	list-style: none;
}
#drawer-nav li a{
	text-decoration: none;
	display: block;
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top: 30px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 60px;
    height: 50px;
}	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 0;
	background-color: var(--font-black);
	width: 50%;
}
.openbtn.active span{
	background-color: #fff;
}
.openbtn span:nth-of-type(1) {
	top: 15px;	
}
.openbtn span:nth-of-type(2) {
	top: 23px;
}
.openbtn span:nth-of-type(3) {
	top: 31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (max-width: 650px){
	.openbtn{
		top: 10px;
		right: 0;
	}	
}