@charset "utf-8";
/*------------------------------
	festival_nav
------------------------------*/
.fest_nav {
	background-color: #ff0;
}

.fest_nav ul {
	margin: auto;
}

.fest_nav::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.fest_nav li {
	margin: 0;
	list-style: none;
}

.fest_nav li a {
	float: left;
	width: 50%;
	padding: 10px 0;
	text-align: center;
	color: #111;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
}

.fest_nav li:nth-child(odd) a {
	border-right: 1px solid #ddd;
}

.fest_nav li:nth-last-child(2) a ,
.fest_nav li:last-child a {
	border-bottom: none;
}

