{% if rows|length > 0 %}
<h3>PickUp商品</h3>
<div class="ichiran_coinlist checkwrap">
<ul>
{% for Product in rows %}
{% set id = Product.id %}
<li><a href="{{ url('product_detail', {'id': id}) }}">
<img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="#">
{% if Product.Status.id == 8 %}
<b class="tab_yoyaku">ご予約可</b>
{% endif %}
<h2>{{ Product.name }}</h2>
<p>
<s>一般価格:{{ Product.getPrice02IncTaxMin|number_format }}円(税込)</s>
{% if htPrice[id] is defined %}
<br><strong>会員価格:{{ htPrice[id]|number_format }}円(税込)</strong>
{% endif %}
</p>
</a></li>
{% endfor %}
</ul>
</div><!-- ichiran_coinlist -->
{% endif %}