@charset "UTF-8";

/*******ショップ共通********/
/*ヘッダー*/
#shop_header_bg {
    flex-wrap: wrap;
    margin: 12px 0 40px 0;
}
#shop_header_bg .shop-header-inner {
    justify-content: center;
}
/*出しわけ*/
.pc-view {display: block !important;}
.sp-view {display: none !important;}
@media screen and (max-width: 767px) {
    .pc-view {display: none !important;}
    .sp-view {display: block !important;}
}

/*シンプルリンクボタン*/
.list_more_btn {
    text-align: center;
    margin-bottom: 90px;
}
.list_more_btn a {
    font-size: 16px;
    padding: 5px 80px;
    border: 1px solid #000000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}
.list_more_btn a::after {
    content: "＞";
    /* font-family: "FontAwesome"; */
    position: absolute;
    right: 20px;
}


@media screen and (max-width: 767px) {
    /*フッター*/
    #shop_footer_banners {
        padding: 0 !important;
    }
    .bnr_giftset_f a {
        display: block;
        position: relative;
        border: 1px solid #eeeeee;
    }
    .bnr_giftset_f a span {
        position: absolute;
        left: 16px;
        top: 12px;
        font-size: 16px;
        color: #5e4c46;
        background: rgba(255,255,255,0.7);
        line-height: 1em;
        padding: 0 5px;
    }
}

/*ラベル関係*/
.iteminfo-label {
    font-size: 14px;
    color: #ffffff !important;
    display: inline-block;
    padding: 5px 10px !important;
}
.iteminfo-label-dripbag {
    background-color: #5C5346 !important;
}
.iteminfo-label-coffeebag {
    background-color: #091540 !important;
}
.iteminfo-label-designcan {
    background-color: #8C6057 !important;
}
.iteminfo-label-normal {
    background-color: #f3f3f3 !important;
    color: #444444 !important;
}
@media screen and (max-width: 767px) {
    .iteminfo-label {
        font-size: 13px;
        padding: 3px 10px !important;
    }
}

/*ロゴ下お知らせ*/
.shop_header_info {
    width: 770px;
    margin: 0 auto;
}
.shop_header_info span {
    display: block;
    color: #5e4c46;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #a94442;
    color: #a94442;
    /* background-color: #f2dede; */
}
@media screen and (max-width: 767px) {
    .shop_header_info {
        width: 90%;
    }
}
/*在庫切れ商品*/
.itemstock_NG {
    position: relative;
}
.itemstock_NG::after {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    content: "SOLD OUT";
    /* content: "売り切れ中\A入荷までお待ちください"; */
    color: #ffffff;
    text-align: center;
    top: 0;
    align-items: center;
    justify-content: center;
    /* white-space: pre; */
    font-size: 22px;
}
@media screen and (max-width: 767px) {
    .itemstock_NG::after {
        font-size: 14px;
    }
}