{#
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 %}
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/common.min.css') }}?20231227">
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="dns-prefetch" rel="stylesheet">
<link rel="stylesheet" rel="dns-prefetch" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,700&display=swap" rel="dns-prefetch" rel="stylesheet">
{% endblock %}
{% block javascript %}
<script type="text/javascript" src="/javascripts/jquery.fbt.js?20200715_01"></script>
<script type="text/javascript">
// add karte use ajax to optimize ttfp index
$(document).ready(function() {
$.ajax({
type: "POST",
url: "{{ url('karte_page_sub_category') }}",
data: {
"listUrl": "{{ app.request.pathinfo }}",
"mcName": "{{ mcName ?? '' }}",
"ct": "{{ ct ?? '' }}",
"mcMcName": "{{ mcMcName ?? '' }}",
"isMobile" : {{ isMobile ? 1 : 0 }},
},
dataType: 'json'
}).done(function(response) {
if (response && response.data && response.data.script) {
var script = JSON.parse(response.data.script);
script = script.replace(/\\\//g, "/");
$('body').append(script);
}
});
});
$(function() {
$(window).on('scroll', function(e) {
var $this = $('.fbnr,.fbnr2');
var scrollTop = $(window).scrollTop();
if (scrollTop >= 200) {
$this.addClass('fixed');
} else {
$this.removeClass('fixed');
}
});
var currentURL = window.location.href;
if (currentURL.includes("contact/fax/")) {
$('a:contains("コチラ")').on('click', function (e) {
var fromUrl = window.location.href;
$.ajax({
type: "POST",
url: "{{ url('karte_download_fax_form') }}",
data: {
fromUrl: fromUrl
},
dataType: 'json'
}).done(function(response) {
if (response && response.data && response.data.script) {
var script = JSON.parse(response.data.script);
script = script.replace(/\\\//g, "/");
$('body').append(script);
}
});
});
}
});
</script>
{% endblock %}
{% block lm_after_contents_top %}
<div class="clearfix">{% include 'Page/Parts/fixed-header.twig' with { category: category } only %}</div>
<div class="clearfix">{% include 'Page/Parts/upper-column.twig' with { category: category } only %}</div>
{% endblock %}
{% block main %}
<div>
<div class="clearfix">{% include 'Page/Parts/title.twig' with { category: category } only %}</div>
<div class="clearfix">{% include 'Page/Parts/title-content.twig' with { category: category } only %}</div>
<div class="clearfix">{% include 'Page/Parts/top-contents.twig' with { category: category } only %}</div>
{% if not category.isNoShowDb %}
{#
<div class="clearfix">{% include 'Page/Parts/item-list.twig' with { category: category } only %}</div>
#}
<div class="clearfix">{% include 'Block/lm_category_item_list.twig' %}</div>
{% endif %}
{% if not category.isItemSeries %}
<div class="clearfix">{% include 'Page/Parts/related-page-list.twig' with { category: category } only %}</div>
{% endif %}
<div class="clearfix">{% include 'Page/Parts/related-column-list.twig' with { category: category } only %}</div>
{% if category.isItemSeries %}
<div class="clearfix">{% include 'Page/Parts/related-page-list.twig' with { category: category } only %}</div>
{% endif %}
<div class="clearfix">{% include 'Page/Parts/comment.twig' with { category: category } only %}</div>
<div class="clearfix">{% include 'Page/Parts/bottom-contents.twig' with { category: category } only %}</div>
{#
<div class="clearfix">{% include 'Page/Parts/review-list.twig' with { category: category } only %}</div>
#}
<div class="clearfix">{% include 'Page/Parts/small-footer.twig' with { category: category } only %}</div>
<div class="clearfix">{% include 'Page/Parts/foot-links.twig' with { category: category } only %}</div>
<div id="pagetop" style="display:block;">
<a href="#header">
<img src="https://img0.land-mark.biz/ut_img/public_images/top/top-jump-btn.jpg" alt="ページTOPへ">
</a>
</div>
</div>
{% endblock %}
{% block lm_before_contents_bottom %}
<div class="clearfix">{% include 'Page/Parts/large-footer.twig' with { category: category } only %}</div>
{% endblock %}