<div class="mt10px">
<p class="size_table_caption">{{ goods.goodsNewName }}のサイズ表</p>
<div class="ltxt">
<table cellspacing="0" border="0" class="size_table">
{% for sizeName in SizeList.size %}
{% if loop.first %}<tr><th>サイズ</th>{% endif %}
<th>{{sizeName}}</th>
{% if loop.last %}</tr>{% endif %}
{% endfor %}
{% for key, data in SizePosition %}
<tr>
<th>
{#<a href="Javascript:void(0);" onClick="JavaScript:window.open(base.href+'item/sizehelp?id={{data.link}}','_blank','width=500,height=400,scrollbars=yes,resizable=yes');" rel="nofollow">#}
{{data.position}}
{#</a>#}
</th>
{% for sizeVal in data.val %}
<td{% if data.count[loop.index0] != "" %} colspan='{{data.count[loop.index0]}}'{% endif %}>
{{sizeVal}}
</td>
{% endfor %}
</tr>
{% endfor %}
{% if SizeList.comment is defined %}
<tr>
<th>備考</th>
{% for sizeVal in SizeList.comment %}
<td>{{sizeVal}}<br /></td>
{% endfor %}
</tr>
{% endif %}
</table>
{% if SizeList is defined and SizeList.size and data.goods_size_guide_comment is defined %}
<p class="size_table_comment">{{ data.goods_size_guide_comment | raw}} </p>
{% endif %}
</div>
</div>