//文字コード判別用
(function() {
    var d = new Date();
    d.setTime(d.getTime() + 1000 * 60 * 60 * 24 * 365);
    document.cookie = 'hasCookie=1;path=/;expires=' + d.toGMTString() + ';';
})();