{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
<script>
//クッキー設定
//有効期限は一年
function setCookie(){
$('.ec-footerRole').removeClass('footer_mrg');
var now = new Date();
now.setMonth(now.getMonth() + 12);
document.cookie = 'CookieConsented = true; path = /; expires = '+ now.toUTCString();
document.getElementById('CookieConsented_footer').style.display = 'none'
}
//cookieのvalueにtrueなければ表示
$(function() {
if (document.cookie.indexOf('true') == -1) {
document.getElementById('CookieConsented_footer').style.display = 'block'
$('.ec-footerRole').addClass('footer_mrg');
}
})
</script>
<div id="CookieConsented_footer">
<div class="CookieConsented__bg">
<div class="CookieConsented__inner">
<p>当サイトは利便性の向上や利用状況の把握などを目的として「クッキー(Cookie)」を利用しています。<br>
このまま当サイトをご利用をいただく場合、クッキーの使用にご同意をいただいたものとさせていただきます。<br>
詳しくはクッキー(Cookie)ポリシーをご覧ください。<a href="{{ url('homepage') }}user_data/cookiepolicy" class="CookieConsented__link">クッキーポリシー</a></p>
<button class="ec-blockBtn" onclick="setCookie();">{{ '同意する'|trans }}</button>
</div>
</div>
</div>