{% extends 'default_frame.twig' %}
{% block stylesheet %}
<style>
.line-height{
padding-top:1rem;
}
.shipping-fee-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
border: solid #e0e0e0 2px;
}
.shipping-fee-table th,
.shipping-fee-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.shipping-fee-table th {
background-color: #f8f9fa;
font-weight: bold;
color: #333;
border-bottom: 2px solid #dee2e6;
}
.shipping-fee-table tr:nth-child(even) {
background-color: #f8f9fa;
}
.shipping-fee-table tr:hover {
background-color: #e3f2fd;
}
.prefecture-col {
width: 80%;
}
.fee-col {
width: 20%;
text-align: right;
font-weight: bold;
color: #d32f2f;
}
.shipping-fee-table tbody td {
font-size: 14px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
.shipping-fee-table {
font-size: 12px;
}
.shipping-fee-table th,
.shipping-fee-table td {
padding: 8px 12px;
}
}
/* Twigテンプレート用のコメント表示 */
.twig-comment {
background-color: #fff3cd;
border: 1px solid #ffeaa7;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-size: 14px;
color: #856404;
}
</style>
{% endblock %}
{% block main %}
<div class="header-container-simple">
<img src="/html/user_data/ContentImg/siopanda.png" alt="パン屋ロゴ" class="header-logo">
<h1 class="header-title">送料について</h1>
</div>
<div style="padding: 1rem;">
<p class="line-height">5,000円(税込)以上の購入で送料無料です。<br>
※沖縄県と北海道へのお届けは別途1000円がかかります。</p>
<p class="line-height">
送料無料の商品と単品商品は同時購入でも送料無料となります。<br>
※沖縄県と北海道へのお届けは別途1000円がかかります。
ご購入後、送料を請求させていただきますのでご了承くださいませ。</p>
<p class="line-height">単品商品は都道府県ごとに送料を設定しております。</p>
</div>
<div style="border-radius: 8px;padding: 1rem; ">
<table class="shipping-fee-table">
<thead>
<tr>
<th class="prefecture-col">都道府県</th>
<th class="fee-col">送料</th>
</tr>
</thead>
<tbody>
<tr>
<td class="prefecture-col">北海道</td>
<td class="fee-col">1,790円</td>
</tr>
<tr>
<td class="prefecture-col">青森県、秋田県、岩手県</td>
<td class="fee-col">1,100円</td>
</tr>
<tr>
<td class="prefecture-col">宮城県、山形県、福島県</td>
<td class="fee-col">1,000円</td>
</tr>
<tr>
<td class="prefecture-col">茨城県、栃木県、群馬県、埼玉県、千葉県、神奈川県、東京都、山梨県、新潟県、長野県、富山県、石川県、福井県、静岡県、愛知県、三重県、岐阜県、大阪府、京都府、滋賀県、奈良県、和歌山県、兵庫県</td>
<td class="fee-col">900円</td>
</tr>
<tr>
<td class="prefecture-col">岡山県、広島県、山口県、鳥取県、島根県、香川県、徳島県、愛媛県、高知県</td>
<td class="fee-col">1,000円</td>
</tr>
<tr>
<td class="prefecture-col">福岡県、佐賀県、長崎県、熊本県、大分県、宮崎県、鹿児島県</td>
<td class="fee-col">1,100円</td>
</tr>
<tr>
<td class="prefecture-col">沖縄県</td>
<td class="fee-col">1,990円</td>
</tr>
</tbody>
</table>
</div>
{% endblock %}