<div style="letter-spacing: .1em; width: 280px; padding: 10px; border: 2px solid #368886; background-color: white; margin-top: 6px; right: 12px; color: black; position: absolute; top: 3px">
<div>
{# 会員情報:メールアドレス表示 #}
<div style="line-height: 170%; text-align: right; width: 47px; float: left;">Mail : </div>
<div style="letter-spacing: .05em; color: blue; font-size: 16px; font-weight: bold; float: left;">
{% if lmCustomer.customer_mail != "" %}
<span style="float: left; font-weight: bold; font-size: {% if mailDisp > 0 %} 10px; margin-top: 3px{% else %}16px{% endif %};">{{lmCustomer.customer_mail}}</span>
{% else %}
<span style="letter-spacing: .1em; color: black">( 登録がありません )</span>
{% endif %}
</div>
</div>
<br style="clear: both;" />
<div style="margin-top: 2px;">
{# 会員情報:FAX番号表示 #}
<div style="text-align: right; width: 47px; float: left;">FAX : </div>
<div style="color: blue; font-size: 16px; font-weight: bold; float: left;">
{% if lmCustomer.customer_fax != "" %}
{{lmCustomer.customer_fax}}
{% else %}
<span style="letter-spacing: .1em; color: black">( 登録がありません )</span>
{% endif %}
</div>
</div>
<br style="clear: both;" />
</div>