app/template/default/Product/detail.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% set body_class = 'product_page' %}
  3. {% block stylesheet %}
  4. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"/>
  5.     <link rel="stylesheet" href="/test-ec-05/html/user_data/assets/css/detail.min.css">
  6.     <style>
  7.         .ec-layoutRole .ec-layoutRole__contents {
  8.             max-width: unset;
  9.         }
  10.         .p-detail__fv__inner__right {
  11.             width: 40%;
  12.         }
  13.         .p-detail__fv__inner__right__price {
  14.             font-size: clamp(30px,3.2vw,36px);
  15.         }
  16.         .p-detail__fv__inner__right__price .small {
  17.             font-size: 16px;
  18.         }
  19.         .p-detail__fv__inner__right__quantity {
  20.             justify-content: left;
  21.             align-items: flex-end;
  22.             margin: 15px 0 0;
  23.         }
  24.         .ec-productRole__btn,.ec-productRole__btn {
  25.             width: 200px;
  26.             margin-right: 40px;
  27.         }
  28.         .ec-productRole__btn button,.ec-productRole__btn button {
  29.             font-size: 16px;
  30.             border-radius: 5px;
  31.         }
  32.         .ec-blockBtn--action {
  33.             background-color: #B72C11;
  34.             border-color: #B72C11;
  35.         }
  36.         .ec-blockBtn--cancel {
  37.             background-color: #EEC5C1;
  38.             border-color: #EEC5C1;
  39.             color: #333;
  40.         }
  41.         .ec-productRole__price {
  42.             line-height: 0;
  43.         }
  44.         .ec-productRole__description {
  45.                 margin-top: 20px;
  46.                 border-top: 1px solid #333;
  47.                 padding-top: 10px;
  48.         }
  49.         .p-detail__fv__inner__right__price {
  50.             color: #B72C11;
  51.             font-weight: bold;
  52.         }
  53.         .p-detail__fv__inner__right__price.underline{
  54.             border-bottom: 1px solid #B72C11;
  55.         }
  56.         .sale.ec-blockBtn--action {
  57.             width: fit-content;
  58.             font-size: 18px;
  59.             cursor: unset;
  60.             line-height: 1.8;
  61.             display: inline-block;
  62.             height: auto;
  63.             margin-left: 15px;
  64.         }
  65.         .Category__list {
  66.             display: flex;
  67.         }
  68.         .Category__list_item {
  69.             margin-right: 15px;
  70.         }
  71.         .Category__list_item a {
  72.             display: block;
  73.             background-color: #fefefe;
  74.             border: 1px solid #333;
  75.             padding: 0 8px;
  76.             color: #333;
  77.             border-radius: 5px;
  78.         }
  79.         @media screen and (min-width:768px) and (max-width:1024px) {
  80.             .ec-productRole__btn {
  81.                 margin-right: 40px;
  82.                 width: 250px;
  83.             }
  84.             .p-detail__fv__inner__right {
  85.                 width: 100%;
  86.             }
  87.         }
  88.         @media screen and (max-width:768px) {
  89.             .p-detail__fv__inner__right {
  90.                 width: 100%;
  91.             }
  92.             .ec-productRole__btn {
  93.                 width: 70%;
  94.             }
  95.             .p-detail__fv__inner__right__quantity {
  96.                 flex-direction: column;
  97.                 justify-content: space-between;
  98.                 align-items: stretch;
  99.             }
  100.             .ec-productRole__btn {
  101.                 margin-bottom: 20px;
  102.             }
  103.             .ec-numberInput {
  104.                 margin-bottom: 15px;
  105.             }
  106.             .sale.ec-blockBtn--action {
  107.                 margin-left: 0;
  108.                 display: block;
  109.             }
  110.         }
  111.     </style>
  112. {% endblock %}
  113. {% block javascript %}
  114.     <script>
  115.         eccube.classCategories = {{ class_categories_as_json(Product)|raw }};
  116.         // 規格2に選択肢を割り当てる。
  117.         function fnSetClassCategories(form, classcat_id2_selected) {
  118.             var $form = $(form);
  119.             var product_id = $form.find('input[name=product_id]').val();
  120.             var $sele1 = $form.find('select[name=classcategory_id1]');
  121.             var $sele2 = $form.find('select[name=classcategory_id2]');
  122.             eccube.setClassCategories($form, product_id, $sele1, $sele2, classcat_id2_selected);
  123.         }
  124.         {% if form.classcategory_id2 is defined %}
  125.         fnSetClassCategories(
  126.             $('#form1'), {{ form.classcategory_id2.vars.value|json_encode|raw }}
  127.         );
  128.         {% elseif form.classcategory_id1 is defined %}
  129.         eccube.checkStock($('#form1'), {{ Product.id }}, {{ form.classcategory_id1.vars.value|json_encode|raw }}, null);
  130.         {% endif %}
  131.     </script>
  132.     <script>
  133.         $(function() {
  134.             // bfcache無効化
  135.             $(window).bind('pageshow', function(event) {
  136.                 if (event.originalEvent.persisted) {
  137.                     location.reload(true);
  138.                 }
  139.             });
  140.             // Core Web Vital の Cumulative Layout Shift(CLS)対策のため
  141.             // img タグに width, height が付与されている.
  142.             // 630px 未満の画面サイズでは縦横比が壊れるための対策
  143.             // see https://github.com/EC-CUBE/ec-cube/pull/5023
  144.             $('.ec-grid2__cell').hide();
  145.             var removeSize = function () {
  146.                 $('.slide-item').height('');
  147.                 $('.slide-item img')
  148.                     .removeAttr('width')
  149.                     .removeAttr('height')
  150.                     .removeAttr('style');
  151.             };
  152.             var slickInitial = function(slick) {
  153.                 $('.ec-grid2__cell').fadeIn(1500);
  154.                 var baseHeight = $(slick.target).height();
  155.                 var baseWidth = $(slick.target).width();
  156.                 var rate = baseWidth / baseHeight;
  157.                 $('.slide-item').height(baseHeight * rate); // 余白を削除する
  158.                 // transform を使用することでCLSの影響を受けないようにする
  159.                 $('.slide-item img')
  160.                     .css(
  161.                         {
  162.                             'transform-origin': 'top left',
  163.                             'transform': 'scaleY(' + rate + ')',
  164.                             'transition': 'transform .1s'
  165.                         }
  166.                     );
  167.                 // 正しいサイズに近くなったら属性を解除する
  168.                 setTimeout(removeSize, 500);
  169.             };
  170.             $('.item_visual').on('init', slickInitial);
  171.             // リサイズ時は CLS の影響を受けないため属性を解除する
  172.             $(window).resize(removeSize);
  173.             $('.item_visual').slick({
  174.                 dots: false,
  175.                 arrows: false,
  176.                 responsive: [{
  177.                     breakpoint: 768,
  178.                     settings: {
  179.                         dots: true
  180.                     }
  181.                 }]
  182.             });
  183.         });
  184.     </script>
  185.     <script>
  186.         $(function() {
  187.             $('.add-cart').on('click', function(event) {
  188.                 {% if form.classcategory_id1 is defined %}
  189.                 // 規格1フォームの必須チェック
  190.                 if ($('#classcategory_id1').val() == '__unselected' || $('#classcategory_id1').val() == '') {
  191.                     $('#classcategory_id1')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  192.                     return true;
  193.                 } else {
  194.                     $('#classcategory_id1')[0].setCustomValidity('');
  195.                 }
  196.                 {% endif %}
  197.                 {% if form.classcategory_id2 is defined %}
  198.                 // 規格2フォームの必須チェック
  199.                 if ($('#classcategory_id2').val() == '__unselected' || $('#classcategory_id2').val() == '') {
  200.                     $('#classcategory_id2')[0].setCustomValidity('{{ '項目が選択されていません'|trans }}');
  201.                     return true;
  202.                 } else {
  203.                     $('#classcategory_id2')[0].setCustomValidity('');
  204.                 }
  205.                 {% endif %}
  206.                 // 個数フォームのチェック
  207.                 if ($('#quantity').val() < 1) {
  208.                     $('#quantity')[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');
  209.                     return true;
  210.                 } else {
  211.                     $('#quantity')[0].setCustomValidity('');
  212.                 }
  213.                 event.preventDefault();
  214.                 $form = $('#form1');
  215.                 $.ajax({
  216.                     url: $form.attr('action'),
  217.                     type: $form.attr('method'),
  218.                     data: $form.serialize(),
  219.                     dataType: 'json',
  220.                     beforeSend: function(xhr, settings) {
  221.                         // Buttonを無効にする
  222.                         $('.add-cart').prop('disabled', true);
  223.                     }
  224.                 }).done(function(data) {
  225.                     // レスポンス内のメッセージをalertで表示
  226.                     $.each(data.messages, function() {
  227.                         $('#ec-modal-header').text(this);
  228.                     });
  229.                     $('.ec-modal').show()
  230.                     // カートブロックを更新する
  231.                     $.ajax({
  232.                         url: "{{ url('block_cart') }}",
  233.                         type: 'GET',
  234.                         dataType: 'html'
  235.                     }).done(function(html) {
  236.                         $('.ec-headerRole__cart').html(html);
  237.                     });
  238.                 }).fail(function(data) {
  239.                     alert('{{ 'カートへの追加に失敗しました。'|trans }}');
  240.                 }).always(function(data) {
  241.                     // Buttonを有効にする
  242.                     $('.add-cart').prop('disabled', false);
  243.                 });
  244.             });
  245.         });
  246.         $('.ec-modal-wrap').on('click', function(e) {
  247.             // モーダル内の処理は外側にバブリングさせない
  248.             e.stopPropagation();
  249.         });
  250.         $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {
  251.             $('.ec-modal').hide()
  252.         });
  253.     </script>
  254.     <script type="application/ld+json">
  255.     {
  256.         "@context": "https://schema.org/",
  257.         "@type": "Product",
  258.         "name": "{{ Product.name }}",
  259.         "image": [
  260.             {% for img in Product.ProductImage %}
  261.                 "{{ app.request.schemeAndHttpHost }}{{ asset(img, 'save_image') }}"{% if not loop.last %},{% endif %}
  262.             {% else %}
  263.                 "{{ app.request.schemeAndHttpHost }}{{ asset(''|no_image_product, 'save_image') }}"
  264.             {% endfor %}
  265.         ],
  266.         "description": "{{ Product.description_list | default(Product.description_detail) | replace({'\n': '', '\r': ''}) | slice(0,300) }}",
  267.         {% if Product.code_min %}
  268.         "sku": "{{ Product.code_min }}",
  269.         {% endif %}
  270.         "offers": {
  271.             "@type": "Offer",
  272.             "url": "{{ url('product_detail', {'id': Product.id}) }}",
  273.             "priceCurrency": "{{ eccube_config.currency }}",
  274.             "price": {{ Product.getPrice02IncTaxMin ? Product.getPrice02IncTaxMin : 0}},
  275.             // "price": {{ Product.getPrice02Min ? Product.getPrice02Min : 0}},
  276.             "availability": "{{ Product.stock_find ? "InStock" : "OutOfStock" }}"
  277.         }
  278.     }
  279.     </script>
  280. {% endblock %}
  281. {% block main %}
  282.    <section class="p-detail__fv">
  283.         <div class="p-detail__fv__inner">
  284.             <div class="p-detail__fv__inner__left">
  285.                 <div class="swiper">
  286.                     <!-- Additional required wrapper -->
  287.                     <div class="swiper-wrapper">
  288.                       <!-- Slides -->
  289.                       {% for ProductImage in Product.ProductImage %}
  290.                             <div class="swiper-slide"><img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}"></div>
  291.                         {% else %}
  292.                             <div class="swiper-slide"><img src="{{ asset(''|no_image_product, 'save_image') }}" alt="{{ loop.first ? Product.name : '' }}" /></div>
  293.                         {% endfor %}
  294.                       
  295.                     </div>
  296.                 </div>
  297.                 <div class="slider-thumbnail">
  298.                     <!-- Additional required wrapper -->
  299.                     <div class="swiper-wrapper">
  300.                       <!-- Slides -->
  301.                       {% for ProductImage in Product.ProductImage %}
  302.                             <div class="swiper-slide" data-index="{{ loop.index0 }}"><img src="{{ asset(ProductImage, 'save_image') }}" alt="" width="133" height="133" loading="lazy"></div>
  303.                         {% endfor %}
  304.                       
  305.                     </div>
  306.                 </div>
  307.                 
  308.                 <p style="text-align: left; font-size:14px;">※写真はイメージです。<br>配達時には食品安全考慮の為真空パックにてお届け致します。</p>
  309.                 {% if Product.id == '9' or Product.id == '7' or Product.id == '8' or Product.id == '18' or Product.id == '6' or Product.id == '5' or Product.id == '14' or Product.id == '13' or Product.id == '19' %}
  310.                         <p style="text-align: left; font-size:14px;">※商品に味付けはございません。<br>ご家庭で塩、ブラックペッパー、タレ、お出汁などご準備ください。</p>
  311.                 {% elseif Product.id == '12' %}
  312.                     <p style="text-align: left; font-size:14px;">※塩、ブラックペッパーにて味付けをしておりますが、<br>調理後味気が足りない場合は塩を少々お掛けください。<br>また、わさび、おろししょうが、おろしニンニクが合います。</p>
  313.                 {% elseif Product.id == '11' %}
  314.                     <p style="text-align: left; font-size:14px;">※塩、ブラックペッパーにて味付けされておりますので調理後そのままお召し上がり下さい。</p>
  315.                 {% elseif Product.id == '16' or Product.id == '17' %}
  316.                     <p style="text-align: left; font-size:14px;">※ご自宅の油にてお揚げください。<br>※卵、小麦粉、パン粉を使用しております。<br>当該品目のアレルギーをお持ちの方はお控え下さい。</p>
  317.                 {% endif %}
  318.                 
  319.                 <div class="ec-productRole__description__pcNone">{{ Product.description_detail|raw|nl2br }}
  320.                 </div>
  321.             </div>
  322.             <div class="p-detail__fv__inner__right">
  323.                 {% if Product.freearea %}
  324.                     <p class="p-detail__fv__inner__right__subtitle">
  325.                         {{ include(template_from_string(Product.freearea)) }}
  326.                         {#<br>{{ Product.name }}#}
  327.                     </p>
  328.                 {% endif %}
  329.                 {#<h2 class="p-detail__fv__inner__right__title">#}
  330.                 {#    {{ Product.name }}#}
  331.                 {#</h2>#}
  332.                 {% if Product.hasProductClass -%}
  333.                         <div class="ec-productRole__priceRegular">
  334.                             {% if Product.getPrice01Min is not null and Product.getPrice01IncTaxMin == Product.getPrice01IncTaxMax %}
  335.                                 <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}</span></span>
  336.                                 {#<span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01Min|price }}</span></span>#}
  337.                                 <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  338.                             {% elseif Product.getPrice01Min is not null and Product.getPrice01Max is not null %}
  339.                                 <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01IncTaxMin|price }}~ {{ Product.getPrice01IncTaxMax|price }}</span></span>
  340.                                 {#<span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:<span class="price01-default">{{ Product.getPrice01Min|price }}~ {{ Product.getPrice01Max|price }}</span></span>#}
  341.                                 <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  342.                             {% endif %}
  343.                         </div>
  344.                     {% else %}
  345.                         {% if Product.getPrice01Max is not null %}
  346.                             <span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:{{ Product.getPrice01IncTaxMin|price }}</span>
  347.                             {#<span class="ec-productRole__priceRegularPrice">{{ '通常価格'|trans }}:{{ Product.getPrice01Min|price }}</span>#}
  348.                             <span class="ec-productRole__priceRegularTax">{{ '税込'|trans }}</span>
  349.                         {% endif %}
  350.                     {% endif %}
  351.                 <p class="p-detail__fv__inner__right__price">
  352.                     <div class="ec-productRole__price">
  353.                         販売価格
  354.                         {% if Product.hasProductClass -%}
  355.                             {% if Product.getPrice02IncTaxMin == Product.getPrice02IncTaxMax %}
  356.                                 <div class="p-detail__fv__inner__right__price">
  357.                                     <span class="ec-price__price price02-default p-detail__fv__inner__right__price underline">{{ Product.getPrice02IncTaxMin|price }}</span>
  358.                                     {#<span class="ec-price__price price02-default p-detail__fv__inner__right__price">{{ Product.getPrice02Min|price }}</span>#}
  359.                                     <span class="ec-price__tax small">{{ '税込'|trans }}</span>
  360.                                 </div>
  361.                             {% else %}
  362.                                 <div class="p-detail__fv__inner__right__price">
  363.                                     <span class="ec-price__price price02-default p-detail__fv__inner__right__price underline">{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}</span>
  364.                                     {#<span class="ec-price__price price02-default p-detail__fv__inner__right__price">{{ Product.getPrice02Min|price }} ~ {{ Product.getPrice02Max|price }}</span>#}
  365.                                     <span class="ec-price__tax small">{{ '税込'|trans }}</span>
  366.                                 </div>
  367.                             {% endif %}
  368.                         {% else %}
  369.                             <div class="p-detail__fv__inner__right__price">
  370.                                 <span class="ec-price__price p-detail__fv__inner__right__price underline">{{ Product.getPrice02IncTaxMin|price }}</span>
  371.                                 {#<span class="ec-price__price p-detail__fv__inner__right__price">{{ Product.getPrice02Min|price }}</span>#}
  372.                                 <span class="ec-price__tax small">{{ '税込'|trans }}</span>
  373.                             </div>
  374.                         {% endif %}
  375.                     </div>
  376.                 </p>
  377.                 {% if Product.ProductCategories is not empty %}
  378.                         <div class="ec-productRole__category">
  379.                             <div>{{ '関連カテゴリ'|trans }}</div>
  380.                                 <ul class="Category__list">
  381.                                     {% for ProductCategory in Product.ProductCategories %}
  382.                                     <li class="Category__list_item">
  383.                                         {% for Category in ProductCategory.Category.path %}
  384.                                             <a href="{{ url('product_list') }}?category_id={{ Category.id }}#page_anchor">{{ Category.name }}</a> {%- if loop.last == false %}
  385.                                             <span>></span>{% endif -%}
  386.                                         {% endfor %}
  387.                                     </li>
  388.                                     {% endfor %}
  389.                                 </ul>
  390.                         </div>
  391.                     {% endif %}
  392.                 <div class="p-detail__fv__inner__right__quantity">
  393.                     {#<p>数量</p>#}
  394.                     {#<div class="p-detail__fv__inner__right__quantity__box">#}
  395.                     {#    <p>ー</p>#}
  396.                     {#    <p>1</p>#}
  397.                     {#    <p>+</p>#}
  398.                     {#</div>#}
  399.                     <form action="{{ url('product_add_cart', {id:Product.id}) }}" method="post" id="form1" name="form1">
  400.                         {% if Product.stock_find %}
  401.                             <div class="ec-productRole__actions">
  402.                                 {% if form.classcategory_id1 is defined %}
  403.                                     <div class="ec-select">
  404.                                         {{ form_row(form.classcategory_id1) }}
  405.                                         {{ form_errors(form.classcategory_id1) }}
  406.                                     </div>
  407.                                     {% if form.classcategory_id2 is defined %}
  408.                                         <div class="ec-select">
  409.                                             {{ form_row(form.classcategory_id2) }}
  410.                                             {{ form_errors(form.classcategory_id2) }}
  411.                                         </div>
  412.                                     {% endif %}
  413.                                 {% endif %}
  414.                                 <div class="ec-numberInput"><span>{{ '数量'|trans }}</span>
  415.                                     {{ form_widget(form.quantity) }}
  416.                                     {{ form_errors(form.quantity) }}
  417.                                 </div>
  418.                             </div>
  419.                             <div class="ec-productRole__btn">
  420.                                 <button type="submit" class="ec-blockBtn--action add-cart">
  421.                                     {{ 'カートに入れる'|trans }}
  422.                                 </button>
  423.                             </div>
  424.                         {% else %}
  425.                             <div class="ec-productRole__btn">
  426.                                 <button type="button" class="ec-blockBtn--action" disabled="disabled">
  427.                                     {{ 'ただいま品切れ中です。'|trans }}
  428.                                 </button>
  429.                             </div>
  430.                         {% endif %}
  431.                         {{ form_rest(form) }}
  432.                     </form>
  433.                     <div class="ec-modal">
  434.                         <div class="ec-modal-overlay">
  435.                             <div class="ec-modal-wrap">
  436.                                 <span class="ec-modal-close"><span class="ec-icon"><img src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>
  437.                                 <div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>
  438.                                 <div class="ec-modal-box">
  439.                                     <div class="ec-role">
  440.                                         <span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>
  441.                                         <a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>
  442.                                     </div>
  443.                                 </div>
  444.                             </div>
  445.                         </div>
  446.                     </div>
  447.                     {% if BaseInfo.option_favorite_product %}
  448.                         <form action="{{ url('product_add_favorite', {id:Product.id}) }}" method="post">
  449.                             <div class="ec-productRole__btn">
  450.                                 {% if is_favorite == false %}
  451.                                     <button type="submit" id="favorite" class="ec-blockBtn--cancel">
  452.                                         {{ 'お気に入りに追加'|trans }}
  453.                                     </button>
  454.                                 {% else %}
  455.                                     <button type="submit" id="favorite" class="ec-blockBtn--cancel"
  456.                                             disabled="disabled">{{ 'お気に入りに追加済です。'|trans }}
  457.                                     </button>
  458.                                 {% endif %}
  459.                             </div>
  460.                         </form>
  461.                     {% endif %}
  462.                 </div>
  463.                 <p style="margin-top: 15px; font-size:14px;">送料は全国一律1,350円となっております。<br>
  464.                     商品合計金額で16,000円以上購入で、送料は弊社負担とさせていただきます。</p>
  465.                 <div class="ec-productRole__description__spNone">{{ Product.description_detail|raw|nl2br }}
  466.                     </div>
  467.             </div>
  468.         </div>
  469. </section>
  470. <section class="p-detail__merchandise">
  471.             <img class="cloud2" src="{{asset ('/test-ec-05/html/user_data/assets/img/common/cloud_gl1.webp')}}" alt="雲">
  472.             <img class="cloud1" src="{{asset ('/test-ec-05/html/user_data/assets/img/common/cloud__gl2.webp')}}" alt="雲">
  473.             <img id="visible" class="absolute3" src="{{asset ('/test-ec-05/html/user_data/assets/img/common/chara2.webp')}}" alt="キャラクター">
  474.         <div class="section__title">
  475.             <img src="{{asset ('/test-ec-05/html/user_data/assets/img/common/cow.webp')}}" alt="牛のイラスト">
  476.             <h2>商品詳細</h2>
  477.         </div>
  478.         <div class="p-detail__merchandise__box">
  479.             <div class="p-detail__merchandise__box__left">
  480.                 <img src="{{asset ('/test-ec-05/html/user_data/assets/img/common/EC6062.jpeg')}}" alt="お肉の写真">
  481.             </div>
  482.             <p class="p-detail__merchandise__box__right">
  483.                 私たちが自信を持って厳選した銘柄牛を<br>
  484.                 端材まで余すことなくふんだんに使用し、<br>
  485.                 カルビ、ロース、モモなどの部位の他に<br>
  486.                 ハンバーグなどの加工食品も合わせた詰<br>
  487.                 め合わせとなっております。<br>
  488.                 銘柄牛の美味しさがギュッと詰まった商<br>
  489.                 品となっておりますので、ぜひこの機会<br>
  490.                 にお求めください。</p>
  491.         </div>
  492.        </section>
  493.       
  494. {% endblock %}