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