app/template/kaorime/default_frame.twig line 191

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% if subtitle is defined and subtitle is not empty %}  {{ subtitle }}|{% elseif title is defined and title is not empty %}  {{ title }}|{% endif %} わかめやひじきなどの海藻と海藻加工製品の販売|【公式】香り芽本舗オンラインショップ 〜ひとふりで、かおる幸せ〜</title>
  6.     <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0">
  7.     <meta name="format-detection" content="telephone=no">
  8.     <meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
  9.     {% if Page.keyword is not empty %}
  10.         <meta name="keywords" content="{{ Page.keyword }}">
  11.     {% endif %}
  12.     {% if Page.meta_tags is not empty %}
  13.         {{ include(template_from_string(Page.meta_tags), sandboxed = true) }}
  14.         {% if Page.description is not empty %}
  15.             <meta name="description" content="{{ Page.description }}|{{ title }}">
  16.         {% else %}
  17.             <meta name="description" content="{{ title }} }}|島根県出雲市で、わかめやひじきなどの海藻、海藻を加工した製品を販売する『香り芽本舗』のオンラインショップです。海藻が持つ豊かな風味を楽しんでいただけるよう、出雲の地から、心を込めてお届けします。">
  18.         {% endif %}
  19.     {% else %}
  20.         {{ include('meta.twig') }}
  21.     {% endif %}
  22.     {% if Page.meta_robots is not empty %}
  23.         <meta name="robots" content="{{ Page.meta_robots }}">
  24.     {% endif %}
  25.     <!-- FAVICON -->
  26.     <link rel="icon" href="/favicon.ico">
  27.     <link rel="shortcut icon" href="/favicon_180.png">
  28.     <link rel="apple-touch-icon" href="/favicon_180.png">
  29.     <!-- /FAVICON -->
  30.     <!-- CSS -->
  31.     <link rel="stylesheet" href="{{ asset('assets/js/slick/slick-theme.css') }}">
  32.     <link rel="stylesheet" href="{{ asset('assets/js/slick/slick.css') }}">
  33.     <link rel="stylesheet" href="{{ asset('assets/js/swiper/swiper-bundle.css') }}">
  34.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  35.     <link rel="stylesheet" href="{{ asset('assets/css/common.css') }}">
  36.     <link rel="stylesheet" href="{{ asset('assets/css/import.css?20241125') }}">
  37.     <link rel="preconnect" href="https://fonts.googleapis.com">
  38.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  39.     <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins&family=Zen+Old+Mincho:wght@700&display=swap" rel="stylesheet">
  40.     {% block stylesheet %}{% endblock %}
  41.     <script src="{{ asset('front.bundle.js', 'bundle') }}"></script>
  42.     <script>
  43.         $(function() {
  44.             $.ajaxSetup({
  45.                 'headers': {
  46.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  47.                 }
  48.             });
  49.         });
  50.     </script>
  51.     <!-- /CSS -->
  52.     <!-- JS LIBRARY -->
  53.     <script src="{{asset('assets/js/lib/jquery-3.6.0.min.js')}}"></script>
  54.     <!-- /JS LIBRARY -->
  55.     {# プラグイン用styleseetやmetatagなど #}
  56.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  57.     <!-- SHARE -->
  58.     <meta name="twitter:card" content="summary">
  59.     <meta property="og:type" content="website">
  60.     <meta property="og:locale" content="ja_JP">
  61.     <meta property="og:image" content="{{ asset('assets/img/common/ogp_logo.png') }}">
  62.     <meta property="og:title" content="{% if subtitle is defined and subtitle is not empty %}{{ subtitle }} | {% elseif title is defined and title is not empty %}{{ title }} | {% endif %}{{ BaseInfo.shop_name }}">
  63.     {% if Page.description is not empty %}
  64.         <meta property="og:description" content="{{ Page.description }}">
  65.     {% endif %}
  66.     <meta
  67.             property="og:site_name" content="香り芽本舗 公式ショップ">
  68.     <!-- /SHARE -->
  69.     <!-- Google Tag Manager -->
  70.     <script>
  71.         (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  72.                 new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  73.             j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  74.             'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  75.         })(window,document,'script','dataLayer','GTM-PB2GG7VD');
  76.     </script>
  77.     <!-- End Google Tag Manager -->
  78.     <!-- Google tag (gtag.js) -->
  79.     <script async src="https://www.googletagmanager.com/gtag/js?id=G-QCN7TKXPQ7"></script>
  80.     <script>
  81.     window.dataLayer = window.dataLayer || [];
  82.     function gtag(){dataLayer.push(arguments);}
  83.     gtag('js', new Date());
  84.     gtag('config', 'G-QCN7TKXPQ7');
  85.     </script>
  86.     {% if Layout.Head %}
  87.     {{ include('block.twig', {'Blocks': Layout.Head}) }}
  88.     {% endif %}
  89. </head>
  90. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  91. <!-- Google Tag Manager (noscript) -->
  92. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PB2GG7VD"
  93.                   height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  94. <!-- End Google Tag Manager (noscript) -->
  95. {% if Layout.BodyAfter %}
  96.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  97. {% endif %}
  98. {% if isMaintenance %}
  99.     <div class="ec-maintenanceAlert">
  100.         <div>
  101.             <div class="ec-maintenanceAlert__icon"><img src="{{ asset('assets/icon/exclamation-white.svg') }}"/></div>
  102.             {{ 'メンテナンスモードが有効になっています。'|trans }}
  103.         </div>
  104.     </div>
  105. {% endif %}
  106. <!-- HEADER -->
  107. <header role="banner" class="header" id="is-headerFixed">
  108.     <div class="headerInner">
  109.         <!-- NAVIGATION -->
  110.         <nav role="navigation" class="gNav isUnder isTop">
  111.             <div class="gNavInner">
  112.                 <ol class="gNav-list">
  113.                     <li>
  114.                         <a href="/products/list" class="menuTitle">
  115.                             商品一覧
  116.                         </a>
  117.                     </li>
  118.                     <li>
  119.                         <a href="{{ url('help_guide') }}" class="menuTitle">
  120.                             ご利用ガイド
  121.                         </a>
  122.                     </li>
  123.                     <li>
  124.                         <a href="https://kaorime.co.jp/recipebook/recipebooks/" class="menuTitle menuExternal" target="_blank">
  125.                             レシピ
  126.                         </a>
  127.                     </li>
  128.                     <li>
  129.                         <a href="https://kaorime.co.jp/column/" class="menuTitle menuExternal" target="_blank">
  130.                             コラム
  131.                         </a>
  132.                     </li>
  133.                     <li>
  134.                         <a href="https://kaorime.co.jp/" class="menuTitle menuExternal" target="_blank">
  135.                             公式サイト
  136.                         </a>
  137.                     </li>
  138.                 </ol>
  139.             </div>
  140.         </nav>
  141.         <!-- /NAVIGATION -->
  142.         <!-- MOBILE MENU BUTTON -->
  143.         <div id="header-mobileMenuBtn" class="dn-pc">
  144.             <div class="header-mobileMenuBtnInner">
  145.                 <span>&thinsp;</span>
  146.                 <span>&thinsp;</span>
  147.                 <span>&thinsp;</span>
  148.             </div>
  149.         </div>
  150.         <!-- /MOBILE MENU BUTTON -->
  151.         <!-- LOGO -->
  152.         <a href="/" class="header-logo">
  153.             <h1 class="hdnTxt">香り芽本舗 オンラインショップ</h1>
  154.             <img src="{{asset('assets/img/common/logo.png')}}" alt="香り芽本舗 オンラインショップ" class="imgFit">
  155.         </a>
  156.         <!-- /LOGO -->
  157.         <!-- SHOP-BTN -->
  158.         {% set Carts = get_all_carts() %}
  159.         {% set totalPrice = get_carts_total_price() %}
  160.         {% set totalQuantity = get_carts_total_quantity() %}
  161.         <div class="header-shopBtnContainer">
  162.             <a href="{{ url('mypage') }}" class="header-shopBtn header-shopBtnMyPage">
  163.           <span class="itemIcon">
  164.             <img src="{{asset('assets/img/common/icon_mypage_01.svg')}}" alt="マイページ アイコン" class="imgFit">
  165.           </span>
  166.                 マイページ
  167.             </a>
  168.             <a href="{{ url('cart') }}" class="header-shopBtn header-shopBtnCart">
  169.           <span class="itemIcon">
  170.             <img src="{{asset('assets/img/common/icon_cart_01.svg')}}" alt="カート アイコン" class="imgFit">
  171.           </span>
  172.                 <em class="cart-number">{{ totalQuantity|number_format }}</em>
  173.                 カート
  174.             </a>
  175.         </div>
  176.         <!-- /SHOP-BTN -->
  177.     </div>
  178. </header>
  179. <!-- /HEADER -->
  180. <!-- MAIN -->
  181. <main>
  182.     <div role="main" class="marginBottom50 marginTop50">
  183.         {% block main %}{% endblock %}
  184.     </div>
  185. </main>
  186. <!-- /MAIN -->
  187. <!-- FOOTER -->
  188. <footer role="contentinfo" class="footer">
  189.     <!-- FOOTER-POINT -->
  190.     <ul class="footer-pointContainer">
  191.         <li>
  192.             <img src="{{asset('assets/img/common/point1.png')}}" alt="" class="imgFit" width="250" height="180" loading="lazy">
  193.         </li>
  194.         <li>
  195.             <img src="{{asset('assets/img/common/point2.png')}}" alt="" class="imgFit" width="250" height="180" loading="lazy">
  196.         </li>
  197.         <li>
  198.             <img src="{{asset('assets/img/common/point3.png')}}" alt="" class="imgFit" width="250" height="180" loading="lazy">
  199.         </li>
  200.     </ul>
  201.     <!-- /FOOTER-POINT -->
  202.     <!-- FOOTER-SHOPGUIDE -->
  203.     <div class="footer-shopGuideContainer">
  204.         <div class="footer-shopGuideContainerInner">
  205.             <!-- BOX -->
  206.             <section class="footer-shopGuide">
  207.                 <h2 class="itemHl">
  208.             <span class="itemIcon">
  209.               <img src="{{asset('assets/img/common/icon_guid_01.png')}}" alt="" class="imgFit" width="48" height="48" loading="lazy">
  210.             </span>
  211.                     お支払い方法
  212.                 </h2>
  213.                 <p class="itemTxt">
  214.                     お支払いには「クレジットカード払い」がご利用になれます。
  215.                 </p>
  216.                 <a href="/guide" class="mod-btn-02 itemBtn">もっと見る</a>
  217.             </section>
  218.             <!-- /BOX -->
  219.             <!-- BOX -->
  220.             <section class="footer-shopGuide">
  221.                 <h2 class="itemHl">
  222.             <span class="itemIcon">
  223.               <img src="{{asset('assets/img/common/icon_guid_02.png')}}" alt="" class="imgFit" width="48" height="48" loading="lazy">
  224.             </span>
  225.                     配送・送料
  226.                 </h2>
  227.                 <p class="itemTxt">
  228.                     3,780円(税込)以上のご購入で送料無料です。一般宅急便は、全国一律送料800円(税込)です。ゆうパケット便300円、企画品により送料込の商品もございます。
  229.                     <span class="small">※地域、天候、交通状況によりお届けまでに日数を要する場合がございます。</span>
  230.                 </p>
  231.                 <a href="/guide#haisou" class="mod-btn-02 itemBtn">もっと見る</a>
  232.             </section>
  233.             <!-- /BOX -->
  234.             <!-- BOX -->
  235.             <section class="footer-shopGuide">
  236.                 <h2 class="itemHl">
  237.             <span class="itemIcon">
  238.               <img src="{{asset('assets/img/common/icon_guid_03.png')}}" alt="" class="imgFit" width="48" height="48" loading="lazy">
  239.             </span>
  240.                     返品・交換
  241.                 </h2>
  242.                 <p class="itemTxt">
  243.                     商品到着後7日以内に弊社まで電子メール、もしくはお電話の上、着払いでご郵送ください。
  244.                 </p>
  245.                 <a href="/guide#returns" class="mod-btn-02 itemBtn">もっと見る</a>
  246.             </section>
  247.             <!-- /BOX -->
  248.             <!-- CONTACT -->
  249.             <section class="footer-contact">
  250.                 <h2 class="footer-contactHl">お急ぎのご注文や商品に関するご相談など<br class="dn-pc">お気軽にお問い合わせください。</h2>
  251.                 <div class="footer-contactBody">
  252.                     <div class="btnTelWrap">
  253.                         <a href="tel:0120402268" class="btnTel">
  254.                             <span class="itemNum"><span class="small">TEL.</span>0120-40-2268</span>
  255.                             <span class="itemTime">【受付時間】9:00〜17:00(平日)</span>
  256.                         </a>
  257.                     </div>
  258.                     <div class="btnMailWrap">
  259.                         <a href="{{ url('contact') }}" class="btnMail mod-btn-01">
  260.                             <span class="itemName">メールでのお問い合わせ</span>
  261.                         </a>
  262.                     </div>
  263.                 </div>
  264.             </section>
  265.             <!-- /CONTACT -->
  266.         </div>
  267.     </div>
  268.     <!-- /FOOTER-SHOPGUIDE -->
  269.     <!-- FOOTER-MAIN -->
  270.     <div class="footer-main">
  271.         <div class="footer-mainInner">
  272.             <!-- FOOTER-MAIN-LOGO&MENU -->
  273.             <div class="footer-logoMenuWrap">
  274.                 <!-- LOGO -->
  275.                 <a href="https://kaorime.co.jp/" class="footer-mainLogo" target="_blank">
  276.                     <img src="{{asset('assets/img/common/logo_footer.png')}}" alt="香り芽本舗" class="imgFit" width="120" height="120" loading="lazy">
  277.                 </a>
  278.                 <!-- /LOGO -->
  279.                 <!-- MENU -->
  280.                 <div class="footer-mainMenu">
  281.                     <ul class="footer-mainMenu__list">
  282.                         <li><a href="{{ url('product_list') }}">商品一覧</a></li>
  283.                         <li><a href="{{ url('help_guide') }}">ご利用ガイド</a></li>
  284.                         <li class="external"><a href="https://kaorime.co.jp/company/info" target="_blank">会社概要</a></li>
  285.                     </ul>
  286.                     <ul class="footer-mainMenu__list">
  287.                         <li><a href="{{ url('help_agreement') }}">利用規約</a></li>
  288.                         <li><a href="{{ url('help_privacy') }}">個人情報保護方針</a></li>
  289.                         <li><a href="{{ url('help_tradelaw') }}">特定商取引法について</a></li>
  290.                     </ul>
  291.                 </div>
  292.                 <!-- /MENU -->
  293.                 <!-- MYPAGE=MENU -->
  294.                 <div class="footer-mainMyMenu">
  295.                     <a href="{{ url('mypage') }}" class="itemBtn itemBtn-my"><span class="itemBtnInner">マイページ</span></a>
  296.                     <a href="{{ url('cart') }}" class="itemBtn itemBtn-cart"><span class="itemBtnInner">カート</span></a>
  297.                 </div>
  298.                 <!-- /MYPAGE=MENU -->
  299.             </div>
  300.             <!-- /FOOTER-MAIN-LOGO&MENU -->
  301.             <!-- FOOTER-MAIN-SUB -->
  302.             <div class="footer-mainSubWrap">
  303.                 <a href="http://kaorime.co.jp/" class="item-siteBtn" target="_blank">公式サイト</a>
  304.             </div>
  305.             <!-- /FOOTER-MAIN-SUB -->
  306.         </div>
  307.         <!-- COPYRIGHT -->
  308.         <p class="footer-mainCopyright">© Kaorimehonnpo Co.,Ltd. All Rights Reserved.</p>
  309.         <!-- /COPYRIGHT -->
  310.     </div>
  311.     <!-- /FOOTER-MAIN -->
  312. </footer>
  313. <!-- /FOOTER -->
  314. <!-- PAGE TOP BTN -->
  315. <div class="pageTop-box">
  316.     <div id="pageTop" class="pageTop">
  317.       <span class="pageTopInner">
  318.         <img src="{{asset('assets/img/common/btn_pgtop.png')}}" alt="ページトップに戻る" class="imgFit">
  319.       </span>
  320.     </div>
  321. </div>
  322. <!-- /PAGE TOP BTN -->
  323. {% include('@common/lang.twig') %}
  324. <!-- JS -->
  325. <script src="{{asset('assets/js/swiper/swiper-bundle.min.js')}}"></script>
  326. <script src="{{asset('assets/js/slick/slick.min.js')}}"></script>
  327. <script src="{{asset('assets/js/animation.js')}}"></script>
  328. <script src="{{asset('assets/js/common_navigation.js')}}"></script>
  329. <script src="{{asset('assets/js/common.js')}}"></script>
  330. <script src="{{ asset('assets/js/function.js') }}"></script>
  331. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  332. {% block javascript %}{% endblock %}
  333. {# Layout: CLOSE_BODY_BEFORE #}
  334. {% if Layout.CloseBodyBefore %}
  335.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  336. {% endif %}
  337. {# プラグイン用Snippet #}
  338. {% if plugin_snippets is defined %}
  339.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  340. {% endif %}
  341. <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  342. <!-- /JS -->
  343. <script async src="https://s.yimg.jp/images/listing/tool/cv/ytag.js"></script>
  344. <script>
  345. window.yjDataLayer = window.yjDataLayer || [];
  346. function ytag() { yjDataLayer.push(arguments); }
  347. ytag({
  348.   "type":"yss_retargeting",
  349.   "config": {
  350.     "yahoo_ss_retargeting_id": "1001339123",
  351.     "yahoo_sstag_custom_params": {
  352.     }
  353.   }
  354. });
  355. </script>
  356. </body>
  357. </html>