{#
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' %}
{% set body_class = 'product_page' %}
{% block stylesheet %}
<style>
</style>
{% endblock %}
{% block javascript %}
<script>
eccube.classCategories = {{ class_categories_as_json(Product)|raw }};
// 規格2に選択肢を割り当てる。
function fnSetClassCategories(form, classcat_id2_selected) {
var $form = $(form);
var product_id = $form.find('input[name=product_id]').val();
var $sele1 = $form.find('select[name=classcategory_id1]');
var $sele2 = $form.find('select[name=classcategory_id2]');
eccube.setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected);
}
{% if form.classcategory_id2 is defined %}
fnSetClassCategories(
$('#form1'), {{ form.classcategory_id2.vars.value|json_encode|raw }}
);
{% elseif form.classcategory_id1 is defined %}
eccube.checkStock($('#form1'), {{ Product.id }}, {{ form.classcategory_id1.vars.value|json_encode|raw }}, null);
{% endif %}
</script>
<script>
$(function() {
// bfcache無効化
$(window).bind('pageshow', function(event) {
if (event.originalEvent.persisted) {
location.reload(true);
}
});
});
const thumbnail = document.querySelectorAll('.thumbnailImage');
let isCheck = false;
if (thumbnail.length > 3) {
isCheck = true;
}
const sliderThumbnail = new Swiper(".slider-thumbnail", {
slidesPerView: 3, // サムネイルの枚数
loop: isCheck,
spaceBetween: 6,
});
// スライダー
const slider = new Swiper(".slider", {
loop: isCheck,
thumbs: {
swiper: sliderThumbnail,
},
});
// ウィンドウがリサイズされたときに実行する関数
function updatePaddingTop() {
// 全ての.thumbnailImage要素を取得
const thumbnailElements = document.querySelectorAll('.thumbnailImage');
// 各.thumbnailImage要素に対して処理を行う
thumbnailElements.forEach(function(thumbnailElement) {
let computedStyle = window.getComputedStyle(thumbnailElement);
let thumbnailWidth = parseFloat(computedStyle.width);
thumbnailElement.style.paddingTop = thumbnailWidth + 'px';
});
}
// 初回の実行
updatePaddingTop();
// ウィンドウのリサイズが終わったら実行
window.addEventListener('resize', function() {
updatePaddingTop();
});
</script>
<script>
$(function() {
$('.add-cart').on('click', function(event) {
{% if form.classcategory_id1 is defined %}
// 規格1フォームの必須チェック
if ($('#classcategory_id1').val() == '__unselected' || $('#classcategory_id1').val() == '') {
$('#classcategory_id1')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
return true;
} else {
$('#classcategory_id1')[0].setCustomValidity('');
}
{% endif %}
{% if form.classcategory_id2 is defined %}
// 規格2フォームの必須チェック
if ($('#classcategory_id2').val() == '__unselected' || $('#classcategory_id2').val() == '') {
$('#classcategory_id2')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
return true;
} else {
$('#classcategory_id2')[0].setCustomValidity('');
}
{% endif %}
// 個数フォームのチェック
if ($('#quantity').val() < 1) {
$('#quantity')[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
return true;
} else {
$('#quantity')[0].setCustomValidity('');
}
event.preventDefault();
$form = $('#form1');
$.ajax({
url: $form.attr('action'),
type: $form.attr('method'),
data: $form.serialize(),
dataType: 'json',
beforeSend: function(xhr, settings) {
// Buttonを無効にする
$('.add-cart').prop('disabled', true);
}
}).done(function(data) {
// レスポンス内のメッセージをalertで表示
$.each(data.messages, function() {
$('#ec-modal-header').text(this);
});
$('.ec-modal').show()
// カートブロックを更新する
$.ajax({
url: "{{ url('block_cart') }}",
type: 'GET',
dataType: 'html'
}).done(function(html) {
$('.ec-headerRole__cart').html(html);
});
}).fail(function(data) {
alert('{{ 'カートへの追加に失敗しました。'|trans }}');
}).always(function(data) {
// Buttonを有効にする
$('.add-cart').prop('disabled', false);
});
});
});
$('.ec-modal-wrap').on('click', function(e) {
// モーダル内の処理は外側にバブリングさせない
e.stopPropagation();
});
$('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {
$('.ec-modal').hide()
});
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "{{ Product.name }}",
"image": [
{% for img in Product.ProductImage %}
"{{ app.request.schemeAndHttpHost }}{{ asset(img, 'save_image') }}"{% if not loop.last %},{% endif %}
{% else %}
"{{ app.request.schemeAndHttpHost }}{{ asset(''|no_image_product, 'save_image') }}"
{% endfor %}
],
"description": "{{ Product.description_list | default(Product.description_detail) | replace({'\n': '', '\r': ''}) | slice(0,300) }}",
{% if Product.code_min %}
"sku": "{{ Product.code_min }}",
{% endif %}
"offers": {
"@type": "Offer",
"url": "{{ url('product_detail', {'id': Product.id}) }}",
"priceCurrency": "{{ eccube_config.currency }}",
"price": {{ Product.getPrice02IncTaxMin ? Product.getPrice02IncTaxMin : 0}},
"availability": "{{ Product.stock_find ? "InStock" : "OutOfStock" }}"
}
}
</script>
{% endblock %}
{% block main %}
<div class="ec-productRole">
<ul class="breadcrumb">
<li class="breadcrumb__item">
<a href="{{ url('product_list') }}" class="breadcrumb__item__link">
ホーム
</a>
</li>
<li class="breadcrumb__item">
<p class="breadcrumb__item__arrow">></p>
</li>
{% if BreadcrumbCategory is not empty %}
{# {% set ProductCategory = Product.ProductCategories|first %} #}
{% for Category in BreadcrumbCategory.path %}
{% if Category.id != constant('Customize\\Common\\Constant::MANUFACTURER_CATEGORY_ID') %}
<li class="breadcrumb__item">
<a class="breadcrumb__item__link" href="{{ url('product_list') }}?category_id={{ Category.id }}">
{{ Category.name }}
</a>
</li>
<li class="breadcrumb__item">
<p class="breadcrumb__item__arrow">></p>
</li>
{% endif %}
{% endfor %}
{% endif %}
<li class="breadcrumb__item">
<p class="breadcrumb__item__text" href="javascript:void(0)">
{{ Product.name }}
</p>
</li>
</ul>
<div class="ec-productDetail">
<div class="ec-productDetail__image">
<!-- スライダー -->
<div class="swiper slider">
<div class="swiper-wrapper">
{% for ProductImage in Product.ProductImage %}
<div class="swiper-slide"><img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}" width="550" height="550"{% if loop.index > 1 %} loading="lazy"{% endif %}></div>
{% else %}
<div class="swiper-slide"><img src="{{ asset(''|no_image_product, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}" width="550" height="550"></div>
{% endfor %}
</div>
</div>
<!-- サムネイル -->
<div class="swiper slider-thumbnail">
<div class="swiper-wrapper">
{% for ProductImage in Product.ProductImage %}
<div class="swiper-slide thumbnailImage" data-index="{{ loop.index0 }}">
<img src="{{ asset(ProductImage, 'save_image') }}" alt="" width="125" height="125">
</div>
{% endfor %}
</div>
</div>
</div>
<div class="ec-productDetail__content">
{# 商品名 #}
<div class="ec-productDetail__content__title">
<h2 class="ec-headingTitle">{{ Product.name }}</h2>
</div>
{# 関連カテゴリ #}
{# {% if Product.ProductCategories is not empty %}
<div class="ec-productRole__category">
<div>{{ '関連カテゴリ'|trans }}</div>
{% for ProductCategory in Product.ProductCategories %}
<ul>
<li>
{% for Category in ProductCategory.Category.path %}
<a href="{{ url('product_list') }}?category_id={{ Category.id }}">{{ Category.name }}</a>
{%- if loop.last == false %}
<span>></span>
{% endif -%}
{% endfor %}
</li>
</ul>
{% endfor %}
</div>
{% endif %} #}
{% if MakerCategory %}
<dl class="ec-productDetail__content__category">
<dt class="ec-productDetail__content__category__dt">メーカー</dt>
<dd class="ec-productDetail__content__category__dd">
{% for Category in MakerCategory.path %}
{% if Category.id != constant('Customize\\Common\\Constant::MANUFACTURER_CATEGORY_ID') %}
<a href="{{ url('product_list') }}?category_id={{ Category.id }}">{{ Category.name }}</a>
{%- if loop.last == false %}
<span>></span>
{% endif -%}
{% endif %}
{% endfor %}
</dd>
</dl>
{% endif %}
{% if DefaultCategory %}
<dl class="ec-productDetail__content__category">
<dt class="ec-productDetail__content__category__dt">カテゴリー</dt>
<dd class="ec-productDetail__content__category__dd">
{% for Category in DefaultCategory.path %}
{% if Category.id != constant('Customize\\Common\\Constant::DEFAULT_CATEGORY_ID') %}
<a href="{{ url('product_list') }}?category_id={{ Category.id }}">{{ Category.name }}</a>
{%- if loop.last == false %}
<span>></span>
{% endif -%}
{% endif %}
{% endfor %}
</dd>
</dl>
{% endif %}
{% if is_granted('ROLE_USER') %}
<dl class="ec-productDetail__content__category">
<dt class="ec-productDetail__content__category__dt">{{ '発送目安'|trans }}</dt>
<dd class="ec-productDetail__content__category__dd">
{% if Product.getDeliveryDuration %}
{{Product.getDeliveryDuration.name}}
{% else %}
未定
{% endif %}
</dd>
</dl>
<dl class="ec-productDetail__content__category">
<dt class="ec-productDetail__content__category__dt">{{ '在庫'|trans }}</dt>
<dd class="ec-productDetail__content__category__dd">
{% if Product.getStockUnlimitedMin or Product.getStockMin >= 10 %}
◎
{% else %}
{% if Product.getStockMin >= 1 and Product.getStockMin <= 9 %}
○
{% endif %}
{% if Product.getStockMin <= 0 %}
■
{% endif %}
{% endif %}
</dd>
</dl>
<p class="ec-productDetail__content__line"></p>
<div class="ec-productDetail__content__description">{{ Product.description_detail|raw|nl2br }}</div>
{# タグ #}
{# {% if Product.Tags is not empty %}
<ul class="ec-productRole__tags">
{% for Tag in Product.Tags %}
<li class="ec-productRole__tag tag_{{ Tag.id }}">{{ Tag }}</li>
{% endfor %}
</ul>
{% endif %} #}
<p class="ec-productDetail__content__line"></p>
{# 通常価格 #}
{% if Product.hasProductClass -%}
<div class="ec-productDetail__content__priceRegular">
{% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
<span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}</span></span>
<span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
{% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
<span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}~ {{ Product.getPrice01IncTaxMax|price }}</span></span>
<span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
{% endif %}
</div>
{% else %}
{% if Product.getPrice01Max is not null %}
<div class="ec-productDetail__content__priceRegular">
<span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:{{ Product.getPrice01IncTaxMin|price }}</span>
<span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
</div>
{% endif %}
{% endif %}
{# 販売価格 #}
<div class="ec-productDetail__content__price">
{% if Product.hasProductClass -%}
{% if Product.getPrice02IncTaxMin == Product.getPrice02IncTaxMax %}
<div class="ec-price">
<span class="ec-price__price price02-default">{{ Product.getPrice02IncTaxMin|price }}</span>
<span class="ec-price__tax">{{ '税込'|trans }}</span>
</div>
{% else %}
<div class="ec-price">
<span class="ec-price__price price02-default">{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}</span>
<span class="ec-price__tax">{{ '税込'|trans }}</span>
</div>
{% endif %}
{% else %}
<div class="ec-price">
<span class="ec-price__price">{{ Product.getPrice02IncTaxMin|price }}</span>
<span class="ec-price__tax">{{ '税込'|trans }}</span>
</div>
{% endif %}
</div>
{# 商品コード #}
{# {% if Product.code_min is not empty %}
<div class="ec-productRole__code">
{{ '商品コード'|trans }}: <span class="product-code-default">{{ Product.code_min }}{% if Product.code_min != Product.code_max %} ~ {{ Product.code_max }}{% endif %}</span>
</div>
{% endif %} #}
<form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
<div class="ec-productDetail__content__form">
{% if not Product.getStockUnlimitedMin and Product.getStockMin <= 0 and Product.isStockDiscontinued %}
<div class="ec-productRole__btn soldOut">
<button type="button" class="ec-blockBtn--action" disabled="disabled">
{{ 'ただいま品切れ中です。'|trans }}
</button>
</div>
{% else %}
<div class="ec-productDetail__content__num">
{% if form.classcategory_id1 is defined %}
<div class="ec-select">
{{ form_row(form.classcategory_id1) }}
{{ form_errors(form.classcategory_id1) }}
</div>
{% if form.classcategory_id2 is defined %}
<div class="ec-select">
{{ form_row(form.classcategory_id2) }}
{{ form_errors(form.classcategory_id2) }}
</div>
{% endif %}
{% endif %}
<div class="ec-numberInput"><span>{{ '数量'|trans }}</span>
{{ form_widget(form.quantity) }}
{{ form_errors(form.quantity) }}
</div>
</div>
<div class="ec-productRole__btn">
<button type="submit" class="ec-regular__btn add-cart">
{{ 'カートに入れる'|trans }}
</button>
</div>
{% endif %}
{{ form_rest(form) }}
</div>
</form>
<div class="ec-modal">
<div class="ec-modal-overlay">
<div class="ec-modal-wrap product-detail">
<span class="ec-modal-close"><span class="ec-icon"><img src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>
<div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>
<div class="ec-modal-box">
<div class="ec-role">
<span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>
<a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>
</div>
</div>
</div>
</div>
</div>
{% if BaseInfo.option_favorite_product %}
<form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post">
<div class="ec-productRole__btn ec-productRoleFavorite__btn">
{% if is_favorite == false %}
<button type="submit" id="favorite" class="ec-blockBtn--cancel active">
<img src="{{ asset('assets/img/favorite/after.svg') }}" alt="お気に入り" width="24" height="24" loading="lazy">
<span>{{ 'お気に入りに追加'|trans }}</span>
</button>
{% else %}
<button type="submit" id="favorite" class="ec-blockBtn--cancel"
disabled="disabled">
<img src="{{ asset('assets/img/favorite/before.svg') }}" alt="お気に入り" width="24" height="24" loading="lazy">
<span>{{ 'お気に入りに追加済です。'|trans }}</span>
</button>
{% endif %}
</div>
</form>
{% endif %}
{% else %}
<a href="{{ url('entry_contact') }}" class="ec-blockProductBtn--action">会員登録はこちら</a>
{% endif %}
<p class="ec-productDetail__content__line"></p>
<ul class="ec-productDetail__content__faq">
<li class="ec-productDetail__content__faq__item"><button class="modal-toggle" data-modal="detailPostage">送料について</button></li>
<li class="ec-productDetail__content__faq__item"><button class="modal-toggle" data-modal="detailDelivery">お届け日について</button></li>
<li class="ec-productDetail__content__faq__item"><button class="modal-toggle" data-modal="detailPay">お支払い方法/領収書について</button></li>
<li class="ec-productDetail__content__faq__item"><button class="modal-toggle" data-modal="detailProductReturn">返品</button></li>
<li class="ec-productDetail__content__faq__item"><button class="modal-toggle" data-modal="detailRepair">修理について</button></li>
</ul>
</div>
</div>
{# {% if Product.freearea %}
<div class="ec-productRole__description">
{{ include(template_from_string(Product.freearea)) }}
</div>
{% endif %} #}
</div>
<!-- modal一覧 -->
<div id="detailPostage" class="modal-outer">
<div class="modal-inner productDetail">
<div class="modal-inner__content">
<button class="modalCloseTop"></button>
<p class="modal-inner__content__title">
送料について
</p>
<p class="modal-inner__content__detail">10,000円(税抜)以上は送料無料<br>10,000円未満は地域別送料が発生します。</p>
<table class="modal-inner__content__postage" border="1">
<tr><th class="postage__title" colspan="8">北海道・東北</th></tr>
<tr>
<th>北海道</th>
<th>青森県</th>
<th>秋田県</th>
<th>岩手県</th>
<th>宮城県</th>
<th>山形県</th>
<th>福島県</th>
<th></th>
</tr>
<tr>
<td>1100円</td>
<td colspan="3">800円</td>
<td colspan="3">700円</td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">関東</th></tr>
<tr>
<th>茨城県</th>
<th>栃木県</th>
<th>群馬県</th>
<th>埼玉県</th>
<th>千葉県</th>
<th>神奈川県</th>
<th>東京都</th>
<th>山梨県</th>
</tr>
<tr>
<td colspan="8">700円</td>
</tr>
<tr><th class="postage__title" colspan="8">信越</th></tr>
<tr>
<th>新潟県</th>
<th>長野県</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan="2">700円</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">中部・北陸</th></tr>
<tr>
<th>静岡県</th>
<th>愛知県</th>
<th>三重県</th>
<th>岐阜県</th>
<th>富山県</th>
<th>石川県</th>
<th>福井県</th>
<th></th>
</tr>
<tr>
<td colspan="7">700円</td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">関西</th></tr>
<tr>
<th>大阪府</th>
<th>京都府</th>
<th>滋賀県</th>
<th>奈良県</th>
<th>和歌山県</th>
<th>兵庫県</th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan="6">800円</td>
<td></td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">中国</th></tr>
<tr>
<th>岡山県</th>
<th>広島県</th>
<th>山口県</th>
<th>鳥取県</th>
<th>島根県</th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan="5">900円</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">中国</th></tr>
<tr>
<th>岡山県</th>
<th>広島県</th>
<th>山口県</th>
<th>鳥取県</th>
<th>島根県</th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan="5">900円</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">四国</th></tr>
<tr>
<th>香川県</th>
<th>徳島県</th>
<th>愛媛県</th>
<th>高知県</th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan="4">1000円</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr><th class="postage__title" colspan="8">九州・沖縄</th></tr>
<tr>
<th>福岡県</th>
<th>大分県</th>
<th>長崎県</th>
<th>佐賀県</th>
<th>宮崎県</th>
<th>熊本県</th>
<th>鹿児島県</th>
<th>沖縄</th>
</tr>
<tr>
<td colspan="7">1100円</td>
<td>1200円</td>
</tr>
</table>
</div>
</div>
</div>
<div id="detailDelivery" class="modal-outer">
<div class="modal-inner productDetail">
<div class="modal-inner__content">
<button class="modalCloseTop"></button>
<p class="modal-inner__content__title">
お届け日について
</p>
<div class="modal-inner__content__map">
<div class="modal-inner__content__map__block">
<ul class="modal-inner__content__map__block__list">
<li class="modal-inner__content__map__block__list__item">翌日着</li>
<li class="modal-inner__content__map__block__list__item">翌々日着</li>
<li class="modal-inner__content__map__block__list__item">平日中3日着</li>
</ul>
<div class="modal-inner__content__map__block__image">
<img src="{{ asset('assets/img/product/map.png') }}" alt="日本地図" width="2084" height="1473" loading="lazy">
</div>
</div>
<div class="modal-inner__content__map__detail">
<table class="modal-inner__content__map__detail__table" border="1">
<tr>
<th class="title">12時まで注文の<br>最短お届け日</th>
<th>配送エリア</th>
<tr>
<tr>
<td class="tdMain">翌日着</td>
<td>
<ul>
<li>【東北】 岩手・宮城・山形・福島</li>
<li>【甲信越】 新潟・長野・山梨</li>
<li>【関東】 東京・神奈川・埼玉・千葉・茨城・栃木・群馬</li>
<li>【北陸】 富山・石川・福井</li>
<li>【東海】 愛知・岐阜・静岡・三重</li>
<li>【関西】 大阪・兵庫・京都・滋賀・奈良</li>
</ul>
</td>
<tr>
<tr>
<td class="tdMain">翌々日着</td>
<td>
<ul>
<li>【北海道】 北海道</li>
<li>【東北】 青森・秋田</li>
<li>【関西】 和歌山</li>
<li>【中国】 鳥取・島根・岡山・広島・山口</li>
<li>【四国】 徳島・香川・愛媛・高知</li>
<li>【九州】 福岡・佐賀・長崎・熊本・大分・宮崎・鹿児島</li>
</ul>
</td>
<tr>
<tr>
<td class="tdMain">平日中3日着</td>
<td>
<ul>
<li>【沖縄】 沖縄</li>
<li>【その他】 離島</li>
</ul>
</td>
<tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="detailPay" class="modal-outer">
<div class="modal-inner payDetail">
<div class="modal-inner__content">
<button class="modalCloseTop"></button>
<p class="modal-inner__content__title">
お支払い方法/領収書について
</p>
<dl class="modal-inner__content__pay">
<dt class="modal-inner__content__pay__dt">●クレジットカード決済</dt>
<dd class="modal-inner__content__pay__dd">
VISA・Master・JCB・Diners・AMEX 分割払い可能 手数料無料
<br>荷物に納品書兼領収書を同梱します。
<br>カード会社が発行する利用明細も領収書の代わりとなります。
</dd>
<dt class="modal-inner__content__pay__dt">●代金引換</dt>
<dd class="modal-inner__content__pay__dd">
商品受取時に配送業者にお支払いください(現金のみ)
<br>1万円(税抜)以上手数料無料
<br>1万円(税抜)未満手数料300円(税抜)
<br>荷物受取りの際に配送業者さんがお渡しする
<br>送り状(伝票)の控えが領収書となります。
</dd>
<dt class="modal-inner__content__pay__dt">●コンビニ後払い</dt>
<dd class="modal-inner__content__pay__dd">
会員登録住所へ請求書ハガキを郵送しますのでコンビニにてお支払いください。
<br>5万円(税込)まで利用可能※審査があります
<br>手数料190円(税抜)
<br>コンビニでお支払いの際にレジでお渡しする
<br>お客様控え(払込受領書)が領収書となります
</dd>
</dl>
<p class="modal-inner__content__pay__text">「<a href="{{ url('mypage') }}">マイページ</a>」-「<a href="">領収書一覧</a>」より領収書の発行もできます</p>
</div>
</div>
</div>
<div id="detailProductReturn" class="modal-outer">
<div class="modal-inner payDetail">
<div class="modal-inner__content">
<button class="modalCloseTop"></button>
<p class="modal-inner__content__title">
返品
</p>
<dl class="modal-inner__content__pay">
<dt class="modal-inner__content__pay__dt">●返品</dt>
<dd class="modal-inner__content__pay__dd">
到着後14日以内の商品で未使用・未開封に限り返品を受け付けます。
<br> (キャンセル不可・受注発注品は除きます)
<br>返品いただく際の送料はお客様ご負担になります。
<br>銀行振込(手数料5%を差し引きます)で返金します。
<br>受取時破損や初期不良は別対応になりますので
<br>お問い合わせください。
</dd>
</dl>
</div>
</div>
</div>
<div id="detailRepair" class="modal-outer">
<div class="modal-inner productDetail">
<div class="modal-inner__content">
<button class="modalCloseTop"></button>
<p class="modal-inner__content__title">
修理について
</p>
<dl class="modal-inner__content__pay">
<dt class="modal-inner__content__pay__dt">●修理</dt>
<dd class="modal-inner__content__pay__dd">
Breavers shopで購入した商品の修理を受け付けます。
</dd>
</dl>
<ul class="modal-inner__content__repair">
<li class="modal-inner__content__repair__item">
<p class="modal-inner__content__repair__item__title">初期不良</p>
<p class="modal-inner__content__repair__item__detail">
到着後30日以内で故障した場合、交換または返品対応します。
<br>ご連絡のうえ「保証書」「付属品」を同梱し着払いにてお送りください。
<br>交換品の送料も無料です。
</p>
</li>
<li class="modal-inner__content__repair__item">
<p class="modal-inner__content__repair__item__title">保証期間内</p>
<p class="modal-inner__content__repair__item__detail">
到着後、保証期間内の場合は、無償修理します。
<br>ご連絡のうえ「保証書」「付属品」を同梱しお送りください。
<br>お送りいただく際の送料はお客様ご負担になります。
<br>修理完了後の送料は無料です。
</p>
<p class="modal-inner__content__repair__item__notice">
※保証期間内でもメーカー判断により有償になる場合もございます。
<br>その際はご連絡しますのでご確認ください。
</p>
</li>
<li class="modal-inner__content__repair__item">
<p class="modal-inner__content__repair__item__title">保証期間外(保証書なし)</p>
<p class="modal-inner__content__repair__item__detail">
保証期間が過ぎている(もしくはない)場合は有償修理します。
<br>ご連絡のうえ「保証書(任意)」「付属品」を同梱しお送りください。
<br>お送りいただく際の送料はお客様ご負担になります。
<br>修理金額は確定後ご連絡します。
<br>修理完了後の送料は無料です。
<br>代金引換でお送りします。
</p>
</li>
</ul>
<p class="modal-inner__content__address">
【送付先】
<br>株式会社bravers[Breavers shop修理の依頼]
<br>〒599-8111
<br>大阪府堺市東区日置荘北町2丁目17-19
<br>072-363-3131
</p>
</div>
</div>
</div>
{% endblock %}