
/* クリックエリアと位置を指定 ---------------------- */
.sp_button {
	position: fixed;
	top: 16px;
	right: 20px;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 99;
}
/*幅641px以上の場合*/
@media screen and (min-width: 1108px) {
.sp_button { display: none; }
}

/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.sp_button .line {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px; /* 横幅 */
	height: 2px; /* 1本辺りの高さ */
	background: #FFF; /* 線の色 */
	transition: all 0.3s ease-out;
 }


/* 3本線の各線の位置を指定 ---------------------- */
.sp_button .line_01 { top: 0; }
.sp_button .line_02 { top: 9px; }
.sp_button .line_03 { top: 18px; }

/* 最上部の線のスタイル ---------------------- */
.sp_button.is-active .line_01 {
	top: 10px;
	transform: rotate(225deg);
	background: #FFF;
}
/* 上から2番目の線のスタイル ---------------------- */
.sp_button.is-active .line_02 {
	width: 0;
	left: 50%;
	background: #FFF;
}
/* 最下部の線のスタイル ---------------------- */
.sp_button.is-active .line_03 {
	top: 10px;
	transform: rotate(-225deg);
	background: #FFF;
}


/* スマホメニュー ---------------------- */
.g_navi {
	background: rgba(0,0,0,0.9);
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	z-index: 97;
	text-align: center;
}
.g_navi_menu {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.g_navi a {
	font-size: 21px;
	line-height: 3.0;
	letter-spacing: 0.05em;
	color: #fff;
}
.g_navi a:hover {
	color: #f6ac2d;
}
.g_navi .wbt {
	color: #02224d;
	background-color: #fff;
	padding: 5px 35px;
	border-radius: 40px;
	line-height: 1;
}
.g_navi .wbt:hover {
	color: #FFF;
	background-color: #f6ac2d;
}
.g_navi .mt {
	margin-top: 43px;
}