// JavaScript Document
var sp = false;
//端末チェック
if (navigator.userAgent.indexOf('iPhone') > 0 || 
	navigator.userAgent.indexOf('iPad') > 0 || 
	navigator.userAgent.indexOf('iPod') > 0 || 
	navigator.userAgent.indexOf('Android') > 0){
	$('body').css('font-size','12px');
	sp = true;
	$.cookie("opend","ended");
}
$(function(){
	if(sp){
		$("body #op").remove();
		$("body object").remove();
	}
});
