/* Copyright DuoProduction */
/*スマートフォンの場合、専用のCSSの読み込み・*/
if ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
	var sp = true;
	document.write('<link rel="stylesheet" type="text/css" href="http://www.worldvision.jp/common/css/sp.css" media="all" />');
	if(navigator.userAgent.indexOf('Android') > 0){
		$(window).bind('resize load', function(){
			//alert("$(window).width()="+$(window).width());
			$("html").css("zoom" , $(window).width()/710 );
		});
	} else {
		var sp_scale = screen.width/710;
		document.write('<meta name="viewport" content="width=710,maximum-scale=3">');
	}
} else {
	var sp = false;
};

$(function(){
	//iOSのみFlash非表示
	if ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0) {
		$(".fla_area").hide();
	};
});
