<footer class="l-footer">
<div class="l-footer_inner">
<div class="l-footer_button-area">
{#{% include "components/common/_button.html.twig" with {
text: '予約する',
src: 'build/images/common/icon-reserve.svg',
href: path('top'),
width: '16',
height: '18',
class: 'c-red-button',
}%}#}
{% include "components/common/_button.html.twig" with {
text: 'お問合わせ',
src: 'build/images/common/icon-mail.svg',
href: path('contact_index'),
width: '18',
height: '18',
class: 'c-red-button',
}%}
{% include "components/common/_button.html.twig" with {
text: '採用サイト',
src: 'build/images/common/icon-link.svg',
href: ('https://recruit.fujikitchen.com/'),
width: '14',
height: '14',
class: 'c-black-button2',
}%}
</div>
{% set link_items = [
{
text:'TOP',
href:path('top'),
},
{
text:'会社概要',
href:path('company_index'),
},
{
text:'お知らせ',
href:path('news_index'),
},
] %}
<div class="l-footer-inside_link">
<ul class="l-footer-inside_link_wrap">
{% for item in link_items %}
<li class="l-footer-inside_link-item">
<a class="l-footer-inside_link-item_anchor" href="{{ item.href }}">{{ item.text }}</a>
</li>
{% endfor %}
</ul>
</div>
{% set brand_items = [
{
text:'海鮮問屋 ふじ丸',
href:path('kaisen_fujimaru_index'),
},
{
text:'仕出し・お弁当 ふじきっちん',
href:path('fujikitchen_index'),
},
{
text:'回転江戸前寿司 海鮮問屋 ふじ丸',
href:path('edo_fujimaru_index'),
},
{
text:'ロココファーム',
href:path('farm_index'),
},
{
text:'炭火焼肉 快',
href:path('yakiniku_kai_index'),
},
{
text:'やきとりの快',
href:path('yakitori_kai_index'),
},
{
text:'ふじきっちんカレー',
href:path('curry_index'),
},
{
text:'ふじ丸水産',
href:path('fujimaru_suisan_index'),
},
] %}
<div class="l-footer-relation_link">
<div class="l-footer-relation_link-title">
ブランド一覧
</div>
<ul class="l-footer-relation_link_wrap">
{% for item in brand_items %}
<li class="l-footer-relation_link-item">
<a class="l-footer-relation_link-item_anchor" href="{{ item.href }}">{{ item.text }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="l-footer-copyright">
<div class="l-footer-copyright_logo">
<img src="{{ asset('build/images/common/logo.png') }}" alt="ふじきっちん">
</div>
<p class="l-footer-copyright-text">
copyright HIRATSUKA FUJI kitchen recruit. All right reserved
</p>
</div>
</footer>