<?php include('partials/_header.php'); ?>
<?php if(wp_is_mobile() && !is_Kindle() && !is_ipad()){
include('partials/_global_nav_sp.php');
echo '<div class="scrol-box">';
include('partials/_index_sp.php');
include('partials/_footer.php');
echo '</div>';
} else {
include('partials/_global_nav.php');
include('partials/_index.php');
include('partials/_footer.php');
} ?>