app/template/default/Block/header.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% block javascript %}
  9. <script type="module" src="{{ asset('assets/js/favoriteLoginModal.js') }}"></script>
  10. {% endblock %}
  11. <header class="header">
  12.     <div class="header_inner">
  13.         <p class="header_title">全ての人を、肌から幸せにDr.ウィラード・ウォーター公式オンラインストア</p>
  14.         <h1 class="header_logo">
  15.             <a href="{{ url('homepage') }}" class="header_logo_link">
  16.                 <img src="{{ asset('assets/img/customize/img_logo.svg') }}" alt="Dr.ウィラード・ウォーター" width="79.78" height="50"/>
  17.             </a>
  18.         </h1>
  19.         <div class="header_utility">
  20.             <ul class="header_utility_link-list">
  21.                 <li>
  22.                     <a href="{{ url('special') }}">{{ 'front.for.special.title'|trans }}</a>
  23.                 </li>
  24.                 <li class="has-menu" data-menu-target="about-us">
  25.                     <span>私たちについて</span>
  26.                 </li>
  27.                 <li class="has-menu" data-menu-target="shopping-support">
  28.                     <span>お買い物サポート</span>
  29.                 </li>
  30.                 <li>
  31.                     <a href="https://www.willard.co.jp/wblog/">{{ 'front.for.wblog.title'|trans }}</a>
  32.                 </li>
  33.             </ul>
  34.             <ul class="header_utility_use-list">
  35.                 <li class="icon-search" data-menu-target="item-search">
  36.                     <span>
  37.                         <span>{{ 'front.for.product.product_search'|trans }}</span>
  38.                     </span>
  39.                 </li>
  40.                 {% if not is_granted('ROLE_USER') %}
  41.                     <li class="icon-favorite modal-favorite">
  42.                         <a href="{{ url('mypage_favorite') }}">
  43.                             <span>{{ 'front.block.login.favorite'|trans }}</span>
  44.                         </a>
  45.                     </li>
  46.                 {% else %}
  47.                     <li class="icon-favorite">
  48.                         <a href="{{ url('mypage_favorite') }}">
  49.                             <span>{{ 'front.block.login.favorite'|trans }}</span>
  50.                         </a>
  51.                     </li>
  52.                 {% endif %}
  53.                 {% set totalQuantity = get_carts_total_quantity() %}
  54.                 <li class="icon-cart">
  55.                     <a href="{{ url('cart') }}">
  56.                         <span>カート</span>
  57.                         <div class="badge">
  58.                             {{ render(url('block_cart')) }}
  59.                         </div>
  60.                     </a>
  61.                 </li>
  62.                 {% if is_granted('ROLE_USER') %}
  63.                     <li class="icon-mypage">
  64.                         <span data-menu-target="mypage">
  65.                             <span>{{ 'front.block.login.mypage'|trans }}</span>
  66.                         </span>
  67.                         <!-- tooltip マイページ -->
  68.                         <div id="mypage" class="header_utility_tooltip tooltip-mypage">
  69.                             <h2 class="mypage_title">
  70.                                 <a href="{{ url('mypage') }}">{{ 'front.block.login.mypage'|trans }}</a>
  71.                             </h2>
  72.                             <ul class="mypage_list">
  73.                                 <li>
  74.                                     <a href="{{ url('mypage_history') }}">購入履歴一覧</a>
  75.                                 </li>
  76.                                 <li>
  77.                                     <a href="{{ url('mypage_change') }}">お客様情報確認・変更</a>
  78.                                 </li>
  79.                                 <li>
  80.                                     <a href="{{ url('mypage_delivery') }}">お届け先住所の追加</a>
  81.                                 </li>
  82.                                 <li>
  83.                                     <a href="{{ url('mypage_subscription') }}">定期購入設定</a>
  84.                                 </li>
  85.                                 <li>
  86.                                     <a href="{{ url('information') }}">お知らせ</a>
  87.                                 </li>
  88.                             </ul>
  89.                             <p class="mypage_user">
  90.                                 <span>{{app.user.name01}} {{app.user.name02}}</span>様
  91.                             </p>
  92.                             <p class="mypage_logout-button">
  93.                                 <a href="{{ url('logout') }}">{{ 'front.block.login.logout'|trans }}</a>
  94.                             </p>
  95.                         </div>
  96.                     </li>
  97.                 {% endif %}
  98.             </ul>
  99.             {% if is_granted('ROLE_USER') is empty %}
  100.                 <div class="header_utility_login">
  101.                     <p class="header_utility_login_button" data-menu-target="login">新規お客様登録/ログイン</p>
  102.                     <!-- tooltip 新規会員登録/ログイン -->
  103.                     <div id="login" class="header_utility_tooltip tooltip-login">
  104.                         <div class="login_inner">
  105.                             <p class="login_text">お客様登録済の方</p>
  106.                             <p class="header_utility_button" id="login_button">
  107.                                 <input type="hidden" id="login_button_url" value="{{ url('mypage_login') }}">
  108.                                 <a href="{{ url('mypage_login') }}">{{ 'common.login'|trans }}</a>
  109.                             </p>
  110.                         </div>
  111.                         <div class="login_inner">
  112.                             <p class="login_text">初めてご購入される方</p>
  113.                             <p class="header_utility_button primary" id="entry_button">
  114.                                 <input type="hidden" id="entry_button_url" value="{{ url('entry') }}">
  115.                                 <a href="{{ url('entry') }}">{{ 'front.common.new_registration'|trans }}</a>
  116.                             </p>
  117.                         </div>
  118.                         <div class="login_inner sign-up">
  119.                             <p class="login_text">お客様番号をお持ちで当社オンラインストアを初めてご利用の方</p>
  120.                             <p class="header_utility_button primary" id="regist_web_button">
  121.                                 <input type="hidden" id="regist_web_url" value="{{ url('regist_web') }}">
  122.                                 <a href="{{ url('regist_web') }}">WEB利用登録</a>
  123.                             </p>
  124.                         </div>
  125.                     </div>
  126.                 </div>
  127.             {% endif %}
  128.         <div class="header_utility_menu">
  129.             <p class="header_utility_menu_button" data-menu-target="menu">
  130.                 <span></span>
  131.                 <span></span>
  132.                 <span></span>
  133.             </p>
  134.             <p class="header_utility_menu_button sp" data-menu-target="menu-sp">
  135.                 <span></span>
  136.                 <span></span>
  137.                 <span></span>
  138.             </p>
  139.             <!-- tooltip ハンバーガーメニュー -->
  140.             <div id="menu" class="header_utility_tooltip tooltip-menu">
  141.                 <ul class="menu_list">
  142.                     <li>
  143.                         <a href="{{ url('information') }}">最新情報</a>
  144.                     </li>
  145.                     <li>
  146.                         <a href="{{ url('company') }}">企業情報</a>
  147.                     </li>
  148.                     <li>
  149.                         <a href="{{ url('access') }}">ショールーム・お取り扱い店舗紹介</a>
  150.                     </li>
  151.                 </ul>
  152.             </div>
  153.         </div>
  154.         <!-- / header_utility -->
  155.       </div>
  156.     </div>
  157.     <nav class="header_nav">
  158.         <ul class="header_nav_list">
  159.             {# トライアルセット #}
  160.             {% set Category5 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 5 }) %}
  161.             {% if Category5 is defined and Category5 is not null %}
  162.             <li>
  163.                 <a href="{{ url('product_list', { 'category_id': 5 }) }}">{{ Category5.name }}</a>
  164.             </li>
  165.             {% endif %}
  166.             {# TODO: 定期メニュー確認中の為、仮でコメントアウト #}
  167.             {# <li>
  168.                 <a href="#">定期購入</a>
  169.             </li> #}
  170.             {# 化粧水 #}
  171.             {% set Category11 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 11 }) %}
  172.             {% if Category11 is defined and Category11 is not null %}
  173.             <li>
  174.                 <a href="{{ url('product_list', { 'category_id': 11 }) }}">{{ Category11.name }}</a>
  175.             </li>
  176.             {% endif %}
  177.             {# 保湿ジェル #}
  178.             {% set Category12 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 12 }) %}
  179.             {% if Category12 is defined and Category12 is not null %}
  180.             <li>
  181.                 <a href="{{ url('product_list', { 'category_id': 12 }) }}">{{ Category12.name }}</a>
  182.             </li>
  183.             {% endif %}
  184.             {# 保湿クリーム #}
  185.             {% set Category13 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 13 }) %}
  186.             {% if Category13 is defined and Category13 is not null %}
  187.             <li>
  188.                 <a href="{{ url('product_list', { 'category_id': 13 }) }}">{{ Category13.name }}</a>
  189.             </li>
  190.             {% endif %}
  191.             {# エイジングケア #}
  192.             {% set Category15 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 15 }) %}
  193.             {% if Category15 is defined and Category15 is not null %}
  194.                 <li>
  195.                     <a href="{{ url('product_list', { 'category_id': 15 }) }}">{{ Category15.name }}</a>
  196.                 </li>
  197.             {% endif %}
  198.             {# クレンジング&洗顔 #}
  199.             {% set Category14 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 14 }) %}
  200.             {% if Category14 is defined and Category14 is not null %}
  201.                 <li>
  202.                     <a href="{{ url('product_list', { 'category_id': 14 }) }}">{{ Category14.name }}</a>
  203.                 </li>
  204.             {% endif %}
  205.             {# ヘア&ボディ #}
  206.             {% set Category3 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 3 }) %}
  207.             {% if Category3 is defined and Category3 is not null %}
  208.                 <li>
  209.                     <a href="{{ url('product_list', { 'category_id': 3 }) }}">{{ Category3.name }}</a>
  210.                 </li>
  211.             {% endif %}
  212.             {# セピア(ペットケア) #}
  213.             {% set Category4 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 4 }) %}
  214.             {% if Category4 is defined and Category4 is not null %}
  215.                 <li>
  216.                     <a href="{{ url('product_list', { 'category_id': 4 }) }}">{{ Category4.name }}</a>
  217.                 </li>
  218.             {% endif %}
  219.             <li>
  220.                 <a href="{{ url('product_list') }}">{{ 'common.select__all_products'|trans }}</a>
  221.             </li>
  222.         </ul>
  223.         <!-- / header_nav -->
  224.     </nav>
  225.     <!-- drawer 私たちについて -->
  226.     <div id="about-us" class="drawer">
  227.         <div class="drawer_inner">
  228.             <ul class="drawer_list">
  229.                 <li class="drawer_list_item">
  230.                     <p>
  231.                         <a href="{{ url('brandconcept') }}">ブランドメッセージTOP</a>
  232.                     </p>
  233.                     <ul class="drawer_sub-list">
  234.                         <li>
  235.                             <a href="{{ url('brandconcept_message') }}">{{ 'front.for.brandconcept.message_title'|trans }}</a>
  236.                         </li>
  237.                         <li>
  238.                             <a href="{{ url('brandconcept_about') }}">{{ 'front.for.brandconcept.about_title'|trans }}</a>
  239.                         </li>
  240.                         <li>
  241.                             <a href="{{ url('brandconcept_quality') }}">{{ 'front.for.brandconcept.quality_title'|trans }}</a>
  242.                         </li>
  243.                         <li>
  244.                             <a href="{{ url('brandconcept_uservoice') }}">{{ 'front.for.brandconcept.uservoice_title'|trans }}</a>
  245.                         </li>
  246.                     </ul>
  247.                 </li>
  248.             </ul>
  249.             <ul class="drawer_list">
  250.                 <li class="drawer_list_item">
  251.                     <p>
  252.                         <a href="{{ url('company') }}">企業情報TOP</a>
  253.                     </p>
  254.                     <ul class="drawer_sub-list">
  255.                         <li>
  256.                             <a href="{{ url('company_message') }}">{{ 'front.for.company.message_title'|trans }}</a>
  257.                         </li>
  258.                         <li>
  259.                             <a href="{{ url('company_encounter') }}">Dr.ウィラード・ウォーター<br>誕生ストーリー</a>
  260.                         </li>
  261.                         <li>
  262.                             <a href="{{ url('company_about') }}">{{ 'front.for.company.about_title'|trans }}</a>
  263.                         </li>
  264.                         <li>
  265.                             <a href="{{ url('company_history') }}">{{ 'front.for.company.history_title'|trans }}</a>
  266.                         </li>
  267.                     </ul>
  268.                 </li>
  269.             </ul>
  270.         </div>
  271.     </div>
  272.     <!-- / drawer -->
  273.     <!-- drawer お買い物サポート -->
  274.     <div id="shopping-support" class="drawer">
  275.         <div class="drawer_inner">
  276.             <ul class="drawer_list">
  277.                 <li class="drawer_list_item">
  278.                     <p>
  279.                         <span>サービスについて</span>
  280.                     </p>
  281.                     <ul class="drawer_sub-list">
  282.                         <li>
  283.                             <a href="{{ url('pointservice') }}">{{ 'front.for.pointservice.title'|trans }}</a>
  284.                         </li>
  285.                         <li>
  286.                             <a href="{{ url('subscription') }}">定期購入について</a>
  287.                         </li>
  288.                         <li>
  289.                             <a href="{{ url('referral') }}">{{ 'front.for.referral.title'|trans }}</a>
  290.                         </li>
  291.                         <li>
  292.                             <a href="{{ url('shippingfee') }}">{{ 'front.for.shippingfee.title'|trans }}</a>
  293.                         </li>
  294.                     </ul>
  295.                 </li>
  296.             </ul>
  297.             <ul class="drawer_list">
  298.                 <li class="drawer_list_item">
  299.                     <p>
  300.                         <a href="{{ url('help_guide') }}">ご利用ガイドTOP</a>
  301.                     </p>
  302.                     <ul class="drawer_sub-list">
  303.                         <li>
  304.                             <a href="{{ url('guide_use') }}">お客様登録・ログインについて</a>
  305.                         </li>
  306.                         <li>
  307.                             <a href="{{ url('guide_order') }}">お買い物について</a>
  308.                         </li>
  309.                         <li>
  310.                             <a href="{{ url('guide_delivery') }}">お届け・返品交換について</a>
  311.                         </li>
  312.                         <li>
  313.                             <a href="{{ url('guide_site') }}">サイトのご利用</a>
  314.                         </li>
  315.                     </ul>
  316.                 </li>
  317.             </ul>
  318.             <ul class="drawer_list">
  319.                 <li class="drawer_list_item">
  320.                     <p>
  321.                         <a href="{{ url('faq') }}">よくある質問TOP</a>
  322.                     </p>
  323.                     <ul class="drawer_sub-list">
  324.                         <li>
  325.                             <a href="{{ url('faq_willardwater') }}">ウィラード・ウォーターに関する質問</a>
  326.                         </li>
  327.                         <li>
  328.                             <a href="{{ url('faq_product') }}">商品に関する質問</a>
  329.                         </li>
  330.                         <li>
  331.                             <a href="{{ url('faq_cosmetic') }}">化粧品全般に関するご質問</a>
  332.                         </li>
  333.                         <li>
  334.                             <a href="{{ url('faq_purchase') }}">ご購入に関するご質問</a>
  335.                         </li>
  336.                         <li>
  337.                             <a href="{{ url('faq_entry') }}">お客様登録に関するご質問</a>
  338.                         </li>
  339.                         <li>
  340.                             <a href="{{ url('faq_site') }}">本サイトに関するご質問</a>
  341.                         </li>
  342.                     </ul>
  343.                 </li>
  344.             </ul>
  345.         </div>
  346.     </div>
  347.     <!-- / drawer -->
  348.     <!-- drawer 商品検索 -->
  349.     <div id="item-search" class="drawer">
  350.         <div class="drawer_inner">
  351.             <form name="keyword_search" id="keyword_search" action="{{url('product_list_search')}}" method="GET">
  352.                 <div class="m-search">
  353.                     <input class="m-search_input" name="keyword" type="text" placeholder="商品名・キーワードで検索">
  354.                     <button class="m-search_button">
  355.                         <img src="{{ asset('assets/img/customize/icon_search.svg') }}" alt="検索" width="18" height="18">
  356.                     </button>
  357.                 </div>
  358.             </form>
  359.             <ul class="drawer_list">
  360.                 <li class="drawer_list_item">
  361.                     <p>
  362.                         <span>カテゴリーから検索</span>
  363.                     </p>
  364.                     <ul class="drawer_sub-list">
  365.                         {# スキンケア #}
  366.                         {% set Category1 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 1 }) %}
  367.                         {% if Category1 is defined and Category1 is not null %}
  368.                         <li>
  369.                             <a href="{{ url('product_list', { 'category_id': 1 }) }}">{{ Category1.name }}</a>
  370.                         </li>
  371.                         {% endif %}
  372.                         {# メイクアップ #}
  373.                         {% set Category2 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 2 }) %}
  374.                         {% if Category2 is defined and Category2 is not null %}
  375.                         <li>
  376.                             <a href="{{ url('product_list', { 'category_id': 2 }) }}">{{ Category2.name }}</a>
  377.                         </li>
  378.                         {% endif %}
  379.                         {# トライアルセット #}
  380.                         {% set Category5 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 5 }) %}
  381.                         {% if Category5 is defined and Category5 is not null %}
  382.                         <li>
  383.                             <a href="{{ url('product_list', { 'category_id': 5 }) }}">{{ Category5.name }}</a>
  384.                         </li>
  385.                         {% endif %}
  386.                         {# TODO: 定期メニュー確認中の為、仮でコメントアウト #}
  387.                         {# <li>
  388.                             <a href="#">定期購入</a>
  389.                         </li> #}
  390.                         {% set Category4 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 4 }) %}
  391.                         {% if Category4 is defined and Category4 is not null %}
  392.                         <li>
  393.                             <a href="{{ url('product_list', { 'category_id': 4 }) }}">{{ Category4.name }}</a>
  394.                         </li>
  395.                         {% endif %}
  396.                     </ul>
  397.                 </li>
  398.             </ul>
  399.             <ul class="drawer_list">
  400.                 <li class="drawer_list_item">
  401.                     <p>
  402.                         <span>お悩みから検索</span>
  403.                     </p>
  404.                     <ul class="drawer_sub-list">
  405.                         <li>
  406.                             <a href="{{ url('sensitiveskin') }}">敏感肌</a>
  407.                         </li>
  408.                         <li>
  409.                             <a href="{{ url('supersensitiveskin') }}">超敏感肌</a>
  410.                         </li>
  411.                         <li>
  412.                             <a href="{{ url('dryskin') }}">乾燥肌</a>
  413.                         </li>
  414.                         <li>
  415.                             <a href="{{ url('skinlightening') }}">美白</a>
  416.                         </li>
  417.                         <li>
  418.                             <a href="{{ url('agingcare') }}">エイジングケア</a>
  419.                         </li>
  420.                         <li>
  421.                             <a href="{{ url('nikibiskin') }}">思春期ニキビ</a>
  422.                         </li>
  423.                         <li>
  424.                             <a href="{{ url('pimple') }}">吹き出物</a>
  425.                         </li>
  426.                     </ul>
  427.                 </li>
  428.             </ul>
  429.         </div>
  430.         <!-- / drawer -->
  431.     </div>
  432.     <!-- SP版メニュー-->
  433.     <div id="menu-sp" class="header_nav-sp">
  434.         <div class="header_nav-sp_inner">
  435.             <!-- 上層メニュー -->
  436.             <div class="header_nav-sp_upper">
  437.                 <ul class="header_nav-sp_list">
  438.                     <li class="header_nav-sp_list_item">
  439.                         <p class="header_nav-sp_list_item_text">{{ 'front.for.product.search_for_products'|trans }}</p>
  440.                         <ul class="header_nav-sp_sub-list">
  441.                             {# トライアルセット #}
  442.                             {% set Category5 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 5 }) %}
  443.                             {% if Category5 is defined and Category5 is not null %}
  444.                             <li>
  445.                                 <span data-submenu-target="trial">{{ Category5.name }}</span>
  446.                             </li>
  447.                             {% endif %}
  448.                             {# 定期購入対象商品 #}
  449.                             {% set Category34 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 34 }) %}
  450.                             {% if Category34 is defined and Category34 is not null %}
  451.                             <li>
  452.                                 <a href="{{ url('product_list', { 'category_id': 34 }) }}">{{ Category34.Name }}</a>
  453.                             </li>
  454.                             {% endif %}
  455.                             {# キャンペーン対象商品 #}
  456.                             {% set Category6 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 6 }) %}
  457.                             {% if Category6 is defined and Category6 is not null %}
  458.                             <li>
  459.                                 <a href="{{ url('product_list', { 'category_id': 6 }) }}">{{ Category6.Name }}</a>
  460.                             </li>
  461.                             {% endif %}
  462.                             {# スキンケア #}
  463.                             {% set Category1 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 1 }) %}
  464.                             {% if Category1 is defined and Category1 is not null %}
  465.                             <li>
  466.                                 <span data-submenu-target="skincare">{{ Category1.name }}</span>
  467.                             </li>
  468.                             {% endif %}
  469.                             {# メイクアップ #}
  470.                             {% set Category2 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 2 }) %}
  471.                             {% if Category2 is defined and Category2 is not null %}
  472.                             <li>
  473.                                 <span data-submenu-target="makeup">{{ Category2.Name }}</span>
  474.                             </li>
  475.                             {% endif %}
  476.                             {# ヘア&ボディ #}
  477.                             {% set Category3 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 3 }) %}
  478.                             {% if Category3 is defined and Category3 is not null %}
  479.                             <li>
  480.                                 <span data-submenu-target="hair">{{ Category3.Name }}</span>
  481.                             </li>
  482.                             {% endif %}
  483.                             {# セピア(ペットケア) #}
  484.                             {% set Category4 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 4 }) %}
  485.                             {% if Category4 is defined and Category4 is not null %}
  486.                             <li>
  487.                                 <span data-submenu-target="pet">{{ Category4.Name }}</span>
  488.                             </li>
  489.                             {% endif %}
  490.                             {# TODO: 定期メニュー 確認待ち #}
  491.                         </ul>
  492.                     </li>
  493.                     <li class="header_nav-sp_list_item">
  494.                         <p class="header_nav-sp_list_item_text">コンテンツ</p>
  495.                         <ul class="header_nav-sp_sub-list">
  496.                             <li>
  497.                                 <a href="{{ url('special') }}">{{ 'front.for.special.title'|trans }}</a>
  498.                             </li>
  499.                             <li>
  500.                                 <span data-submenu-target="about">私たちについて</span>
  501.                             </li>
  502.                             <li>
  503.                                 <span data-submenu-target="support">お買い物サポート</span>
  504.                             </li>
  505.                             <li>
  506.                                 <a href="https://www.willard.co.jp/wblog/">{{ 'front.for.wblog.title'|trans }}</a>
  507.                             </li>
  508.                             <li>
  509.                                 <a href="{{ url('information') }}">最新情報</a>
  510.                             </li>
  511.                             <li>
  512.                                 <a href="{{ url('access') }}">ショールーム・お取り扱い店舗紹介</a>
  513.                             </li>
  514.                         </ul>
  515.                     </li>
  516.                 </ul>
  517.                 <p class="header_nav-sp_login-button">
  518.                     {% if not is_granted('ROLE_USER') %}
  519.                         <a href="{{ url('mypage_login') }}">新規会員登録/ログイン</a>
  520.                     {% else %}
  521.                         <a href="{{ url('mypage') }}">{{app.user.name01}} {{app.user.name02}}様</a>
  522.                     {% endif %}
  523.                 </p>
  524.                 <ul class="header_nav-sp_sns-list">
  525.                     <li>
  526.                         <a href="https://www.facebook.com/willardwater" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_facebook.svg') }}" alt="Facebook" width="24" height="24"/></a>
  527.                     </li>
  528.                     <li>
  529.                         <a href="https://x.com/willard_water" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_x.svg') }}" alt="Twitter" width="24" height="24"/></a>
  530.                     </li>
  531.                     <li>
  532.                         <a href="https://www.instagram.com/dr.willardwater_daikanyama/" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_instagram.svg') }}" alt="Instagram" width="24" height="24"/></a>
  533.                     </li>
  534.                     <li>
  535.                         <a href="https://www.youtube.com/@dr.2951" target="_blank" rel="noopener"><img src="{{ asset('assets/img/customize/icon_sns_youtube.svg') }}" alt="YouTube" width="24" height="24"/></a>
  536.                     </li>
  537.                 </ul>
  538.             </div>
  539.             <!-- 下層メニュー -->
  540.             <div class="header_nav-sp_under">
  541.                 <p class="header_nav-sp_back-button">
  542.                     <span>{{ 'common.back'|trans }}</span>
  543.                 </p>
  544.                 <!-- スキンケア -->
  545.                 <div id="skincare" class="header_nav-sp_under_inner">
  546.                     <ul class="header_nav-sp_list">
  547.                         <li class="header_nav-sp_list_item">
  548.                             <p class="header_nav-sp_list_item_link">
  549.                                 <a href="{{ url('product_list', { 'category_id': 1 }) }}">スキンケア TOP</a>
  550.                             </p>
  551.                             <p class="header_nav-sp_list_item_button">
  552.                                 <a href="{{ url('subscription') }}">お得な定期購入について</a>
  553.                             </p>
  554.                             <ul class="header_nav-sp_list">
  555.                                 <li class="header_nav-sp_list_item">
  556.                                     <p class="header_nav-sp_list_item_text">{{ 'front.for.product.search_for_products'|trans }}</p>
  557.                                     <ul class="header_nav-sp_sub-list">
  558.                                         {# 化粧水 #}
  559.                                         {% set Category11 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 11 }) %}
  560.                                         {% if Category11 is defined and Category11 is not null %}
  561.                                         <li>
  562.                                             <a href="{{ url('product_list', { 'category_id': 11 }) }}">{{ Category11.Name }}</a>
  563.                                         </li>
  564.                                         {% endif %}
  565.                                         {# 保湿ジェル #}
  566.                                         {% set Category12 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 12 }) %}
  567.                                         {% if Category12 is defined and Category12 is not null %}
  568.                                             <li>
  569.                                                 <a href="{{ url('product_list', { 'category_id': 12 }) }}">{{ Category12.Name }}</a>
  570.                                             </li>
  571.                                         {% endif %}
  572.                                         {# 保湿クリーム #}
  573.                                         {% set Category13 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 13 }) %}
  574.                                         {% if Category13 is defined and Category13 is not null %}
  575.                                             <li>
  576.                                                 <a href="{{ url('product_list', { 'category_id': 13 }) }}">{{ Category13.Name }}</a>
  577.                                             </li>
  578.                                         {% endif %}
  579.                                         {# クレンジング&洗顔 #}
  580.                                         {% set Category14 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 14 }) %}
  581.                                         {% if Category14 is defined and Category14 is not null %}
  582.                                             <li>
  583.                                                 <a href="{{ url('product_list', { 'category_id': 14 }) }}">{{ Category14.Name }}</a>
  584.                                             </li>
  585.                                         {% endif %}
  586.                                         {# エイジングケア #}
  587.                                         {% set Category15 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 15 }) %}
  588.                                         {% if Category15 is defined and Category15 is not null %}
  589.                                             <li>
  590.                                                 <a href="{{ url('product_list', { 'category_id': 15 }) }}">{{ Category15.Name }}</a>
  591.                                             </li>
  592.                                         {% endif %}
  593.                                         {# スペシャルケア #}
  594.                                         {% set Category16 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 16 }) %}
  595.                                         {% if Category16 is defined and Category16 is not null %}
  596.                                             <li>
  597.                                                 <a href="{{ url('product_list', { 'category_id': 16 }) }}">{{ Category16.Name }}</a>
  598.                                             </li>
  599.                                         {% endif %}
  600.                                         {# 美容ゼリー #}
  601.                                         {% set Category17 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 17 }) %}
  602.                                         {% if Category17 is defined and Category17 is not null %}
  603.                                             <li>
  604.                                                 <a href="{{ url('product_list', { 'category_id': 17 }) }}">{{ Category17.Name }}</a>
  605.                                             </li>
  606.                                         {% endif %}
  607.                                         {# ミニセット #}
  608.                                         {% set Category18 = repository('Eccube\\Entity\\Category').findOneBy({ 'id' : 18 }) %}
  609.                                         {% if Category18 is defined and Category18 is not null %}
  610.                                             <li>
  611.                                                 <a href="{{ url('product_list', { 'category_id': 18 }) }}">{{ Category18.Name }}</a>
  612.                                             </li>
  613.                                         {% endif %}
  614.                                     </ul>
  615.                                 </li>
  616.                                 <li class="header_nav-sp_list_item">
  617.                                     <p class="header_nav-sp_list_item_text">お肌のお悩みから探す</p>
  618.                                     <ul class="header_nav-sp_sub-list">
  619.                                         <li>
  620.                                             <a href="{{ url('product_list', { 'concerns_id': 1 }) }}">何も使えない敏感肌</a>
  621.                                         </li>
  622.                                         <li>
  623.                                             <a href="{{ url('product_list', { 'concerns_id': 2 }) }}">アトピー肌などのトラブル肌</a>
  624.                                         </li>
  625.                                         <li>
  626.                                             <a href="{{ url('product_list', { 'concerns_id': 3 }) }}">デリケートな赤ちゃん肌</a>
  627.                                         </li>
  628.                                         <li>
  629.                                             <a href="{{ url('product_list', { 'concerns_id': 4 }) }}">乾燥・カサつき</a>
  630.                                         </li>
  631.                                         <li>
  632.                                             <a href="{{ url('product_list', { 'concerns_id': 5 }) }}">やけど肌荒れ</a>
  633.                                         </li>
  634.                                         <li>
  635.                                             <a href="{{ url('product_list', { 'concerns_id': 6 }) }}">にきび・そばかす・吹き出物</a>
  636.                                         </li>
  637.                                         <li>
  638.                                             <a href="{{ url('product_list', { 'concerns_id': 7 }) }}">黒ずみ・シミ・くすみ</a>
  639.                                         </li>
  640.                                         <li>
  641.                                             <a href="{{ url('product_list', { 'concerns_id': 8 }) }}">シワ・たるみ・ほうれい線</a>
  642.                                         </li>
  643.                                         <li>
  644.                                             <a href="{{ url('product_list', { 'concerns_id': 9 }) }}">ベタつき・テカリ</a>
  645.                                         </li>
  646.                                         <li>
  647.                                             <a href="{{ url('product_list', { 'concerns_id': 10 }) }}">ペットの肌ケアが気になる方</a>
  648.                                         </li>
  649.                                         <li>
  650.                                             <a href="{{ url('product_list', { 'concerns_id': 11 }) }}">クレンジング&洗顔</a>
  651.                                         </li>
  652.                                     </ul>
  653.                                 </li>
  654.                             </ul>
  655.                         </li>
  656.                     </ul>
  657.                 </div>
  658.                 <!-- 私たちについて -->
  659.                 <div id="about" class="header_nav-sp_under_inner">
  660.                     <ul class="header_nav-sp_list">
  661.                         <li class="header_nav-sp_list_item">
  662.                             <p class="header_nav-sp_list_item_link">
  663.                                 <a href="{{ url('brandconcept') }}">ブランドメッセージ TOP</a>
  664.                             </p>
  665.                             <ul class="header_nav-sp_sub-list">
  666.                                 <li>
  667.                                     <a href="{{ url('brandconcept_message') }}">{{ 'front.for.brandconcept.message_title'|trans }}</a>
  668.                                 </li>
  669.                                 <li>
  670.                                     <a href="{{ url('brandconcept_about') }}">{{ 'front.for.brandconcept.about_title'|trans }}</a>
  671.                                 </li>
  672.                                 <li>
  673.                                     <a href="{{ url('brandconcept_quality') }}">{{ 'front.for.brandconcept.quality_title'|trans }}</a>
  674.                                 </li>
  675.                                 <li>
  676.                                     <a href="{{ url('brandconcept_uservoice') }}">{{ 'front.for.brandconcept.uservoice_title'|trans }}</a>
  677.                                 </li>
  678.                             </ul>
  679.                         </li>
  680.                         <li class="header_nav-sp_list_item">
  681.                             <p class="header_nav-sp_list_item_link">
  682.                                 <a href="{{ url('company') }}">企業情報 TOP</a>
  683.                             </p>
  684.                             <ul class="header_nav-sp_sub-list">
  685.                                 <li>
  686.                                     <a href="{{ url('company_message') }}">{{ 'front.for.company.message_title'|trans }}</a>
  687.                                 </li>
  688.                                 <li>
  689.                                     <a href="{{ url('company_encounter') }}">{{ 'front.for.company.encounter_title'|trans }}</a>
  690.                                 </li>
  691.                                 <li>
  692.                                     <a href="{{ url('company_about') }}">{{ 'front.for.company.about_title'|trans }}</a>
  693.                                 </li>
  694.                                 <li>
  695.                                     <a href="{{ url('company_history') }}">{{ 'front.for.company.history_title'|trans }}</a>
  696.                                 </li>
  697.                             </ul>
  698.                         </li>
  699.                     </ul>
  700.                 </div>
  701.                 <!-- お買い物サポート -->
  702.                 <div id="support" class="header_nav-sp_under_inner">
  703.                     <ul class="header_nav-sp_list">
  704.                         <li class="header_nav-sp_list_item">
  705.                             <p class="header_nav-sp_list_item_link">
  706.                                 <span>サービスについて</span>
  707.                             </p>
  708.                             <ul class="header_nav-sp_sub-list">
  709.                                 <li>
  710.                                     <a href="{{ url('pointservice') }}">{{ 'front.for.pointservice.title'|trans }}</a>
  711.                                 </li>
  712.                                 <li>
  713.                                     <a href="{{ url('subscription') }}">定期購入について</a>
  714.                                 </li>
  715.                                 <li>
  716.                                     <a href="{{ url('referral') }}">{{ 'front.for.referral.title'|trans }}</a>
  717.                                 </li>
  718.                                 <li>
  719.                                     <a href="{{ url('shippingfee') }}">{{ 'front.for.shippingfee.title'|trans }}</a>
  720.                                 </li>
  721.                                 <li>
  722.                                     <a href="{{ url('access') }}">ショールーム・お取り扱い店舗紹介</a>
  723.                                 </li>
  724.                             </ul>
  725.                         </li>
  726.                         <li class="header_nav-sp_list_item">
  727.                             <p class="header_nav-sp_list_item_link">
  728.                                 <a href="{{ url('help_guide') }}">ご利用ガイド TOP</a>
  729.                             </p>
  730.                             <ul class="header_nav-sp_sub-list">
  731.                                 <li>
  732.                                     <a href="{{ url('guide_use') }}">お客様登録・ログインについて</a>
  733.                                 </li>
  734.                                 <li>
  735.                                     <a href="{{ url('guide_order') }}">お買い物について</a>
  736.                                 </li>
  737.                                 <li>
  738.                                     <a href="{{ url('guide_delivery') }}">お届け・返品交換について</a>
  739.                                 </li>
  740.                                 <li>
  741.                                     <a href="{{ url('guide_site') }}">サイトのご利用</a>
  742.                                 </li>
  743.                             </ul>
  744.                         </li>
  745.                         <li class="header_nav-sp_list_item">
  746.                             <p class="header_nav-sp_list_item_link">
  747.                                 <a href="{{ url('faq') }}">よくあるご質問 TOP</a>
  748.                             </p>
  749.                             <ul class="header_nav-sp_sub-list">
  750.                                 <li>
  751.                                     <a href="{{ url('faq_willardwater') }}">ウィラード・ウォーターに関するご質問</a>
  752.                                 </li>
  753.                                 <li>
  754.                                     <a href="{{ url('faq_product') }}">商品に関するご質問</a>
  755.                                 </li>
  756.                                 <li>
  757.                                     <a href="{{ url('faq_cosmetic') }}">化粧品全般に関するご質問</a>
  758.                                 </li>
  759.                                 <li>
  760.                                     <a href="{{ url('faq_purchase') }}">ご購入に関するご質問</a>
  761.                                 </li>
  762.                                 <li>
  763.                                     <a href="{{ url('faq_entry') }}">お客様登録に関するご質問</a>
  764.                                 </li>
  765.                                 <li>
  766.                                     <a href="{{ url('faq_site') }}">本サイトに関するご質問</a>
  767.                                 </li>
  768.                             </ul>
  769.                         </li>
  770.                         <li class="header_nav-sp_list_item">
  771.                             <p class="header_nav-sp_list_item_link">
  772.                                 <a href="{{ url('contact') }}">{{ 'front.for.contact.title_short'|trans }}</a>
  773.                             </p>
  774.                             <ul class="header_nav-sp_sub-list">
  775.                                 <li>
  776.                                     <a href="{{ url('contact_index') }}">{{ 'front.for.contact_index.title'|trans }}</a>
  777.                                 </li>
  778.                                 <li>
  779.                                     <a href="{{ url('contact') }}">{{ 'front.for.contact.request_catalog'|trans }}</a>
  780.                                 </li>
  781.                             </ul>
  782.                         </li>
  783.                     </ul>
  784.                 </div>
  785.                 <!-- ペットケア -->
  786.                 <div id="pet" class="header_nav-sp_under_inner">
  787.                     <ul class="header_nav-sp_list">
  788.                         <li class="header_nav-sp_list_item">
  789.                             <p class="header_nav-sp_list_item_link">
  790.                                 <a href="{{ url('product_list', { 'category_id': 4 }) }}">ペットケア・セピアTOP</a>
  791.                             </p>
  792.                             <p class="header_nav-sp_list_item_button">
  793.                                 <a href="{{ url('subscription') }}">お得な定期購入について</a>
  794.                             </p>
  795.                             <ul class="header_nav-sp_list">
  796.                                 <li class="header_nav-sp_list_item">
  797.                                     <p class="header_nav-sp_list_item_text">{{ 'front.for.product.search_for_products'|trans }}</p>
  798.                                     <ul class="header_nav-sp_sub-list">
  799.                                         <li>
  800.                                             <a href="{{ url('product_list', { 'category_id': 24 }) }}">セピアウォーター(ペット用全身化粧水)</a>
  801.                                         </li>
  802.                                         <li>
  803.                                             <a href="{{ url('product_list', { 'category_id': 25 }) }}">セピアシャンプー(ペット用)</a>
  804.                                         </li>
  805.                                         <li>
  806.                                             <a href="{{ url('product_list', { 'category_id': 26 }) }}">泡立てボール</a>
  807.                                         </li>
  808.                                     </ul>
  809.                                 </li>
  810.                             </ul>
  811.                         </li>
  812.                     </ul>
  813.                 </div>
  814.                 <!-- トライアルセット -->
  815.                 <div id="trial" class="header_nav-sp_under_inner">
  816.                     <ul class="header_nav-sp_list">
  817.                         <li class="header_nav-sp_list_item">
  818.                             <p class="header_nav-sp_list_item_link">
  819.                                 <a href="{{ url('product_list', { 'category_id': 5 }) }}">トライアルセット TOP</a>
  820.                             </p>
  821.                             <p class="header_nav-sp_list_item_button">
  822.                                 <a href="{{ url('subscription') }}">お得な定期購入について</a>
  823.                             </p>
  824.                             <ul class="header_nav-sp_list">
  825.                                 <li class="header_nav-sp_list_item">
  826.                                     <p class="header_nav-sp_list_item_text">{{ 'front.for.product.search_for_products'|trans }}</p>
  827.                                     <ul class="header_nav-sp_sub-list">
  828.                                         <li>
  829.                                             <a href="{{ url('product_list', { 'category_id': 27 }) }}">スキンケア</a>
  830.                                         </li>
  831.                                         <li>
  832.                                             <a href="{{ url('product_list', { 'category_id': 28 }) }}">セピア</a>
  833.                                         </li>
  834.                                     </ul>
  835.                                 </li>
  836.                             </ul>
  837.                         </li>
  838.                     </ul>
  839.                 </div>
  840.                 <!-- メイクアップ -->
  841.                 <div id="makeup" class="header_nav-sp_under_inner">
  842.                     <ul class="header_nav-sp_list">
  843.                         <li class="header_nav-sp_list_item">
  844.                             <p class="header_nav-sp_list_item_link">
  845.                                 <a href="{{ url('product_list', { 'category_id': 2 }) }}">メイクアップ TOP</a>
  846.                             </p>
  847.                             <p class="header_nav-sp_list_item_button">
  848.                                 <a href="{{ url('subscription') }}">お得な定期購入について</a>
  849.                             </p>
  850.                             <ul class="header_nav-sp_list">
  851.                                 <li class="header_nav-sp_list_item">
  852.                                     <p class="header_nav-sp_list_item_text">{{ 'front.for.product.search_for_products'|trans }}</p>
  853.                                     <ul class="header_nav-sp_sub-list">
  854.                                         <li>
  855.                                             <a href="{{ url('product_list', { 'category_id': 19 }) }}">UV下地</a>
  856.                                         </li>
  857.                                         <li>
  858.                                             <a href="{{ url('product_list', { 'category_id': 20 }) }}">ファンデーション</a>
  859.                                         </li>
  860.                                         <li>
  861.                                             <a href="{{ url('product_list', { 'category_id': 21 }) }}">パウダー</a>
  862.                                         </li>
  863.                                     </ul>
  864.                                 </li>
  865.                             </ul>
  866.                         </li>
  867.                     </ul>
  868.                 </div>
  869.                 <!-- ヘア&ボディ -->
  870.                 <div id="hair" class="header_nav-sp_under_inner">
  871.                     <ul class="header_nav-sp_list">
  872.                         <li class="header_nav-sp_list_item">
  873.                             <p class="header_nav-sp_list_item_link">
  874.                                 <a href="{{ url('product_list', { 'category_id': 3 }) }}">ヘア&ボディ TOP</a>
  875.                             </p>
  876.                             <p class="header_nav-sp_list_item_button">
  877.                                 <a href="{{ url('subscription') }}">お得な定期購入について</a>
  878.                             </p>
  879.                             <ul class="header_nav-sp_list">
  880.                                 <li class="header_nav-sp_list_item">
  881.                                     <p class="header_nav-sp_list_item_text">{{ 'front.for.product.search_for_products'|trans }}</p>
  882.                                     <ul class="header_nav-sp_sub-list">
  883.                                         <li>
  884.                                             <a href="{{ url('product_list', { 'category_id': 22 }) }}">ヘアケア</a>
  885.                                         </li>
  886.                                         <li>
  887.                                             <a href="{{ url('product_list', { 'category_id': 23 }) }}">ボディ&ハンド&リップケア</a>
  888.                                         </li>
  889.                                     </ul>
  890.                                 </li>
  891.                             </ul>
  892.                         </li>
  893.                     </ul>
  894.                 </div>
  895.             </div>
  896.         </div>
  897.         <!-- / header_nav-sp -->
  898.     </div>
  899. <!-- / header -->
  900. </header>
  901. {# 未ログイン時 お気に入りモーダル #}
  902. <section id="favorite_login" class="m-modal_overlay">
  903.     <div class="m-modal_wrapper confirm">
  904.         <section class="m-modal">
  905.             <p class="m-modal_close">
  906.                 <button class="m-modal_close_button" data-close-target="favorite_login">
  907.                     <img src="{{ asset('assets/img/customize/icon_close.svg') }}" alt="閉じる" width="22" height="22">
  908.                 </button>
  909.             </p>
  910.             <section class="m-modal_inner">
  911.                 <p class="confirm_text">
  912.                     お気に入り機能を利用するには、ログインする必要があります。<br>
  913.                     お手数ですがログイン後にお気に入り登録をお願いします。
  914.                 </p>
  915.             </section>
  916.             <ul class="m-modal_button-list">
  917.                 <li>
  918.                     <p class="m-button_wrapper">
  919.                         <a href="{{ url('mypage_login') }}" class="m-button arrow">ログイン</a>
  920.                     </p>
  921.                 </li>
  922.             </ul>
  923.         </section>
  924.     </div>
  925. </section>