{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% extends 'default_frame.twig' %}
{% block main %}
<section class="p-lower-mv">
<div class="inner">
<h2 class="p-lower-mv-title"><span>特定商取引法に関する表記</span></h2>
<div class="under bread_wrap">
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ url('homepage') }}">
<span class="freight-neo-pro" itemprop="name">TOP</span>
</a>
<meta itemprop="position" content="1" />
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ url('help_tradelaw') }}">
<span class="freight-neo-pro" itemprop="name">特定商取引法に関する表記</span>
</a>
<meta itemprop="position" content="2" />
</li>
</ol>
</div>
<!-- /.bread_wrap -->
</div>
</section>
<section class="tradelaw">
<div class="inner">
{% for tradelaw in tradelaws|filter(t => t.name and t.description) %}
<dl class="tradelaw-list">
<dt class="tradelaw-title">{{ tradelaw.name }}</dt>
<dd class="tradelaw-desc">{{ tradelaw.description|raw }}</dd>
</dl>
{% endfor %}
</div>
</section>
{% endblock %}