/*********************************************************************
	スマホユーザーを判別し、/sp/へリダイレクト ※遷移元による条件付
*********************************************************************/

if (document.referrer.indexOf('royalbus.jp') == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || (navigator.userAgent.indexOf('Android') > 0 && navigator.userAgent.indexOf('Mobile') > 0))) {
	location.href = '/sp/';
}
