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: 20%; /* グローバルナビ8つ */
	height: 50px;
	line-height: 50px;
	background: #3355dd;
}

.menu > li a {
	display: block;
	color: #ffffff;
	text-decoration:none;
}

.menu > li a:hover {
	color: #ffffff;
	text-decoration:none;
}

.menu > li:hover {
	background: #0099ee;
	-webkit-transition: all .5s;
	transition: all .5s;
}

ul.menu__second-level {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

.menu__second-level li {
	border-top: 1px solid #ccc;
}

.menu__second-level li a:hover {
	background: #3355dd;
}

ul.menu__third-level {
	visibility: hidden;
	opacity: 0;
}

.menu__third-level li {
	border-top: 1px solid #ccc;
}

.menu__third-level li a:hover {
	background: #3355dd;
}

ul.menu__fourth-level {
	visibility: hidden;
	opacity: 0;
}

.menu__fourth-level li {
	border-top: 1px solid #ccc;
}

.menu__fourth-level li a:hover {
	background: #3355dd;
}

ul.menu__only-level {
	visibility: hidden;
	opacity: 0;
}

.menu__only-level li {
	border-top: 1px solid #ccc;
}

.menu__only-level li a:hover {
	background: #3355dd;
}

/* 下矢印 */
.init-bottom:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 0 0 15px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* floatクリア */
.menu:before,
.menu:after {
	content: " ";
	display: table;
}

.menu:after {
	clear: both;
}

.menu {
	*zoom: 1;
}


/* second */
li.menu__mega ul.menu__second-level {
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 2%;
	background: #0099ee;
	-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: 49%;
	border: none;
}

li.menu__mega ul.menu__second-level > li:nth-child(4n+3) {
	margin: 0 1%;
}

/* third */
li.menu__mega ul.menu__third-level {
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 2%;
	background: #0099ee;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

li.menu__mega:hover ul.menu__third-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}

li.menu__mega ul.menu__third-level > li {
	float: left;
	width: 32%;
	border: none;
}

li.menu__mega ul.menu__third-level > li:nth-child(4n+3) {
	margin: 0 1%;
}


/* fourth */
li.menu__mega ul.menu__fourth-level {
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 2%;
	background: #0099ee;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

li.menu__mega:hover ul.menu__fourth-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}

li.menu__mega ul.menu__fourth-level > li {
	float: left;
	width: 19%;
	border: none;
}

li.menu__mega ul.menu__fourth-level > li:nth-child(4n+3) {
	margin: 0 1%;
}


/* only */
li.menu__mega ul.menu__only-level {
	position: absolute;
	top: 40px;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 2%;
	background: #0099ee;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

li.menu__mega:hover ul.menu__only-level {
	top: 50px;
	visibility: visible;
	opacity: 1;
}

li.menu__mega ul.menu__only-level > li {
	float: left;
	width: 97%;
	border: none;
}

li.menu__mega ul.menu__only-level > li:nth-child(4n+3) {
	margin: 0 1%;
}



