/** もっと読む */
$(function(){
  $(".showMoreData").click(function() {
    $(this).parent().parent().find(".moreData").fadeIn();
    $(this).hide();
  });
});


