<!-- // == FOOTER TOP ==================================================================================== // -->
{% block css %}
<style>
.mail_hover:hover {
color: #ff7900 !important
}
</style>
{% endblock %}
<div
id="footerTop" class="fades">
<!-- // ++ 会社名・インフォメーションリンク ++ /////////////////////////////////////////////////////////////// -->
<aside id="companyInfo" class="fooer_onebloc fades">
<div id="campany_nameBox">
<h5 id="bottomLogo" class="up"><img src="{{ asset('assets/img/bottom_logo.png') }}" alt="ZEAMI Goods"></h5>
<h4 id="companyNanme" class="up"><img src="{{ asset('assets/img/company_name.png') }}" alt="株式会社世阿弥Entertainment"></h4>
<p id="companyAdd" class="up">大阪府吹田市豊津町21-10-2F
<a href="https://maps.app.goo.gl/oNMbT4iWFTKjLzRHA" target="_blank">GoogleMap</a>
</p>
</div>
<!-- ///// #campany_nameBox +++++ ///// -->
<ul id="bottom_infoLink">
<li id="bt_mn-Sche" class="up">
<a href="/delivery_confirmation/"><img src="{{ asset('assets/img/sp_icon_schedule.png') }}">納期・発送日確認</a>
</li>
<li id="bt_mn-Mypage" class="up">
<a href="/mypage_index/"><img src="{{ asset('assets/img/sp_icon_mypage.png') }}">マイページ</a>
</li>
<li id="bt_mn-Cart" class="up">
<a href="/cart_index"><img src="{{ asset('assets/img/sp_icon_cart.png') }}">カートを見る</a>
</li>
</ul>
<!-- ///// #bottom_infoLink +++++ ///// -->
<!-- ///// +++++ #companyInfo +++++ ///// -->
</aside>
<!-- // ++ インフォメーションリンク②・問い合わせリンク ++ /////////////////////////////////////////////////////////////// -->
<aside
id="bottomContact" class="fooer_onebloc fades">
<!-- ■■ ++ インフォメーションリンク② ++ ■■ -->
<div
class="footer_linkbox">
<!-- ☆☆ お知らせ ☆☆ -->
<ul id="list-Notes" class="footer_categorylist fades">
<h6 class="foot_listTitle up">お知らせ</h6>
<li class="up">
<a href="/news">お知らせ</a>
</li>
<li class="up">
<a href="/campaign">キャンペーン</a>
</li>
<!-- //// **** .footer_categorylist **** //// -->
</ul>
<!-- ☆☆ ご利用ガイド ☆☆-->
<ul id="list-Guide" class="footer_categorylist fades">
<h6 class="foot_listTitle up">ご利用ガイド</h6>
<li class="up">
<a href="/payment">お支払いについて</a>
</li>
<li class="up">
<a href="/faq">よくある質問</a>
</li>
<li class="up">
<a href="/delivery">配送・送料について</a>
</li>
<li class="up">
<a href="/terms">ご利用規約</a>
</li>
<!-- //// **** .footer_categorylist **** //// -->
</ul>
</div>
<!-- ///// .footer_linkbox ***** ///// -->
<!-- ■■ ++ 問い合わせリンク ++ ■■ -->
<div id="foot_contactBox" class="fades">
<div id="contactArea">
<div class="tel_num up">06-6384-8422<span>(受付時間 10:00-17:00)</span>
</div>
<div class="mail_trigger up">
<a class='mail_hover' href="/inquiry">お問い合わせ</a>
</div>
<!-- //// **** #contactArea ++++ //// -->
</div>
</div>
<!-- ///// #foot_contactBox +++++ ///// -->
<!-- ///// +++++ #bottomContact +++++ ///// -->
</aside>
<!-- // ++ カテゴリーリンク ++ /////////////////////////////////////////////////////////////// -->
<aside id="bottomCategory" class="fooer_onebloc fades">
{% set length = (productCates|length / 3)|round(0, 'ceil') %}
{% for i in 0..(length - 1) %}
<div class="footer_linkbox">
{% set start = i * 3 %}
{% set end = start + 2 %}
{% for index in start..end %}
{% if productCates[index] is defined %}
<ul class="footer_categorylist fades">
<h6 class="foot_listTitle up">{{ productCates[index].category.name }}</h6>
{% for product in productCates[index]['product_cates'] %}
{% if product.Product.is_sample == 0 and product.Product.getStatus.id == 1 %}
<li class="up">
<a href="/product/{{ product.Product.id }}">{{ product.Product.name }}</a>
</li>
{% endif %}
{% endfor %}
{% if productCates[index]['category'].link_design and productCates[index]['category'].link_design != '#' %}
<li class="other up">
<a href="{{ productCates[index]['category'].link_design }}">デザイン方法</a>
</li>
{% endif %}
</ul>
{% endif %}
{% endfor %}
</div>
{% endfor %}
</aside>
</div>
<!-- ///// +++++ #footerTop +++++ ///// -->
<!-- // == FOOTER BOTTOM ==================================================================================== // -->
<div id="footerBottom" class="fades">
<div
id="bottomContainer">
<!-- // ++ インフォメーション ++ /////////////////////////////////////////////////////////////// -->
<ul id="store_cautionLink" class="fades">
<li class="up">
<a href="/company">運営会社</a>
</li>
<li class="up">
<a href="/privacy">プライバシーポリシー</a>
</li>
<li class="up">
<a href="/specified">特定商取引法に基づく表示</a>
</li>
<!-- ///// #store_cautionLink +++++ ///// -->
</ul>
<!-- // ++ SNS ++ /////////////////////////////////////////////////////////////// -->
<ul id="bottom_snsLink" class="fades">
<li id="linkFB" class="up">
<a href="https://www.facebook.com/pages/ZEAMI-Art/173307932728543" target="_blank"><img src="{{ asset('assets/img/icon_fb.png') }}" alt="facebook"></a>
</li>
<li id="linkX" class="up">
<a href="https://twitter.com/ZEAMI_Art" target="_blank"><img src="{{ asset('assets/img/icon_x.png') }}" alt="X"></a>
</li>
<li id="linkLine" class="up">
<div class="line-it-button" data-lang="ja" data-type="share-a" data-env="REAL" data-url="{{ app.request.uri }}" data-color="default" data-size="large" data-count="false" data-ver="3" style="display: none;"></div>
</li>
<!-- ///// #bottom_snsLink +++++ ///// -->
</ul>
<!-- // ++ コピーライト ++ /////////////////////////////////////////////////////////////// -->
<p id="Copy" class="fades">©ZEAMI Entertainment Corp. All Rights Reserved.</p>
</div>
</div>
<!-- ///// +++++ #footerBottom +++++ ///// -->
<script src="https://www.line-website.com/social-plugins/js/thirdparty/loader.min.js" async="async" defer="defer"></script>