/* カスタマイズ用CSS */
.menu-select-category {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    border: 2px solid #13b2b9;
}
.menu-select-category select {
    width: 100%;
    height: 40px;
    margin: 0;
    border: 0;
}

.menu-select-category::after {
    content: '';
    position: absolute;
    top: 0;
    right: 10px;
    width: 16px;
    height: 100%;
    background: url(../../../../img/common/arrow_select.png) no-repeat center;
    background-size: 16px auto;
}
.menu-select-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 40px;
    background: #ffffff;
}

@media screen and (max-width:767px){
    .menu-select-category {
        width: 100%;
    }

    .menu-select-category::after {
        right: 20px;
    }

}