$(document).ready(function(){
  $(".box_goaisatsu > div.oritatami").each(function(){
    $(this).css("cursor", "pointer");
    if($(this).next().is(".active")){
      // $(this).css("background-color", "#6766a2");
    }else{
      $(this).next().hide();
    }
  });
  $(".box_goaisatsu > div.oritatami").click(function(){
    $(this).next().slideToggle("normal");
  });
});

