{% set history_items = [
{
date:'1977.04',
text:'株式会社平塚富士キッチン設立<br>平塚市役所店開店<br>平塚市役所売店開店<br>平塚市民病院店開店',
},
{
date:'1981.09',
text:'平塚市民センター店開店',
},
{
date:'1985.09',
text:'西友二宮店開店(1999.5 撤退)',
},
{
date:'1990.04',
text:'本社社屋完成<br>お届け調理センターふじきっちん開所',
},
{
date:'1993.10',
text:'岡崎屋台村開店(2002.9 業種変更)',
},
{
date:'1996.10',
text:'海鮮問屋「ふじ丸」小田原駅前店開店',
},
{
date:'1998.10',
text:'海鮮問屋「ふじ丸」本店開店<br>法要御席ふじきっちん',
},
{
date:'1999.11',
text:'海鮮問屋「ふじ丸」秦野店開店(2010.12 撤退)',
},
{
date:'2001.05',
text:'炭火焼肉「快」豊田店開店',
},
{
date:'2001.12',
text:'海鮮問屋「ふじ丸」大雄山店開店<br>海鮮問屋「ふじ丸」別館',
},
{
date:'2002.10',
text:'回転江戸前寿司「ふじ丸」開店',
},
{
date:'2003.05',
text:'和牛焼肉「快」小田原店開店',
},
{
date:'2003.08',
text:'炭火焼肉「快」小田原駅前店開店',
},
{
date:'2004.10',
text:'炭火焼肉「快」田村店開店(2012.3 業種変更)',
},
{
date:'2008.05',
text:'ホルモン酒家「快」平塚駅前店開店(2012.7 撤退)',
},
{
date:'2012.03',
text:'やきとりの快田村店開店',
},
] %}
<section class="pg_company_history">
<div class="pg_company_history_inner">
{% include "components/common/_content-title.html.twig" with {
title:'HISTORY',
japan :'会社沿革',
class:'c-content-title',
}%}
<div class="pg_company_history_wrap">
{% for item in history_items %}
<dl class="pg_company_history_item">
<dt class="pg_company_history_date">{{ item.date }}</dt>
<dd class="pg_company_history_text">{{ item.text|raw }}</dd>
</dl>
{% endfor %}
</div>
</div>
</section>