app/template/user_data/spot_menu_lp.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% block javascript %}
  3. <script>
  4.     var headerContent = document.getElementById("header_content");
  5.     var footerCtaBtn = document.getElementById("footer-cta-btn");
  6.     var floatingCta = document.getElementById("float-cta-btn");
  7.     function checkVisibility() {
  8.         if (headerContent && footerCtaBtn) {
  9.             var rect_h = headerContent.getBoundingClientRect();
  10.             var rect_f = footerCtaBtn.getBoundingClientRect();
  11.             var windowHeight = window.innerHeight || document.documentElement.clientHeight;
  12.             if ((rect_h.top < windowHeight && rect_h.bottom >= 0) || (rect_f.top < windowHeight && rect_f.bottom >= 0)) {
  13.                 floatingCta.style.display = "none";
  14.             } else {
  15.                 floatingCta.style.display = "block";
  16.             }
  17.         }
  18.     }
  19.     window.addEventListener("scroll", checkVisibility);
  20.     checkVisibility(); // 初回実行
  21.     {% set current_domain = app.request.getHost() %}
  22.     {# ドメイン判定 #}
  23.     {% set is_prod = 'web-order.shikomel.com' in current_domain %}
  24.     {% set is_stg = 'web-order-stg.shikomel.com' in current_domain %}
  25.     {% if is_prod %}
  26.     // Lineバナークリックイベント
  27.     $('.enrty_btn_spot_menu_lp').on('click', function(event) {
  28.         const currentPageUrl = window.location.href;
  29.         fbq('trackCustom', 'ce_click_spot_menu_lp', {
  30.             content_type: "ClickLineBtn",
  31.             content_name: currentPageUrl,
  32.             value: 20
  33.         });
  34.         window.dataLayer.push({
  35.             event: 'ce_click_spot_menu_lp',
  36.             custom_event_name: 'ce_click_spot_menu_lp',
  37.             custom_page_url: currentPageUrl,
  38.             custom_customer_id: '',
  39.             custom_user_agent: $("#user_agent").val(),
  40.             custom_is_ig: $("#is_ig").val(),
  41.             custom_is_line: $("#is_line").val(),
  42.             custom_referer: $("#referer").val(),
  43.             custom_real_ip: $("#real_ip").val(),
  44.         });
  45.         _lt('send', 'cv', {
  46.             type: 'ce_click_spot_menu_lp'
  47.         },['d6fb195c-aa19-4109-8ea0-7b1d883fb349']);
  48.     });
  49.     {% endif %}
  50. </script>
  51. {% if is_prod %}
  52. <script src="https://js.ptengine.jp/11wx678t.js"></script>            
  53. {% endif %}
  54. {% endblock javascript %}
  55. {% block stylesheet %}
  56.     <style>
  57.     .main_content h1 {
  58.         font-size: 22px;
  59.         font-weight: bold;
  60.         margin: 0px;
  61.     }
  62.     .main_content h2 {
  63.         font-size: 20px;
  64.         font-weight: bold;
  65.         margin: 0px;
  66.     }
  67.     .main_content h3 {
  68.         font-size: 14px;
  69.         font-weight: bold;
  70.     }
  71.     .main_content img {
  72.         margin-bottom: 0px;
  73.     }
  74.     .main_content strong {
  75.         margin-bottom: 10px;
  76.         line-height: 1.6;
  77.     }
  78.     .main_content p, .main_content td {
  79.         line-height: 1.6;
  80.     }
  81.     .main_content {
  82.         color: black;
  83.         font-family: "メイリオ","Meiryo","Hiragino Sans","ヒラギノ角ゴシック","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS Pゴシック","Helvetica Neue","Helvetica","Arial","sans-serif";
  84.     }
  85.     li::marker {
  86.         font-size: 12px;
  87.     }
  88.     </style>
  89. {% endblock %}
  90. {% block main %}
  91.     {# ブラウザ判定 #}
  92.     {% set isMeta = (app.request.headers.get('User-Agent') matches '/instagram/i' or app.request.headers.get('User-Agent') matches '/facebook/i') %}
  93.     <div class="main_content" style="max-width: 375px; margin: auto;">
  94.         {# フローティングボタン #}
  95.         {% if not isMeta %}
  96.         <section id="float-cta-btn" style="bottom: 0px; position: fixed; z-index: 1000; text-align: center; width: 100%; left: 0;">
  97.             <img src="{{ asset('assets/img/spot_menu_lp/float_rectangle.webp', 'user_data') }}" alt="フローティングボタン" style="width: 100%; position: fixed; left: 0;">
  98.             <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  99.                 <img src="{{ asset('assets/img/spot_menu_lp/float_cta.webp', 'user_data') }}" alt="無料で会員登録" style="width: 100%; max-width: 375px; position: relative; padding: 0px 10px;">
  100.             </a>
  101.         </section>
  102.         {% else %}
  103.         <section id="float-cta-btn" style="bottom: 0px; position: fixed; z-index: 1000; text-align: center; display: block; background-color: white;">
  104.             <img src="{{ asset('assets/img/spot_menu_lp/float_rectangle.webp', 'user_data') }}" alt="フローティングボタン" style="width: 100%; position: fixed;">
  105.             <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  106.                 <img src="{{ asset('assets/img/spot_menu_lp/top_cta.webp', 'user_data') }}" alt="無料で会員登録" style="width: 100%; max-width: 375px; position: relative; padding: 0px 10px;">
  107.             </a>
  108.         </section>
  109.         {% endif %}
  110.         {# アイキャッチ #}
  111.         {% if not isMeta %}
  112.         <header id="header_content" style="position: relative;">
  113.             <h1><img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_1_with_line.webp', 'user_data') }}" alt="そのまま提供するだけ?!仕込み済みメニューでかんたん売上UP!" style="max-width: 100%;"></h1>
  114.             <div style="position: absolute; top: 438px; text-align: center; width: 100%;">
  115.                 <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  116.                     <img src="{{ asset('assets/img/spot_menu_lp/top_cta.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="width: 100%; max-width: 375px;">
  117.                 </a>
  118.             </div>
  119.         </header>
  120.         {% else %}
  121.         <header id="header_content" style="position: relative;">
  122.             <h1><img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_1_non_line.webp', 'user_data') }}" alt="そのまま提供するだけ?!仕込み済みメニューでかんたん売上UP!" style="max-width: 100%;"></h1>
  123.             <div style="position: absolute; top: 438px; text-align: center; width: 100%; left: 0;">
  124.                 <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  125.                     <img src="{{ asset('assets/img/spot_menu_lp/top_cta.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="width: 100%; max-width: 375px;">
  126.                 </a>
  127.             </div>
  128.         </header>
  129.         {% endif %}
  130.         <section style="margin: 0px;">
  131.             <h2><img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_2.webp', 'user_data') }}" alt="こんなお悩みありませんか?" style="max-width: 100%;"></h2>
  132.         </section>
  133.         <section style="margin: 0px;">
  134.             <h2>
  135.                 <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_3.webp', 'user_data') }}" alt="シコメルストアの仕込み済みメニューで解決" style="max-width: 100%;">
  136.             </h2>
  137.         </section>
  138.         <section style="margin: 0px; position: relative;">
  139.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_4.webp', 'user_data') }}" alt="SNSで話題沸騰!丸ごとアイスりんご飴" style="max-width: 100%;"></h2>
  140.             <div style="position: absolute; top: 330px; left: 40px;">
  141.                 {% if app.request.query.get('move_product_detail') == '1' %}
  142.                     <a href="{{ url('product_detail', {'id': 31}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  143.                 {% else %}
  144.                     <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=31" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  145.                 {% endif %}
  146.                     <img src="{{ asset('assets/img/spot_menu_lp/link_cta.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="width: 100%; max-width: 375px;">
  147.                 </a>
  148.             </div>
  149.         </section>
  150.         <section style="margin: 0px; position: relative;">
  151.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_5.webp', 'user_data') }}" alt="イベント出店などに最適!アイスチョコバナナ" style="max-width: 100%;"></h2>
  152.             <div style="position: absolute; top: 330px; left: 40px;">
  153.                 {% if app.request.query.get('move_product_detail') == '1' %}
  154.                     <a href="{{ url('product_detail', {'id': 56}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  155.                 {% else %}
  156.                 <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=56" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  157.                 {% endif %}
  158.                     <img src="{{ asset('assets/img/spot_menu_lp/link_cta.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="width: 100%; max-width: 375px;">
  159.                 </a>
  160.             </div>
  161.         </section>
  162.         <section style="margin: 0px; position: relative;">
  163.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_6.webp', 'user_data') }}" alt="定番ドリンクをお手軽に!タピオカ黒糖ミルクティー" style="max-width: 100%;"></h2>
  164.             <div style="position: absolute; top: 330px; left: 40px;">
  165.                 {% if app.request.query.get('move_product_detail') == '1' %}
  166.                     <a href="{{ url('product_detail', {'id': 63}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  167.                 {% else %}
  168.                 <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=63" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  169.                 {% endif %}
  170.                     <img src="{{ asset('assets/img/spot_menu_lp/link_cta.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="width: 100%; max-width: 375px;">
  171.                 </a>
  172.             </div>
  173.         </section>
  174.         <section style="margin: 0px; position: relative;">
  175.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_7.webp', 'user_data') }}" alt="暑い時期にピッタリ!ストロベリー&ナタデココ" style="max-width: 100%;"></h2>
  176.             <div style="position: absolute; top: 350px; left: 40px;">
  177.                 {% if app.request.query.get('move_product_detail') == '1' %}
  178.                     <a href="{{ url('product_detail', {'id': 22}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  179.                 {% else %}
  180.                 <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=22" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  181.                 {% endif %}
  182.                     <img src="{{ asset('assets/img/spot_menu_lp/link_cta.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="width: 100%; max-width: 375px;">
  183.                 </a>
  184.             </div>
  185.         </section>
  186.         {# POPプレゼント #}
  187.         <section style="margin: 0px; position: relative;">
  188.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_18.webp', 'user_data') }}" alt="店頭POPデータプレゼント" style="max-width: 100%;">
  189.             {% if app.request.query.get('move_product_detail') == '1' %}
  190.                 <a href="{{ url('product_detail', {'id': 31}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  191.                     <div style="text-align: center; width: 100%;">
  192.                         <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_19.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="max-width: 100%;">
  193.                     </div>                
  194.                 </a>
  195.             {% else %}
  196.                 <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  197.                     <div style="text-align: center; width: 100%;">
  198.                         <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_19.webp', 'user_data') }}" alt="会員登録して商品をチェック" style="max-width: 100%;">
  199.                     </div>                
  200.                 </a>
  201.             {% endif %}
  202.         </section>
  203.         <section style="margin-top: 50px;">
  204.             <h2 style="font-size: 22px; text-align: center;">お客様の事例</h2>
  205.         </section>
  206.         {# 事例1 #}
  207.         <section style="margin: 0px;">
  208.             <h2><img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_9.webp', 'user_data') }}" alt="キャンプ場のデザートにタピオカドリンクを導入し、客単価1.2倍UP!" style="max-width: 100%;"></h2>
  209.         </section>
  210.         <section style="margin: 0px 15px 0px 15px;">
  211.             <h2 style="font-size: 18px; line-height: 1.6;">キャンプ場のデザートにタピオカドリンクを導入し、客単価1.2倍UP!</h2>
  212.             <table class="table table-ProductDetail" style="margin-top: 10px; margin-bottom: 10px;">
  213.                 <tbody>
  214.                     <tr>
  215.                         <td style="border-style: none; width: 100px; font-size: 12px; border-left: solid 1px; padding: 0px; padding-left: 10px;">エリア<br>業態</td>
  216.                         <td style="border-style: none; font-size: 12px; padding: 0px;">山口県<br>キャンプ場</td>
  217.                     </tr>
  218.                 </tbody>
  219.             </table>
  220.         </section>
  221.         <section style="margin: 0px 15px 0px 15px;">
  222.             <h3 style="font-size: 18px; text-align: left;">課題</h2>
  223.             <ul style="margin: 0px;">
  224.                 <li style="font-size: 16px; line-height: 1.6;">
  225.                     お子様連れの利用客が多く、デザートメニューの需要が高い。        
  226.                 </li>
  227.                 <li style="font-size: 16px; line-height: 1.6;">
  228.                     生の果物を使った手作りパフェを提供するも、注文数が少ないとフードロスが大きい。
  229.                 </li>
  230.             </ul>
  231.         </section>
  232.         <section style="margin: 0px;">
  233.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_10.webp', 'user_data') }}" alt="タピオカ抹茶ミルク" style="max-width: 100%;">
  234.         </section>
  235.         <section style="margin: 0px 15px 0px 15px;">
  236.             <h3 style="font-size: 18px; text-align: left;">導入後</h2>
  237.             <ul style="margin: 0px;">
  238.                 <li style="font-size: 16px; line-height: 1.6;">
  239.                     使い勝手が良くて仕込みの手間が減り、フードロスも解消。        
  240.                 </li>
  241.                 <li style="font-size: 16px; line-height: 1.6;">
  242.                     以前よりもデザートの注文数が増え、客単価がUP。
  243.                 </li>
  244.             </ul>
  245.         </section>
  246.         <section style="margin: 0px 15px 0px 15px;">
  247.             <h3 style="font-size: 18px; text-align: left;">コメント</h2>
  248.             <div style="font-size: 16px; line-height: 1.6; padding: 0px 5px;">
  249.                 タピオカドリンクは子どもたちにも人気が高く、たちまち夏の人気メニューになりました。<br>
  250.                 今はパフェの提供はやめて、デザートすべてにシコメルの商品を活用しています。<br>
  251.                 どれも冷凍のため、以前のようなフードロスはもうありません。<br>
  252.                 デザートの仕込みがなくなったので、空いた時間は料理以外のサービスを充実していきたいと思っています。<br>
  253.             </div>
  254.         </section>
  255.         <section style="margin-top: 16px; position: relative;">
  256.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_11.webp', 'user_data') }}" alt="タピオカ抹茶ミルク" style="max-width: 100%;">
  257.                 {% if app.request.query.get('move_product_detail') == '1' %}
  258.                     <a href="{{ url('product_detail', {'id': 62}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  259.                         <div style="top: 128px; text-align: center; width: 100%; position: absolute;">
  260.                             <img src="{{ asset('assets/img/spot_menu_lp/middle_cta.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 327px;">
  261.                         </div>                
  262.                     </a>
  263.                 {% else %}
  264.                     <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=62" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  265.                         <div style="top: 128px; text-align: center; width: 100%; position: absolute;">
  266.                             <img src="{{ asset('assets/img/spot_menu_lp/middle_cta.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 327px;">
  267.                         </div>                
  268.                     </a>
  269.                 {% endif %}
  270.         </section>
  271.         {# 事例2 #}
  272.         <section style="margin: 0px;">
  273.             <h2><img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_12.webp', 'user_data') }}" alt="バイトさんだけでも簡単!イベント会場で連日100個売れたりんご飴!" style="max-width: 100%;"></h2>
  274.         </section>
  275.         <section style="margin: 0px 15px 0px 15px;">
  276.             <h2 style="font-size: 18px; line-height: 1.6;">バイトさんだけでも簡単!イベント会場で連日100個売れたりんご飴!</h2>
  277.             <table class="table table-ProductDetail" style="margin-top: 10px; margin-bottom: 10px;">
  278.                 <tbody>
  279.                     <tr>
  280.                         <td style="border-style: none; width: 100px; font-size: 12px; border-left: solid 1px; padding: 0px; padding-left: 10px;">エリア<br>業態</td>
  281.                         <td style="border-style: none; font-size: 12px; padding: 0px;">福井県<br>イベント会場の売店</td>
  282.                     </tr>
  283.                 </tbody>
  284.             </table>
  285.         </section>
  286.         <section style="margin: 0px 15px 0px 15px;">
  287.             <h3 style="font-size: 18px; text-align: left;">課題</h2>
  288.             <ul style="margin: 0px;">
  289.                 <li style="font-size: 16px; line-height: 1.6;">
  290.                     繁忙期で調理未経験のアルバイトしか採用できず、提供できるメニューが限定的に。
  291.                 </li>
  292.                 <li style="font-size: 16px; line-height: 1.6;">
  293.                     ピークタイムには長蛇の列ができるので、提供までの時間をなるべく短くしたい。
  294.                 </li>
  295.             </ul>
  296.         </section>
  297.         <section style="margin: 0px;">
  298.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_13.webp', 'user_data') }}" alt="丸ごとアイスりんご飴" style="max-width: 100%;">
  299.         </section>
  300.         <section style="margin: 0px 15px 0px 15px;">
  301.             <h3 style="font-size: 18px; text-align: left;">導入後</h2>
  302.             <ul style="margin: 0px;">
  303.                 <li style="font-size: 16px; line-height: 1.6;">
  304.                     丸ごとであれば冷凍から出してそのまま提供するだけで1分掛からずに提供できた。        
  305.                 </li>
  306.                 <li style="font-size: 16px; line-height: 1.6;">
  307.                     カットしてカラースプレーを振りかければ、調理なしでもバリエーションを増やせる。
  308.                 </li>
  309.             </ul>
  310.         </section>
  311.         <section style="margin: 0px 15px 0px 15px;">
  312.             <h3 style="font-size: 18px; text-align: left;">コメント</h2>
  313.             <div style="font-size: 16px; line-height: 1.6; padding: 0px 5px;">
  314.                 春夏シーズンのみオープンするレジャープール施設の売店で連日かなり売れました。<br>
  315.                 特に土日や夏休みシーズンはピークで1日に100個売れる日もある人気商品でした。<br>
  316.                 地方なので調理未経験のバイトさんしか採用できず、提供が簡単で非常に嬉しかったです。<br>
  317.             </div>
  318.         </section>
  319.         <section style="margin-top: 16px; position: relative;">
  320.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_14.webp', 'user_data') }}" alt="丸ごとアイスりんご飴" style="max-width: 100%;">
  321.                 {% if app.request.query.get('move_product_detail') == '1' %}
  322.                     <a href="{{ url('product_detail', {'id': 31}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  323.                         <div style="top: 128px; text-align: center; width: 100%; position: absolute;">
  324.                             <img src="{{ asset('assets/img/spot_menu_lp/middle_cta.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 327px;">
  325.                         </div>                
  326.                     </a>
  327.                 {% else %}
  328.                     <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=31" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  329.                         <div style="top: 128px; text-align: center; width: 100%; position: absolute;">
  330.                             <img src="{{ asset('assets/img/spot_menu_lp/middle_cta.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 327px;">
  331.                         </div>                
  332.                     </a>
  333.                 {% endif %}
  334.         </section>
  335.         {# 事例3 #}
  336.         <section style="margin: 0px;">
  337.             <h2><img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_15.webp', 'user_data') }}" alt="客層に合わせて使い分けやすい!ついで買いにもおすすめな冷凍チョコバナナ" style="max-width: 100%;"></h2>
  338.         </section>
  339.         <section style="margin: 0px 15px 0px 15px;">
  340.             <h2 style="font-size: 18px; line-height: 1.6;">客層に合わせて使い分けやすい!ついで買いにもおすすめな冷凍チョコバナナ</h2>
  341.             <table class="table table-ProductDetail" style="margin-top: 10px; margin-bottom: 10px;">
  342.                 <tbody>
  343.                     <tr>
  344.                         <td style="border-style: none; width: 100px; font-size: 12px; border-left: solid 1px; padding: 0px; padding-left: 10px;">エリア<br>業態</td>
  345.                         <td style="border-style: none; font-size: 12px; padding: 0px;">東京近郊<br>キッチンカー</td>
  346.                     </tr>
  347.                 </tbody>
  348.             </table>
  349.         </section>
  350.         <section style="margin: 0px 15px 0px 15px;">
  351.             <h3 style="font-size: 18px; text-align: left;">課題</h2>
  352.             <ul style="margin: 0px;">
  353.                 <li style="font-size: 16px; line-height: 1.6;">
  354.                     メイン商品はカレーだが、ランチタイム以外のアイドルタイムで売れる商品が欲しい。        
  355.                 </li>
  356.                 <li style="font-size: 16px; line-height: 1.6;">
  357.                     花見や花火などイベントに出店する際、気軽に大量に用意でき、提供に時間が掛からない商品が欲しい。
  358.                 </li>
  359.             </ul>
  360.         </section>
  361.         <section style="margin: 0px;">
  362.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_16.webp', 'user_data') }}" alt="アイスチョコバナナ" style="max-width: 100%;">
  363.         </section>
  364.         <section style="margin: 0px 15px 0px 15px;">
  365.             <h3 style="font-size: 18px; text-align: left;">導入後</h2>
  366.             <ul style="margin: 0px;">
  367.                 <li style="font-size: 16px; line-height: 1.6;">
  368.                     冷凍のまま提供し、「3-5分経つと食べごろです」と伝えることで、解凍の手間が不要に。        
  369.                 </li>
  370.                 <li style="font-size: 16px; line-height: 1.6;">
  371.                     1本から安く提供できるので、空き時間で売れ、ファミリー客にも複数本売れるので、客単価がUP。
  372.                 </li>
  373.             </ul>
  374.         </section>
  375.         <section style="margin: 0px 15px 0px 15px;">
  376.             <h3 style="font-size: 18px; text-align: left;">コメント</h2>
  377.             <div style="font-size: 16px; line-height: 1.6; padding: 0px 5px;">
  378.                 春から夏にかけて色々な現場に出店するため、現場の客層に合わせて販売できる商品を探していました。<br>
  379.                 特にファミリー向けで提供に手間が掛からないものを探しており、シコメルさんのチョコバナナはぴったりでした。<br>
  380.                 1本単位ですぐに販売でき、単価も安いのでランチとのセットでおすすめもしやすかったですね。<br>
  381.             </div>
  382.         </section>
  383.         <section style="margin-top: 16px; position: relative;">
  384.             <img src="{{ asset('assets/img/spot_menu_lp/spot_menu_lp_17.webp', 'user_data') }}" alt="アイスチョコバナナ" style="max-width: 100%;">
  385.                 {% if app.request.query.get('move_product_detail') == '1' %}
  386.                     <a href="{{ url('product_detail', {'id': 56}) }}" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  387.                         <div style="top: 128px; text-align: center; width: 100%; position: absolute;">
  388.                             <img src="{{ asset('assets/img/spot_menu_lp/middle_cta.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 327px;">
  389.                         </div>                
  390.                     </a>
  391.                 {% else %}
  392.                     <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1&sendto=detail&param=56" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  393.                         <div style="top: 128px; text-align: center; width: 100%; position: absolute;">
  394.                             <img src="{{ asset('assets/img/spot_menu_lp/middle_cta.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 327px;">
  395.                         </div>                
  396.                     </a>
  397.                 {% endif %}
  398.         </section>
  399.         {# CTA #}
  400.         {% if not isMeta %}
  401.         <section style="margin: 0px;" id="footer-cta-btn">
  402.             <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  403.                 <img src="{{ asset('assets/img/spot_menu_lp/float_cta.webp', 'user_data') }}" alt="無料で会員登録" style="max-width: 100%; padding: 0px 10px;">
  404.             </a>
  405.         </section>
  406.         {% else %}
  407.         <section style="margin: 0px; text-align: center;" id="footer-cta-btn">
  408.             <a href="https://web-order.shikomel.com/entry/before?fromSpotMenuLp=1" style="cursor: pointer;" class="enrty_btn_spot_menu_lp">
  409.                 <img src="{{ asset('assets/img/spot_menu_lp/top_cta.webp', 'user_data') }}" alt="無料で会員登録" style="width: 100%; max-width: 375px; padding: 0px 10px;">
  410.             </a>
  411.         </section>
  412.         {% endif %}
  413. {% endblock %}