@charset "utf-8";

/*----------------------------------------------
スマホメニュー
----------------------------------------------*/
@media screen and (max-width: 1023px){
	#btn-gnav {
		position: fixed;
		top: 5px;
		right: 5px;
		z-index: 5;
		display: block;
		width: 50px;
		height: 50px;
		font-size: 12px;
		color: #fff;
		text-align: center;
		background-color: #024697;
		border-radius: 5px;
		cursor: pointer;
		border: solid 1px #fff;
		line-height: 1;
	}
	#btn-gnav:after {
		position: absolute;
		bottom: 5px;
		content: 'MENU';
		display: block;
		width: 100%;
		color: #fff;
		font-size: 11px;
		text-align: center;
	}
	#btn-gnav span {
		display: inline-block;
		position: relative;
		width: 60%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	#btn-gnav span:before {
		content: "";
		display: block;
		position: absolute;
		top: 8px;
		width: 100%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	#btn-gnav span:after {
		content: "";
		display: block;
		position: absolute;
		top: 16px;
		width: 100%;
		height: 4px;
		background-color: #fff;
		border-radius: 4px;
	}
	#sp-gnav{
		position: fixed;
		top: 60px!important;
		left: 0;
		padding: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
		z-index: 2;
		padding-top: 0;
		border-top: 1px solid #ccc;
	}
	.sp-inner{
		overflow-y: auto;
	}
	.sp-gnav1{
		background: rgba(164, 210, 238, 0.25);
	}
	.sp-gnav1 li{
		float: left;
		width: 50%;
		border-right: 0;
		border-bottom: 1px solid #ccc;
	}
	.sp-gnav1 li:nth-child(odd){
		border-right: 1px solid #ccc;
	}
	.sp-gnav2 li{
		width: 100%;
		border-bottom: 1px solid #ccc;
	}
	#sp-gnav li a{
		display: block;
		background: none;
		line-height: 40px;
		text-align: center;
	}
}