クリックしたら他のサブメニューを閉じる
他のactiveクラスを削除する
jQuery(function(){
$('.area_btn').on('click', function() {
$(this).next().stop().slideToggle();
$(this).toggleClass("active");//追加部分
// メニューをクリックしたら他のサブメニューを閉じる
$('.child_area_list').not($(this).next('.child_area_list')).slideUp();
$('.area_btn').not($(this)).removeClass('active');
});
});