@charset "utf-8";
/* ------------------------------
　ハンバーガーボタン
------------------------------ */
/* .openbtn{
	position: relative;
	background: var(--color-accent-ochre);
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 14px;
    height: 3px;
    border-radius: 2px;
	background: #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) ,
.openbtn.active span:nth-of-type(3){
    top: 23px;
} */
 
