.openbtn{
    display: none;
}

@media screen and (max-width:768px) {
	/*ボタン外側*/
	.openbtn{
	    display: block;
		position:fixed;
		top:10px;
		right: 10px;
		z-index: 999;/*ボタンを最前面に*/
		cursor: pointer;
	    width: 60px;
	    height:60px;
		background:#457703;
		border-radius: 10px;
	}

	/*ボタン内側*/
	.openbtn span{
	    display: inline-block;
	    transition: all .4s;/*アニメーションの設定*/
	    position: absolute;
/*	    left: 14px;
*/	    left: 16px;
	    height: 2px;
	    border-radius: 5px;
		background: #fff;
	  	width: 45%;
	}

	.openbtn span:nth-of-type(1) {
/*		top:13px;	
*/		top:16px;	
	}

	.openbtn span:nth-of-type(2) {
/*		top:19px;
*/		top:22px;
	}

	.openbtn span:nth-of-type(3) {
/*		top:25px;
*/		top:28px;
	}

	.openbtn span:nth-of-type(3)::after {
		content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
		position: absolute;
		top:5px;
		left:-2px;
		color: #fff;
		font-size: 0.6rem;
		text-transform: uppercase;
	}

	/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

	.openbtn.active span:nth-of-type(1) {
/*	    top: 14px;
	    left: 18px;
*/	    top: 14px;
	    left: 20px;
	    transform: translateY(6px) rotate(-45deg);
	    width: 30%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3){
/*	    top: 26px;
	    left: 18px;
*/	    top: 26px;
	    left: 20px;
	    transform: translateY(-6px) rotate(45deg);
	    width: 30%;
	}

	.openbtn.active span:nth-of-type(3)::after {
		content:"Close";/*3つ目の要素のafterにClose表示を指定*/
	    transform: translateY(0) rotate(-45deg);
		top:5px;
		left:4px;
	}
}

ul{ 
  margin:0;
  padding:0;
  li{
  list-style-type: none;
  }
}

.main_cover{
    position: fixed;
    width: 100%;
    visibility: hidden;
    z-index: -1;  
    -webkit-transition: .3s;
    transition: .3s;
}

.main_cover.active{
    height:100%;
    visibility: visible;
    background:rgba(0,0,0,0.2);
    z-index:1000;
}

.header_inner{
    width: 265px;
    padding: 10px;
    height: 60px;
    position:fixed;
    top: 0;
	right: 0;
    z-index: 10000;
}

.nav_list li {
	width : 100%;
	display: block;
	padding: 6.5% 40px;
	border: 0.5px solid #e9f4f0 ;
	font-weight: 700;
	font-size: 12pt;
	text-align: left;
	transition: 0.01s all ease;
}
.nav_list li a {
	display: block;
	width: 100%;
	height: 100%;
}

.nav_list_inner {
	text-decoration: none;
	color: #374d54 ;
	transition : 0.3s ease all;
	position : relative;
}

.nav_list_inner:hover {
	color:#f29c78;
}
/*
.nav_list_inner::before {
	content: url(../img/list_leaf.svg);
	width : 25px;
	height: auto;
	top: 4px;
	left: -37px;
	display: block;
	position : absolute;
}
*/
.header_wrap{
    position:relative;
    width: 100%;
    height: 60px;
}

/*nav=====*/
.hnav{
    display: none;
    position: relative;
    width: 100%;
    text-align: center;
    top: 10px;
    right: 80px;
    background: #fff;
    overflow: hidden;
    z-index: 10000;
    border-radius: 8px;
    li{
        background: #323232;
        border-bottom: 1px solid #000;
    }
    a{
        color: #fff;
        display: block;
        height: 40px;
        line-height: 40px;
    }

}
