jQuery(document).ready(function($) {

//スムーズスクロール
	$(function(){
		$("a[href^=#]").click(function(){
			var Hash = $(this.hash);
			var HashOffset = $(Hash).offset().top;
			$("html,body").animate({
				scrollTop: HashOffset
			}, 1000);
			return false;
		});
	});

//開閉
	$("#faqArea dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#faqArea dd").css("display","none");
	$("#faqArea dt").click(function(){
		$(this).next().slideToggle("fast");
	}).next().hide();
		
	$("#smafoList h3").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#smafoList div").css("display","none");
	$("#smafoList h3").click(function(){
		$(this).next().slideToggle();
	}).next().hide();

});


/*	//	js_Navi_setup
-----------------------------------------------------------------------------------------------------------------*/
$(function(){

		$(".opacityOver").fadeTo(1,1);

		$(".opacityOver").hover(
		  function () {
			$(this).stop().fadeTo(200, 0.85);
		  },
		  function () {
			$(this).stop().fadeTo(400, 1);
		  }
		);

		$(".opacityOver02").hover(
		  function () {
				$(this).stop().fadeTo(200, 0.5);
		  },
		  function () {
				$(this).stop().fadeTo(400, 1);
		  }
		);

});
