{% set sidebar_type = 0 %}
{# 商品詳細からの場合 #}
{% if Product is defined %}
{% if Product.ProductCategories is not empty %}
{% for ProductCategory in Product.ProductCategories %}
{% for Path in ProductCategory.Category.path %}
{% if Path.hierarchy == 2 %}
{% if Path.name == 'カウンタートップタイプ浄水器' %}
{% set sidebar_type = 1 %}
{% endif %}
{% if Path.name == 'ビルトイン浄水器' %}
{% set sidebar_type = 2 %}
{% endif %}
{% endif %}
{% if Path.hierarchy == 3 %}
{% if sidebar_type == 1 %}
{% set sidebar_type = 0 %}
{% endif %}
{% if sidebar_type == 2 %}
{% set sidebar_type = 0 %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{# 商品一覧からの場合 #}
{% if Category is defined %}
{% if Category is not null %}
{% for Path in Category.path %}
{% if Path.hierarchy == 2 %}
{% if Path.name == 'カウンタートップタイプ浄水器' %}
{% set sidebar_type = 1 %}
{% endif %}
{% if Path.name == 'ビルトイン浄水器' %}
{% set sidebar_type = 2 %}
{% endif %}
{% endif %}
{% if Path.hierarchy == 3 %}
{% if sidebar_type == 1 %}
{% set sidebar_type = 0 %}
{% endif %}
{% if sidebar_type == 2 %}
{% set sidebar_type = 0 %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% block javascript %}
<script>
$(function() {
$('#support_check').on('click', function(e) {
var href = $(this).data('href');
window.open(href, "_blank");
});
});
</script>
{% endblock %}
{# カウンタートップタイプ浄水器の場合 #}
{% if sidebar_type == 1 %}
<div style="padding-left: 15px;padding-right: 15px;padding-bottom: 15px;">
<br/>
{#<h1 style="color:#1266ac; font-size:200%;">カウンタートップ浄水器</h1>#}
<h1 style="color:#1266ac; font-size:200%;">
浄水器本体はシンクの上に置く、設置が簡単な据置タイプ。
</h1>
<br/>
<p class="content-text">
キッチンの蛇口の形状によって取付可否がございます。
<br/>
ご検討の際は「水栓チェック」ページにてご確認ください。
<br/>
</p>
<br/>
<div class="ec-productRole__btn">
<button id="support_check" type="button" class="ec-blockBtn--action" style="width: auto;height:30px;line-height:30px" data-href="https://multipure.co.jp/support/check/">
{{ '水栓チェック'|trans }}
</button>
</div>
</div>
{% endif %}
{# ビルトイン浄水器 #}
{% if sidebar_type == 2 %}
{% endif %}