p01

p02

p03

p04

p05

p06

p07

p08

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