初日の出最終稿

おみくじ最終稿

お年玉最終修正稿

おまけ

木枯らし最終稿

$(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’);
});
});