$(document).ready(function(){

	$(".l-main-b-center-b-content dl dt").click(function(){
		$(this).toggleClass("opened");
		$(this).next().toggle("fast");
	});
	
});