// 上の方に更新日を表示
    if ($('.news-list .first date').length > 0) {
        date_array = $('.news-list .first date').text().split('.');
        const date = new Date(date_array[0], date_array[1] - 1, date_array[2], 0, 0, 00);
        console.log(new Intl.DateTimeFormat(['ja-JP-u-ca-japanese'], { era: 'long' }).format(date));
        const final_array = new Intl.DateTimeFormat(['ja-JP-u-ca-japanese'], { era: 'long' }).format(date).split('/');
        $('.update-info').html('NEW! ' + final_array[0] + '年' + final_array[1] + '月' + final_array[2] + '日更新');
    }