.openbtn{
	position: relative;
	cursor: pointer;
    width: 64px;
    height:64px;
	border-radius: 0 0 0 4px;
    z-index: 998;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
}

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(2),
.openbtn span:nth-of-type(3) {
    height: 1px;
	background: #fff;
    width: 40%;
    left: 17px;
}

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

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

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


.openbtn.active span:nth-of-type(1) {
    top:25px;	
    left: 14px;
    transform: translateY(6px) rotate(-35deg);
    width: 62%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top:37px;	
    left: 14px;
    transform: translateY(-6px) rotate(35deg);
    width: 62%;
}

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

.global-nav_SP{
    position:fixed;
    z-index: 997;
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;
	background:#231915;
	transition: all 0.6s;
}

.global-nav_SP.panelactive{
    top: 0;
}


.global-nav_SP.panelactive .g-nav-list{
    
    position: fixed;
    z-index: 997; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}


.g-nav-list ul {
    position: absolute;
    z-index: 997;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}


.global-nav_SP li{
	list-style: none;
    text-align: center; 
}

.global-nav_SP li a{
	color: #FDF7F1;
	text-decoration: none;
	padding:30px 10px;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-family: "Noto Serif JP", serif;
    font-size: 2.0rem;
    text-align: center;
}

.phone_humb{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.phone_sp{
    width: 15px;
    margin-right: -5px;
}

.phone_sp img{
    display: block;
}