{% 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 %}
{# カウンタートップタイプ浄水器の場合 #}
{% if sidebar_type == 1 %}
{% endif %}
{# ビルトイン浄水器 #}
{% if sidebar_type == 2 %}
<div style="padding-left: 15px;padding-right: 15px;padding-bottom: 15px;">
<br/>
{#<h1 style="font-size:200%;">ビルトイン浄水器</h1>#}
<h1 style="color:#1266ac; font-size:200%;">浄水器本体はシンク下へ設置してキッチンをすっきりシンプルに。</h1>
<p class="content-text">
<br/>
浄水器と水栓のセットです。シンク下に浄水器本体が収納されるのでキッチンを広々と使えます。
<br/>
</p>
<br/>
</div>
{% endif %}