
/* クリックエリアと位置を指定 ---------------------- */
.sp_button {
	position: absolute;
	top: 14px;
	right: 20px;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 99;
}
.sp_button.mini_act {
    position: fixed;
	top: 14px;
	right: 20px;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 99;
}
.sp_button.is-active {
    position: fixed;
	top: 14px;
	right: 20px;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 99;
}



@media screen and (min-width: 1100px) {
.sp_button { display: none; }
.head_sp { display: none; }
}

/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.sp_button .line {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px; /* 横幅 */
	height: 4px; /* 1本辺りの高さ */
	background: #01624f; /* 線の色 */
	transition: all 0.3s ease-out;
 }


/* 3本線の各線の位置を指定 ---------------------- */
.sp_button .line_01 { top: 0; }
.sp_button .line_02 { top: 11px; }
.sp_button .line_03 { top: 22px; }

/* 最上部の線のスタイル ---------------------- */
.sp_button.is-active .line_01 {
	top: 14px;
	left: -20%;
	transform: rotate(225deg);
	width: 45px;
	height: 1px;
}
/* 上から2番目の線のスタイル ---------------------- */
.sp_button.is-active .line_02 {
	width: 0;
	left: 50%;
	height: 1px;
}
/* 最下部の線のスタイル ---------------------- */
.sp_button.is-active .line_03 {
	top: 14px;
	left: -20%;
	transform: rotate(-225deg);
	width: 45px;
	height: 1px;
}


/* スマホメニュー ---------------------- */
.g_navi {
	background: rgba(0,0,0,0.85);
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	z-index: 97;
	text-align: left;
	padding-top: 30px;
}
.g_navi_menu {
	width: 90%;
	margin: 0 auto;
	padding-top: 56px;
}
.g_navi_menu li {
	padding: 15px 0;
	border-bottom: 1px solid #FFF;
}
.g_navi_menu li:last-child {
	border-bottom: none;
}
.g_navi a {
	color: #FFF!important;
}
.btns {
	width: 100%;
	display: flex;
	position: absolute;
	bottom: 50px;
	text-align: center;
}
.btns .b_rnavi01 {
	width: 50%;
	background-color:#333;
	padding: 20px 0;
}
.btns .b_rnavi02 {
	width: 50%;
	background-color:#666;
	padding: 20px 0;
}
.btns .b_entry01 {
	width: 50%;
	background-color:#e60127;
	padding: 20px 0;
}
.btns .b_entry02 {
	width: 50%;
	background-color:#ef4b5b;
	padding: 20px 0;
}


/* スマホヘッダ ---------------------- */
.head_sp {
	width: 100%;
	background-color: rgba(255,255,255,0.8);
	height: 56px;
	position: absolute;
	z-index: 98;
	top: 0;
}
.head_sp h1 {
	width:138px;
	height: 24px;
	position: absolute;
	top: 16px;
	left: 16px;
}
.head_sp h1 img { width:100% }

.head_sp.mini_act {
    position: fixed;
    top: 0!important;
	background-color: rgba(255,255,255,0.8);
}
.head_sp.is-active {
    position: fixed;
    top: 0!important;
}
