//アンカームーブ$(document).ready(function(){   $('a[href*=#top]').click(function() {        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {          var $target = $(this.hash);          $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');          if ($target.length) {            var targetOffset = $target.offset().top;            $('html,body').animate({scrollTop: targetOffset}, 1200);           return false;          }        }      });});//リンク時　点線非表示window.onload = outline;function outline (){　　var tgt = function (){ this.blur() };　　for (var i = 0; i < document.links.length; i++)　　document.links[i].onfocus = tgt;}//新規ウインドウオープンfunction MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}//nowtime$(function() {time_dsp();	setInterval(time_dsp, 1000);});function time_dsp(){	var now = new Date();		var year = now.getFullYear();	var month = now.getMonth() + 1;	if(month < 10)month = "0" + month;	var date = now.getDate();	if(date < 10)date = "0" + date;	var hour = now.getHours();	if(hour < 10)hour = "0" + hour;	var minutes = now.getMinutes();	if(minutes < 10)minutes = "0" + minutes;	var seconds = now.getSeconds();	if(seconds < 10)seconds = "0" + seconds;	$('#nowtime').html('<p>' + year + '年' + month + '月' + date + '日<br /><strong>' + hour + ':' + minutes + ':' + seconds + '</strong></p>');}
