.openbtn.fixed span {
    background: #fff/*#db6a3d*/;
}
.openbtn.fixed{
    background: rgb(2 88 17 / 80%);
}



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

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: rgb(2 88 17 / 90%);
    /*動き*/
	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%;*/
	top:10%;
    left:50%;
/*    transform: translate(-50%,-50%);*/
    transform: translate(-50%,0%);
	margin:0;
	max-width:none;
	display:block;
	right:auto;
}

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

#g-nav li{
	list-style: none;
    text-align: center;
	display: block;
	line-height:150%;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#g-nav li a.fixed {
    color: #fff;
}
#g-nav li a.fixed:hover{
    color: #f3e358;
}
#g-nav li:last-child a{
        font-size: 1.2rem;
	line-height:200%;
    }
#g-nav li:last-child a:before {
        font-family: "Font Awesome 6 Free";
        content: "\f095";
        margin-right: 0.3em;
        color: #fff;
        font-weight: 900;
    }
/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top: 32px;
    right: 43px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgb(59 32 23 / 70%);
    border-radius: 3px;
}
	
/*×に変化*/	
.openbtn span{
	display: inline-block;
    transition: all .4s;
    position: absolute;
	left: 7px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff/*#db6a3d*/;
    width: 70%;
  }

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

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

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

.openbtn.active span {
    background-color: #fff;
}
.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%;
}

/***************************************************/
/*★ BreakPoint 1000pxまで ★*/
/***************************************************/
@media screen and (max-width: 1000px) {
.openbtn{
    top: 23px;
}
}
/***************************************************/
/*★ BreakPoint 600pxまで ★*/
/***************************************************/
@media screen and (max-width: 600px) {
.openbtn {
    top: 16px;
    right: 25px;
    width: 40px;
    height: 40px;
}
.openbtn span {
    left: 7px;
    width: 65%;
}
.openbtn span:nth-of-type(1) {
    top: 9px;
}
.openbtn span:nth-of-type(2) {
    top: 19px;
}
.openbtn span:nth-of-type(3) {
    top: 29px;
}	
.openbtn.active span:nth-of-type(1) {
    top: 12px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(3) {
    top: 24px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}