{% for item in develop_items %}
<div class="c-develop_wrap">
<div class="c-develop_img">
<img class="pc-style" src="{{ item.img }}" alt="{{ item.img_alt }}">
<img class="sp-style" src="{{ item.img_sp }}" alt="{{ item.img_sp_alt }}">
</div>
<div class="c-develop_textarea">
<div class="c-developtext-wrap">
<h3 class="c-develop_title">{{ item.title | raw }} {% if item.icon_type is defined %}
{% if item.icon_type == "ec" %}
<div class="c-develop_title_row">
<img class="c-develop_title_icon" src="{{ asset('build/images/common/icon-cart.png') }}" alt="カートアイコン">
<span class="c-develop_title_label">EC販売</span>
</div>
{% endif %}
{% endif %} </h3>
<p class="c-develop_text">{{ item.shop | raw }}</p>
<p class="c-develop_text">{{ item.text | raw }}</p>
</div>
<div class="c-develop_button">
{% for button in item.buttons %}
{% include "components/common/_button.html.twig" with button %}
{% endfor %}
</div>
</div>
</div>
{% endfor %}