

/* メインメニュー */

.main_menu * {
	box-sizing: border-box;
}
.main_menu li {
	display: inline-block;
	list-style: outside none none;
	margin: 35px 8px;
	padding: 0;
}
.main_menu a {
	padding: 0.5em 0;
	color: #333;
	position: relative;
	letter-spacing: 2px;
	text-decoration: none;
	font-size: 15px;
}
.main_menu a:before,
.main_menu a:after {
	position: absolute;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.main_menu a:before {
	bottom: 0;
	display: block;
	height: 2px;
	width: 0%;
	content: "";
	background-color: #fc0;
}
.main_menu a:after {
	left: 0;
	top: 0;
	padding: 0.5em 0;
	position: absolute;
/*	content: attr(data-hover);*/
/*	color: #333;*/
	white-space: nowrap;
	max-width: 0%;
	overflow: hidden;
}
.main_menu a:hover:before,
.main_menu .current a:before {
	opacity: 1;
	width: 100%;
}
.main_menu a:hover:after,
.main_menu .current a:after {
	max-width: 100%;
	font-size: 15px;
}


/* セカンドメニュー */

.menu2nd_wrap {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

