{#
照明器具なら電材 Blue Wood, 電線・ケーブルなどのバナーリスト
#}
{% block stylesheet %}
<style>
.populer_search_word {
background: var(--background-gray);
padding: 40px 20px 60px;
}
@media screen and (min-width: 768px) {
.populer_search_word {
padding: 24px 24px 32px;
}
}
.populer_search_word-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 24px;
}
@media screen and (min-width: 768px) {
.populer_search_word-container {
margin-top: 20px;
}
}
.populer_search_word-container__item {
display: flex;
padding: 6px 16px;
justify-content: center;
align-items: center;
border-radius: 16px;
border: 1px solid var(--border-gray);
background: #FFF;
color: var(--primary-black);
text-align: center;
font-size: 14px;
font-weight: 500;
}
</style>
{% endblock %}
{% set populer_search_words = [
{ name: 'テレビドアホン' },
{ name: 'LED電球' },
{ name: 'サーキットブレーカ 2P' },
{ name: 'サーキットブレーカ 2P' },
{ name: '漏電ブレーカ 2P' },
{ name: '漏電ブレーカ 2P' },
{ name: '検索ワードリンク' },
{ name: 'ダウンライト' }
] %}
<section id="populer_search_word" class="populer_search_word">
{{ include('Block/heading_with_search_icon.twig', {label: '人気検索ワード'}) }}
<div class="populer_search_word-container">
{% for word in populer_search_words %}
<a href="{{ url('product_list') }}?name={{word.name}}" class="populer_search_word-container__item">
{{ word.name }}
</a>
{% endfor %}
</div>
</section>