/*フッターの背景色*/
.l-footer .bottomFooter {
    background: #b5b5b5;
}

/*コピーライト*/
.bottomFooter__copyright {
    color: white;
}
/* メニューカラー変更 */
@media only screen and (min-width: 992px){
.globalNavi__list>li .children>li, .globalNavi__list>li .sub-menu>li {
display: block;
overflow: hidden;
width: auto;
min-width: 300px;
height: 0;
line-height: 5rem;
white-space: nowrap;
background-color: #8c8c8c;
transition: .15s;
text-align: left;
}
}
@media only screen and (min-width: 992px){
.globalNavi__list>li:hover .children::before, .globalNavi__list>li:hover .sub-menu::before {
content: "";
display: block;
width: 0;
height: 0;
margin-left: 10px;
border-right: 4px solid transparent;
border-bottom: 6px solid #8c8c8c;
border-left: 4px solid transparent;
}
}