app/template/default/meta.twig line 1

Open in your IDE?
  1. {# カスタマイズしたMetaファイル #}
  2. {# 商品詳細表示時 商品スニペット追加 #}
  3. {% if app.request.get('_route') == 'product_detail' %}
  4.     {# 商品詳細 #}
  5.     {% set meta_og_type = "og:product" %}
  6.     {% set meta_canonical = url('product_detail', {'id': Product.id}) %}
  7.     <meta property="og:image" content="{{ absolute_url(asset(Product.main_list_image|no_image_product, 'save_image')) }}" />
  8.     <meta property="product:price:amount" content="{{ Product.getPrice02IncTaxMin }}"/>
  9.     <meta property="product:price:currency" content="{{ eccube_config.currency }}"/>
  10.     <meta property="product:product_link" content="{{ url('product_detail', {'id': Product.id}) }}"/>
  11.     <meta property="product:retailer_title" content="{{ BaseInfo.shop_name }}"/>
  12. {% elseif app.request.get('_route') == 'product_list' %}
  13.     {# 商品詳一覧 #}
  14.     {% set meta_canonical = url('product_list', {'category_id': Category.id|default(null)}) %}
  15.     {# ページングが0の場合はインデックスさせない #}
  16.     {% if pagination|length == 0 %}
  17.         <meta name="robots" content="noindex">
  18.     {% endif %}
  19. {% elseif app.request.get('_route') == 'homepage' %}
  20.     {# ホーム #}
  21.     {% set meta_og_type = 'website' %}
  22.     {% set meta_canonical = url('homepage') %}
  23.     <meta property="og:image" content="{{ absolute_url(asset('assets/img/common/websiteogp.webp', 'user_data')) }}" />
  24. {% elseif Page is defined and Page.url == "blogs42_list" %}
  25.     {# ブログ一覧 #}
  26.     <meta property="og:url" content="https://web-order.shikomel.com/blogs/list" />
  27.     <meta property="og:image" content="https://web-order.shikomel.com/html/upload/save_image/1126125749_6745473d54444.png" />
  28.     {% set meta_canonical = "https://web-order.shikomel.com/blogs/list" %}
  29.     {% set meta_description = "シコメルストアを活用して売上アップやメニュー追加を実現している飲食事業者の方の成功事例を多数掲載しています。|シコメルストア|業務用食材・食品 仕入れ通販" %}
  30. {% elseif Page is defined and Page.url == "blogs42_detail" and Blogs is defined %}
  31.     {# ブログ詳細 #}
  32.     <meta property="og:url" content="{{ url('blogs42_detail', {'id': Blogs.id}) }}" />
  33.     <meta property="og:image" content="{{ asset(Blogs.eyecatch_image, 'save_image') }}" />
  34.     {% set meta_canonical = url('blogs42_detail', {'id': Blogs.id}) %}
  35.     {% set meta_description = Blogs.blog_description %}
  36. {% elseif Page is defined and Page.url is defined and Page.url is not empty %}
  37.     {# ユーザー作成ページ #}
  38.     {% set meta_canonical = url(eccube_config.eccube_user_data_route, {'route': Page.url}) %}
  39.     <meta property="og:image" content="{{ absolute_url(asset('assets/img/common/websiteogp.webp', 'user_data')) }}" />
  40. {% endif %}
  41. {# TOPは「website」を設定。下層は「article」を設定 #}
  42. <meta property="og:type" content="{{ meta_og_type|default('article') }}"/>
  43. {# 固定で設定 #}
  44. <meta property="og:site_name" content="シコメルストア|業務用食材・食品 仕入れ通販"/>
  45. <meta name="twitter:card" content="summary_large_image">
  46. <meta name="twitter:site" content="@shikomel_o">
  47. {% if meta_canonical|default() %}
  48.     {# canonical url #}
  49.     {% if Category is defined and Category %}
  50.         {# 商品一覧_カテゴリ別 #}
  51.         {% if pagination is defined and pagination.paginationData is defined and pagination.paginationData.pageCount > 1 %}
  52.             {# 最初のページ #}
  53.             {% if pagination.paginationData.current == 1  %}
  54.             <meta property="og:url" content="{{ meta_canonical }}"/>
  55.             <link rel="next" href="{{ meta_canonical }}&pageno=2" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': 2 }) }}">
  56.             <link rel="canonical" href="{{ meta_canonical }}" />
  57.             {% set meta_description = Category.name~"の商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  58.             <meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
  59.             {# 最後のページ #}
  60.             {% elseif pagination.paginationData.last == pagination.paginationData.current %}
  61.             <meta property="og:url" content="{{ meta_canonical }}&pageno={{ pagination.paginationData.last }}"/>
  62.             <link rel="prev" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.previous }}" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
  63.             <link rel="canonical" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.last }}" />
  64.             {% set meta_description = Category.name~"の商品一覧"~pagination.paginationData.last~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  65.             <meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
  66.             {# 途中のページ #}
  67.             {% else %}
  68.             <meta property="og:url" content="{{ meta_canonical }}&pageno={{ pagination.paginationData.current }}"/>
  69.             <link rel="next" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.next }}" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.next }) }}">
  70.             <link rel="prev" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.previous }}" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
  71.             <link rel="canonical" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.current }}" />
  72.             {% set meta_description = Category.name~"の商品一覧"~pagination.paginationData.current~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  73.             <meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
  74.             {% endif %}
  75.         {% else %}
  76.             {# ページング無し #}
  77.             <meta property="og:url" content="{{ meta_canonical }}"/>
  78.             <link rel="canonical" href="{{ meta_canonical }}" />
  79.             {% set meta_description = Category.name~"の商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  80.             <meta property="og:image" content="{{ absolute_url(asset(""|no_image_product, 'save_image')) }}" />
  81.         {% endif %}
  82.     {% elseif search_form is defined and search_form.vars.value and search_form.vars.value.name %}
  83.         {# 商品一覧_キーワード検索 #}
  84.         {% if pagination is defined and pagination.paginationData is defined and pagination.paginationData.pageCount > 1 %}
  85.             {# 最初のページ #}
  86.             {% if pagination.paginationData.current == 1  %}
  87.             <meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}"/>
  88.             <link rel="next" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno=2" title="「{{ search_form.vars.value.name }}」に一致する商品一覧です。 {{ '%pageno%ページ目'|trans({ '%pageno%': 2 }) }}">
  89.             <link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}" />
  90.             {% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  91.             <meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
  92.             {# 最後のページ #}
  93.             {% elseif pagination.paginationData.last == pagination.paginationData.current %}
  94.             <meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.last }}"/>
  95.             <link rel="prev" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.previous }}" title="「{{ search_form.vars.value.name }}」に一致する商品一覧です。 {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
  96.             <link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.last }}" />
  97.             {% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧"~pagination.paginationData.last~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  98.             <meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
  99.             {# 途中のページ #}
  100.             {% else %}
  101.             <meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.current }}"/>
  102.             <link rel="next" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.next }}" title="「{{ search_form.vars.value.name }}」に一致する商品一覧です。 {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.next }) }}">
  103.             <link rel="prev" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.previous }}" title="「{{ search_form.vars.value.name }}」に一致する商品一覧です。 {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
  104.             <link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.current }}" />
  105.             {% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧"~pagination.paginationData.current~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  106.             <meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
  107.             {% endif %}
  108.         {% else %}
  109.             {# ページング無し #}
  110.             <meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}"/>
  111.             <link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}" />
  112.             {% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  113.             <meta property="og:image" content="{{ absolute_url(asset(""|no_image_product, 'save_image')) }}" />
  114.         {% endif %}
  115.     
  116.     {% elseif Page is defined and Page.url == "blogs42_list" %}
  117.         {# ブログ一覧 #}
  118.         <link rel="canonical" href="{{ meta_canonical }}" />
  119.     {% elseif Page is defined and Page.url == "blogs42_detail" %}
  120.         {# ブログ詳細 #}
  121.         <link rel="canonical" href="{{ meta_canonical }}" />
  122.     {% elseif app.request.get('_route') == 'product_detail' %}
  123.         {# 商品詳細 #}
  124.         <meta property="og:url" content="{{ meta_canonical }}"/>
  125.         <link rel="canonical" href="{{ meta_canonical }}" />
  126.         {% set meta_description = Product.description_list | default(Product.description_detail) ~"シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  127.     {% else %}
  128.         {# Other #}
  129.         <meta property="og:url" content="{{ meta_canonical }}"/>
  130.         <link rel="canonical" href="{{ meta_canonical }}" />
  131.         {% set meta_description = "シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
  132.     {% endif %}
  133. {% endif %}
  134. {# ページごとのディスクリプション設定 #}
  135. {% set meta_description = meta_description | default(Page.description) %}
  136. {% if meta_description %}
  137.     <meta name="description" content="{{ meta_description|striptags|slice(0,200) }}">
  138.     <meta property="og:description" content="{{ meta_description|striptags|slice(0,200) }}"/>
  139. {% endif %}
  140. {# Ptengineのタグ #}
  141. {% if Page is defined and Page.url == "refer_friend_lp" %}
  142. {# 友達紹介キャンペーンのヒートマップタグ #}
  143. <script src="https://js.ptengine.jp/5byin1nk.js"></script>
  144. {% endif %}
  145. {# パンくずスニペット #}
  146. {% if Category is defined and Category %}
  147. {# 商品カテゴリ #}
  148. <script type="application/ld+json">
  149. {
  150.     "@context": "http://schema.org",
  151.     "@type": "BreadcrumbList",
  152.     "itemListElement":[{
  153.             "@type": "ListItem",
  154.             "position": "1",
  155.             "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  156.             "item": "https://web-order.shikomel.com/"
  157.         },
  158.         {
  159.             "@type": "ListItem",
  160.             "position": "2",
  161.             "name": "{{ Category.name }}"
  162.         }
  163.     ]
  164. } </script>
  165. {% elseif search_form is defined and search_form.vars.value and search_form.vars.value.name %}
  166. {# 検索キーワード #}
  167. <script type="application/ld+json">
  168. {
  169.     "@context": "http://schema.org",
  170.     "@type": "BreadcrumbList",
  171.     "itemListElement":[{
  172.             "@type": "ListItem",
  173.             "position": "1",
  174.             "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  175.             "item": "https://web-order.shikomel.com/"
  176.         },
  177.         {
  178.             "@type": "ListItem",
  179.             "position": "2",
  180.             "name": "「{{ search_form.vars.value.name }}」に一致する商品一覧"
  181.         }
  182.     ]
  183. } </script>
  184. {% elseif app.request.get('_route') == 'product_detail' and 0 < Product.ProductCategories|length and Product.ProductCategories[0].Category is defined %}
  185. {# 商品詳細 #}
  186. <script type="application/ld+json">
  187. {
  188.     "@context": "http://schema.org",
  189.     "@type": "BreadcrumbList",
  190.     "itemListElement":[{
  191.             "@type": "ListItem",
  192.             "position": "1",
  193.             "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  194.             "item": "https://web-order.shikomel.com/"
  195.         },
  196.         {
  197.             "@type": "ListItem",
  198.             "position": "2",
  199.             "name": "{{ Product.ProductCategories[0].Category.name }}",
  200.             "item": "https://web-order.shikomel.com/products/list?category_id={{ Product.ProductCategories[0].Category.id }}"
  201.         },
  202.         {
  203.             "@type": "ListItem",
  204.             "position": "3",
  205.             "name": "{{ Product.name }}"
  206.         }
  207.     ]
  208. } </script>
  209. {% elseif app.request.get('_route') == 'product_detail' and Product.ProductCategories|length == 0 %}
  210. {# 商品詳細 カテゴリがゼロの商品 #}
  211. <script type="application/ld+json">
  212. {
  213.     "@context": "http://schema.org",
  214.     "@type": "BreadcrumbList",
  215.     "itemListElement":[{
  216.             "@type": "ListItem",
  217.             "position": "1",
  218.             "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  219.             "item": "https://web-order.shikomel.com/"
  220.         },
  221.         {
  222.             "@type": "ListItem",
  223.             "position": "2",
  224.             "name": "{{ Product.name }}"
  225.         }
  226.     ]
  227. } </script>
  228. {% elseif Page is defined and Page.url == "blogs42_list" %}
  229. {# ブログ一覧 #}
  230. <script type="application/ld+json">
  231. {
  232.     "@context": "http://schema.org",
  233.     "@type": "BreadcrumbList",
  234.     "itemListElement":[{
  235.             "@type": "ListItem",
  236.             "position": "1",
  237.             "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  238.             "item": "https://web-order.shikomel.com/"
  239.         },
  240.         {
  241.             "@type": "ListItem",
  242.             "position": "2",
  243.             "name": "導入事例記事一覧"
  244.         }
  245.     ]
  246. }
  247. </script>
  248. {% elseif Page is defined and Page.url == "blogs42_detail" and Blogs is defined and Blogs is not empty %}
  249. {# ブログ詳細 #}
  250. <script type="application/ld+json">
  251. {
  252.     "@context": "http://schema.org",
  253.     "@type": "BreadcrumbList",
  254.     "itemListElement":[{
  255.             "@type": "ListItem",
  256.             "position": "1",
  257.             "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  258.             "item": "https://web-order.shikomel.com/"
  259.         },
  260.         {
  261.             "@type": "ListItem",
  262.             "position": "2",
  263.             "name": "導入事例記事一覧",
  264.             "item": "https://web-order.shikomel.com/blogs/list"
  265.         },
  266.         {
  267.             "@type": "ListItem",
  268.             "position": "3",
  269.             "name": "{{ Blogs.title }}"
  270.         }
  271.     ]
  272. }
  273. </script>
  274. {% endif %}
  275. {# WebSiteスニペット #}
  276. <script type="application/ld+json">
  277. {
  278.     "@context": "http://schema.org",
  279.     "@type": "WebSite",
  280.     "name": "シコメルストア|業務用食材・食品 仕入れ通販",
  281.     "url": "https://web-order.shikomel.com/",
  282.     "description": "シコメルストアは飲食事業者向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!"
  283. } </script>
  284. {# Corporationスニペット #}
  285. <script type="application/ld+json">
  286. {
  287.     "@context": "http://schema.org",
  288.     "@type": "Corporation",
  289.     "name": "株式会社シコメルフードテック",
  290.     "address": {
  291.         "@type": "PostalAddress",
  292.         "postalCode": "1500002",
  293.         "addressRegion": "東京都",
  294.         "addressLocality": "渋谷区",
  295.         "streetAddress": "渋谷1丁目2番5号 MFPR渋谷ビル B1F",
  296.         "addressCountry": "JP"
  297.     },
  298.     "telephone": "03-6427-1282",
  299.     "url": "https://web-order.shikomel.com/"
  300. } </script>
  301. {# Faqスニペット #}
  302. <script type="application/ld+json">
  303. {
  304.     "@context": "https://schema.org",
  305.     "@type": "FAQPage",
  306.     "mainEntity": [{
  307.         "@type": "Question",
  308.         "name": "注文後、納品までどれくらいかかりますか?",
  309.         "acceptedAnswer": {
  310.             "@type": "Answer",
  311.             "text": "最短翌日に納品可能です。アプリ・ECでのご注文受付・出荷は平日に行っております。大阪からヤマト便で発送しており、遠方・離島地域は納品まで+1~2日いただく場合がございます。"
  312.         }
  313.     }, {
  314.         "@type": "Question",
  315.         "name": "送料はいくらですか?",
  316.         "acceptedAnswer": {
  317.             "@type": "Answer",
  318.             "text": "一律1,650円(税込)です。※2024年11月1日注文分より、送料を変更しております。北海道:2,530円(税込)沖縄県:2,970円(税込)"
  319.         }
  320.     }, {
  321.         "@type": "Question",
  322.         "name": "シコメルストアは無料で利用できますか?",
  323.         "acceptedAnswer": {
  324.             "@type": "Answer",
  325.             "text": "会員登録は無料です。商品をご購入いただく際に、商品代金+送料が発生します。"
  326.         }
  327.     }, {
  328.         "@type": "Question",
  329.         "name": "シコメルストアは誰でも利用できますか?",
  330.         "acceptedAnswer": {
  331.             "@type": "Answer",
  332.             "text": "飲食店・及びホテルや施設など食を提供する事業者様専用のサービスとなります。個人事業主の方もお使いいただけます。"
  333.         }
  334.     }]
  335. } </script>
  336. {# SiteNavigationスニペット #}
  337. <script type="application/ld+json">
  338. {
  339.     "@context": "http://schema.org",
  340.     "@type": "SiteNavigationElement",
  341.     "hasPart": [{
  342.             "@type": "WebPage",
  343.             "name": " 居酒屋向けメニュー",
  344.             "url": "https://web-order.shikomel.com/products/list?category_id=7"
  345.         },
  346.         {
  347.             "@type": "WebPage",
  348.             "name": "カフェ向けメニュー",
  349.             "url": "https://web-order.shikomel.com/products/list?category_id=8"
  350.         },
  351.         {
  352.             "@type": "WebPage",
  353.             "name": "イタリアン・フレンチ店向けメニュー",
  354.             "url": "https://web-order.shikomel.com/products/list?category_id=10"
  355.         },
  356.         {
  357.             "@type": "WebPage",
  358.             "name": "レジャー・観光施設向けメニュー",
  359.             "url": "https://web-order.shikomel.com/products/list?category_id=9"
  360.         },
  361.         {
  362.             "@type": "WebPage",
  363.             "name": "ダイニングバー向けメニュー",
  364.             "url": "https://web-order.shikomel.com/products/list?category_id=14"
  365.         },
  366.         {
  367.             "@type": "WebPage",
  368.             "name": "焼肉・韓国店向けメニュー",
  369.             "url": "https://web-order.shikomel.com/products/list?category_id=13"
  370.         },
  371.         {
  372.             "@type": "WebPage",
  373.             "name": "カラオケ・スナック向けメニュー",
  374.             "url": "https://web-order.shikomel.com/products/list?category_id=12"
  375.         },
  376.         {
  377.             "@type": "WebPage",
  378.             "name": "キッチンカー向けメニュー",
  379.             "url": "https://web-order.shikomel.com/products/list?category_id=11"
  380.         },
  381.         {
  382.             "@type": "WebPage",
  383.             "name": "調理方法-焼きメニュー",
  384.             "url": "https://web-order.shikomel.com/products/list?name=%E7%84%BC%E6%88%90%E3%81%AE%E3%81%BF"
  385.         },
  386.         {
  387.             "@type": "WebPage",
  388.             "name": "調理方法-煮るメニュー",
  389.             "url": "https://web-order.shikomel.com/products/list?name=%E7%85%AE%E3%82%8B"
  390.         },
  391.         {
  392.             "@type": "WebPage",
  393.             "name": "調理方法-揚げるメニュー",
  394.             "url": "https://web-order.shikomel.com/products/list?name=%E6%8F%9A%E3%81%92%E3%82%8B"
  395.         },
  396.         {
  397.             "@type": "WebPage",
  398.             "name": "調理方法-湯煎メニュー",
  399.             "url": "https://web-order.shikomel.com/products/list?name=%E6%B9%AF%E7%85%8E%E3%81%AE%E3%81%BF"
  400.         },
  401.         {
  402.             "@type": "WebPage",
  403.             "name": "調理方法-レンジアップメニュー",
  404.             "url": "https://web-order.shikomel.com/products/list?name=%E3%83%AC%E3%83%B3%E3%82%B8%E3%82%A2%E3%83%83%E3%83%97"
  405.         },
  406.         {
  407.             "@type": "WebPage",
  408.             "name": "調理方法-解凍のみメニュー",
  409.             "url": "https://web-order.shikomel.com/products/list?name=%E8%A7%A3%E5%87%8D%E3%81%AE%E3%81%BF"
  410.         },
  411.         {
  412.             "@type": "WebPage",
  413.             "name": "ジャンル-和食メニュー",
  414.             "url": "https://web-order.shikomel.com/products/list?name=%E5%92%8C%E9%A3%9F"
  415.         },
  416.         {
  417.             "@type": "WebPage",
  418.             "name": "ジャンル-洋食メニュー",
  419.             "url": "https://web-order.shikomel.com/products/list?name=%E6%B4%8B%E9%A3%9F"
  420.         },
  421.         {
  422.             "@type": "WebPage",
  423.             "name": "ジャンル-韓国メニュー",
  424.             "url": "https://web-order.shikomel.com/products/list?name=%E9%9F%93%E5%9B%BD"
  425.         },
  426.         {
  427.             "@type": "WebPage",
  428.             "name": "ジャンル-イタリアンメニュー",
  429.             "url": "https://web-order.shikomel.com/products/list?name=%E3%82%A4%E3%82%BF%E3%83%AA%E3%82%A2%E3%83%B3"
  430.         },
  431.         {
  432.             "@type": "WebPage",
  433.             "name": "ジャンル-中華メニュー",
  434.             "url": "https://web-order.shikomel.com/products/list?name=%E4%B8%AD%E8%8F%AF"
  435.         },
  436.         {
  437.             "@type": "WebPage",
  438.             "name": "ジャンル-肉料理メニュー",
  439.             "url": "https://web-order.shikomel.com/products/list?name=%E8%82%89%E6%96%99%E7%90%86"
  440.         },
  441.         {
  442.             "@type": "WebPage",
  443.             "name": "ジャンル-魚介料理メニュー",
  444.             "url": "https://web-order.shikomel.com/products/list?name=%E9%AD%9A%E4%BB%8B%E6%96%99%E7%90%86"
  445.         },
  446.         {
  447.             "@type": "WebPage",
  448.             "name": "ジャンル-ご飯ものメニュー",
  449.             "url": "https://web-order.shikomel.com/products/list?name=%E3%81%94%E9%A3%AF%E3%82%82%E3%81%AE"
  450.         },
  451.         {
  452.             "@type": "WebPage",
  453.             "name": "ジャンル-揚げ物メニュー",
  454.             "url": "https://web-order.shikomel.com/products/list?name=%E6%8F%9A%E3%81%92%E7%89%A9"
  455.         },
  456.         {
  457.             "@type": "WebPage",
  458.             "name": "ジャンル-スナックメニュー",
  459.             "url": "https://web-order.shikomel.com/products/list?name=%E3%82%B9%E3%83%8A%E3%83%83%E3%82%AF"
  460.         },
  461.         {
  462.             "@type": "WebPage",
  463.             "name": "ジャンル-スープメニュー",
  464.             "url": "https://web-order.shikomel.com/products/list?name=%E3%82%B9%E3%83%BC%E3%83%97"
  465.         },
  466.         {
  467.             "@type": "WebPage",
  468.             "name": "ジャンル-スイーツメニュー",
  469.             "url": "https://web-order.shikomel.com/products/list?name=%E3%82%B9%E3%82%A4%E3%83%BC%E3%83%84"
  470.         },
  471.         {
  472.             "@type": "WebPage",
  473.             "name": "ジャンル-ドリンクメニュー",
  474.             "url": "https://web-order.shikomel.com/products/list?name=%E3%83%89%E3%83%AA%E3%83%B3%E3%82%AF"
  475.         },
  476.         {
  477.             "@type": "WebPage",
  478.             "name": "プライバシーポリシー",
  479.             "url": "https://shikomel.com/privacy/"
  480.         },
  481.         {
  482.             "@type": "WebPage",
  483.             "name": "利用規約",
  484.             "url": "https://shikomel.com/terms/"
  485.         },
  486.         {
  487.             "@type": "WebPage",
  488.             "name": "特定商取引法に基づく表記",
  489.             "url": "https://shikomel.com/legal/"
  490.         },
  491.         {
  492.             "@type": "WebPage",
  493.             "name": "会員登録",
  494.             "url": "https://web-order.shikomel.com/entry/before"
  495.         },
  496.         {
  497.             "@type": "WebPage",
  498.             "name": "ログイン",
  499.             "url": "https://web-order.shikomel.com/mypage/login"
  500.         },
  501.         {
  502.             "@type": "WebPage",
  503.             "name": "事例一覧",
  504.             "url": "https://web-order.shikomel.com/blogs/list"
  505.         },
  506.         {
  507.             "@type": "WebPage",
  508.             "name": "シコメル|会社情報",
  509.             "url": "https://corp.shikomel.com/"
  510.         }
  511.     ]
  512. } </script>