{% set block_title_items = [
{
sp_text01: '「やっぱりふじ丸最高」の',
sp_text02: 'ビジョンに向かって。',
pc_text01: '「やっぱりふじ丸最高」の',
pc_text02: 'ビジョンに向かって。',
name: 'ホール主任 森 玲奈',
},
] %}
{% set hero_items = [
{
sp_img: asset('build/images/staff/detail_04/sp_hero.jpg'),
pc_img: asset('build/images/staff/detail_04/hero.jpg'),
staff_name: 'ホール主任 森 玲奈',
},
] %}
<section class="pg_staff_detail_hero">
{% for item in hero_items %}
<div class="pg_staff_detail_hero_img">
<img src="{{ item.sp_img }}" alt="" class="sp-style">
<img src="{{ item.pc_img }}" alt="" class="pc-style">
{#<div class="pg_staff_detail_hero_title">
{% include "components/common/_block-title.html.twig" %}
</div>#}
</div>
<p class="pg_staff_detail_hero__name">{{ item.staff_name }}</p>
{% endfor %}
</section>