app/template/user_data/sending_cost.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% block stylesheet %}
  3.  <style>
  4.     .line-height{
  5.        padding-top:1rem;
  6.     }
  7.         .shipping-fee-table {
  8.             width: 100%;
  9.             border-collapse: collapse;
  10.             margin: 20px 0;
  11.             border: solid #e0e0e0 2px;
  12.     }
  13.         .shipping-fee-table th,
  14.         .shipping-fee-table td {
  15.             padding: 12px 16px;
  16.             text-align: left;
  17.             border-bottom: 1px solid #e0e0e0;
  18.         }
  19.         .shipping-fee-table th {
  20.             background-color: #f8f9fa;
  21.             font-weight: bold;
  22.             color: #333;
  23.             border-bottom: 2px solid #dee2e6;
  24.         }
  25.         .shipping-fee-table tr:nth-child(even) {
  26.             background-color: #f8f9fa;
  27.         }
  28.         .shipping-fee-table tr:hover {
  29.             background-color: #e3f2fd;
  30.         }
  31.         .prefecture-col {
  32.             width: 80%;
  33.         }
  34.         .fee-col {
  35.             width: 20%;
  36.             text-align: right;
  37.             font-weight: bold;
  38.             color: #d32f2f;
  39.         }
  40.         .shipping-fee-table tbody td {
  41.             font-size: 14px;
  42.         }
  43.         /* レスポンシブ対応 */
  44.         @media (max-width: 768px) {
  45.             .shipping-fee-table {
  46.                 font-size: 12px;
  47.             }
  48.             
  49.             .shipping-fee-table th,
  50.             .shipping-fee-table td {
  51.                 padding: 8px 12px;
  52.             }
  53.         }
  54.         /* Twigテンプレート用のコメント表示 */
  55.         .twig-comment {
  56.             background-color: #fff3cd;
  57.             border: 1px solid #ffeaa7;
  58.             padding: 15px;
  59.             margin: 20px 0;
  60.             border-radius: 4px;
  61.             font-family: 'Courier New', monospace;
  62.             font-size: 14px;
  63.             color: #856404;
  64.         }
  65.     </style>
  66. {% endblock %}
  67. {% block main %}
  68. <div class="header-container-simple">
  69.   <img src="/html/user_data/ContentImg/siopanda.png" alt="パン屋ロゴ" class="header-logo">
  70.   <h1 class="header-title">送料について</h1>
  71. </div>
  72. <div style="padding: 1rem;">
  73. <p class="line-height">5,000円(税込)以上の購入で送料無料です。<br>
  74. ※沖縄県と北海道へのお届けは別途1000円がかかります。</p>
  75. <p class="line-height">
  76. 送料無料の商品と単品商品は同時購入でも送料無料となります。<br>
  77. ※沖縄県と北海道へのお届けは別途1000円がかかります。
  78. ご購入後、送料を請求させていただきますのでご了承くださいませ。</p>
  79. <p class="line-height">単品商品は都道府県ごとに送料を設定しております。</p>
  80. </div>
  81. <div style="border-radius: 8px;padding: 1rem; ">
  82.     <table class="shipping-fee-table">
  83.         <thead>
  84.             <tr>
  85.                 <th class="prefecture-col">都道府県</th>
  86.                 <th class="fee-col">送料</th>
  87.             </tr>
  88.         </thead>
  89.         <tbody>
  90.             <tr>
  91.                 <td class="prefecture-col">北海道</td>
  92.                 <td class="fee-col">1,790円</td>
  93.             </tr>
  94.             <tr>
  95.                 <td class="prefecture-col">青森県、秋田県、岩手県</td>
  96.                 <td class="fee-col">1,100円</td>
  97.             </tr>
  98.             <tr>
  99.                 <td class="prefecture-col">宮城県、山形県、福島県</td>
  100.                 <td class="fee-col">1,000円</td>
  101.             </tr>
  102.             <tr>
  103.                 <td class="prefecture-col">茨城県、栃木県、群馬県、埼玉県、千葉県、神奈川県、東京都、山梨県、新潟県、長野県、富山県、石川県、福井県、静岡県、愛知県、三重県、岐阜県、大阪府、京都府、滋賀県、奈良県、和歌山県、兵庫県</td>
  104.                 <td class="fee-col">900円</td>
  105.             </tr>
  106.             <tr>
  107.                 <td class="prefecture-col">岡山県、広島県、山口県、鳥取県、島根県、香川県、徳島県、愛媛県、高知県</td>
  108.                 <td class="fee-col">1,000円</td>
  109.             </tr>
  110.             <tr>
  111.                 <td class="prefecture-col">福岡県、佐賀県、長崎県、熊本県、大分県、宮崎県、鹿児島県</td>
  112.                 <td class="fee-col">1,100円</td>
  113.             </tr>
  114.             <tr>
  115.                 <td class="prefecture-col">沖縄県</td>
  116.                 <td class="fee-col">1,990円</td>
  117.             </tr>
  118.         </tbody>
  119.     </table>
  120. </div>
  121. {% endblock %}