$(function () {
$('.check_list dt').each(function(){
$(this).on('click', function(){
$(this).next().stop().slideToggle('normal', function(){
if($(this).is(':visible')){
$(this).prev().addClass('open').find('.check_toggle').text('閉じる');
} else {
$(this).prev().removeClass('open').find('.check_toggle').text('開く');
}
});
});
});
});