.menu {
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 960px;
    margin: 0 auto;padding:0;
}

.menu > li {
    float: left;
    width:137px; /* グローバルナビ4つの場合 */
    height: 50px;
    line-height: 50px;
    background: #70C5DA;
}

.menu > li a {
    display: block;
    color: #fff;
	width:200px;
	text-align:left
}

.menu > li a:hover {
    color: #0c6;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
	font-size:14.5px
    text-align:left;
}


.menu > li:hover {
    background: #70C5DA;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #70C5DA;
	font-size:14.5px;
	text-align:left;
}


.menu__second-level li a:hover {
    background-color: #0C9;
	width:200px;
	text-align:left
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin:0 0 0 20px;
    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;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;right:1px;
    top: 40px;
    width: 200px;
    background: #70C5DA;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;	
}

li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;	
}

