/*
		メニューのトグル化のタイミングを調整（iPad)
*/
#menu_area{
	clear: right;
}
/* ================================
			950px以下
   ================================ */
@media screen and (max-width: 950px) {
	#menu_area{ clear: left; }

	/* トグルボタン */
	#menubtn{
		padding: 6px 12px;
		border: solid 1px #aaaaaa;
		border-radius: 5px;
		background-color: #ffffff;
		position: absolute;
		top: 25px;
		right: 15px;
		cursor: pointer;
	}

	#menubtn:hover {background-color: #dddddd}

	#menubtn:focus {outline: none}

	#menubtn i{
		color: #888888;
		font-size: 18px;
	}

	#menubtn span{
		display: inline-block;
		text-indent: -9999px;
	}

	/* ナビゲーションメニュー（縦並び） */
	.menu{ display: none }

	.menu ul{
		margin: 0;
		padding: 10px;
		list-style: none;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
		background-color: #f2f2f2
	}

	.menu li a{
		display: block;
		padding: 5px;
		color: #000000;
		font-size: 14px;
		text-decoration: none;
		border-bottom: 1px dotted #fff;
	}

	.menu li a:hover{background-color: #fff; color: #54bce8;}

}
/* ================================
			951px以上
   ================================ */
@media screen and (min-width: 951px) {
stage{border-top: 10px solid blue;}
	#menu_area{
		float: right;
		width: auto;
		padding: 0;
	}

	/* トグルボタン */
	#menubtn{ display: none; }

	/* ナビゲーション */
	#menu {display: block !important}

	.menu ul {
		margin: 5px 10px 0 0;
		padding: 0;
		list-style: none;
	}

	.menu li a{
		display: block;
		padding: 10px 15px;
		color: #000000;
		font-size: 16px;
		text-decoration: none;
		/*text-decoration: none;*/
	}

	.menu li a:hover{ background-color: #f2f2f2; color: #0F52BC; border-radius: 5px; }
	.menu li a.current{ background-color: #f2f2f2; color: #0F52BC; border-radius: 5px; }
	/*.menu li a.yoyaku{ border: 1px dotted #ccc;  border-radius: 5px; }*/
	.menu li a.yoyaku{ border: 1px solid #323232;  border-radius: 5px; background-color: #323232; color: white;}
	.menu li a.yoyaku:hover{ border: 1px solid #0F52BC; background-color: #0F52BC!important; color: #f2f2f2; border-radius: 5px; }
	.menu li a.yoyaku.current{ border: 1px solid #0F52BC;  border-radius: 5px; background-color: #0F52BC; color: #f2f2f2;}

	.menu ul:after{
		content: "";
		display: block;
		clear: both;
	}

	.menu li{
		float: left;
		width: auto
	}

	/* LOGOとmenu_areaを横に並べる設定 */
	#header_area:after{
		content: "";
		display: block;
		clear: both;
	}

}

/*
		予約関係
*/
/*メニューをページ下部に固定*/
#sp-fixed-menu{
	position: fixed;
	width: 100%;
	bottom: 0px;
	font-size: 0;
	opacity: 0.9;
	z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
	display: flex;
	list-style: none;
	padding:0;
	margin:0;
	width:100%;
}

#sp-fixed-menu li{
	justify-content: center;
	align-items: center;
	width: 50%;
	padding:0;
	margin:0;
	font-size: 14px;
	border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
	background: #38b435;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
	background: #f3a324;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
	color: #fff;
	text-align: center;
	display:block;
	width: 100%;
	padding:20px;
}
/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
	.for-sp{
		display:none;
	}
}
/*SPの場合にはメニューを表示させない*/
@media (max-width: 767px) {
	footer{
		height: 350px!important	;
	}
	#footer_area{
		height: 350px!important	;
	}
	#page-top {
		bottom: 100px;
	}
}
/*
		バナーメニュー
*/
.over{
	text-align: center;
	max-width: 800px;
	width: 100%;
	list-style: none;
	justify-content:space-around;
	margin: 0 auto;
	padding: 0;
}
.over{
	background: #000;
}
.thin{
	width: 80%;
}
.over img{
	width: 100%;
	display: block;
	object-fit: contain;
	opacity: 1;
	transition: .3s;
}
.over a img{
	border: 1px solid #ccc;
}

.over a:hover img{
	opacity: 0.9;
	border: 1px solid #111;
}
@media (max-width: 767px) {
	.over{
		width: 90%;
	}
}
