<!doctype html>
{#
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.
#}
<html lang="{{ eccube_config.locale }}">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# product: http://ogp.me/ns/product#">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
<title>{{ BaseInfo.shop_name }}{% if subtitle is defined and subtitle is not empty %} / {{ subtitle }}{% elseif title is defined and title is not empty %} / {{ title }}{% endif %}</title>
{% if Page.meta_tags is not empty %}
{{ include(template_from_string(Page.meta_tags)) }}
{% if Page.description is not empty %}
<meta name="description" content="{{ Page.description }}">
{% endif %}
{% else %}
{{ include('meta.twig') }}
{% endif %}
{% if Page.author is not empty %}
<meta name="author" content="{{ Page.author }}">
{% endif %}
{% if Page.keyword is not empty %}
<meta name="keywords" content="{{ Page.keyword }}">
{% endif %}
{% if Page.meta_robots is not empty %}
<meta name="robots" content="{{ Page.meta_robots }}">
{% endif %}
{% if Page.meta_tags is not empty %}
{{ include(template_from_string(Page.meta_tags)) }}
{% endif %}
<link rel="icon" href="{{ asset('assets/img/common/favicon.ico', 'user_data') }}">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css">
<link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
<link rel="stylesheet" href="{{ url('homepage') }}assets/css/uikit.css">
<link rel="stylesheet" href="{{ url('homepage') }}assets/mail/mailformpro/mfp.statics/mailformpro.css">
<link rel="stylesheet" href="{{ url('homepage') }}assets/css/layout.css">
{% block stylesheet %}{% endblock %}
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script>
$(function() {
$.ajaxSetup({
'headers': {
'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
}
});
});
</script>
<script src="{{ url('homepage') }}assets/js/uikit.min.js"></script>
{# Layout: HEAD #}
{% if Layout.Head %}
{{ include('block.twig', {'Blocks': Layout.Head}) }}
{% endif %}
{# プラグイン用styleseetやmetatagなど #}
{% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
<link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
</head>
<body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
<!-- ▼header================================================== -->
<header id="header">
<div id="header-01">
<div class="uk-container">
<div class="header-inner">
<div>
<a id="header-offcanvas-btn" href="#offcanvas" class="uk-hidden-large" data-uk-offcanvas><img src="{{ url('homepage') }}assets/img/common/header/btn_menu.png" alt=""></a>
<h1 id="header-logo"><a href="{{ url('homepage') }}"><img src="{{ url('homepage') }}assets/img/common/header/logo.png" alt="打錠.com"></a></h1>
<p class="header01-txt-01 uk-visible-large">打錠機・打錠金型杵・臼専門 パーツ販売サイト</p>
</div>
<ul class="btn-02">
{% if is_granted('ROLE_USER') %}
<li><a href="{{ url('mypage') }}">{{ 'マイページ'|trans }}</a></li>
<li><a href="{{ url('logout') }}" class="login">{{ 'ログアウト'|trans }}</a></li>
{% else %}
<li><a href="{{ url('entry') }}">{{ '新規会員登録'|trans }}</a></li>
<li><a href="{{ url('mypage_login') }}" class="login">{{ 'ログイン'|trans }}</a></li>
{% endif %}
<li><a href="{{ url('cart') }}" class="cart"><img src="{{ url('homepage') }}assets/img/common/header/icon-cart.png" alt=""> <span class="hidden2">カートを見る</span></a></li>
</ul>
</div>
</div><!-- /.uk-container -->
</div>
<nav id="gnav" class="uk-visible-large">
<ul class="uk-grid uk-grid-width-1-5 uk-grid-collapse uk-container">
<li>
<a href="{{ url('homepage') }}">ホーム<br><small>Home</small></a>
</li>
<li>
<a href="{{ url('product_detail', {'id': 1}) }}">商品<br><small>PRODUCT</small></a>
</li>
<li>
<a href="{{ url('mypage') }}">会員ページ<br><small>MEMBERSHIP</small></a>
</li>
<li>
<a href="https://www.dajou.com/" target="_blank">打錠サイト<br><small>PRODUCT</small></a>
</li>
<li>
<a href="{{ url('contact') }}">お問合せ・お見積り<br><small>CONTACT</small></a>
</li>
</ul><!-- /.gnav-main -->
</nav>
</header>
<!-- ▲header ================================================== -->
{# Layout: BODY_AFTER #}
{% if Layout.BodyAfter %}
{{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
{% endif %}
{% if isMaintenance %}
<div class="ec-maintenanceAlert">
<div>
<div class="ec-maintenanceAlert__icon"><img src="{{ asset('assets/icon/exclamation-white.svg') }}"/></div>
{{ 'メンテナンスモードが有効になっています。'|trans }}
</div>
</div>
{% endif %}
<div class="ec-layoutRole">
{# Layout: HEADER #}
{% if Layout.Header %}
<div class="ec-layoutRole__header">
{# {{ include('block.twig', {'Blocks': Layout.Header}) }} #}
</div>
{% endif %}
{# Layout: CONTENTS_TOP #}
{% if Layout.ContentsTop %}
<div class="ec-layoutRole__contentTop">
{{ include('block.twig', {'Blocks': Layout.ContentsTop}) }}
</div>
{% endif %}
<div class="ec-layoutRole__contents">
{# Layout: SIDE_LEFT #}
{% if Layout.SideLeft %}
<div class="ec-layoutRole__left">
{{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
</div>
{% endif %}
{% set layoutRoleMain = 'ec-layoutRole__main' %}
{% if Layout.ColumnNum == 2 %}
{% set layoutRoleMain = 'ec-layoutRole__mainWithColumn' %}
{% elseif Layout.ColumnNum == 3 %}
{% set layoutRoleMain = 'ec-layoutRole__mainBetweenColumn' %}
{% endif %}
<div class="{{ layoutRoleMain }}">
{# Layout: MAIN_TOP #}
{% if Layout.MainTop %}
<div class="ec-layoutRole__mainTop">
{{ include('block.twig', {'Blocks': Layout.MainTop}) }}
</div>
{% endif %}
{# MAIN AREA #}
{% block main %}{% endblock %}
{# Layout: MAIN_Bottom #}
{% if Layout.MainBottom %}
<div class="ec-layoutRole__mainBottom">
{{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
</div>
{% endif %}
</div>
{# Layout: SIDE_RIGHT #}
{% if Layout.SideRight %}
<div class="ec-layoutRole__right">
{{ include('block.twig', {'Blocks': Layout.SideRight}) }}
</div>
{% endif %}
</div>
{# Layout: CONTENTS_BOTTOM #}
{% if Layout.ContentsBottom %}
<div class="ec-layoutRole__contentBottom">
{{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
</div>
{% endif %}
<!-- ▼footer ================================================== -->
<section id="footer-02">
<div class="uk-container">
<div class="uk-grid com-grid-40 uk-grid-width-medium-1-2 uk-grid-width-large-1-3" data-uk-grid-margin data-uk-grid-match>
<h2 class="uk-width-large-1-3 com-tit-01">お見積り/お問合せ<span>CONTACT</span></h2>
<dl class="home-panel-01">
<dt><a href="tel:0755812044"><img src="{{ url('homepage') }}assets/img/home/home04_txt_01.png" alt="TEL 077-581-2044"></a></dt>
<dd>受付時間:9:00~17:00(土日祝日を除く)</dd>
</dl>
<div class="home-btn-01"><a href="https://www.dajou.com/contact"><img src="{{ url('homepage') }}assets/img/home/home04_btn_01.png" alt="お見積り/お問合せフォーム"></a></div>
</div><!-- /.uk-grid -->
</div>
</section><!-- /#footer-02 -->
<section id="footer-03">
<div class="uk-container">
<div class="uk-grid com-grid-40" data-uk-grid-margin data-uk-grid-match>
<div class="home-panel-01 uk-width-large-3-4">
<h2><a target="_blank" href="http://www.ichihashiseiki.co.jp/"><img src="{{ url('homepage') }}assets/img/home/home05_logo.png" alt="市橋精機株式会社"></a></h2>
<dl>
<dt>市橋精機株式会社</dt>
<dd>〒607-8028 京都市山科区四ノ宮岩久保町17-3<br>
TEL:075-581-2044/FAX:075-581-4144</dd>
</dl>
</div>
<div class="home-btn-01 uk-width-large-1-4">
<p><a target="_blank" href="http://www.ichihashiseiki.co.jp/">コーポレートサイト</a></p>
</div>
</div><!-- /.uk-grid -->
</div><!-- /.uk-container -->
</section><!-- /#footer-03 -->
<footer>
<a id="pagetop" href="#header" data-uk-smooth-scroll><img src="{{ url('homepage') }}assets/img/common/parts/btn_top.png" alt="pagetop"></a>
<div class="uk-container">
<div id="footer-01">
<h1 class="footer01-logo"><a target="_blank" href="{{ url('homepage') }}"><img src="{{ url('homepage') }}assets/img/common/footer/logo.png" alt="打錠.com"></a></h1>
<p class="footer01-txt">〒607-8028 京都市山科区四ノ宮岩久保町17-3<br>
TEL:075-581-2044/FAX:075-581-4144</p>
</div><!-- /.uk-grid -->
{#
<nav id="footer-nav" class="uk-visible-large">
<div class="footer-nav-panel-01">
<p class="footer-nav-tit-01"><a href="/product/">製品紹介</a></p>
<p class="footer-nav-tit-02"><a href="/product/handtab/">卓上錠剤成型機 HANDTABシリーズ</a></p>
<ul class="footer-nav-list-01">
<li><a href="">HANDTAB-100(卓上錠剤成型機)</a></li>
<li><a href="">HANDTAB-100R(リング錠対応モデル)</a></li>
<li><a href="">HANDTAB-200(IPT杵・臼対応モデル)</a></li>
<li><a href="">HANDTAB-100T15(中50mm対応モデル)</a></li>
</ul>
<p class="footer-nav-tit-02"><a href="/product/autotab/">フルオート打錠機 AUTOTABシリーズ</a></p>
<ul class="footer-nav-list-01">
<li><a href="/product/autotab/autotab500/">AUTOTAB-500シリーズ</a></li>
<li><a href="/product/autotab/autotab200/">AUTOTAB-200シリーズ</a></li>
</ul>
</div><!-- /.footer-nav-panel-01 -->
<div class="footer-nav-panel-02">
<p class="footer-nav-tit-02"><a href="/product/press/">打錠機用杵・臼</a></p>
<p class="footer-nav-tit-02"><a href=""><表面処理ラインナップ></a></p>
<ul class="footer-nav-list-01">
<li><a href="">クロムコーティングタイプ(CRN)</a></li>
<li><a href="">チタンコーティングタイプ(TIN)</a></li>
<li><a href="">超硬臼トップ(高耐久性臼)</a></li>
<li><a href="">超硬杵トップ(高耐久性杵)</a></li>
</ul>
<p class="footer-nav-tit-02"><a href=""><型式ラインナップ></a></p>
<ul class="footer-nav-list-01">
<li><a href="">普通杵(ロータリー式打錠機用)</a></li>
<li><a href="">ホルダーセット式打錠杵(IPT規格</a></li>
<li><a href="">マルチタイプ(複数錠の打錠に対応)</a></li>
</ul>
</div><!-- /.footer-nav-panel-02 -->
<div class="footer-nav-panel-03">
<p class="footer-nav-tit-02"><a href="/product/tablet/">錠剤設計</a></p>
<ul class="footer-nav-list-01">
<li><a href="">タブレットデザイン</a></li>
</ul>
<p class="footer-nav-tit-02"><a href="/product/utility/">杵臼修理・治具・装置</a></p>
<ul class="footer-nav-list-01">
<li><a href="">杵臼リユース・リサイクル加工</a></li>
<li><a href="">臼穴リサイズ加工</a></li>
<li><a href="">杵臼用ラック</a></li>
<li><a href="">オリジナル設計の治具・装置 </a></li>
</ul>
</div><!-- /.footer-nav-panel-03 -->
<div class="footer-nav-panel-04">
<p class="footer-nav-tit-01"><a href="/works/">導入実績</a></p>
<p class="footer-nav-tit-01"><a href="/faq/">よくある質問</a></p>
<p class="footer-nav-tit-01"><a href="/contact/">お問合せ・お見積り</a></p>
<p class="footer-nav-tit-01"><a href="/news/">お知らせ</a></p>
<p class="footer-nav-tit-01"><a href="/company/">会社案内</a></p>
</div><!-- /.footer-nav-panel-04 -->
</nav><!-- /#footer-nav -->
#}
</div><!-- /.uk-container -->
<div id="copyright">
<small>copyright 2016 dajyou.com. all rights reserved.</small>
</div><!-- /#copyright -->
</footer>
<!-- ▲footer ================================================== -->
<!-- ▼offcanvas menu ============================== -->
<div id="offcanvas" class="uk-offcanvas">
<div class="uk-offcanvas-bar">
<ul class="uk-nav uk-nav-offcanvas uk-nav-parent-icon" data-uk-nav="{multiple:true}">
<li class="uk-nav-header">メニュー</li>
<li><a href="/">ホーム</a></li>
<li class="uk-parent">
<a href="#">製品紹介</a>
<ul class="uk-nav-sub">
<li><a href="#">製品紹介一覧</a></li>
<li><a href="#">卓上錠剤成型機 HANDTABシリーズ</a></li>
<li><a href="#">フルオート打錠機 AUTOTABシリーズ</a></li>
<li class="sub"><a href="#">AUTOTAB-500シリーズ</a></li>
<li class="sub"><a href="#">AUTOTAB-200シリーズ</a></li>
<li><a href="#">打錠機用杵・臼</a></li>
<li><a href="#">錠剤設計</a></li>
<li><a href="#">杵臼修理・治具・装置</a></li>
</ul>
</li>
<li><a href="#">導入実績</a></li>
<li><a href="#">よくある質問</a></li>
<li><a href="#">お問合せ・お見積り</a></li>
<li><a href="#">会社案内</a></li>
</ul>
</div><!-- /.uk-offcanvas-bar -->
</div><!-- /#offcanvas -->
<!-- ▲offcanvas menu ============================== -->
{# Layout: CONTENTS_FOOTER #}
{% if Layout.Footer %}
<div class="ec-layoutRole__footer">
{# {{ include('block.twig', {'Blocks': Layout.Footer}) }} #}
</div>
{% endif %}
</div><!-- ec-layoutRole -->
<div class="ec-overlayRole"></div>
<div class="ec-drawerRoleClose"><i class="fas fa-times"></i></div>
<div class="ec-drawerRole">
{# Layout: DRAWER #}
{% if Layout.Drawer %}
{{ include('block.twig', {'Blocks': Layout.Drawer}) }}
{% endif %}
</div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
{% include('@common/lang.twig') %}
<script src="{{ asset('assets/js/function.js') }}"></script>
<script src="{{ asset('assets/js/eccube.js') }}"></script>
{% block javascript %}{% endblock %}
{# Layout: CLOSE_BODY_BEFORE #}
{% if Layout.CloseBodyBefore %}
{{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
{% endif %}
{# プラグイン用Snippet #}
{% if plugin_snippets is defined %}
{{ include('snippet.twig', { snippets: plugin_snippets }) }}
{% endif %}
<script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
</body>
</html>