app/template/user_data/layout/footer_contents.twig line 1

Open in your IDE?
  1. <!-- // == FOOTER TOP ==================================================================================== // -->
  2. {% block css %}
  3.     <style>
  4.         .mail_hover:hover {
  5.             color: #ff7900 !important
  6.         }
  7.     </style>
  8. {% endblock %}
  9. <div
  10.     id="footerTop" class="fades">
  11.     <!-- // ++ 会社名・インフォメーションリンク ++ /////////////////////////////////////////////////////////////// -->
  12.     <aside id="companyInfo" class="fooer_onebloc fades">
  13.         <div id="campany_nameBox">
  14.             <h5 id="bottomLogo" class="up"><img src="{{ asset('assets/img/bottom_logo.png') }}" alt="ZEAMI Goods"></h5>
  15.             <h4 id="companyNanme" class="up"><img src="{{ asset('assets/img/company_name.png') }}" alt="株式会社世阿弥Entertainment"></h4>
  16.             <p id="companyAdd" class="up">大阪府吹田市豊津町21-10-2F
  17.                 <a href="https://maps.app.goo.gl/oNMbT4iWFTKjLzRHA" target="_blank">GoogleMap</a>
  18.             </p>
  19.         </div>
  20.         <!-- ///// #campany_nameBox +++++ ///// -->
  21.         <ul id="bottom_infoLink">
  22.             <li id="bt_mn-Sche" class="up">
  23.                 <a href="/delivery_confirmation/"><img src="{{ asset('assets/img/sp_icon_schedule.png') }}">納期・発送日確認</a>
  24.             </li>
  25.             <li id="bt_mn-Mypage" class="up">
  26.                 <a href="/mypage_index/"><img src="{{ asset('assets/img/sp_icon_mypage.png') }}">マイページ</a>
  27.             </li>
  28.             <li id="bt_mn-Cart" class="up">
  29.                 <a href="/cart_index"><img src="{{ asset('assets/img/sp_icon_cart.png') }}">カートを見る</a>
  30.             </li>
  31.         </ul>
  32.         <!-- ///// #bottom_infoLink +++++ ///// -->
  33.         <!-- ///// +++++ #companyInfo +++++ ///// -->
  34.     </aside>
  35.     <!-- // ++ インフォメーションリンク②・問い合わせリンク ++ /////////////////////////////////////////////////////////////// -->
  36.     <aside
  37.         id="bottomContact" class="fooer_onebloc fades">
  38.         <!-- ■■ ++ インフォメーションリンク② ++ ■■ -->
  39.         <div
  40.             class="footer_linkbox">
  41.             <!-- ☆☆ お知らせ ☆☆ -->
  42.             <ul id="list-Notes" class="footer_categorylist fades">
  43.                 <h6 class="foot_listTitle up">お知らせ</h6>
  44.                 <li class="up">
  45.                     <a href="/news">お知らせ</a>
  46.                 </li>
  47.                 <li class="up">
  48.                     <a href="/campaign">キャンペーン</a>
  49.                 </li>
  50.                 <!-- //// **** .footer_categorylist **** //// -->
  51.             </ul>
  52.             <!-- ☆☆ ご利用ガイド ☆☆-->
  53.             <ul id="list-Guide" class="footer_categorylist fades">
  54.                 <h6 class="foot_listTitle up">ご利用ガイド</h6>
  55.                 <li class="up">
  56.                     <a href="/payment">お支払いについて</a>
  57.                 </li>
  58.                 <li class="up">
  59.                     <a href="/faq">よくある質問</a>
  60.                 </li>
  61.                 <li class="up">
  62.                     <a href="/delivery">配送・送料について</a>
  63.                 </li>
  64.                 <li class="up">
  65.                     <a href="/terms">ご利用規約</a>
  66.                 </li>
  67.                 <!-- //// **** .footer_categorylist **** //// -->
  68.             </ul>
  69.         </div>
  70.         <!-- ///// .footer_linkbox ***** ///// -->
  71.         <!-- ■■ ++ 問い合わせリンク ++ ■■ -->
  72.         <div id="foot_contactBox" class="fades">
  73.             <div id="contactArea">
  74.                 <div class="tel_num up">06-6384-8422<span>(受付時間 10:00-17:00)</span>
  75.                 </div>
  76.                 <div class="mail_trigger up">
  77.                     <a class='mail_hover' href="/inquiry">お問い合わせ</a>
  78.                 </div>
  79.                 <!-- //// **** #contactArea ++++ //// -->
  80.             </div>
  81.         </div>
  82.         <!-- ///// #foot_contactBox +++++ ///// -->
  83.         <!-- ///// +++++ #bottomContact +++++ ///// -->
  84.     </aside>
  85.     <!-- // ++ カテゴリーリンク ++ /////////////////////////////////////////////////////////////// -->
  86.     <aside id="bottomCategory" class="fooer_onebloc fades">
  87.         {% set length = (productCates|length / 3)|round(0, 'ceil') %}
  88.         {% for i in 0..(length - 1) %}
  89.             <div class="footer_linkbox">
  90.                 {% set start = i * 3 %}
  91.                 {% set end = start + 2 %}
  92.                 {% for index in start..end %}
  93.                     {% if productCates[index] is defined %}
  94.                         <ul class="footer_categorylist fades">
  95.                             <h6 class="foot_listTitle up">{{ productCates[index].category.name }}</h6>
  96.                             {% for product in productCates[index]['product_cates'] %}
  97.                                 {% if product.Product.is_sample == 0 and product.Product.getStatus.id == 1 %}
  98.                                     <li class="up">
  99.                                         <a href="/product/{{ product.Product.id }}">{{ product.Product.name }}</a>
  100.                                     </li>
  101.                                 {% endif %}
  102.                             {% endfor %}
  103.                             {% if productCates[index]['category'].link_design and productCates[index]['category'].link_design != '#' %}
  104.                                 <li class="other up">
  105.                                     <a href="{{ productCates[index]['category'].link_design }}">デザイン方法</a>
  106.                                 </li>
  107.                             {% endif %}
  108.                         </ul>
  109.                     {% endif %}
  110.                 {% endfor %}
  111.             </div>
  112.         {% endfor %}
  113.     </aside>
  114. </div>
  115. <!-- ///// +++++ #footerTop +++++ ///// -->
  116. <!-- // == FOOTER BOTTOM ==================================================================================== // -->
  117. <div id="footerBottom" class="fades">
  118.     <div
  119.         id="bottomContainer">
  120.         <!-- // ++ インフォメーション ++ /////////////////////////////////////////////////////////////// -->
  121.         <ul id="store_cautionLink" class="fades">
  122.             <li class="up">
  123.                 <a href="/company">運営会社</a>
  124.             </li>
  125.             <li class="up">
  126.                 <a href="/privacy">プライバシーポリシー</a>
  127.             </li>
  128.             <li class="up">
  129.                 <a href="/specified">特定商取引法に基づく表示</a>
  130.             </li>
  131.             <!-- ///// #store_cautionLink +++++ ///// -->
  132.         </ul>
  133.         <!-- // ++ SNS ++ /////////////////////////////////////////////////////////////// -->
  134.         <ul id="bottom_snsLink" class="fades">
  135.             <li id="linkFB" class="up">
  136.                 <a href="https://www.facebook.com/pages/ZEAMI-Art/173307932728543" target="_blank"><img src="{{ asset('assets/img/icon_fb.png') }}" alt="facebook"></a>
  137.             </li>
  138.             <li id="linkX" class="up">
  139.                 <a href="https://twitter.com/ZEAMI_Art" target="_blank"><img src="{{ asset('assets/img/icon_x.png') }}" alt="X"></a>
  140.             </li>
  141.             <li id="linkLine" class="up">
  142.                 <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>
  143.             </li>
  144.             <!-- ///// #bottom_snsLink +++++ ///// -->
  145.         </ul>
  146.         <!-- // ++ コピーライト ++ /////////////////////////////////////////////////////////////// -->
  147.         <p id="Copy" class="fades">©ZEAMI Entertainment Corp. All Rights Reserved.</p>
  148.     </div>
  149. </div>
  150. <!-- ///// +++++ #footerBottom +++++ ///// -->
  151. <script src="https://www.line-website.com/social-plugins/js/thirdparty/loader.min.js" async="async" defer="defer"></script>