笠地蔵最終稿

幻の大技最終稿

万札の行方最終稿

おまけ

自分でやる人最終稿

$(document).ready(function() {
var target = $(‘#top-writer-caption’);
target.show();
// クリックすると表示されるボタン
$(‘.js-opener’).click(function(e) {
// aタグのときは開閉しない
if (e.target.nodeName == ‘A’) return;
$(‘.writer-caption’).toggleClass(‘open with-cloud’);
});
});