{# カスタマイズしたMetaファイル #}
{# 商品詳細表示時 商品スニペット追加 #}
{% if app.request.get('_route') == 'product_detail' %}
{# 商品詳細 #}
{% set meta_og_type = "og:product" %}
{% set meta_canonical = url('product_detail', {'id': Product.id}) %}
<meta property="og:image" content="{{ absolute_url(asset(Product.main_list_image|no_image_product, 'save_image')) }}" />
<meta property="product:price:amount" content="{{ Product.getPrice02IncTaxMin }}"/>
<meta property="product:price:currency" content="{{ eccube_config.currency }}"/>
<meta property="product:product_link" content="{{ url('product_detail', {'id': Product.id}) }}"/>
<meta property="product:retailer_title" content="{{ BaseInfo.shop_name }}"/>
{% elseif app.request.get('_route') == 'product_list' %}
{# 商品詳一覧 #}
{% set meta_canonical = url('product_list', {'category_id': Category.id|default(null)}) %}
{# ページングが0の場合はインデックスさせない #}
{% if pagination|length == 0 %}
<meta name="robots" content="noindex">
{% endif %}
{% elseif app.request.get('_route') == 'homepage' %}
{# ホーム #}
{% set meta_og_type = 'website' %}
{% set meta_canonical = url('homepage') %}
<meta property="og:image" content="{{ absolute_url(asset('assets/img/common/websiteogp.webp', 'user_data')) }}" />
{% elseif Page is defined and Page.url == "blogs42_list" %}
{# ブログ一覧 #}
<meta property="og:url" content="https://web-order.shikomel.com/blogs/list" />
<meta property="og:image" content="https://web-order.shikomel.com/html/upload/save_image/1126125749_6745473d54444.png" />
{% set meta_canonical = "https://web-order.shikomel.com/blogs/list" %}
{% set meta_description = "シコメルストアを活用して売上アップやメニュー追加を実現している飲食事業者の方の成功事例を多数掲載しています。|シコメルストア|業務用食材・食品 仕入れ通販" %}
{% elseif Page is defined and Page.url == "blogs42_detail" and Blogs is defined %}
{# ブログ詳細 #}
<meta property="og:url" content="{{ url('blogs42_detail', {'id': Blogs.id}) }}" />
<meta property="og:image" content="{{ asset(Blogs.eyecatch_image, 'save_image') }}" />
{% set meta_canonical = url('blogs42_detail', {'id': Blogs.id}) %}
{% set meta_description = Blogs.blog_description %}
{% elseif Page is defined and Page.url is defined and Page.url is not empty %}
{# ユーザー作成ページ #}
{% set meta_canonical = url(eccube_config.eccube_user_data_route, {'route': Page.url}) %}
<meta property="og:image" content="{{ absolute_url(asset('assets/img/common/websiteogp.webp', 'user_data')) }}" />
{% endif %}
{# TOPは「website」を設定。下層は「article」を設定 #}
<meta property="og:type" content="{{ meta_og_type|default('article') }}"/>
{# 固定で設定 #}
<meta property="og:site_name" content="シコメルストア|業務用食材・食品 仕入れ通販"/>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@shikomel_o">
{% if meta_canonical|default() %}
{# canonical url #}
{% if Category is defined and Category %}
{# 商品一覧_カテゴリ別 #}
{% if pagination is defined and pagination.paginationData is defined and pagination.paginationData.pageCount > 1 %}
{# 最初のページ #}
{% if pagination.paginationData.current == 1 %}
<meta property="og:url" content="{{ meta_canonical }}"/>
<link rel="next" href="{{ meta_canonical }}&pageno=2" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': 2 }) }}">
<link rel="canonical" href="{{ meta_canonical }}" />
{% set meta_description = Category.name~"の商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
{# 最後のページ #}
{% elseif pagination.paginationData.last == pagination.paginationData.current %}
<meta property="og:url" content="{{ meta_canonical }}&pageno={{ pagination.paginationData.last }}"/>
<link rel="prev" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.previous }}" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
<link rel="canonical" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.last }}" />
{% set meta_description = Category.name~"の商品一覧"~pagination.paginationData.last~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
{# 途中のページ #}
{% else %}
<meta property="og:url" content="{{ meta_canonical }}&pageno={{ pagination.paginationData.current }}"/>
<link rel="next" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.next }}" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.next }) }}">
<link rel="prev" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.previous }}" title="{{ Category.name }} {{ '%pageno%ページ目'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
<link rel="canonical" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.current }}" />
{% set meta_description = Category.name~"の商品一覧"~pagination.paginationData.current~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
{% endif %}
{% else %}
{# ページング無し #}
<meta property="og:url" content="{{ meta_canonical }}"/>
<link rel="canonical" href="{{ meta_canonical }}" />
{% set meta_description = Category.name~"の商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(""|no_image_product, 'save_image')) }}" />
{% endif %}
{% elseif search_form is defined and search_form.vars.value and search_form.vars.value.name %}
{# 商品一覧_キーワード検索 #}
{% if pagination is defined and pagination.paginationData is defined and pagination.paginationData.pageCount > 1 %}
{# 最初のページ #}
{% if pagination.paginationData.current == 1 %}
<meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}"/>
<link rel="next" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno=2" title="「{{ search_form.vars.value.name }}」に一致する商品一覧です。 {{ '%pageno%ページ目'|trans({ '%pageno%': 2 }) }}">
<link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}" />
{% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
{# 最後のページ #}
{% elseif pagination.paginationData.last == pagination.paginationData.current %}
<meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.last }}"/>
<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 }) }}">
<link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.last }}" />
{% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧"~pagination.paginationData.last~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
{# 途中のページ #}
{% else %}
<meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.current }}"/>
<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 }) }}">
<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 }) }}">
<link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}&pageno={{ pagination.paginationData.current }}" />
{% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧"~pagination.paginationData.current~"ページ目です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(pagination[0].main_list_image|no_image_product, 'save_image')) }}" />
{% endif %}
{% else %}
{# ページング無し #}
<meta property="og:url" content="{{ meta_canonical }}?name={{ search_form.vars.value.name }}"/>
<link rel="canonical" href="{{ meta_canonical }}?name={{ search_form.vars.value.name }}" />
{% set meta_description = "「"~search_form.vars.value.name~"」に一致する商品一覧です。シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
<meta property="og:image" content="{{ absolute_url(asset(""|no_image_product, 'save_image')) }}" />
{% endif %}
{% elseif Page is defined and Page.url == "blogs42_list" %}
{# ブログ一覧 #}
<link rel="canonical" href="{{ meta_canonical }}" />
{% elseif Page is defined and Page.url == "blogs42_detail" %}
{# ブログ詳細 #}
<link rel="canonical" href="{{ meta_canonical }}" />
{% elseif app.request.get('_route') == 'product_detail' %}
{# 商品詳細 #}
<meta property="og:url" content="{{ meta_canonical }}"/>
<link rel="canonical" href="{{ meta_canonical }}" />
{% set meta_description = Product.description_list | default(Product.description_detail) ~"シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
{% else %}
{# Other #}
<meta property="og:url" content="{{ meta_canonical }}"/>
<link rel="canonical" href="{{ meta_canonical }}" />
{% set meta_description = "シコメルストアは飲食店向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!" %}
{% endif %}
{% endif %}
{# ページごとのディスクリプション設定 #}
{% set meta_description = meta_description | default(Page.description) %}
{% if meta_description %}
<meta name="description" content="{{ meta_description|striptags|slice(0,200) }}">
<meta property="og:description" content="{{ meta_description|striptags|slice(0,200) }}"/>
{% endif %}
{# Ptengineのタグ #}
{% if Page is defined and Page.url == "refer_friend_lp" %}
{# 友達紹介キャンペーンのヒートマップタグ #}
<script src="https://js.ptengine.jp/5byin1nk.js"></script>
{% endif %}
{# パンくずスニペット #}
{% if Category is defined and Category %}
{# 商品カテゴリ #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[{
"@type": "ListItem",
"position": "1",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"item": "https://web-order.shikomel.com/"
},
{
"@type": "ListItem",
"position": "2",
"name": "{{ Category.name }}"
}
]
} </script>
{% elseif search_form is defined and search_form.vars.value and search_form.vars.value.name %}
{# 検索キーワード #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[{
"@type": "ListItem",
"position": "1",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"item": "https://web-order.shikomel.com/"
},
{
"@type": "ListItem",
"position": "2",
"name": "「{{ search_form.vars.value.name }}」に一致する商品一覧"
}
]
} </script>
{% elseif app.request.get('_route') == 'product_detail' and 0 < Product.ProductCategories|length and Product.ProductCategories[0].Category is defined %}
{# 商品詳細 #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[{
"@type": "ListItem",
"position": "1",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"item": "https://web-order.shikomel.com/"
},
{
"@type": "ListItem",
"position": "2",
"name": "{{ Product.ProductCategories[0].Category.name }}",
"item": "https://web-order.shikomel.com/products/list?category_id={{ Product.ProductCategories[0].Category.id }}"
},
{
"@type": "ListItem",
"position": "3",
"name": "{{ Product.name }}"
}
]
} </script>
{% elseif app.request.get('_route') == 'product_detail' and Product.ProductCategories|length == 0 %}
{# 商品詳細 カテゴリがゼロの商品 #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[{
"@type": "ListItem",
"position": "1",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"item": "https://web-order.shikomel.com/"
},
{
"@type": "ListItem",
"position": "2",
"name": "{{ Product.name }}"
}
]
} </script>
{% elseif Page is defined and Page.url == "blogs42_list" %}
{# ブログ一覧 #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[{
"@type": "ListItem",
"position": "1",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"item": "https://web-order.shikomel.com/"
},
{
"@type": "ListItem",
"position": "2",
"name": "導入事例記事一覧"
}
]
}
</script>
{% elseif Page is defined and Page.url == "blogs42_detail" and Blogs is defined and Blogs is not empty %}
{# ブログ詳細 #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement":[{
"@type": "ListItem",
"position": "1",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"item": "https://web-order.shikomel.com/"
},
{
"@type": "ListItem",
"position": "2",
"name": "導入事例記事一覧",
"item": "https://web-order.shikomel.com/blogs/list"
},
{
"@type": "ListItem",
"position": "3",
"name": "{{ Blogs.title }}"
}
]
}
</script>
{% endif %}
{# WebSiteスニペット #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "シコメルストア|業務用食材・食品 仕入れ通販",
"url": "https://web-order.shikomel.com/",
"description": "シコメルストアは飲食事業者向けの業務用・仕込済み食材・食品の通販サイトです。シコメルストアには有名店で実際に使われている仕込み済み食材が揃っています。全て仕込みは終わっており、仕込みの手間は不要。調理行程も簡単で、あなたのお店に人気メニューをすぐに増やせます!"
} </script>
{# Corporationスニペット #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Corporation",
"name": "株式会社シコメルフードテック",
"address": {
"@type": "PostalAddress",
"postalCode": "1500002",
"addressRegion": "東京都",
"addressLocality": "渋谷区",
"streetAddress": "渋谷1丁目2番5号 MFPR渋谷ビル B1F",
"addressCountry": "JP"
},
"telephone": "03-6427-1282",
"url": "https://web-order.shikomel.com/"
} </script>
{# Faqスニペット #}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "注文後、納品までどれくらいかかりますか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "最短翌日に納品可能です。アプリ・ECでのご注文受付・出荷は平日に行っております。大阪からヤマト便で発送しており、遠方・離島地域は納品まで+1~2日いただく場合がございます。"
}
}, {
"@type": "Question",
"name": "送料はいくらですか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "一律1,650円(税込)です。※2024年11月1日注文分より、送料を変更しております。北海道:2,530円(税込)沖縄県:2,970円(税込)"
}
}, {
"@type": "Question",
"name": "シコメルストアは無料で利用できますか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "会員登録は無料です。商品をご購入いただく際に、商品代金+送料が発生します。"
}
}, {
"@type": "Question",
"name": "シコメルストアは誰でも利用できますか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "飲食店・及びホテルや施設など食を提供する事業者様専用のサービスとなります。個人事業主の方もお使いいただけます。"
}
}]
} </script>
{# SiteNavigationスニペット #}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "SiteNavigationElement",
"hasPart": [{
"@type": "WebPage",
"name": " 居酒屋向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=7"
},
{
"@type": "WebPage",
"name": "カフェ向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=8"
},
{
"@type": "WebPage",
"name": "イタリアン・フレンチ店向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=10"
},
{
"@type": "WebPage",
"name": "レジャー・観光施設向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=9"
},
{
"@type": "WebPage",
"name": "ダイニングバー向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=14"
},
{
"@type": "WebPage",
"name": "焼肉・韓国店向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=13"
},
{
"@type": "WebPage",
"name": "カラオケ・スナック向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=12"
},
{
"@type": "WebPage",
"name": "キッチンカー向けメニュー",
"url": "https://web-order.shikomel.com/products/list?category_id=11"
},
{
"@type": "WebPage",
"name": "調理方法-焼きメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E7%84%BC%E6%88%90%E3%81%AE%E3%81%BF"
},
{
"@type": "WebPage",
"name": "調理方法-煮るメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E7%85%AE%E3%82%8B"
},
{
"@type": "WebPage",
"name": "調理方法-揚げるメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E6%8F%9A%E3%81%92%E3%82%8B"
},
{
"@type": "WebPage",
"name": "調理方法-湯煎メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E6%B9%AF%E7%85%8E%E3%81%AE%E3%81%BF"
},
{
"@type": "WebPage",
"name": "調理方法-レンジアップメニュー",
"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"
},
{
"@type": "WebPage",
"name": "調理方法-解凍のみメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E8%A7%A3%E5%87%8D%E3%81%AE%E3%81%BF"
},
{
"@type": "WebPage",
"name": "ジャンル-和食メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E5%92%8C%E9%A3%9F"
},
{
"@type": "WebPage",
"name": "ジャンル-洋食メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E6%B4%8B%E9%A3%9F"
},
{
"@type": "WebPage",
"name": "ジャンル-韓国メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E9%9F%93%E5%9B%BD"
},
{
"@type": "WebPage",
"name": "ジャンル-イタリアンメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E3%82%A4%E3%82%BF%E3%83%AA%E3%82%A2%E3%83%B3"
},
{
"@type": "WebPage",
"name": "ジャンル-中華メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E4%B8%AD%E8%8F%AF"
},
{
"@type": "WebPage",
"name": "ジャンル-肉料理メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E8%82%89%E6%96%99%E7%90%86"
},
{
"@type": "WebPage",
"name": "ジャンル-魚介料理メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E9%AD%9A%E4%BB%8B%E6%96%99%E7%90%86"
},
{
"@type": "WebPage",
"name": "ジャンル-ご飯ものメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E3%81%94%E9%A3%AF%E3%82%82%E3%81%AE"
},
{
"@type": "WebPage",
"name": "ジャンル-揚げ物メニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E6%8F%9A%E3%81%92%E7%89%A9"
},
{
"@type": "WebPage",
"name": "ジャンル-スナックメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E3%82%B9%E3%83%8A%E3%83%83%E3%82%AF"
},
{
"@type": "WebPage",
"name": "ジャンル-スープメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E3%82%B9%E3%83%BC%E3%83%97"
},
{
"@type": "WebPage",
"name": "ジャンル-スイーツメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E3%82%B9%E3%82%A4%E3%83%BC%E3%83%84"
},
{
"@type": "WebPage",
"name": "ジャンル-ドリンクメニュー",
"url": "https://web-order.shikomel.com/products/list?name=%E3%83%89%E3%83%AA%E3%83%B3%E3%82%AF"
},
{
"@type": "WebPage",
"name": "プライバシーポリシー",
"url": "https://shikomel.com/privacy/"
},
{
"@type": "WebPage",
"name": "利用規約",
"url": "https://shikomel.com/terms/"
},
{
"@type": "WebPage",
"name": "特定商取引法に基づく表記",
"url": "https://shikomel.com/legal/"
},
{
"@type": "WebPage",
"name": "会員登録",
"url": "https://web-order.shikomel.com/entry/before"
},
{
"@type": "WebPage",
"name": "ログイン",
"url": "https://web-order.shikomel.com/mypage/login"
},
{
"@type": "WebPage",
"name": "事例一覧",
"url": "https://web-order.shikomel.com/blogs/list"
},
{
"@type": "WebPage",
"name": "シコメル|会社情報",
"url": "https://corp.shikomel.com/"
}
]
} </script>