{% set image_items = [
{
url: 'https://www.fujikitchen.com/brand/yakiniku_kai',
target: '_blank',
image: asset('build/images/index/brand01.png'),
alt: '炭火焼肉 快',
},
{
url: 'https://www.fujikitchen.com/brand/yakitori_kai',
target: '_blank',
image: asset('build/images/index/brand02.png'),
alt: 'やきとりの快',
},
{
url: 'https://www.fujikitchen.com/brand/kaisen_fujimaru',
target: '_blank',
image: asset('build/images/index/brand03.png'),
alt: '海鮮問屋 ふじ丸',
},
{
url: 'https://www.fujikitchen.com/brand/edo_fujimaru',
target: '_blank',
image: asset('build/images/index/brand04.png'),
alt: '回転江戸前寿司 海鮮問屋 ふじ丸',
},
{
url: 'https://www.fujikitchen.com/brand/fujikitchen',
target: '_blank',
image: asset('build/images/index/brand05.png'),
alt: '仕出し・お弁当 ふじきっちん',
},
{
url: 'https://www.fujikitchen.com/brand/farm',
target: '_blank',
image: asset('build/images/index/brand06.png'),
alt: 'ロココファーム',
},
{
url: 'https://www.fujikitchen.com/brand/curry',
target: '_blank',
image: asset('build/images/index/brand07.png'),
alt: 'ふじきっちんカレー',
},
{
url: 'https://www.fujikitchen.com/brand/fujimaru_suisan',
target: '_blank',
image: asset('build/images/index/brand08.png'),
alt: 'ふじ丸水産',
},
] %}
<section class="pg_index_company">
<div class="pg_index_company-container">
<div class="pg_index_company-inner">
<div class="pg_index_company_title-container">
<h2 class="pg_index_company_title-wrap">
<div class="sp-style">
<span class="pg_index_company_title">平塚富士キッチン</span>
<span class="pg_index_company_title">を知る</span>
<span class="pg_index_company_sub-title">-COMPANY-</span>
</div>
<div class="pc-style">
<span class="pg_index_company_title">平塚富士キッチンを知る</span>
<span class="pg_index_company_sub-title">-COMPANY-</span>
</div>
</h2>
<p class="pg_index_company__text">私たちは、あらゆるジャンルの食で<br class="sp-style">お客様の笑顔を創造いたします。</p>
</div>
<ul class="pg_index_company-banner-container">
{% for item in image_items %}
<li class="pg_index_company-banner-item">
<a href="{{ item.url }}" target="{{ item.target }}"><img src="{{ item.image }}" alt="{{ item.alt }}"></a>
</li>
{% endfor %}
</ul>
<div class="pg_index_company_more-button">
{% include "components/common/_button.html.twig" with {
text: 'VIEW MORE',
src: 'build/images/common/double_arrow_white.svg',
href: path('company_index'),
width: '12',
height: '10',
class: 'c-black-more_button',
}%}
</div>
</div>
</div>
</section>