@charset "utf-8";
/**********************************************************
Grobal
***********************************************************/
@media screen and (max-width: 991px) {
  .fixed .wrapper {
      overflow: visible;
  }
}
@media screen and (max-width: 991px) {
  .container.-itemList {
    width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .container.-itemList {
    width: auto;
  }
}

/**********************************************************
Item List
***********************************************************/
@media screen and (max-width: 767px) {
  .content {
    padding: 0 0 24px;
  }
}

.boxBody {
  min-height: 700px;
  padding: 40px;
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .boxBody {
    padding: 40px 16px;
  }
}

/* Header Message */
.item__link {
  color: #434343;
}

/**********************************************************
item box
***********************************************************/

.item__layout {
  position: relative;
}
.itemAnchor {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.enableHover .itemAnchor:hover {
  background: rgba(0, 0, 0, 0.03);
}
.item__productDetail {
  display: block;
}

/* 受取場所で取扱なし */
.item__productImg {
  position: relative;
  pointer-events: none;
  z-index: 2;
}

/* name & price */
.item__productDetail ul {
  padding: 0;
  margin: 0;
}
.item__productDetail ul li{
  display: block;
}
.item__productName,
.item__productPrice {
  display: flex !important;
  position: relative;
  pointer-events: none;
  z-index: 2;
}
.item__productName {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4em;
  margin: 2px 0 16px;
  word-wrap: break-word;
}
@media screen and (max-width: 991px) {
  .item__productName {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .item__productName {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width:420px) {
  .item__productName {
    margin-bottom: 12px;
  }
}
.item__productPrice {
  font-size: 22px;
  align-items: baseline;
  justify-content: flex-end;
}
.item__productSalePriceMark {
  margin-right: 8px;
}
@media screen and (max-width: 991px) {
  .item__productPrice {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .item__productPrice {
    flex-direction: row;
    align-items: baseline;
    font-size: 18px;
    font-weight: bold;
  }
}
@media screen and (max-width: 420px) {
  .item__productPrice {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .item__productSalePriceMark {
    margin-right: 4px;
  }
}
.item__productSalePrice {
  line-height: 1em;
  white-space: nowrap;
}
.item__productNormalPrice {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  text-decoration: line-through;
  white-space: nowrap;
  margin-right: 16px;
  position: relative;
  bottom: 1px;
}
@media screen and (max-width: 991px) {
  .item__productNormalPrice {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .item__productNormalPrice {
    margin-right: 16px;
    bottom: auto;
  }
}

/**********************************************************
受け取り時間・在庫切れ表示
***********************************************************/
.item__productOutOfStock,
.item__productNonReceipt,
.item__productRemainingStock {
  display: block;
  text-align: right;
  margin: 4px 0;
  position: relative;
  pointer-events: none;
  z-index: 2;
}
.item__productOutOfStock,
.item__productNonReceipt {
  color: #999999;
}
.item__productRemainingStock {
  color: #c82527;
}
.item__productPrice.-disabled,
.item__productPrice.-disabled .item__productNormalPrice {
  color: #999999 !important;
}

.item__productCatchphrase {
  color: #666666;
  margin-top: 12px;
  position: relative;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .item__productCatchphrase {
    font-size: 13px;
  }
}

/**********************************************************
カートに入れましたメッセージ
***********************************************************/
.cartAddMessage__box {
  position: fixed;
  margin: 0 auto;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  height: 120px;
}
@media screen and (max-width:420px) {
  .cartAddMessage__box {
    height: 215px;
    z-index: 10;
  }
}
.cartAddMessage__content {
  min-height: auto;
  padding: 0 16px;
}
@media screen and (max-width:991px) {
  .cartAddMessage__content {
    padding: 0 6px;
  }
}
@media screen and (max-width:767px) {
  .cartAddMessage__content {
    padding: 0;
  }
}
.cartAddMessage__itemText {
  font-size: 16px;
  padding: 0 8px;
  max-width: 835px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width:420px) {
  .cartAddMessage__itemText {
    font-size: 14px;
  }
}
.cartAddMessage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  z-index: 1000000000;
}
@media screen and (max-width:420px) {
  .cartAddMessage {
    display: block;
  }
}
.cartAddMessage.-isDemo {
  margin-top: 50px;
}
.cartAddMessage__layout {
  display:flex;
  align-items: center;
}
.cartAddMessage__addItemImg {
  width: 86px;
  height: 63px;
  margin-right: 8px;
}

.cartCheckMsg.-flex {
  display:flex;
  align-items: center;
}
@media screen and (max-width:420px) {
  .cartCheckMsg.-flex {
    text-align: center;
    display: block;
  }
}
.cartCheckMsg .cotolUserBtn.-main {
  height: 50px;
  min-width: 150px;
  margin-right: 24px;
}
@media screen and (max-width:420px) {
  .cartCheckMsg .cotolUserBtn.-main {
    width: 100%;
    margin: 10px 0;
  }
}
@media screen and (max-width:420px){
  .cartCheckMsg .cartCheckMsg__delMsg {
    color: #000000;
    text-decoration: underline;
  }
}
.cartCheckMsg__delMsg .material-icons {
  color: #aaaaaa;
  width: 30px;
  text-align: center;
  position: relative;
  top: -5px;
}
@media screen and (max-width:420px) {
  .cartCheckMsg__delMsg.-icon {
    display: none;
  }
}
.cartCheckMsg__delMsg.-str {
  display: none;
}
@media screen and (max-width:420px) {
  .cartCheckMsg__delMsg.-str {
    display: block;
  }
}

/**********************************************************
Pagination
***********************************************************/
@media screen and (max-width:420px) {
  .pagination {
    margin-bottom: 16px;
  }
}
@media screen and (max-width:768px) {
  .pagenation__num.-spHidden {
    display: none;
  }
}

/**********************************************************
ぐるぐる
***********************************************************/
#nowprocessing {
  z-index: 99999 !important;
}

/**********************************************************
日時がない時の販売カレンダー
***********************************************************/
.btnBox.-receiptedAtDateTime {
  display: flex;
}
.btn.cotolUserBtn.-sub.-salesCalendar {
  min-width: 180px;
  position: relative;
  z-index: 2;
}

/* モーダル内商品内容 */
.receiptAtModal___productInfoBox {
  display: flex;
  padding: 24px;
  background: #f7f7f7;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width:767px) {
  .receiptAtModal___productInfoBox {
    padding: 16px;
  }
}

/* image */
.receiptAtModal___productInfoImg {
  width: 104px;
  min-width: 104px;
  height: 68px;
  margin-right: 24px;
}
@media screen and (max-width:767px) {
  .receiptAtModal___productInfoImg {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-right: 16px;
  }
}
.receiptAtModal___productInfoImg .imageMedia {
  position: relative;
}

/* 商品内容 */
.receiptAtModal___productInfoBoxInner {
  width: 100%;
}
.receiptAtModal___productName {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width:767px) {
  .receiptAtModal___productName {
    font-size: 15px;
  }
}
.receiptAtModal___productPrice {
  font-size: 20px;
  text-align: right;
  margin-top: 16px;
}
@media screen and (max-width:767px) {
  .receiptAtModal___productPrice {
    font-size: 15px;
    font-weight: bold;
    margin-top: 12px;
  }
}
.receiptAtModal___productPrice.-disabled {
  color: #999999;
}

/**********************************************************
スマホ 日時選択ボタン
***********************************************************/
.selectedDateTimeSp {
  width: 100%;
  position: relative;
}
.selectedDateTimeSp__box {
  margin-top: 16px;
  margin-bottom: -3px;
  padding: 0 0 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, #ffffff 45%, #ffffff 100%);
  position: relative;
  top: -3px;
}
.selectedDateTimeSp__box.-withHeaderInnerInfo {
  margin-top: 0;
  background: #ffffff !important;
}

.selectedDateTimeSp__layout {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 343px;
  height: 140px;
  margin: 0 auto;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e8a248;
  border-radius: 7px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.selectedDateTimeSp__header,
.selectedDateTimeSp__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.selectedDateTimeSp__header {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #e8a248;
  margin-bottom: 2px;
}
.selectedDateTimeSp__icon {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.selectedDateTimeSp__icon::before {
  content: "\e614";
  font-family: "Material Icons Outlined";
  font-size: 24px;
  font-weight: normal;
}
.selectedDateTimeSp__content {
  font-size: 20px;
  margin-bottom: 8px;
}
.selectedDateTimeSp__dateTime {
  display: inline-block;
  letter-spacing: 2px;
}
.selectedDateTimeSp__dateTime.-band {
  letter-spacing: 1px;
}

.selectedDateTimeSp__dateTime.-weekSp {
  font-size: 14px;
  margin: 0 -6px;
}

.selectedDateTimeSp .btnBox {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.selectedDateTimeSp .btn.cotolUserBtn,
.selectedDateTimeSp .btn.cotolUserBtn:focus,
.selectedDateTimeSp .btn.cotolUserBtn:active {
  height: 48px;
  box-shadow: none;
}
.cotolUserBtn__text.-spacing {
  display: inline-block;
  letter-spacing: 4px;
  margin-right: -4px;
}

/* 選択できる日時がない場合 */
.notSelectDateTimeSp {
  font-size: 16px;
}
.notSelectDateTimeSp.-area {
  font-size: 14px;
}

/* イベント期間外 */
.selectedDateTimeSp__box.-disabled .selectedDateTimeSp__layout {
  border: 1px solid rgba(204, 204, 204, 1);
  box-shadow: none;
  cursor: default;
}
.selectedDateTimeSp__box.-disabled .selectedDateTimeSp__header {
  color: #999999;
}
.selectedDateTimeSp__box.-disabled .btn.cotolUserBtn.-main {
  background: #dddddd;
  cursor: default;
  opacity: 1;
}
.notSelectDateTimeSp.-offHours {
  font-size: 20px;
  letter-spacing: 4px;
}
.notSelectDateTimeSp.-noDateTimes {
  font-size: 20px;
  letter-spacing: 2px;
}
/**********************************************************
スマホ 日時選択帯
***********************************************************/
@media screen and (max-width: 767px) {
  .visible-xs.hidden {
    display: none !important;
  }
}

.selectedDateTimeAreaSp__box {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  transition: 0.5s;
  z-index: 9;
}
.selectedDateTimeAreaSp__box.-slideDown {
  transform: translateY(50px);
}

.selectedDateTimeAreaSp {
  display: flex;
  align-items: center;
  width: 343px;
  height: 42px;
  margin: 0 auto;
  padding: 0 2px 2px;
  background: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}
.selectedDateTimeAreaSp__header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #ffffff;
  width: 115px;
  height: 40px;
  background: #e8a248;
  border-bottom-left-radius: 3px;
}
.selectedDateTimeAreaSp__header::before {
  content: "\e614";
  font-family: "Material Icons Outlined";
  font-size: 24px;
  font-weight: normal;
  margin-right: 4px;
}
.selectedDateTimeAreaSp__content {
  font-size: 15px;
  margin: 0 auto;
}

/* イベント期間外 */
.selectedDateTimeAreaSp__box.-disabled .selectedDateTimeAreaSp__header {
  background: #dddddd;
}

/**********************************************************
別イベント販売制限の注釈
***********************************************************/
.purchasingLimit {
  text-align: center;
  color: #c82527;
  width: 650px;
  margin: auto;
  padding: 16px 16px 24px;
  border: 1px solid #cccccc;
}
@media screen and (max-width:767px) {
  .purchasingLimit {
    width: auto;
    margin: 0 16px;
  }
}
@media screen and (max-width:420px) {
  .purchasingLimit {
    padding: 16px 8px 24px;
  }
}
.purchasingLimit__icon {
  font-size: 32px !important;
}
.purchasingLimit__text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width:767px) {
  .purchasingLimit__icon {
    font-size: 26px !important;
    margin-right: 4px;
  }
  .purchasingLimit__text {
    font-size: 14px;
  }
}

.purchasingLimit .linkText__layout {
  display: flex;
  justify-content: center;
  width: 100%;
}
.purchasingLimit .linkText {
  display: block;
  margin: 8px auto 0;
}