/* カスタマイズ用CSS */
/* ========== EC-CUBE標準ヘッダー：検索欄とカテゴリ一覧だけ非表示 ========== */

/* 上部の検索欄 */
.ec-headerSearch,
.ec-headerSearchRole {
    display: none !important;
}

/* ロゴ下のカテゴリ一覧 */
.ec-categoryNaviRole,
.ec-itemNav,
.ec-itemNav__nav {
    display: none !important;
}

/* ========== EC-CUBE標準スマホ用ハンバーガーメニューを非表示 ========== */

/* 左上の三本線ボタン */
.ec-headerNaviRole__navSP,
.ec-drawerButton {
    display: none !important;
}

/* 開閉用の標準ドロワーも使わないので非表示 */
.ec-drawerRole,
.ec-drawerRoleClose,
.ec-overlayRole {
    display: none !important;
}

/* ========== EC-CUBE標準スマホ用ハンバーガーの見た目も非表示 ========== */

/* EC-CUBE標準ヘッダー左上の三本線 */
.ec-headerRole__navSP,
.ec-headerRole__navSPInner,
.ec-headerNavSP,
.ec-headerNavSP__button,
.ec-headerNaviRole__navSP {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* FontAwesomeの三本線アイコンが単体で残る場合の保険 */
.ec-headerRole .fa-bars,
.ec-headerRole .fa-navicon,
.ec-headerNaviRole .fa-bars,
.ec-headerNaviRole .fa-navicon {
    display: none !important;
}

/* 左側のスマホメニュー枠だけ残る場合の保険 */
.ec-headerNaviRole__left,
.ec-headerRole__left {
    display: none !important;
}

/* ========== EC-CUBE標準スマホヘッダー：右側アイコンを右端寄せ ========== */

@media (max-width: 767px) {
    .ec-headerNaviRole {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
        padding: 12px 10px 0 !important;
        box-sizing: border-box !important;
    }

    .ec-headerNaviRole__right {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: auto !important;
        margin-left: auto !important;
    }

    .ec-headerNaviRole__nav {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 16px !important;
        margin-left: auto !important;
    }
}

/* ========== 注文手続き：営業所止置き案内 ========== */

.chukyo-shipping-change {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.chukyo-office-stop-note {
    color: #d00;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
}

/* スマホでは赤字案内を変更ボタンの上に表示 */
@media (max-width: 767px) {
    .ec-orderDelivery__title {
        display: block !important;
        overflow: visible !important;
        padding-bottom: 10px;
    }

    .chukyo-shipping-change {
        position: static !important;
        float: none !important;
        clear: both !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;

        width: 100% !important;
        margin: 8px 0 12px !important;
        gap: 6px !important;
    }

    .chukyo-office-stop-note {
        display: block;
        width: 100%;
        color: #d00;
        font-size: 12px;
        font-weight: bold;
        line-height: 1.5;
        white-space: normal;
    }

    .chukyo-shipping-change .ec-inlineBtn {
        margin-top: 0;
    }

    .ec-orderDelivery__item {
        clear: both;
    }
}

/* ========== 注文手続き：お問い合わせ欄の注意文 ========== */

.chukyo-message-note {
    margin-top: 8px;
    color: #d00;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .chukyo-message-note {
        font-size: 12px;
    }
}

/* ========== 注文手続き：銀行振込案内 ========== */

.chukyo-bank-transfer-box {
    margin: 16px 0 24px;
    padding: 14px 16px;
    border: 2px solid #1C1987;
    border-radius: 6px;
    background: #fff;
    color: #393939;
    font-size: 14px;
    line-height: 1.7;
}

.chukyo-bank-transfer-title {
    margin: 0 0 8px;
    color: #1C1987;
    font-weight: bold;
    font-size: 15px;
}

.chukyo-bank-transfer-box ul {
    margin: 0 0 8px 1.2em;
    padding: 0;
}

.chukyo-bank-transfer-box li {
    line-height: 1.7;
}

.chukyo-bank-transfer-box p {
    margin: 0;
}

@media (max-width: 767px) {
    .chukyo-bank-transfer-box {
        margin: 14px 0 20px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .chukyo-bank-transfer-title {
        font-size: 14px;
    }
}

/* ========== 注文手続き：税込価格表記 ========== */

.chukyo-tax-included-note {
    margin: 8px 0 0;
    padding-top: 3px;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}