So in other words, copy and paste this in to a functions.php in your child theme folder:
<?php
// Enqueue Stylesheets
add_action( ‘wp_enqueue_scripts’, ‘enqueue_child_theme_styles’, PHP_INT_MAX );
function enqueue_child_theme_styles(){
wp_enqueue_style( ‘fukasawa_parent_genericons’, get_template_directory_uri() . ‘/genericons/genericons.css’ );
wp_enqueue_style( ‘fukasawa_parent_style’, get_template_directory_uri() . ‘/style.css’, array( ‘fukasawa_parent_genericons’ ) );
wp_enqueue_style( ‘fukasawa_child_style’, get_stylesheet_uri(), array( ‘fukasawa_parent_style’ ) );
}
?>
and that is it. it should work.
Thank you to Yusri Mathews for the suggestion. It solved the problem.