{#This file is part of EC-CUBECopyright(c) EC-CUBE CO.,LTD. All Rights Reserved.http://www.ec-cube.co.jp/For the full copyright and license information, please view the LICENSEfile that was distributed with this source code.#}{% extends 'default_frame.twig' %}{% block main %}<div class="ec-role"> <div class="ec-pageHeader"> <h1>{{ '当サイトについて'|trans }}</h1> </div> <div class="ec-off1Grid"> <div class="ec-off1Grid__cell"> <div class="ec-borderedDefs"> {% if BaseInfo.shop_name|default is not empty %} <dl id="help_about_box__shop_name"> <dt> <label class="ec-label">{{ '店名'|trans }}</label> </dt> <dd>{{ BaseInfo.shop_name }}</dd> </dl> {% endif %} {% if BaseInfo.company_name|default is not empty %} <dl id="help_about_box__company_name"> <dt> <label class="ec-label">{{ '会社名'|trans }}</label> </dt> <dd>{{ BaseInfo.company_name }}</dd> </dl> {% endif %} {% if BaseInfo.postal_code|default is not empty %} <dl id="help_about_box__address"> <dt> <label class="ec-label">{{ '住所'|trans }}</label> </dt> <dd>{{ '〒'|trans }}{{ BaseInfo.postal_code }}<br /> {{ BaseInfo.pref }}{{ BaseInfo.addr01 }}{{ BaseInfo.addr02 }} </dd> </dl> {% endif %} {% if BaseInfo.phone_number|default is not empty %} <dl id="help_about_box__phone_number"> <dt> <label class="ec-label">{{ '電話番号'|trans }}</label> </dt> <dd>{{ BaseInfo.phone_number }}</dd> </dl> {% endif %} <dl id="help_about_box__business_hour"> <dt> <label class="ec-label">{{ '営業時間'|trans }}</label> </dt> <dd>ご注文は24時間受け付けております。</dd> </dl> {% if BaseInfo.business_hour|default is not empty %} <dl id="help_about_box__business_hour"> <dt> <label class="ec-label">{{ '店舗営業時間'|trans }}</label> </dt> <dd>{{ BaseInfo.business_hour }}</dd> </dl> {% endif %} <dl id="help_about_box__business_hour"> <dt> <label class="ec-label">{{ '電話受付時間'|trans }}</label> </dt> <dd>平日AM 10:00-PM2:00<br />※土日祝祭日、夏季休業日、年末年始はお休みをいただいております。</dd> </dl> {% if BaseInfo.good_traded|default is not empty %} <dl id="help_about_box__good_traded"> <dt> <label class="ec-label">{{ '取り扱い商品'|trans }}</label> </dt> <dd>{{ BaseInfo.good_traded|nl2br }}</dd> </dl> {% endif %} {# 適格請求書発行事業者登録番号 #} <dl id="help_about_box__good_traded"> <dt> <label class="ec-label">適格請求書発行</br>事業者登録番号</label> </dt> <dd>T4180001024571</dd> </dl> {% if BaseInfo.message|default is not empty %} <dl id="help_about_box__message"> <dt> <label class="ec-label">{{ 'メッセージ'|trans }}</label> </dt> <dd>{{ BaseInfo.message|nl2br }}</dd> </dl> {% endif %} </div> </div> </div></div>{% endblock %}