Can not include file from plugin into theme

This is because you are trying to include a directory by URL, you need to call path, you can use the constant WP_PLUGIN_DIR.
Modifying the variable acf_url to the following would work.

$acf_url = WP_PLUGIN_DIR . '/advanced-custom-fields/acf.php';