{% set overview_items = [
{
title:'会社名',
text:'株式会社 平塚富士キッチン',
},
{
title:'代表取締役',
text:'岩田 直樹',
},
{
title:'設立',
text:'昭和52年4月27日',
},
{
title:'資本金',
text:'1,200万円',
},
{
title:'所在地',
text:'〒254-0019<br>神奈川県平塚市西真土1丁目9番地45号',
},
{
title:'従業員',
text:'社員 56名/パート・アルバイト 250名',
},
{
title:'事業内容',
text:'仕出し料理及びケータリング事業<br>料理飲食業及び食堂経営<br>食料品及び日用雑貨販売',
},
{
title:'取引金融機関',
text:'三菱東京UFJ銀行/湘南農業協同組合',
},
] %}
<section class="pg_company_overview">
<div class="pg_company_overview_inner">
{% include "components/common/_content-title.html.twig" with {
title:'COMPANY',
japan :'会社概要',
class:'c-content-title',
}%}
<div class="pg_company_overview_wrap">
{% for item in overview_items %}
<dl class="pg_company_overview_item">
<dt class="pg_company_overview_title">{{ item.title }}</dt>
<dd class="pg_company_overview_text">{{ item.text | raw }}</dd>
</dl>
{% endfor %}
</div>
</div>
</section>