@charset "utf-8";
.twoColumn__rightLayout.-cart {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .twoColumn__rightLayout.-cart {
    padding: 16px 0 24px;
  }
}
.twoColumn__right .totalPrice {
  margin-top: -8px;
}

/**********************************************************
受取場所・受取日時選択表示
***********************************************************/
.inputText__box.-receiptedAtDateTime {
  margin-bottom: 24px;
}

/**********************************************************
受取場所表示
***********************************************************/
.shopName {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .shopName {
    flex-wrap: wrap;
  }
}
.shopName__label {
  width: 150px;
  margin: 0 16px 0 0;
  padding: 0 0 0 48px;
}
@media screen and (max-width: 1200px) {
  .shopName__label {
    width: 110px;
    padding: 0 0 0 48px;
  }
}
@media screen and (max-width: 991px) {
  .shopName__label {
    width: 100%;
    margin: 0 0 4px 0;
    padding: 0;
  }
}
@media screen and (max-width: 420px) {
  .shopName__label {
    margin: 8px 0 4px 0;
  }
}
.shopName__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.42857143;
  max-width: 421px;
}
@media screen and (max-width: 1200px) {
  .shopName__text {
    max-width: 290px;
  }
}
@media screen and (max-width: 991px) {
  .shopName__text {
    max-width: 100%;
  }
}

/**********************************************************
受取日時選択欄
***********************************************************/
/* レイアウト */
.inputText__boxLayoutInner {
  display: flex;
  align-items: center;

}
@media screen and (max-width: 1200px) {
  .inputText__boxLayoutInner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.inputText__boxLayout {
  padding-bottom: 24px;
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (max-width: 767px) {
  .formGroup__box {
    margin-bottom: 16px;
  }
}

/* ラベル */
.formGroup__label {
  display: flex;
  align-items: flex-start;
}
.formGroup__label.-receiptedAtDateTime {
  width: 210px;
  word-break: keep-all;
  margin: 0 16px 0 0;
}
@media screen and (max-width: 1200px) {
  .formGroup__label.-receiptedAtDateTime {
    word-break: keep-all;
    margin: 0 16px 8px 0;
  }
}
.attentionLabel {
  top: 2px;
}
/* input */
.receiptedAtDateTime {
  width: 100%;
  position: relative;
}
.receiptedAtDateTime::after {
  content: "calendar_today";
  font-family: "Material Icons";
  font-size: 24px;
  color: #b3b3b3;
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
}
.receiptedAtDateTime .inputText {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.42857143;
  width: 100%;
  height: 50px;
  padding: 6px 12px;
  border: 1px solid #8e8e8e;
  background: #ffffff;
  border-radius: 5px;
  cursor: pointer;
}
.receiptedAtDateTime .inputText:hover {
  border: 1px solid #333333;
}
.receiptedAtDateTime .inputText:focus {
  border: 2px solid #e8a248 !important;
}
/* 受け取る時間がない時 */
.receiptedAtDateTime.-disabled::after {
  color: #cccccc;
  cursor: default;
}
.receiptedAtDateTime.-disabled .inputText {
  font-weight: normal;
  color: #999999;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  cursor: default;
}
.spaceBlock.-receiptedAtDateTime {
  flex-basis: 164px;
  height: 1px;
}
/* 説明文 */
.receiptedAtDateTime__description {
  margin: 12px 0 0 166px;
}
@media screen and (max-width: 1200px) {
  .receiptedAtDateTime__description {
    margin-left: 0;
  }
}
.receiptedAtDateTime__descriptionText {
  display: block;
  color: #c82527;
  letter-spacing: 0.3px;
  width: 100%;
  margin-bottom: 4px;
}

/**********************************************************
商品が入っていない時の表示
***********************************************************/
.noItemList {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 227px;
  padding-top: 16px;
}
.noItemList__layout {
  display: inline-block;
}

/**********************************************************
一注文あたりの最低価格があるときのメッセージの表示
***********************************************************/
.totalPrice__minAmount {
  color: #c82527;
}
