<div class="c-develop">
{% for item in develop_items %}
<div class="c-develop-business">
<div class="c-develop-business-inner">
<div class="c-develop-business-wrap">
<div class="c-develop-business-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-business-textarea">
<h3 class="c-develop-business-title">{{ item.title }}</h3>
<p class="c-develop-business-text">{{ item.text | raw }}</p>
<div class="c-develop-business-button_area">
{% for button in item.buttons %}
{% include "components/common/_button.html.twig" with button %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>