@charset "UTF-8";
/* CSS Document */
#g-nav{
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position:fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top:0;
	left: -120%;
	width:50%;
	max-width: 350px;
	min-width: 270px;
	height: 100vh;/*ナビの高さ*/
	overflow-y: auto;
	scrollbar-width: none;
	/*動き*/
	transition: all 0.6s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:#fff;
	padding:50px 10px 10px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
	left: 0;
}
#g-nav nav ul {
	padding: 0 10px;
}
#g-nav nav ul li{
	position: relative;
	padding: 0.5em 0;
	color: #333;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
#g-nav nav ul li a{
	color: #333;
}
#g-nav nav ul li a i{
	color: #f08300;
}
#g-nav nav ul li :hover i{
	color: #e8cb3a;
}
#g-nav .title h1 img{
	max-width: 150px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	left: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background:#f08300;
	border-radius: 5px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color:#fff ;
  	width: 45%;
  }

.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%;
}

