@charset "UTF-8";
.inner {
  width: 95%;
}

#cart .num,
#cart .stock,
#cart .unitprice {
  display: none;
}

#cart .quantity input {
  border: none;
  pointer-events: none;
}
#cart table {
  border: none !important;
  display: block;
  font-size: 14px;
  margin: 5% auto 0;
}
#cart th,
#cart td {
  border: none !important;
  background-color: transparent !important;
  color: #333 !important;
  padding: 0 !important;
}
#cart td.productname {
  text-align: left;
}
#cart thead {
  display: none;
}
#cart thead th {
  color: #333;
  background-color: transparent;
}
#cart tbody {
  display: block;
  margin: 0 auto;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
#cart tfoot {
  display: flex;
  justify-content: end;
  margin-top: 3%;
}
#cart tfoot th {
  border: none;
}
#cart tfoot tr {
  justify-content: end;
}
#cart tfoot .action {
  display: none;
}
#cart tfoot .aright {
  font-size: 14px;
}
#cart tr {
  border-bottom: 1px solid;
  padding: 3% 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3%;
  width: 100%;
  justify-content: end;
  box-sizing: border-box;
}
#cart tr:last-child {
  border: none;
}
#cart .thumbnail {
  width: 40% !important;
  max-width: 300px;
  order: 1;
}
#cart .productname {
  order: 2;
  width: 55%;
}
#cart input.delButton {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #333;
}
#cart .quantity,
#cart .subtotal,
#cart .stock,
#cart .action {
  order: 3;
  width: auto;
  text-align: center;
}
#cart .quantity {
  width: 65px;
}
#cart .quantity input {
  width: 15px;
}
#cart .subtotal {
  width: 85px;
}
#cart .quantity::before {
  content: "数量：";
  margin-right: 0.25em;
}

.send {
  margin-top: 7%;
  display: flex;
  justify-content: center;
}
.send .continue_shopping_button {
  border: none;
  background-color: transparent;
  color: #7d7d7d;
}
.send .to_customerinfo_button {
  background-color: #c9a961;
  border: none;
  color: #fff;
  padding: 2.5%;
  width: 50%;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid;
}

@media screen and (min-width: 768px) {
  .inner {
    width: 85%;
  }
  .cart-page #cart table {
    margin-top: 3%;
  }
  .cart-page #cart th.subtotal {
    text-align: right;
  }
  .cart-page #cart tr {
    padding: 1% 0;
    justify-content: space-between;
  }
  .cart-page #cart thead {
    display: block;
  }
  .cart-page #cart .thumbnail {
    width: 10% !important;
  }
  .cart-page #cart .productname {
    order: 2;
    width: 40%;
  }
  .cart-page #cart tfoot tr {
    justify-content: end;
    padding: 0;
  }
  .cart-page #cart .quantity::before {
    content: none;
  }
  .cart-page .send {
    margin-top: 4%;
  }
  .cart-page .send .to_customerinfo_button {
    padding: 0.75%;
    width: 20%;
    transition: 0.3s;
    border: 2px solid transparent;
  }
  .cart-page .send .to_customerinfo_button:hover {
    background-color: #fff;
    color: #c9a961;
    transition: 0.3s;
    border: 2px solid #c9a961;
  }
}/*# sourceMappingURL=cart.css.map */