<div id="item-detail">
{% include 'Common/ItemBanners.twig' %}
{% if useNewItemDescription is defined and useNewItemDescription %}
<div id="new-item-description">
<p class="new-item-description-title"><span class="new-item-description-title-en">DESCRIPTION</span><span class="new-item-description-title-ja">商品説明</span></p>
{% if data.goods_new_description is defined and data.goods_new_description|trim is not empty %}
<p class="new-item-description-contents">{{ data.goods_new_description | raw }}</p>
{% endif %}
<table>
{% if data.goods_new_name is defined and data.goods_new_name %}
<tr>
<th>商品名</th>
<td>{{ data.goods_new_name }}</td>
</tr>
{% endif %}
<tr>
<th>商品番号</th>
<td>{{ hinbanStr | display_text }}</td>
</tr>
{% if data.goods_new_maker is defined and data.goods_new_maker %}
<tr>
<th>メーカー</th>
<td>{{ data.goods_new_maker | raw }}</td>
</tr>
{% endif %}
{% if newDescriptionColors is defined and newDescriptionColors %}
<tr>
<th>カラー</th>
<td>
{{ newDescriptionColors | raw }}
</td>
</tr>
{% endif %}
{% if data.goods_new_material is defined and data.goods_new_material %}
<tr>
<th>素材</th>
<td>{{ data.goods_new_material | raw }}</td>
</tr>
{% endif %}
{% if data.goods_new_spec is defined and data.goods_new_spec %}
<tr>
<th>仕様</th>
<td>{{ data.goods_new_spec | raw }}</td>
</tr>
{% endif %}
</table>
{% if data.goods_new_annotation is defined and data.goods_new_annotation %}
<p class="annotation">{{ data.goods_new_annotation | raw }}</p>
{% endif %}
{% if data.goods_sample_rental is defined and data.goods_sample_rental != '1' %}
<p class='has-no-sample'>※この商品はサンプルの貸し出しができません</p>
{% endif %}
</div>
{% endif %}
</div>