スライド アニメーションはスムーズではありません。少しグーグルで調べたところ、コンテナに固定幅を設定する必要があることがわかりましたが、コンテナの幅は他の 2 つの div の間でいっぱいになるように設定されています。
$('.content_block .content_block_title').on("click", function(event) {
var target = event.target || event.srcElement;
var child = $(target).next();
child.css('width', child.width()); //tried with this but it didnt make the anim smoother.
if (!child.is(':hidden'))
child.slideUp(350);
else
child.slideDown(150);
});