.c-header__top{
    background-color: #EDEDED;
}

.c-header__topInner{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin: 0 auto;
    padding: 0 100px;
    height: 35px;
}

.c-header__topSlogan{
    font-size: 1.1rem;
    color: #000000;
}

.menu > li a{
    height: 90px;
}

.menu>li.has-submenu>a::after {
    content   : "";
    position  : absolute;
    background: url("../img/common/icon_arrow_down_black.svg") no-repeat;
    width     : 9px;
    height    : 5px;
    top       : 50%;
    right     : -15px;
    transform : translateY(-50%);
}

@media only screen and (max-width: 900px) {
    .c-header__top{
        margin-left: -20px;
        display: none;
    }

    .c-header__topInner{
        height: 30px;
    }

    .menu > li a{
        height: 75px;
    }

    .menu > li a.u-sponly{
        display: flex !important;
    }

    .menu>li.has-submenu>a::after {
        content: none;
    }
}