/* Navigation fix */
.navfix {
	display: none;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	background-color:rgba(238,238,238,0.8);
	z-index: 300;
	text-align: center;
	border-bottom: 1px #ccc solid;
}

.fixed p {
	font-size: 1em;
	margin: 0;
	color: #FFF;
	padding-top: 10px;
}

.navigation2 ul {
	font-size: 14px;
	text-align: center;
	width: 100%;
	display: table;
	table-layout: fixed;
	margin: 0px;
	padding: 0px;
	background-color:rgba(255,255,255,0.5);

}

.navigation2 ul li {
    border-right: 1px solid #FFF;
    display: table-cell;
}
 
.navigation2 ul li:last-child {
    border-right: none;
}

.navigation2 ul li a {
	color: #333333;
	text-decoration: none;
	display: block;
	padding-top: 15px;
	padding-right: 0;
	padding-left: 0;
	font-weight: bold;
	padding-bottom: 15px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}

.navigation2 ul li span	{
	display: block;
	font-size: 0.625em;
	color: #949494;
}

@media screen and (max-width: 767px) {
/* 上部固定ナビ（navigation2の非表示） */
.navfix {
	display: none;
}
}