jQuery(document).ready(function($) {
	var agent = navigator.userAgent;
	var headH = $("header").height();
  
  // IEのバージョン
  var version;

  // ブラウザのUAを小文字で取得
  var userAgent = window.navigator.userAgent.toLowerCase();

  // IEの判定
  var isIE = (userAgent.indexOf('msie') >= 0 || userAgent.indexOf('trident') >= 0);
	
	//タイトル属性を全て削除
	$("img").removeAttr("title");
	
	//スムーズスクロール
	$(document).on('click', 'a,area', function(){
			var Hash = $(this.hash);
			var HashOffset = $(Hash).offset().top-headH-50;
			$("html,body").animate({
				scrollTop: HashOffset
			}, 1000);
			return false;
	});
  
  if($(".wpcf7").length){
    $(".wpcf7-response-output").insertBefore($(".formArea-table"));
    if($(".wpcf7-response-output").text() === "お問い合わせを受付いたしました。ご回答は担当より5営業日以内にご返信させて頂きます。※回答が必要ないと判断できるものについては、ご回答しておりません。"){
      $(".wpcf7-response-output").html("お問い合わせを受付いたしました。ご回答は担当より5営業日以内にご返信させて頂きます。<br>※回答が必要ないと判断できるものについては、ご回答しておりません。");
    }
  }
	
})

