$(function(){
    $("div.acc-inner").hide();

    $("div.accordion h3").each(function(i){
        var elementVal = $(this).next("div");
        $(this).click(function(){
            elementVal.toggle("slow");
        });
    });

    $("p.close").each(function(i){
        // p.closeの親要素を取得
        var elementVal = $(this).parent();
        // p.closeをクリックされたら
        $(this).click(function(){
            elementVal.toggle("slow");
        });
    });

});