app/template/user_data/oneope_lunch_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.     $(function() {
  22.       // メニュー例のカルーセル
  23.         $('.sample_menu').slick({
  24.           dots: false,
  25.           autoplay: false,
  26.           centerMode: false,
  27.           centerPadding: '0px',
  28.           arrows: false,
  29.           infinite: true,
  30.           slidesToShow: 1
  31.         });
  32.         // アイキャッチのズームインとフェード処理
  33.         $("#header_content .slider")
  34.         // 最初のスライドに"add-animation"のclassを付ける(data-slick-index="0"が最初のスライドを指す)
  35.         .on("init", function () {
  36.             $('#header_content .slick-slide[data-slick-index="0"]').addClass("add-animation");
  37.         })
  38.         // 通常のオプション
  39.         .slick({
  40.             autoplay: true, // 自動再生ON
  41.             fade: true, // フェードON
  42.             arrows: false, // 矢印OFF
  43.             speed: 2000, // スライド、フェードアニメーションの速度2000ミリ秒
  44.             autoplaySpeed: 4000, // 自動再生速度4000ミリ秒
  45.             pauseOnFocus: false, // フォーカスで一時停止OFF
  46.             pauseOnHover: false, // マウスホバーで一時停止OFF
  47.         })
  48.         .on({
  49.             // スライドが移動する前に発生するイベント
  50.             beforeChange: function (event, slick, currentSlide, nextSlide) {
  51.                 // 表示されているスライドに"add-animation"のclassをつける
  52.                 $(".slick-slide", this).eq(nextSlide).addClass("add-animation");
  53.                 // あとで"add-animation"のclassを消すための"remove-animation"classを付ける
  54.                 $(".slick-slide", this).eq(currentSlide).addClass("remove-animation");
  55.             },
  56.             // スライドが移動した後に発生するイベント
  57.             afterChange: function () {
  58.                 // 表示していないスライドはアニメーションのclassを外す
  59.                 $(".remove-animation", this).removeClass(
  60.                     "remove-animation add-animation"
  61.                 );
  62.             },
  63.         });
  64.     });
  65.     {% set current_domain = app.request.getHost() %}
  66.     {# ドメイン判定 #}
  67.     {% set is_prod = 'web-order.shikomel.com' in current_domain %}
  68.     {% set is_stg = 'web-order-stg.shikomel.com' in current_domain %}
  69.     {% if is_prod %}
  70.     // Lineバナークリックイベント
  71.     $('.enrty_btn_lunch_lp').on('click', function(event) {
  72.         const currentPageUrl = window.location.href;
  73.         fbq('trackCustom', 'ce_click_lunch_lp', {
  74.             content_type: "ClickLineBtn",
  75.             content_name: currentPageUrl,
  76.             value: 20
  77.         });
  78.         window.dataLayer.push({
  79.             event: 'ce_click_lunch_lp',
  80.             custom_event_name: 'ce_click_lunch_lp',
  81.             custom_page_url: currentPageUrl,
  82.             custom_customer_id: '',
  83.             custom_user_agent: $("#user_agent").val(),
  84.             custom_is_ig: $("#is_ig").val(),
  85.             custom_is_line: $("#is_line").val(),
  86.             custom_referer: $("#referer").val(),
  87.             custom_real_ip: $("#real_ip").val(),
  88.         });
  89.         _lt('send', 'cv', {
  90.             type: 'ce_click_lunch_lp'
  91.         },['d6fb195c-aa19-4109-8ea0-7b1d883fb349']);
  92.     });
  93.     {% endif %}
  94. </script>
  95. {% if is_prod %}
  96. <script src="https://js.ptengine.jp/1ceg174e.js"></script>
  97. {% endif %}
  98. {% endblock javascript %}
  99. {% block stylesheet %}
  100.     <style>
  101.     .main_content h1 {
  102.         font-size: 22px;
  103.         font-weight: bold;
  104.         margin: 0px;
  105.     }
  106.     .main_content h2 {
  107.         font-size: 20px;
  108.         font-weight: bold;
  109.         margin: 0px;
  110.     }
  111.     .main_content h3 {
  112.         font-size: 14px;
  113.         font-weight: bold;
  114.     }
  115.     .main_content img {
  116.         margin-bottom: 0px;
  117.     }
  118.     .main_content strong {
  119.         margin-bottom: 10px;
  120.         line-height: 1.8;
  121.     }
  122.     .main_content p, .main_content td {
  123.         line-height: 1.8;
  124.     }
  125.     .main_content {
  126.         color: black;
  127.         font-family: "メイリオ","Meiryo","Hiragino Sans","ヒラギノ角ゴシック","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS Pゴシック","Helvetica Neue","Helvetica","Arial","sans-serif";
  128.     }
  129.     {# メニュー例のスライド #}
  130.     .sample_menu {
  131.         margin-bottom: 0px; width: 100%; max-width: 400px; padding: 0px;
  132.     }
  133.     .sample_menu .slick-list {
  134.         padding: 0px !important;
  135.         padding-right: 21% !important;
  136.     }
  137.     {# アイキャッチのフェードインとスライド調整 #}
  138.     #header_content {
  139.         position: relative;
  140.         overflow: hidden;
  141.         width: 100%;
  142.         max-width: 100%;
  143.         height: 650px;
  144.     }
  145.     #header_content .slider {
  146.         height: 504px;
  147.         margin-inline: auto;
  148.         overflow: hidden; /* 画像がはみ出ないようにする */
  149.         width: 100%;
  150.     }
  151.     #header_content .slick-img img {
  152.         width: 100%;
  153.     }
  154.     @keyframes zoomUp {
  155.         0% {
  156.             transform: scale(1);
  157.         }
  158.         100% {
  159.             transform: scale(1.15); /* 拡大率 */
  160.         }
  161.     }
  162.     .add-animation {
  163.         animation: zoomUp 7s linear 0s normal both;
  164.     }
  165.     </style>
  166. {% endblock %}
  167. {% block main %}
  168.     <div class="main_content" style="max-width: 400px; margin: auto;">
  169.         {# フローティングCTA #}
  170.         <section id="float-cta-btn" style="bottom: 0px; position: fixed; z-index: 1000; background-color: white; text-align: center;">
  171.             <a href="https://web-order.shikomel.com/entry/before?fromZitanLp=1" style="cursor: pointer;" class="enrty_btn_lunch_lp">
  172.                 <img src="{{ asset('assets/img/oneope_lunch_lp/float_cta_no_line.webp', 'user_data') }}" alt="無料で会員登録" style="width: 100%; max-width: 400px; padding: 0px;">
  173.             </a>
  174.         </section>
  175.         {# アイキャッチ #}
  176.         <header id="header_content">
  177.             <div class="slider">
  178.                 <div class="slick-img">
  179.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_fv_1.webp', 'user_data') }}" class="" alt="Slide 1">
  180.                 </div>
  181.                 <div class="slick-img">
  182.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_fv_2.webp', 'user_data') }}" class="" alt="Slide 2">
  183.                 </div>
  184.                 <div class="slick-img">
  185.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_fv_3.webp', 'user_data') }}" class="" alt="Slide 3">
  186.                 </div>
  187.                 <div class="slick-img">
  188.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_fv_4.webp', 'user_data') }}" class="" alt="Slide 4">
  189.                 </div>
  190.             </div>
  191.             <h1><img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_1.webp', 'user_data') }}" alt="月30万円売上UP!?ランチで売れる仕込み済み食材たち" style="max-width: 100%; position: absolute; bottom: 146px;"></h1>
  192.             <a href="https://web-order.shikomel.com/entry/before?fromZitanLp=1" style="cursor: pointer;" class="enrty_btn_lunch_lp">
  193.                 <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_1_2.webp', 'user_data') }}" alt="無料で会員登録" style="max-width: 100%;">
  194.             </a>
  195.         </header>
  196.         
  197.         <section style="margin: 0px;">
  198.             <h2><img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2.webp', 'user_data') }}" alt="こんなお悩みありませんか?" style="max-width: 100%;"></h2>
  199.         </section>
  200.         <section style="margin: 0px;">
  201.             <h2><img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_3.webp', 'user_data') }}" alt="シコメルストアのランチメニューで解決" style="max-width: 100%;"></h2>
  202.         </section>
  203.         <section style="margin: 0px 0px 100px 0px;">
  204.             {# メニュースクロール #}
  205.             {# 丼もの #}
  206.             <h2 style="font-size: 22px; font-weight: bold; margin: 24px 0 0 16px;">丼もの</h2>
  207.             <div class="sample_menu" style="">
  208.                 <div class="item slick-slide">
  209.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_1_1.png', 'user_data') }}" alt="牛タン丼" style="width: 100%; ">
  210.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=637" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  211.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="牛タン丼" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  212.                     </a>
  213.                 </div>
  214.                 <div class="item slick-slide">
  215.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_1_2.png', 'user_data') }}" alt="ロコモコ丼" style="width: 100%; ">
  216.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=39" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  217.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="ロコモコ丼" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  218.                     </a>
  219.                 </div>
  220.                 <div class="item slick-slide">
  221.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_1_3.png', 'user_data') }}" alt="豚丼" style="width: 100%; ">
  222.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=99" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  223.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="豚丼" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  224.                     </a>
  225.                 </div>
  226.                 <div class="item slick-slide">
  227.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_1_4.png', 'user_data') }}" alt="ローストビーフ丼" style="width: 100%; ">
  228.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=29" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  229.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="ローストビーフ丼" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  230.                     </a>
  231.                 </div>
  232.             </div>
  233.             {# 定食 #}
  234.             <h2 style="font-size: 22px; font-weight: bold; margin: 24px 0 0 16px;">定食</h2>
  235.             <div class="sample_menu" style="">
  236.                 <div class="item slick-slide">
  237.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_2_1.png', 'user_data') }}" alt="淡路産牛ハンバーグ定食" style="width: 100%; ">
  238.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=39" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  239.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="淡路産牛ハンバーグ定食" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  240.                     </a>
  241.                 </div>
  242.                 <div class="item slick-slide">
  243.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_2_2.png', 'user_data') }}" alt="牛タン定食" style="width: 100%; ">
  244.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=637" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  245.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="牛タン定食" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  246.                     </a>
  247.                 </div>
  248.                 <div class="item slick-slide">
  249.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_2_3.png', 'user_data') }}" alt="サーモンレアカツ定食" style="width: 100%; ">
  250.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=68" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  251.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="サーモンレアカツ定食" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  252.                     </a>
  253.                 </div>
  254.                 <div class="item slick-slide">
  255.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_2_4.png', 'user_data') }}" alt="牛ハラミ定食" style="width: 100%; ">
  256.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=628" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  257.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="牛ハラミ定食" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  258.                     </a>
  259.                 </div>
  260.             </div>
  261.             {# プレート #}
  262.             <h2 style="font-size: 22px; font-weight: bold; margin: 24px 0 0 16px;">プレート</h2>
  263.             <div class="sample_menu" style="">
  264.                 <div class="item slick-slide">
  265.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_3_1.png', 'user_data') }}" alt="鶏のコンフィプレート" style="width: 100%; ">
  266.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=32" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  267.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="鶏のコンフィプレート" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  268.                     </a>
  269.                 </div>
  270.                 <div class="item slick-slide">
  271.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_3_2.png', 'user_data') }}" alt="ジャークチキン" style="width: 100%; ">
  272.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=4" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  273.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="ジャークチキン" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  274.                     </a>
  275.                 </div>
  276.                 <div class="item slick-slide">
  277.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_3_3.png', 'user_data') }}" alt="シュリンプカレー" style="width: 100%; ">
  278.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=13" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  279.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="シュリンプカレー" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  280.                     </a>
  281.                 </div>
  282.                 <div class="item slick-slide">
  283.                     <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_3_4.png', 'user_data') }}" alt="プルドポーク" style="width: 100%; ">
  284.                     <a href="https://web-order.shikomel.com/entry/before?fromNewOpenRestoLp=1&sendto=detail&param=72" style="cursor: pointer;" class="enrty_btn_new_open_resto_lp_2">
  285.                         <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_2nd_item_btn.png', 'user_data') }}" alt="プルドポーク" style="width: 100%; position: relative; margin-top: -77px; margin-bottom: 16px; padding: 0 32px;">
  286.                     </a>
  287.                 </div>
  288.             </div>
  289.         </section>
  290.         <section style="margin: 0px;">
  291.             <h2 style="font-size: 22px; text-align: center;">お客様の事例</h2>
  292.         </section>
  293.         {# 事例1 #}
  294.         <section style="margin: 0px;">
  295.             <h2><img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_4.webp', 'user_data') }}" alt="ワンオペの洋風居酒屋" style="max-width: 100%;"></h2>
  296.         </section>
  297.         <section style="margin: 0px 5px 0px 5px;">
  298.             <h2 style="font-size: 20px; line-height: 1.8; margin-left: 10px; margin-right: 10px;">夜営業に左右されず安定したランチ営業が可能になりました</h2>
  299.             <table class="table table-ProductDetail" style="max-width: 800px; margin-bottom: 30px;">
  300.                 <tbody>
  301.                     <tr>
  302.                         <td style="border-style: none; width: 100px;">エリア<br>業態・席数<br>営業時間</td>
  303.                         <td style="border-style: none;">東京都<br>ワンオペの洋風居酒屋(10席)<br>夜営業:18:00~3:00<br>※常連さんが帰るまで</td>
  304.                     </tr>
  305.                 </tbody>
  306.             </table>
  307.         </section>
  308.         <section style="margin: 0px 10px 0px 10px;">
  309.             <h3 style="font-size: 18px; text-align: left;">課題</h2>
  310.             <ul style="margin-right: 5px; margin-left: 5px;">
  311.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  312.                     常連さん次第で夜営業の終了が深夜になることもあり、次の日のランチ営業を休みがちに。
  313.                 </li>
  314.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  315.                     不定期のランチ営業でリピータもつきづらい状態に。
  316.                 </li>
  317.             </ul>
  318.         </section>
  319.         <section style="margin: 0px;">
  320.             <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_5.webp', 'user_data') }}" alt="淡路牛のハンバーグパティ" style="max-width: 100%;">
  321.         </section>
  322.         <section style="margin: 0px 10px 0px 10px;">
  323.             <h3 style="font-size: 18px; text-align: left;">導入後</h2>
  324.             <ul style="margin-right: 5px; margin-left: 5px;">
  325.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  326.                     ランチの準備時間が短く、深夜営業の次の日も安定したランチ営業ができるように。
  327.                 </li>
  328.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  329.                     ランチ営業終了後に仮眠をとれるようになり夜営業も全力で出来るように。
  330.                 </li>
  331.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  332.                     ランチに来てくれたお客さんが夜営業に来てくれる嬉しい効果も。
  333.                 </li>
  334.             </ul>
  335.         </section>
  336.         <section style="margin: 0px 10px 0px 10px;">
  337.             <h3 style="font-size: 18px; text-align: left;">コメント</h2>
  338.             <div style="font-size: 16px; line-height: 1.8; font-weight: 500; padding: 0px 5px;">
  339.                 夜営業の閉店時間次第で翌日のランチ営業が休みがちなっていました。<br>
  340.                 シコメルストアの「鶏もものトマト煮」を使い始めてからは、開店30分前にサッと準備をして、ランチ営業できるようになり、毎日営業できるようになりました。<br>
  341.                 ランチの売上も上がりつつ、昼に来店したお客さんが夜も来てくれるなど集客効果もありました。
  342.             </div>
  343.         </section>
  344.         <section style="margin-top: 16px;">
  345.             <a href="https://web-order.shikomel.com/entry/before?fromZitanLp=1&sendto=detail&param=566" style="cursor: pointer;" class="enrty_btn_lunch_lp">
  346.                 <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_6.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 100%;">
  347.             </a>
  348.         </section>
  349.         {# 事例2 #}
  350.         <section style="margin: 0px;">
  351.             <h2><img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_7.webp', 'user_data') }}" alt="個人経営のカフェ" style="max-width: 100%;"></h2>
  352.         </section>
  353.         <section style="margin: 0px 5px 0px 5px;">
  354.             <h2 style="font-size: 20px; line-height: 1.8; margin-left: 10px; margin-right: 10px;">カフェでも簡単!調理設備が限られていてもできるランチ営業</h2>
  355.             <table class="table table-ProductDetail" style="max-width: 800px; margin-bottom: 30px;">
  356.                 <tbody>
  357.                     <tr>
  358.                         <td style="border-style: none; width: 100px;">エリア<br>業態・席数<br>営業時間</td>
  359.                         <td style="border-style: none;">大阪府<br>個人経営のカフェ(15席)<br>昼:10:00-18:00</td>
  360.                     </tr>
  361.                 </tbody>
  362.             </table>
  363.         </section>
  364.         <section style="margin: 0px 10px 0px 10px;">
  365.             <h3 style="font-size: 18px; text-align: left;">課題</h2>
  366.             <ul style="margin-right: 5px; margin-left: 5px;">
  367.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  368.                     ドリンクとデザートだけだとどうしても売上が足りない。
  369.                 </li>
  370.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  371.                     ランチはやったことがない。昼はワンオペなので調理と接客を一人で対応できるか不安。
  372.                 </li>
  373.             </ul>
  374.         </section>
  375.         <section style="margin: 0px;">
  376.             <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_8.webp', 'user_data') }}" alt="導入した仕込み済み商品" style="max-width: 100%;">
  377.         </section>
  378.         <section style="margin: 0px 10px 0px 10px;">
  379.             <h3 style="font-size: 18px; text-align: left;">導入後</h2>
  380.             <ul style="margin-right: 5px; margin-left: 5px;">
  381.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  382.                     ハンバーグプレートをランチ時間10食限定で提供。
  383.                 </li>
  384.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  385.                     1メニューから始めることでワンオペでも無理なくランチ営業が開始できた。
  386.                 </li>
  387.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  388.                     10食限定とすることでロスも無く毎日完売状態に。
  389.                 </li>
  390.             </ul>
  391.         </section>
  392.         <section style="margin: 0px 10px 0px 10px;">
  393.             <h3 style="font-size: 18px; text-align: left;">コメント</h2>
  394.             <div style="font-size: 16px; line-height: 1.8; font-weight: 500; padding: 0px 5px;">
  395.                 ワンオペでお金の余裕もあまりなく大々的なランチ営業は不安でした。<br>
  396.                 シコメルストアの「淡路牛のハンバーグ」は1メニュー、少量から発注でき、調理時間も約10分と短いので、試行錯誤しながらランチ営業を始めることができました。<br>
  397.                 慣れてきたので、鶏のコンフィやジャークチキンを使ってメニューの幅を広げたいと思っています。
  398.             </div>
  399.         </section>
  400.         <section style="margin-top: 16px;">
  401.             <a href="https://web-order.shikomel.com/entry/before?fromZitanLp=1&sendto=detail&param=39" style="cursor: pointer;" class="enrty_btn_lunch_lp">
  402.                 <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_9.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 100%;">
  403.             </a>
  404.         </section>
  405.         {# 事例3 #}
  406.         <section style="margin: 0px;">
  407.             <h2><img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_10.webp', 'user_data') }}" alt="" style="max-width: 100%;"></h2>
  408.         </section>
  409.         <section style="margin: 0px 5px 0px 5px;">
  410.             <h2 style="font-size: 20px; line-height: 1.8; margin-left: 10px; margin-right: 10px;">仕込み時間が3時間 → 1時間になり<br>朝、子供との時間を確保できるように</h2>
  411.             <table class="table table-ProductDetail" style="max-width: 800px; margin-bottom: 30px;">
  412.                 <tbody>
  413.                     <tr>
  414.                         <td style="border-style: none; width: 100px;">エリア<br>業態・席数<br>営業時間</td>
  415.                         <td style="border-style: none;">神奈川県<br>ワンオペのダイニングバー(8席)<br>ランチ:11:30-14:00<br>夜営業:17:00-23:00</td>
  416.                     </tr>
  417.                 </tbody>
  418.             </table>
  419.          </section>
  420.         <section style="margin: 0px 10px 0px 10px;">
  421.             <h3 style="font-size: 18px; text-align: left;">課題</h2>
  422.             <ul style="margin-right: 5px; margin-left: 5px;">
  423.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  424.                     ランチ営業を始めたものの、食材の仕込みに3時間以上かかり、朝が早くなりすぎて負担。
  425.                 </li>
  426.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  427.                     ランチ後の片づけで夜の仕込みの時間が確保できないことも。
  428.                 </li>
  429.             </ul>
  430.         </section>
  431.         <section style="margin: 0px;">
  432.             <h3 style="margin: 0px 10px 0px 10px; font-size: 18px; text-align: left;">導入した仕込み済み食材</h2>
  433.             <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_11.webp', 'user_data') }}" alt="導入した仕込み済み商品" style="max-width: 100%;">
  434.         </section>
  435.         <section style="margin: 0px 10px 0px 10px;">
  436.             <h3 style="font-size: 18px; text-align: left;">導入後</h2>
  437.             <ul style="margin-right: 5px; margin-left: 5px;">
  438.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  439.                     ランチの準備時間が3時間 → 1時間に短縮。
  440.                 </li>
  441.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  442.                      朝2時間遅く店に行くことができ、子供と過ごす時間ができた。
  443.                 </li>
  444.                 <li style="font-size: 16px; line-height: 1.8; font-weight: 500;">
  445.                     開店準備30分ランチ営業1.5時間で月30万円の売上確保。
  446.                 </li>
  447.             </ul>
  448.         </section>
  449.         <section style="margin: 0px 10px 0px 10px;">
  450.             <h3 style="font-size: 18px; text-align: left;">コメント</h2>
  451.             <div style="font-size: 16px; line-height: 1.8; font-weight: 500; padding: 0px 5px;">
  452.                 ランチ営業の為朝早く家をでなければならず、子供とゆっくり過ごす時間をとれていないかった。<br>
  453.                 シコメルストアの「プルドポーク」を使うようになってからは、仕込み時間が大幅に減り、ギリギリまで家で子供と過ごせるようになりました。<br>
  454.                 売上アップもできていて無理なくランチ営業を続けられそうです。
  455.             </div>
  456.         </section>
  457.         <section style="margin-top: 16px;">
  458.             <a href="https://web-order.shikomel.com/entry/before?fromZitanLp=1&sendto=detail&param=72" style="cursor: pointer;" class="enrty_btn_lunch_lp">
  459.                 <img src="{{ asset('assets/img/oneope_lunch_lp/lunch_lp_12.webp', 'user_data') }}" alt="この商品をチェック" style="max-width: 100%;">
  460.             </a>
  461.         </section>
  462.         <section style="margin: 0px;" id="footer-cta-btn">
  463.             <a href="https://web-order.shikomel.com/entry/before?fromZitanLp=1" style="cursor: pointer;" class="enrty_btn_lunch_lp">
  464.                 <img src="{{ asset('assets/img/oneope_lunch_lp/float_cta_no_line.webp', 'user_data') }}" alt="無料で会員登録" style="max-width: 100%; padding: 0px;">
  465.             </a>
  466.         </section>
  467. {% endblock %}