/***メガドロップダウンメニュー***/

.menu {
    position: relative;
    width: 100%;
    height: 55px;
    max-width: 1150px;
    margin: 0 auto;
    list-style:none;
    text-align: center;
}

.menu > li {
    float: left;
    /*width: 14%; /* グローバルナビ7つの場合 */
    width: 16.6%; /* グローバルナビ7つの場合 */
    height: 40px;
    line-height: 50px;
    background: rgb(255, 255, 255);
    font-family:"ＭＳ ゴシック";
    font-size:15px;

}

.menu > li a {
    display: block;
    color: #000;
    text-align: center;
}

.menu > li a:hover {
    color: #163C4E;
    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: #FFFF;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px dotted #818181;
}

.menu__third-level li {
    border-top: 1px solid #111;
}

.menu__second-level li a:hover {
    background: #FFF;
}

.menu__third-level li a:hover {
    background: #FFF;
}

.menu__fourth-level li a:hover {
    background: #FFF;
}

/* 下矢印 */
/*
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 40px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);

    border-right: 1px dotted #818181;
}
*/

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: #000;
}

/*
.menu {
    *zoom: 1;
}
*/

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 120%;
    background: #FFF;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
padding-left: 1px;
}

li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;

}

.ten {
    list-style:none;/*左側の「・」（点）を非表示*/
}


ul, menu, dir {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
}