@charset "UTF-8";
/* CSS Document */
#g-nav{
	position:fixed;
	z-index: 990;
	/*ナビのスタート位置と形状*/
	top:0;
	left: -100%;
	width:100%;
	height: 100vh;/*ナビの高さ*/
	overflow-y: auto;
	scrollbar-width: none;
	/*動き*/
	background-color:rgba(255,255,255,0.75);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	padding:10px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
	left: 0;
}
#g-nav nav ul {
	padding: 0 10px;
	width: 350px;
	margin: auto;
}

#g-nav nav ul li{
	padding: 0.5em 0;
	color: #333;
	font-weight: 400;
	font-style: normal;
	border-bottom: solid 1px #ccc;
}
#g-nav nav ul li a{
	color: #333;
}
#g-nav nav ul li a i{
	color: #b4dd39;
}
#g-nav nav ul li :hover i{
	color: #56bf65;
}
#g-nav .g_title{
	width: inherit;
	margin: auto;
}
#g-nav .g_title h1{
	width: fit-content;
	text-align: center;
	padding: 30px 0;
	margin: auto;
}
#g-nav .g_title h1 img{
	width: 150px;
	padding: 0;
}
#g-nav .g_title h1 img.cut{
	width: 100px;
	padding: 0;
}
.sp_btn_wrap{
	max-width: 350px;
	margin: auto;
}
@media (min-width: 380px){
	#g-nav .g_title h1 img.cut{
		width: 60px;
	}
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	bottom:10px;
	left: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background:#56bf65;
	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%;
}

