Hi @takanakui,
thank you for your reply.
I’ve found another way to remove the css, putting this in my function.php:
add_action( 'wp_enqueue_scripts', 'mywptheme_child_deregister_styles', 11 );
function mywptheme_child_deregister_styles() {
wp_dequeue_style( 'menu-image' );
}