// safari 1x alert
function AppleBrowserInfo(userAgent) {

	this.AppleWebkitVersionChecker = function(){
		var num = this.ua.match(new RegExp("AppleWebKit/[0-9]{1,4}(\.[0-9]{1,2})?"));
		return ( num == null ) ? -1 : parseFloat(String(num).replace("AppleWebKit/",""));
	}

	this.ua = (userAgent) ? userAgent : navigator.userAgent;

	this.AppleWebkitVersion = this.AppleWebkitVersionChecker();
	if( this.AppleWebkitVersion ){
		this.Safari1x = ( this.AppleWebkitVersion <= 399 && this.AppleWebkitVersion > 0 );
	}

}

var apb = new AppleBrowserInfo();
if( apb.Safari1x ){
	document.write('<div id="safari_alert" style="width: 350px;margin-bottom:10px;"><div style="border: solid 1px #ff9900;padding:5px;"><p style="font-size: 12px;line-height: 15px;margin:0px;">このブラウザでは、ご予約画面が正常に動作しない可能性がございます。お手数ですが<a href="/share/accessibility/" style="color:333399;" target="_blank">推奨環境</a>をご確認ください。</p></div></div>');
}


