﻿//APIをチェック
function checkiPhone() {
	var agent = navigator.userAgent;
	
    if( agent.search(/iPhone/) != -1 ){
    	window.location = "/mobile-site/index.html";
    } else{
    	window.location = "pc_index.html";
    }
}


