.menu {
    position: relative;
}

.menu > li {}

.menu > li a {
    display: block;
}

.menu > li a:hover {
    color: #fff !important;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    border-radius: 4px;
    border: 1px solid #533931;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: none;
}

.menu__third-level li {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.menu__second-level li a:hover {
}

.menu__third-level li a:hover {
}

.menu__fourth-level li a:hover {
}

/* 下矢印
.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;
}



.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    width: 120%;
    padding: 0;
    background: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    float: none;
    margin: 10px 0 0 -20%;
    text-align: center;
    border: 2px solid #ea545f;
}
li.menu__single ul.menu__second-level li:hover{
    background: #ea545f;
}
li.menu__single ul.menu__second-level li:hover a{
    color: #fff !important;
}

li.menu__single ul.menu__second-level li {
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    width:100%;
    float: none;
    margin: 0;
    border-bottom: 1px solid #ea545f;
}

li.menu__single:hover ul.menu__second-level {
    top: 28px;
    visibility: visible;
    opacity: 1;
}
