// iPhoneまたは、Androidの場合は振り分けを判断
if (document.referrer.indexOf('nishio-dc.jp') == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0)) {
    if(confirm('にしお歯科ホームページへようこそ。\nこのサイトにはスマートフォン用のサイトがあります。\n表示しますか？\nPCサイトを見る場合は「キャンセル」を押して下さい。')) {
        location.href = 'http://smp.nishio-dc.jp';
    }
}

