$(document).ready(function(){
  $('.steps > .more').click(function(){
    // 引数には開閉する速度を指定します
    $(this).prev().slideToggle('slow');
  });
});