{#* Plugin Name : DeliveryDate4** Copyright (C) BraTech Co., Ltd. All Rights Reserved.* http://www.bratech.co.jp/** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.#}<!--営業日カレンダー--><style>/*#businessday_calendar { width: 100%; max-width: 1150px; margin: 0 auto; padding: 60px 0;}*/#businessday_calendar { width: 100%; max-width: 1150px; margin: 0 auto; padding: 60px 0 10px 0;}#businessday_calendar .calendar_title { text-align: center; font-size: 24px; background: #f8f8f8; color: #525263; line-height: 3.3; margin-bottom: 20px; border-bottom: 1px dotted #ccc;}#businessday_calendar .note { margin-bottom: 30px;}#businessday_calendar .note span { display: inline-block; width: 2.5em; background: #ee6666; height: 1em; margin-right: 5px;}#businessday_calendar .note span + span { background: #fff; border: 2px solid #000;}/*#businessday_calendar table { width: 100%; margin-bottom: 20px; padding: 0; empty-cells: show;}*/#businessday_calendar table { width: 45%; margin-bottom: 20px; padding: 0; empty-cells: show;}#businessday_calendar table caption { margin-bottom: 10px; caption-side: top; font-weight: 700; font-size: 20px;}/*#businessday_calendar th { text-align: center; background: #f8f8f8; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc;}*/#businessday_calendar th { padding: 10px 0; text-align: center; background: #f8f8f8; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc;}#businessday_calendar th#saturday { color: #3366cc;}#businessday_calendar th#sunday { color: #ff3300;}/*#businessday_calendar td { text-align: center; border-bottom: 1px dotted #ccc; background: #fff; color: #333;}*/#businessday_calendar td { padding: 10px 0; text-align: center; border-bottom: 1px dotted #ccc; background: #fff; color: #333;}#businessday_calendar .today { background: #fff; color: #000; font-weight: bold; border: 2px solid #000;}#businessday_calendar .holiday { background: #ee6666; color: #ffffff;}</style>{#▼RZ 2023.07.11 ADD ブロック幅変更▼#}<div class="container fadeinu">{#▲RZ 2023.07.11 ADD ブロック幅変更▲#}<div id="businessday_calendar">{#▼RZ 2023.07.11 EDIT タイトル記載変更▼#}{# <div class="calendar_title">営業日カレンダー</div>#} <div class="ec-secHeading"> <span class="ec-secHeading__en">{{ 'CALENDAR'|trans }}</span><br> <span class="ec-secHeading__ja"><h2>{{ '営業日カレンダー'|trans }}</h2></span> </div>{#▲RZ 2023.07.11 EDIT タイトル記載変更▲#} <div class="note"><span></span>:店休日 <span></span>:本日</div> {% set year = 'now'|date('Y') %}{#▼RZ 2023.07.11 ADD カレンダー横並び▼#}<div class="list_around">{#▲RZ 2023.07.11 ADD カレンダー横並び▲#} {% for month, monthitem in Date %} {% if loop.index0 > 0 and month == '1' %} {% set year = year+1 %} {% endif %} <table> <caption>{{ year }}年{{ month }}月</caption> <thead><tr><th id="sunday">日</th><th>月</th><th>火</th><th>水</th><th>木</th><th>金</th><th id="saturday">土</th></tr></thead> <tbody> {% for dayitem in monthitem %} {% set day = dayitem.day %} {% if day|date('j') == '1' %} <tr> {% if day|date('w') != '0' %} {% for i in 1..day|date('w') %} <td></td> {% endfor %} {% endif %} {% elseif day|date('w') == 0 %} <tr> {% endif %} {% set class = '' %} {% if day|date('y/m/d') == 'now'|date('y/m/d') %} {% set class = class ~ 'today' %} {% endif %} {% if dayitem.is_holiday %} {% set class = class ~ ' holiday' %} {% endif %} <td {% if class != '' %} class="{{ class }}" {% endif %}>{{ day|date('j') }}</td> {% if day|date('w') == 6 or loop.last %} </tr> {% endif %} {% endfor %} </tbody> </table> {% endfor %}{#▼RZ 2023.07.11 ADD カレンダー横並び▼#}</div>{#▲RZ 2023.07.11 ADD カレンダー横並び▲#}</div>{#▼RZ 2023.07.11 ADD ブロック幅変更▼#}<p>営業時間 平日10:00~17:00<br>定休日 土・日・祝<br>その他休業日 ゴールデンウイーク・盆・年末年始・臨時休業日あり</p>営業時間外・休業日は、お問い合わせの対応および発送業務を行っておりません。ご了承くださいませ。<br>ネットからのご注文はいつでも可能です。</div>{#▲RZ 2023.07.11 ADD ブロック幅変更▲#}