ol, ul {
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

.menu {
	position: relative;
	width: 100%;
	height: 50px;
	max-width: 1000px;
	margin: 0 auto;
}

.menu > li {
	float: left;
	width: 16.6%; /* グローバルナビ6つ */
	height: 50px;
	line-height: 50px;
	background: #001166;
}

.menu > li a {
	display: block;
	color: #ccccee;
	text-decoration:none;
}

.menu > li a:hover {
	color: #ccccee;
	text-decoration:none;
}

ul.menu__second-level {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

ul.menu__third-level {
	visibility: hidden;
	opacity: 0;
}

ul.menu__fourth-level {
	visibility: hidden;
	opacity: 0;
}

.menu > li:hover {
	background: #224499;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu__second-level li {
	border-top: 1px solid #111;
}

.menu__third-level li {
	border-top: 1px solid #111;
}

.menu__second-level li a:hover {
	background: #ccddff;
}

.menu__third-level li a:hover {
	background: #ff0000;
}

.menu__fourth-level li a:hover {
	background: #00ff00;
}

/* 下矢印 */







/* floatクリア */
.menu:before,
.menu:after {
	content: " ";
	display: table;
}

.menu:after {
	clear: both;
}

.menu {
	*zoom: 1;
}


/* ３列用 */
li.menu__mega ul.menu__second-level {
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 2% 20px 40px;
	background: #eeeef5;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

li.menu__mega:hover ul.menu__second-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}

li.menu__mega ul.menu__second-level > li {
	float: left;
	width: 24%;
	border: none;
}

li.menu__mega ul.menu__second-level > li:nth-child(4n+3) {
	margin: 0 1%;
}


