/* CSS Document */

@charset "UTF-8";


/*ここからサブナビ
--------------------------------*/


#newsub .menu3 {
    position: relative;
    width: 100%;
    height: 50px;
    max-width: 1050px;
    margin: 0 auto;
}

#newsub .menu3 > li {
    float: left;
    width: 14.2%; /* グローバルナビ4つの場合25 */
    height: 50px;
    line-height: 50px;
    /*background: rgb(29, 33, 19);*/
    text-align:center;
}

#newsub .menu3 > li a {
    display: block;
    color: #000;
}

#newsub .menu3 > li a:hover {
    color: #000;
}

#newsub ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

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

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

#newsub .menu3 > li:hover {
    background: #FFF;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
 /*   border-top: 1px solid #FFF;*/
}

.menu__third-level li {
  /*  border-top: 1px solid #FFF;*/
}

.menu__second-level li a:hover {
    background: #FFF;
}

.menu__third-level li a:hover {
    background: #FCC;
}

.menu__fourth-level li a:hover {
    background: #FCC;
}

/* 下矢印 */
#newsub .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クリア */
#newsub .menu3:before,
#newsub .menu3:after {
    content: " ";
    display: table;
}

#newsub .menu3:after {
    clear: both;
}

#newsub .menu3 {
    *zoom: 1;
}

/*シングルリスト*/

#newsub ul.menu3 > li.menu__single {
    position: relative;
}

#newsub li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #FFF;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

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


