﻿//iPhoneでアクセス、かつ、同一ドメイン以外からの遷移の場合、iPhoneサイトTOPへ自動遷移
if(navigator.userAgent.indexOf("iPhone") != -1){
	if(document.referrer.indexOf(location.hostname) == -1){
		location.replace("/iphone/index.html");
	}
}

//iPhoneでアクセス、かつ、同一ドメインからの遷移の場合、iPhoneサイトTOPへのリンクをヘッダ上部に表示
function iphoneBnr(){
	if(navigator.userAgent.indexOf("iPhone") != -1){	
		var iphone = document.getElementById("iphone");
		iphone.style.display = "block";
	}
}


