@charset "utf-8";
#page {
	margin: 0 auto 7%;
}
.navContents {
	position: relative;
}
.nav-wrapper { /* .navの領域確保用 */
	height: 50px;
}
.nav {
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0);
}
.navInner {
	margin: 0 auto;
}
.nav ul {
	padding:8px 8px 0 8px;
	margin: 0 auto;
	text-align: center;
}
.nav li {
	display: inline-block;
	max-width: 300px;
	min-width: 150px;
	font-size:1.3rem;
	font-weight: bold;
	line-height: 1.75;
	margin:0 0 8px 0;
}
.nav li a {
	display: block;
	color: #000!important;
	font-weight: bold;
	padding:10px 15px;
	background: #ff0;
	border: #000 solid 3px;
	border-radius: 15px;
}

.nav li + li{
	margin-left:5px;
}
.nav.is-fixed {
	position: fixed;
	background: rgba(0,0,0,0.7);
}

@media screen and (max-width: 750px) {
.nav-wrapper { /* .navの領域確保用 */
	height: 15%;
}
.navInner {
	width: 100%;
	margin:0;
	border-collapse: separate;
	border-spacing: 5px 0;
}
.nav ul {
	display: flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	width: 100%;
}
.nav li{
	width: calc((100% - 40px) / 3);
	margin-bottom: 20px;
	display: flex;
	align-items: stretch;
	font-size:1rem;
	line-height: 1.25;
	min-width:31%;
	max-width: 28%;
	width: 28%;
	vertical-align: middle;
	margin: 1%;
}
.nav li a{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4%;
	}
.nav li + li{
	margin-left:0;
}
.sp{
	width: 100%;
}
}