/* EDKDS001-03_add */
@charset "utf-8";

#skuListArea {
  border-radius: 8px;
}
#skuListArea h3 {
  padding-bottom: 0;
}
#skuListArea h3::before {
  content: none;
}
#skuList.bdr_b_solid {
  margin-bottom: 0;
}
#skuList tr.bdr_b_solid {
  display: table-row;
  margin-bottom: 0;
}

#skuListArea .colorRed {
  color: #d9321d;
}

#skuListArea #buttonArea input {
  margin-top: 0;
}
#skuListArea .addCartButton img + span {
  position: relative;
  padding-left: 24px;
}
#skuListArea .addCartButton img + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  transition: 0.3s;
  /* EDKDS001-03_mod_start */
  /* background: url("../../commonfiles/images/icon/white/cart_white.svg") no-repeat center / contain; */
  background: url("../../commonfiles/images/cart_white.svg") no-repeat center / contain;
  /* EDKDS001-03_mod_end */
}

/* EDKDS001-03_add_start */
#skuListArea .reservationButton img + span {
  position: relative;
  padding-left: 24px;
}
#skuListArea .reservationButton img + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  transition: 0.3s;
  background: url("../../commonfiles/images/cart_white.svg") no-repeat center / contain;
}
/* EDKDS001-03_add_end */

#skuListArea .btn_off {
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  color: #bababa;
}
#skuListArea .btn_off img + span::before,
#skuListArea .addCartButton.btn_off:hover img + span::before {
  /* EDKDS001-03_mod_start */
  /* background: url("../../commonfiles/images/icon/gray/cart_gray.svg") no-repeat center / contain; */
  background: url("../../commonfiles/images/cart_gray.svg") no-repeat center / contain;
  /* EDKDS001-03_mod_end */
}
/* EDKDS001-03_add_start */
#skuListArea .btn_off img + span::before,
#skuListArea .reservationButton.btn_off:hover img + span::before {
  background: url("../../commonfiles/images/cart_gray.svg") no-repeat center / contain;
}
/* EDKDS001-03_add_end */
#skuListArea .listTbl th.cartCell {
  min-width: 195px;
}
#skuListArea .listTbl td.cartCell {
  position: relative;
  min-width: 195px;
}
#skuListArea .successAddCartMessage {
  position: absolute;
  left: 0;
  max-width: 192px;
  padding: 12px;
}
#skuListArea .successAddCartMessage .addCartMessage {
  margin-bottom: 2px;
  font-size: 12px;
}
#skuListArea .successAddCartMessage .cartUrlButton {
  padding-right: 16px;
  font-size: 12px;
}

@media screen and (max-width:768px){
  /* 画面サイズが768pxまではここを読み込む */
  #skuListArea {
    padding: 30px 24px;
  }
  #skuList {
    max-width: calc(100vw - 48px);
    max-height: 400px;
    overflow: auto;
  }
  #skuListArea h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }
  #skuListArea .listTbl th {
    min-width: 100px;
    padding: 16px 10px;
    border: 0;
    background-color: #f8f8f8;
    white-space: nowrap;
  }
  #skuListArea .listTbl td {
    min-width: 100px;
    padding: 16px 10px;
    border: 0;
  }
  #buttonArea {
    margin: 16px 0 0;
  }
  #skuListArea #buttonArea input {
    width: auto;
    padding: 8px 0
  }
  #skuListArea .addCartButton {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  /* EDKDS001-03_add_start */
  #skuListArea .reservationButton {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  /* EDKDS001-03_add_end */
  #skuListArea .successAddCartMessage {
    top: -95px;
  }
}

@media screen and (min-width: 769px) {
  /* 画面サイズが769pxからはここを読み込む */
  #skuListArea {
    min-width: 769px;
    padding: 32px;
  }
  #skuList {
    max-height: calc(100vh - 360px);
    overflow-y: auto;
  }
  #skuListArea h3 {
    margin-bottom: 24px;
    font-size: 20px;
  }
  #skuListArea .listTbl th{
    min-width: 100px;
    padding: 24px 10px;
    white-space: nowrap;
  }
  #skuListArea .listTbl td {
    padding: 24px 10px;
  }
  #buttonArea {
    margin: 24px 0 0;
  }
  #skuListArea #buttonArea input {
    width: auto;
    padding: 8px 32px;
  }
  #skuListArea .addCartButton {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  #skuListArea .addCartButton:hover img + span::before {
    /* EDKDS001-03_mod_start */
    /* background: url("../../commonfiles/images/icon/green/cart_green.svg") no-repeat center / 100% 100%; */
    background: url("../../commonfiles/images/cart_green.svg") no-repeat center / 100% 100%;
    /* EDKDS001-03_mod_end */
  }
  /* EDKDS001-03_add_start */
  #skuListArea .reservationButton {
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  #skuListArea .reservationButton:hover img + span::before {
    background: url("../../commonfiles/images/cart_green.svg") no-repeat center / 100% 100%;
  }
  /* EDKDS001-03_add_end */
  #skuListArea .successAddCartMessage {
    top: -90px;
  }
}

/*-----------------------------
  990px以下(xs,sm)で表示
------------------------------*/
@media screen and (max-width:991px) {
    #skuListArea .listTbl td {
      display: table-cell;
      border-right: 0;
      padding: 16px 10px;
    }
    #skuListArea img.skuImage {
      height: auto;
      width: auto;
    }
}

/*-----------------------------
  480px以下(xs,sm)で表示
------------------------------*/
@media screen and (max-width:480px) {
    #skuListArea img.skuImage {
      height: auto;
      width: auto;
    }
}
