
/*****FAQ****/

$('.qa__items .qa__open').click(function (e) { 
  e.preventDefault();
//被點擊到的h3，會動態執行css的active設定+-，未被點擊到的則移除掉active設定
  /*$('.faq-con .q-open').removeClass('q-open-active');*//*.find('.q-open').removeClass('q-open-active')*/

  $(this).toggleClass('q-open-active').parent().parent().siblings().find(".qa__open").removeClass('q-open-active');
  $(this).parent().parent().find(".answer").slideToggle().parent().siblings().find(".answer").slideUp();
});



/*****NOTE****/

$('.note__open').click(function (e) { 
  e.preventDefault();

  $(this).toggleClass('note-open-active');
  $(".note__answer").slideToggle();
});




/****BackTop***/
$(window).scroll(function(){
  if ($(window).scrollTop() >= 400) {
      $(".backtop").fadeIn();
  }
  else {
      $(".backtop").fadeOut();

  }
});

$(".backtop").click(function () {
  $("html, body").animate({
        scrollTop: 0
    }, "slow");
    return false
});



