<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* __string_template__7c560d45e25bfb116c3dd168fcef91ac */
class __TwigTemplate_5ac2e59451f17658b619dcecbdf8e5a2 extends \Eccube\Twig\Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'javascript' => [$this, 'block_javascript'],
'main' => [$this, 'block_main'],
];
}
protected function doGetParent(array $context)
{
// line 11
return "default_frame.twig";
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "__string_template__7c560d45e25bfb116c3dd168fcef91ac"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "__string_template__7c560d45e25bfb116c3dd168fcef91ac"));
// line 13
$context["body_class"] = "product_page";
// line 11
$this->parent = $this->loadTemplate("default_frame.twig", "__string_template__7c560d45e25bfb116c3dd168fcef91ac", 11);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
}
// line 15
public function block_javascript($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascript"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascript"));
// line 16
echo " <script>
eccube.productsClassCategories = {
";
// line 18
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable((isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 18, $this->source); })()));
$context['loop'] = [
'parent' => $context['_parent'],
'index0' => 0,
'index' => 1,
'first' => true,
];
if (is_array($context['_seq']) || (is_object($context['_seq']) && $context['_seq'] instanceof \Countable)) {
$length = count($context['_seq']);
$context['loop']['revindex0'] = $length - 1;
$context['loop']['revindex'] = $length;
$context['loop']['length'] = $length;
$context['loop']['last'] = 1 === $length;
}
foreach ($context['_seq'] as $context["_key"] => $context["Product"]) {
// line 19
echo " \"";
echo twig_escape_filter($this->env, twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["Product"], "id", [], "any", false, false, false, 19), "js"), "html", null, true);
echo "\": ";
echo $this->extensions['Eccube\Twig\Extension\EccubeExtension']->getClassCategoriesAsJson($context["Product"]);
if ((twig_get_attribute($this->env, $this->source, $context["loop"], "last", [], "any", false, false, false, 19) == false)) {
echo ", ";
}
// line 20
echo " ";
++$context['loop']['index0'];
++$context['loop']['index'];
$context['loop']['first'] = false;
if (isset($context['loop']['length'])) {
--$context['loop']['revindex0'];
--$context['loop']['revindex'];
$context['loop']['last'] = 0 === $context['loop']['revindex0'];
}
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['Product'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 21
echo " };
\$(function() {
// 表示件数を変更
\$('.disp-number').change(function() {
var dispNumber = \$(this).val();
\$('#disp_number').val(dispNumber);
\$('#pageno').val(1);
\$(\"#form1\").submit();
});
// 並び順を変更
\$('.order-by').change(function() {
var orderBy = \$(this).val();
\$('#orderby').val(orderBy);
\$('#pageno').val(1);
\$(\"#form1\").submit();
});
\$('.add-cart').on('click', function(e) {
var \$form = \$(this).parents('li').find('form');
// 個数フォームのチェック
var \$quantity = \$form.parent().find('.quantity');
if (\$quantity.val() < 1) {
\$quantity[0].setCustomValidity('";
// line 47
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("1以上で入力してください。"), "html", null, true);
echo "');
setTimeout(function() {
loadingOverlay('hide');
}, 100);
return true;
} else {
\$quantity[0].setCustomValidity('');
}
e.preventDefault();
\$.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').html(this);
});
\$('.ec-modal').show()
// カートブロックを更新する
\$.ajax({
url: '";
// line 75
echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("block_cart");
echo "',
type: 'GET',
dataType: 'html'
}).done(function(html) {
\$('.ec-headerRole__cart').html(html);
});
}).fail(function(data) {
alert('";
// line 82
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("カートへの追加に失敗しました。"), "html", null, true);
echo "');
}).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>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
}
// line 100
public function block_main($context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "main"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "main"));
// line 101
echo "
<div class=\"main_visual\"
data-imgpc=\"";
// line 103
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/img/common/main_visual.jpg", "user_data"), "html", null, true);
echo "\"
data-imgsmp=\"";
// line 104
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/img/common/main_visualsmp.jpg", "user_data"), "html", null, true);
echo "\">
<div class=\"container\">
<h2 class=\"main_visual_title\">
<span class=\"_big\">G-Laboウクレレラインナップ</span>
<span class=\"_small\">G-Laboは、職人によってテキストテキストテキストテキストなウクレレブランドです。</span>
</h2>
</div>
</div>
<div class=\"product_list container\">
<div class=\"product_list_category\">
<p class=\"_list\"><a href=\"";
// line 115
echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("product_list");
echo "\">すべての商品</a></p>
";
// line 116
echo twig_include($this->env, $context, "Block/category.twig");
echo "
</div>
<div class=\"product_list_container\">
<div id=\"main_side\" class=\"side\">
<script>
\$(function() {
\$(\".product_btn_search\").click(function(){
\$(this).parent().submit();
});
\$(\".product_btn_del\").click(function(){
\$(\".search-form-custom\").find(\"input[type='text'], input[type='checkbox'], select\").val(\"\");
\$(this).parent().submit();
});
});
</script>
<div class=\"ec-headerNaviRole__search\">
<form method=\"get\" action=\"/products/search\" class=\"search-form-custom product_form_search\">
<div class=\"ec-headerSearch__keyword\">
<div class=\"ec-input\">
<p class=\"_title02\">キーワード</p>
<div class='cus-input-search'>
<input type=\"text\" id=\"keyword\" name=\"keyword\" placeholder=\"\" class=\"form-control form-control\" />
<button class=\"ec-headerSearch__keywordBtn\" type=\"submit\"></button>
</div>
</div>
</div>
<h3 class=\"product_form_title \">
<span>カテゴリー</span>
</h3>
<ul class=\"product_form_checkbox\" >
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_0\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_20\" value=\"20\" />
<label class=\"form-check-label\" for=\"category_0\">ガズのわがままウクレレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_1\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_21\" value=\"21\" />
<label class=\"form-check-label\" for=\"category_1\">ウスレレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_2\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_22\" value=\"22\" />
<label class=\"form-check-label\" for=\"category_2\">たびレレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_3\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_23\" value=\"23\" />
<label class=\"form-check-label\" for=\"category_3\">竹レレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_4\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_24\" value=\"24\" />
<label class=\"form-check-label\" for=\"category_4\">THE CLASSIC</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_5\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_25\" value=\"25\" />
<label class=\"form-check-label\" for=\"category_5\">コズモデル</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_6\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_26\" value=\"26\" />
<label class=\"form-check-label\" for=\"category_6\">GM Vintage</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_7\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_27\" value=\"27\" />
<label class=\"form-check-label\" for=\"category_7\">ガズモデル</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_8\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_28\" value=\"28\" />
<label class=\"form-check-label\" for=\"category_8\">その他(グッズ)</label></div>
</li>
</ul>
<h3 class=\"product_form_title _icon01 \">
<span>ライフスタイル</span>
</h3>
<ul class=\"product_form_checkbox\" >
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_0\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_33\" value=\"33\" />
<label class=\"form-check-label\" for=\"category_17_0\">自宅でリラックスして楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_1\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_34\" value=\"34\" />
<label class=\"form-check-label\" for=\"category_17_1\">ビジネスの合間に楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_2\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_35\" value=\"35\" />
<label class=\"form-check-label\" for=\"category_17_2\">アウトドアで楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_3\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_36\" value=\"36\" />
<label class=\"form-check-label\" for=\"category_17_3\">カフェでのひととき</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_4\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_37\" value=\"37\" />
<label class=\"form-check-label\" for=\"category_17_4\">旅行へのお供に</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_5\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_38\" value=\"38\" />
<label class=\"form-check-label\" for=\"category_17_5\">ライブ&パフォーマンスに</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_6\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_39\" value=\"39\" />
<label class=\"form-check-label\" for=\"category_17_6\">友人や家族とセッション</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_7\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_40\" value=\"40\" />
<label class=\"form-check-label\" for=\"category_17_7\">子供と一緒にに楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_8\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_41\" value=\"41\" />
<label class=\"form-check-label\" for=\"category_17_8\">作曲・クリエイティブ用途</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_9\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_42\" value=\"42\" />
<label class=\"form-check-label\" for=\"category_17_9\">SNS・動画配信用</label></div>
</li>
</ul>
<h3 class=\"product_form_title _icon02\"><span>こだわり条件から探す</span></h3>
<p class=\"_title02\">商品ステータス</p>
<select id=\"category_19\" name=\"category_19\" class=\"product_form_select form-select\"><option value=\"\">カテゴリを選択してください</option><option value=\"29\">在庫有り商品</option><option value=\"30\">予約商品</option><option value=\"31\">新着商品</option><option value=\"32\">おすすめ商品</option></select>
<p class=\"_title02\">サイズ</p>
<ul class=\"product_size_checkbox\">
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_2_0\" name=\"class_name_2[]\" class=\"form-check-input form-check-input\" id=\"category_7\" value=\"7\" />
<label class=\"form-check-label\" for=\"class_name_2_0\">ソプラノ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_2_1\" name=\"class_name_2[]\" class=\"form-check-input form-check-input\" id=\"category_8\" value=\"8\" />
<label class=\"form-check-label\" for=\"class_name_2_1\">コンサート</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_2_2\" name=\"class_name_2[]\" class=\"form-check-input form-check-input\" id=\"category_9\" value=\"9\" />
<label class=\"form-check-label\" for=\"class_name_2_2\">テナー</label></div>
</li>
</ul>
<p class=\"_title02 icon01\">塗装</p>
<ul class=\"product_coating_checkbox\">
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_4_0\" name=\"class_name_4[]\" class=\"form-check-input form-check-input\" id=\"category_13\" value=\"13\" />
<label class=\"form-check-label\" for=\"class_name_4_0\">艶あり(グロス)</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_4_1\" name=\"class_name_4[]\" class=\"form-check-input form-check-input\" id=\"category_12\" value=\"12\" />
<label class=\"form-check-label\" for=\"class_name_4_1\">艶なし(マット)</label></div>
</li>
</ul>
<p class=\"_title02\">ボディタイプ</p>
<select id=\"class_name_3\" name=\"class_name_3\" class=\"product_form_select form-select\"><option value=\"\">カテゴリを選択してください</option><option value=\"11\">薄ボディ(〇〇mm)</option><option value=\"10\">ノーマル(標準〇〇mm)</option></select>
<p class=\"_title02\">フレット数</p>
<select id=\"class_name_1\" name=\"class_name_1\" class=\"product_form_select form-select\"><option value=\"\">15フレット(標準)</option><option value=\"1\">15フレット</option><option value=\"2\">12フレット</option></select>
<p class=\"_title02\">ピックアップ</p>
<select id=\"class_name_5\" name=\"class_name_5\" class=\"product_form_select form-select\"><option value=\"\">なし(標準)</option><option value=\"15\">あり(+¥0,000)</option><option value=\"14\">なし(標準)</option></select>
<p class=\"_title02\">価格帯</p>
<div class=\"product_form_price\">
<select id=\"price_min\" name=\"price_min\" class=\"product_form_select form-select\"><option value=\"\">選択してください</option><option value=\"0\">0</option><option value=\"10000\">10,000</option><option value=\"20000\">20,000</option><option value=\"30000\">30,000</option><option value=\"40000\">40,000</option><option value=\"50000\">50,000</option><option value=\"60000\">60,000</option><option value=\"70000\">70,000</option><option value=\"80000\">80,000</option><option value=\"90000\">90,000</option><option value=\"100000\">100,000</option><option value=\"110000\">110,000</option><option value=\"120000\">120,000</option><option value=\"130000\">130,000</option><option value=\"140000\">140,000</option><option value=\"150000\">150,000</option><option value=\"160000\">160,000</option><option value=\"170000\">170,000</option><option value=\"180000\">180,000</option><option value=\"190000\">190,000</option><option value=\"200000\">200,000</option></select>
</select><span class=\"_yen\">円</span><span class=\"_to\">〜</span>
<select id=\"price_max\" name=\"price_max\" class=\"product_form_select form-select\"><option value=\"\">選択してください</option><option value=\"10000\">10,000</option><option value=\"20000\">20,000</option><option value=\"30000\">30,000</option><option value=\"40000\">40,000</option><option value=\"50000\">50,000</option><option value=\"60000\">60,000</option><option value=\"70000\">70,000</option><option value=\"80000\">80,000</option><option value=\"90000\">90,000</option><option value=\"100000\">100,000</option><option value=\"110000\">110,000</option><option value=\"120000\">120,000</option><option value=\"130000\">130,000</option><option value=\"140000\">140,000</option><option value=\"150000\">150,000</option><option value=\"160000\">160,000</option><option value=\"170000\">170,000</option><option value=\"180000\">180,000</option><option value=\"190000\">190,000</option><option value=\"200000\">200,000</option></select>
<span class=\"_yen\">円</span>
</div>
<p class=\"product_btn_search\">この条件で絞り込む</p>
<p class=\"product_btn_del\">リセット</p>
</form>
</div><div class=\"product_form_search\"></div>
</div>
<div id=\"main_content\">
";
// line 293
if ((twig_length_filter($this->env, twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, (isset($context["search_form"]) || array_key_exists("search_form", $context) ? $context["search_form"] : (function () { throw new RuntimeError('Variable "search_form" does not exist.', 293, $this->source); })()), "category_id", [], "any", false, false, false, 293), "vars", [], "any", false, false, false, 293), "errors", [], "any", false, false, false, 293)) > 0)) {
// line 294
echo "
<div class=\"ec-searchnavRole\">
<p class=\"errormsg text-danger\">";
// line 296
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("ご指定のカテゴリは存在しません"), "html", null, true);
echo "</p>
</div>
";
} else {
// line 300
echo "
<div class=\"ec-searchnavRole\">
<form name=\"form1\" id=\"form1\" method=\"get\" action=\"?\">
";
// line 303
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable((isset($context["search_form"]) || array_key_exists("search_form", $context) ? $context["search_form"] : (function () { throw new RuntimeError('Variable "search_form" does not exist.', 303, $this->source); })()));
foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
// line 304
echo " <input type=\"hidden\" id=\"";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, $context["item"], "vars", [], "any", false, false, false, 304), "id", [], "any", false, false, false, 304), "html", null, true);
echo "\"
name=\"";
// line 305
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, $context["item"], "vars", [], "any", false, false, false, 305), "full_name", [], "any", false, false, false, 305), "html", null, true);
echo "\"
";
// line 306
if ( !twig_test_empty(twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, $context["item"], "vars", [], "any", false, false, false, 306), "value", [], "any", false, false, false, 306))) {
echo "value=\"";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, $context["item"], "vars", [], "any", false, false, false, 306), "value", [], "any", false, false, false, 306), "html", null, true);
echo "\" ";
}
echo "/>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['item'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 308
echo " </form>
<div class=\"product_list_navi\">
<p class=\"_count_item\">
";
// line 311
if ((twig_get_attribute($this->env, $this->source, (isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 311, $this->source); })()), "totalItemCount", [], "any", false, false, false, 311) > 0)) {
// line 312
echo " ";
echo $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("<span class=\"ec-font-bold\">%count%件</span>", ["%count%" => twig_get_attribute($this->env, $this->source, (isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 312, $this->source); })()), "totalItemCount", [], "any", false, false, false, 312)]);
echo "
";
} else {
// line 314
echo " <span>";
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("お探しの商品は見つかりませんでした"), "html", null, true);
echo "</span>
";
}
// line 316
echo " </p>
";
// line 317
if ((twig_get_attribute($this->env, $this->source, (isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 317, $this->source); })()), "totalItemCount", [], "any", false, false, false, 317) > 0)) {
// line 318
echo " <div class=\"product_list_navi_role\">
<div class=\"ec-select\">
";
// line 320
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(twig_get_attribute($this->env, $this->source, (isset($context["search_form"]) || array_key_exists("search_form", $context) ? $context["search_form"] : (function () { throw new RuntimeError('Variable "search_form" does not exist.', 320, $this->source); })()), "disp_number", [], "any", false, false, false, 320), 'widget', ["id" => "", "attr" => ["class" => "disp-number"]]);
echo "
";
// line 321
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(twig_get_attribute($this->env, $this->source, (isset($context["search_form"]) || array_key_exists("search_form", $context) ? $context["search_form"] : (function () { throw new RuntimeError('Variable "search_form" does not exist.', 321, $this->source); })()), "orderby", [], "any", false, false, false, 321), 'widget', ["id" => "", "attr" => ["class" => "order-by"]]);
echo "
</div>
</div>
";
}
// line 325
echo " </div>
</div>
";
// line 328
if ((twig_get_attribute($this->env, $this->source, (isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 328, $this->source); })()), "totalItemCount", [], "any", false, false, false, 328) > 0)) {
// line 329
echo " <div class=\"product_list_block\">
";
// line 330
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable((isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 330, $this->source); })()));
$context['loop'] = [
'parent' => $context['_parent'],
'index0' => 0,
'index' => 1,
'first' => true,
];
if (is_array($context['_seq']) || (is_object($context['_seq']) && $context['_seq'] instanceof \Countable)) {
$length = count($context['_seq']);
$context['loop']['revindex0'] = $length - 1;
$context['loop']['revindex'] = $length;
$context['loop']['length'] = $length;
$context['loop']['last'] = 1 === $length;
}
foreach ($context['_seq'] as $context["_key"] => $context["Product"]) {
// line 331
echo " <div class=\"product_list_item\">
<a href=\"";
// line 332
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("product_detail", ["id" => twig_get_attribute($this->env, $this->source, $context["Product"], "id", [], "any", false, false, false, 332)]), "html", null, true);
echo "\">
<div class=\"_img\">
<img src=\"";
// line 334
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl($this->extensions['Eccube\Twig\Extension\EccubeExtension']->getNoImageProduct(twig_get_attribute($this->env, $this->source, $context["Product"], "main_list_image", [], "any", false, false, false, 334)), "save_image"), "html", null, true);
echo "\" alt=\"";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["Product"], "name", [], "any", false, false, false, 334), "html", null, true);
echo "\" ";
if ((twig_get_attribute($this->env, $this->source, $context["loop"], "index", [], "any", false, false, false, 334) > 5)) {
echo " loading=\"lazy\"";
}
echo ">
</div>
<div class=\"_content\">
<ul class=\"_tag\">
";
// line 338
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->source, $context["Product"], "Tags", [], "any", false, false, false, 338));
foreach ($context['_seq'] as $context["_key"] => $context["Tag"]) {
// line 339
echo " <li>";
echo twig_escape_filter($this->env, $context["Tag"], "html", null, true);
echo "</li>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['Tag'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 341
echo " </ul>
<p class=\"_title\">";
// line 342
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["Product"], "name", [], "any", false, false, false, 342), "html", null, true);
echo "</p>
</div>
<p class=\"_price\">
";
// line 345
if (twig_get_attribute($this->env, $this->source, $context["Product"], "hasProductClass", [], "any", false, false, false, 345)) {
// line 346
echo " ";
if ((twig_get_attribute($this->env, $this->source, $context["Product"], "getPrice02Min", [], "any", false, false, false, 346) == twig_get_attribute($this->env, $this->source, $context["Product"], "getPrice02Max", [], "any", false, false, false, 346))) {
// line 347
echo " ";
echo twig_escape_filter($this->env, $this->extensions['Eccube\Twig\Extension\EccubeExtension']->getPriceFilter(twig_get_attribute($this->env, $this->source, $context["Product"], "getPrice02IncTaxMin", [], "any", false, false, false, 347)), "html", null, true);
echo "<span class=\"_included\">(税込)</span>
";
} else {
// line 349
echo " ";
echo twig_escape_filter($this->env, $this->extensions['Eccube\Twig\Extension\EccubeExtension']->getPriceFilter(twig_get_attribute($this->env, $this->source, $context["Product"], "getPrice02IncTaxMin", [], "any", false, false, false, 349)), "html", null, true);
echo " ~ ";
echo twig_escape_filter($this->env, $this->extensions['Eccube\Twig\Extension\EccubeExtension']->getPriceFilter(twig_get_attribute($this->env, $this->source, $context["Product"], "getPrice02IncTaxMax", [], "any", false, false, false, 349)), "html", null, true);
echo "<span class=\"_included\">(税込)</span>
";
}
// line 351
echo " ";
} else {
// line 352
echo " ";
echo twig_escape_filter($this->env, $this->extensions['Eccube\Twig\Extension\EccubeExtension']->getPriceFilter(twig_get_attribute($this->env, $this->source, $context["Product"], "getPrice02IncTaxMin", [], "any", false, false, false, 352)), "html", null, true);
echo "<span class=\"_included\">(税込)</span>
";
}
// line 354
echo " </p>
</a>
</div>
";
++$context['loop']['index0'];
++$context['loop']['index'];
$context['loop']['first'] = false;
if (isset($context['loop']['length'])) {
--$context['loop']['revindex0'];
--$context['loop']['revindex'];
$context['loop']['last'] = 0 === $context['loop']['revindex0'];
}
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['Product'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 358
echo " </div>
<div class=\"ec-modal\">
<div class=\"ec-modal-overlay\">
<div class=\"ec-modal-wrap\">
<span class=\"ec-modal-close\"><span class=\"ec-icon\"><img src=\"";
// line 362
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("assets/icon/cross-dark.svg"), "html", null, true);
echo "\" alt=\"\"/></span></span>
<div id=\"ec-modal-header\" class=\"text-center\">";
// line 363
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("カートに追加しました。"), "html", null, true);
echo "</div>
<div class=\"ec-modal-box\">
<div class=\"ec-role\">
<span class=\"ec-inlineBtn--cancel\">";
// line 366
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("お買い物を続ける"), "html", null, true);
echo "</span>
<a href=\"";
// line 367
echo $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("cart");
echo "\" class=\"ec-inlineBtn--action\">";
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("カートへ進む"), "html", null, true);
echo "</a>
</div>
</div>
</div>
</div>
</div>
<div class=\"ec-pagerRole\">
";
// line 374
$this->loadTemplate("pager.twig", "__string_template__7c560d45e25bfb116c3dd168fcef91ac", 374)->display(twig_array_merge($context, ["pages" => twig_get_attribute($this->env, $this->source, (isset($context["pagination"]) || array_key_exists("pagination", $context) ? $context["pagination"] : (function () { throw new RuntimeError('Variable "pagination" does not exist.', 374, $this->source); })()), "paginationData", [], "any", false, false, false, 374)]));
// line 375
echo " </div>
";
}
// line 377
echo " ";
}
// line 378
echo " </div>
</div>
</div>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
}
public function getTemplateName()
{
return "__string_template__7c560d45e25bfb116c3dd168fcef91ac";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 665 => 378, 662 => 377, 658 => 375, 656 => 374, 644 => 367, 640 => 366, 634 => 363, 630 => 362, 624 => 358, 607 => 354, 601 => 352, 598 => 351, 590 => 349, 584 => 347, 581 => 346, 579 => 345, 573 => 342, 570 => 341, 561 => 339, 557 => 338, 544 => 334, 539 => 332, 536 => 331, 519 => 330, 516 => 329, 514 => 328, 509 => 325, 502 => 321, 498 => 320, 494 => 318, 492 => 317, 489 => 316, 483 => 314, 477 => 312, 475 => 311, 470 => 308, 458 => 306, 454 => 305, 449 => 304, 445 => 303, 440 => 300, 433 => 296, 429 => 294, 427 => 293, 247 => 116, 243 => 115, 229 => 104, 225 => 103, 221 => 101, 211 => 100, 184 => 82, 174 => 75, 143 => 47, 115 => 21, 101 => 20, 93 => 19, 76 => 18, 72 => 16, 62 => 15, 51 => 11, 49 => 13, 36 => 11,);
}
public function getSourceContext()
{
return new Source("{#
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 javascript %}
<script>
eccube.productsClassCategories = {
{% for Product in pagination %}
\"{{ Product.id|escape('js') }}\": {{ class_categories_as_json(Product)|raw }}{% if loop.last == false %}, {% endif %}
{% endfor %}
};
\$(function() {
// 表示件数を変更
\$('.disp-number').change(function() {
var dispNumber = \$(this).val();
\$('#disp_number').val(dispNumber);
\$('#pageno').val(1);
\$(\"#form1\").submit();
});
// 並び順を変更
\$('.order-by').change(function() {
var orderBy = \$(this).val();
\$('#orderby').val(orderBy);
\$('#pageno').val(1);
\$(\"#form1\").submit();
});
\$('.add-cart').on('click', function(e) {
var \$form = \$(this).parents('li').find('form');
// 個数フォームのチェック
var \$quantity = \$form.parent().find('.quantity');
if (\$quantity.val() < 1) {
\$quantity[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
setTimeout(function() {
loadingOverlay('hide');
}, 100);
return true;
} else {
\$quantity[0].setCustomValidity('');
}
e.preventDefault();
\$.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').html(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>
{% endblock %}
{% block main %}
<div class=\"main_visual\"
data-imgpc=\"{{ asset('assets/img/common/main_visual.jpg','user_data') }}\"
data-imgsmp=\"{{ asset('assets/img/common/main_visualsmp.jpg','user_data') }}\">
<div class=\"container\">
<h2 class=\"main_visual_title\">
<span class=\"_big\">G-Laboウクレレラインナップ</span>
<span class=\"_small\">G-Laboは、職人によってテキストテキストテキストテキストなウクレレブランドです。</span>
</h2>
</div>
</div>
<div class=\"product_list container\">
<div class=\"product_list_category\">
<p class=\"_list\"><a href=\"{{ url('product_list') }}\">すべての商品</a></p>
{{ include('Block/category.twig') }}
</div>
<div class=\"product_list_container\">
<div id=\"main_side\" class=\"side\">
<script>
\$(function() {
\$(\".product_btn_search\").click(function(){
\$(this).parent().submit();
});
\$(\".product_btn_del\").click(function(){
\$(\".search-form-custom\").find(\"input[type='text'], input[type='checkbox'], select\").val(\"\");
\$(this).parent().submit();
});
});
</script>
<div class=\"ec-headerNaviRole__search\">
<form method=\"get\" action=\"/products/search\" class=\"search-form-custom product_form_search\">
<div class=\"ec-headerSearch__keyword\">
<div class=\"ec-input\">
<p class=\"_title02\">キーワード</p>
<div class='cus-input-search'>
<input type=\"text\" id=\"keyword\" name=\"keyword\" placeholder=\"\" class=\"form-control form-control\" />
<button class=\"ec-headerSearch__keywordBtn\" type=\"submit\"></button>
</div>
</div>
</div>
<h3 class=\"product_form_title \">
<span>カテゴリー</span>
</h3>
<ul class=\"product_form_checkbox\" >
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_0\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_20\" value=\"20\" />
<label class=\"form-check-label\" for=\"category_0\">ガズのわがままウクレレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_1\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_21\" value=\"21\" />
<label class=\"form-check-label\" for=\"category_1\">ウスレレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_2\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_22\" value=\"22\" />
<label class=\"form-check-label\" for=\"category_2\">たびレレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_3\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_23\" value=\"23\" />
<label class=\"form-check-label\" for=\"category_3\">竹レレ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_4\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_24\" value=\"24\" />
<label class=\"form-check-label\" for=\"category_4\">THE CLASSIC</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_5\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_25\" value=\"25\" />
<label class=\"form-check-label\" for=\"category_5\">コズモデル</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_6\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_26\" value=\"26\" />
<label class=\"form-check-label\" for=\"category_6\">GM Vintage</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_7\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_27\" value=\"27\" />
<label class=\"form-check-label\" for=\"category_7\">ガズモデル</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_8\" name=\"category[]\" class=\"form-check-input form-check-input\" id=\"category_28\" value=\"28\" />
<label class=\"form-check-label\" for=\"category_8\">その他(グッズ)</label></div>
</li>
</ul>
<h3 class=\"product_form_title _icon01 \">
<span>ライフスタイル</span>
</h3>
<ul class=\"product_form_checkbox\" >
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_0\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_33\" value=\"33\" />
<label class=\"form-check-label\" for=\"category_17_0\">自宅でリラックスして楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_1\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_34\" value=\"34\" />
<label class=\"form-check-label\" for=\"category_17_1\">ビジネスの合間に楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_2\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_35\" value=\"35\" />
<label class=\"form-check-label\" for=\"category_17_2\">アウトドアで楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_3\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_36\" value=\"36\" />
<label class=\"form-check-label\" for=\"category_17_3\">カフェでのひととき</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_4\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_37\" value=\"37\" />
<label class=\"form-check-label\" for=\"category_17_4\">旅行へのお供に</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_5\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_38\" value=\"38\" />
<label class=\"form-check-label\" for=\"category_17_5\">ライブ&パフォーマンスに</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_6\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_39\" value=\"39\" />
<label class=\"form-check-label\" for=\"category_17_6\">友人や家族とセッション</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_7\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_40\" value=\"40\" />
<label class=\"form-check-label\" for=\"category_17_7\">子供と一緒にに楽しむ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_8\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_41\" value=\"41\" />
<label class=\"form-check-label\" for=\"category_17_8\">作曲・クリエイティブ用途</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"category_17_9\" name=\"category_17[]\" class=\"form-check-input form-check-input\" id=\"category_42\" value=\"42\" />
<label class=\"form-check-label\" for=\"category_17_9\">SNS・動画配信用</label></div>
</li>
</ul>
<h3 class=\"product_form_title _icon02\"><span>こだわり条件から探す</span></h3>
<p class=\"_title02\">商品ステータス</p>
<select id=\"category_19\" name=\"category_19\" class=\"product_form_select form-select\"><option value=\"\">カテゴリを選択してください</option><option value=\"29\">在庫有り商品</option><option value=\"30\">予約商品</option><option value=\"31\">新着商品</option><option value=\"32\">おすすめ商品</option></select>
<p class=\"_title02\">サイズ</p>
<ul class=\"product_size_checkbox\">
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_2_0\" name=\"class_name_2[]\" class=\"form-check-input form-check-input\" id=\"category_7\" value=\"7\" />
<label class=\"form-check-label\" for=\"class_name_2_0\">ソプラノ</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_2_1\" name=\"class_name_2[]\" class=\"form-check-input form-check-input\" id=\"category_8\" value=\"8\" />
<label class=\"form-check-label\" for=\"class_name_2_1\">コンサート</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_2_2\" name=\"class_name_2[]\" class=\"form-check-input form-check-input\" id=\"category_9\" value=\"9\" />
<label class=\"form-check-label\" for=\"class_name_2_2\">テナー</label></div>
</li>
</ul>
<p class=\"_title02 icon01\">塗装</p>
<ul class=\"product_coating_checkbox\">
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_4_0\" name=\"class_name_4[]\" class=\"form-check-input form-check-input\" id=\"category_13\" value=\"13\" />
<label class=\"form-check-label\" for=\"class_name_4_0\">艶あり(グロス)</label></div>
</li>
<li>
<div class=\"form-check\"><input type=\"checkbox\" id=\"class_name_4_1\" name=\"class_name_4[]\" class=\"form-check-input form-check-input\" id=\"category_12\" value=\"12\" />
<label class=\"form-check-label\" for=\"class_name_4_1\">艶なし(マット)</label></div>
</li>
</ul>
<p class=\"_title02\">ボディタイプ</p>
<select id=\"class_name_3\" name=\"class_name_3\" class=\"product_form_select form-select\"><option value=\"\">カテゴリを選択してください</option><option value=\"11\">薄ボディ(〇〇mm)</option><option value=\"10\">ノーマル(標準〇〇mm)</option></select>
<p class=\"_title02\">フレット数</p>
<select id=\"class_name_1\" name=\"class_name_1\" class=\"product_form_select form-select\"><option value=\"\">15フレット(標準)</option><option value=\"1\">15フレット</option><option value=\"2\">12フレット</option></select>
<p class=\"_title02\">ピックアップ</p>
<select id=\"class_name_5\" name=\"class_name_5\" class=\"product_form_select form-select\"><option value=\"\">なし(標準)</option><option value=\"15\">あり(+¥0,000)</option><option value=\"14\">なし(標準)</option></select>
<p class=\"_title02\">価格帯</p>
<div class=\"product_form_price\">
<select id=\"price_min\" name=\"price_min\" class=\"product_form_select form-select\"><option value=\"\">選択してください</option><option value=\"0\">0</option><option value=\"10000\">10,000</option><option value=\"20000\">20,000</option><option value=\"30000\">30,000</option><option value=\"40000\">40,000</option><option value=\"50000\">50,000</option><option value=\"60000\">60,000</option><option value=\"70000\">70,000</option><option value=\"80000\">80,000</option><option value=\"90000\">90,000</option><option value=\"100000\">100,000</option><option value=\"110000\">110,000</option><option value=\"120000\">120,000</option><option value=\"130000\">130,000</option><option value=\"140000\">140,000</option><option value=\"150000\">150,000</option><option value=\"160000\">160,000</option><option value=\"170000\">170,000</option><option value=\"180000\">180,000</option><option value=\"190000\">190,000</option><option value=\"200000\">200,000</option></select>
</select><span class=\"_yen\">円</span><span class=\"_to\">〜</span>
<select id=\"price_max\" name=\"price_max\" class=\"product_form_select form-select\"><option value=\"\">選択してください</option><option value=\"10000\">10,000</option><option value=\"20000\">20,000</option><option value=\"30000\">30,000</option><option value=\"40000\">40,000</option><option value=\"50000\">50,000</option><option value=\"60000\">60,000</option><option value=\"70000\">70,000</option><option value=\"80000\">80,000</option><option value=\"90000\">90,000</option><option value=\"100000\">100,000</option><option value=\"110000\">110,000</option><option value=\"120000\">120,000</option><option value=\"130000\">130,000</option><option value=\"140000\">140,000</option><option value=\"150000\">150,000</option><option value=\"160000\">160,000</option><option value=\"170000\">170,000</option><option value=\"180000\">180,000</option><option value=\"190000\">190,000</option><option value=\"200000\">200,000</option></select>
<span class=\"_yen\">円</span>
</div>
<p class=\"product_btn_search\">この条件で絞り込む</p>
<p class=\"product_btn_del\">リセット</p>
</form>
</div><div class=\"product_form_search\"></div>
</div>
<div id=\"main_content\">
{% if search_form.category_id.vars.errors|length > 0 %}
<div class=\"ec-searchnavRole\">
<p class=\"errormsg text-danger\">{{ 'ご指定のカテゴリは存在しません'|trans }}</p>
</div>
{% else %}
<div class=\"ec-searchnavRole\">
<form name=\"form1\" id=\"form1\" method=\"get\" action=\"?\">
{% for item in search_form %}
<input type=\"hidden\" id=\"{{ item.vars.id }}\"
name=\"{{ item.vars.full_name }}\"
{% if item.vars.value is not empty %}value=\"{{ item.vars.value }}\" {% endif %}/>
{% endfor %}
</form>
<div class=\"product_list_navi\">
<p class=\"_count_item\">
{% if pagination.totalItemCount > 0 %}
{{ '<span class=\"ec-font-bold\">%count%件</span>'|trans({ '%count%': pagination.totalItemCount })|raw }}
{% else %}
<span>{{ 'お探しの商品は見つかりませんでした'|trans }}</span>
{% endif %}
</p>
{% if pagination.totalItemCount > 0 %}
<div class=\"product_list_navi_role\">
<div class=\"ec-select\">
{{ form_widget(search_form.disp_number, {'id': '', 'attr': {'class': 'disp-number'}}) }}
{{ form_widget(search_form.orderby, {'id': '', 'attr': {'class': 'order-by'}}) }}
</div>
</div>
{% endif %}
</div>
</div>
{% if pagination.totalItemCount > 0 %}
<div class=\"product_list_block\">
{% for Product in pagination %}
<div class=\"product_list_item\">
<a href=\"{{ url('product_detail', {'id': Product.id}) }}\">
<div class=\"_img\">
<img src=\"{{ asset(Product.main_list_image|no_image_product, 'save_image') }}\" alt=\"{{ Product.name }}\" {% if loop.index > 5 %} loading=\"lazy\"{% endif %}>
</div>
<div class=\"_content\">
<ul class=\"_tag\">
{% for Tag in Product.Tags %}
<li>{{ Tag }}</li>
{% endfor %}
</ul>
<p class=\"_title\">{{ Product.name }}</p>
</div>
<p class=\"_price\">
{% if Product.hasProductClass %}
{% if Product.getPrice02Min == Product.getPrice02Max %}
{{ Product.getPrice02IncTaxMin|price }}<span class=\"_included\">(税込)</span>
{% else %}
{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}<span class=\"_included\">(税込)</span>
{% endif %}
{% else %}
{{ Product.getPrice02IncTaxMin|price }}<span class=\"_included\">(税込)</span>
{% endif %}
</p>
</a>
</div>
{% endfor %}
</div>
<div class=\"ec-modal\">
<div class=\"ec-modal-overlay\">
<div class=\"ec-modal-wrap\">
<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>
<div class=\"ec-pagerRole\">
{% include \"pager.twig\" with {'pages': pagination.paginationData} %}
</div>
{% endif %}
{% endif %}
</div>
</div>
</div>
{% endblock %}", "__string_template__7c560d45e25bfb116c3dd168fcef91ac", "");
}
}