@charset "UTF-8";
@media (max-width: 576px) {
  #cart table, #cart thead, #cart tbody, #cart tfoot, #cart tr, #cart td {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 100%;
    border: none; }
  #cart th {
    display: none; }
  #cart tr {
    border-top: 1px solid gray; }
  #cart td {
    margin: 0;
    padding: 0;
    align-items: center; }
    #cart td:before {
      text-align: center;
      flex-basis: 4em;
      background: gray;
      color: white;
      padding: 0.25em .5em;
      margin-right: .5em; }
    #cart td.aright {
      justify-content: space-between; }
    #cart td.num:before {
      content: "No."; }
    #cart td.thumbnail:before {
      height: 100%;
      content: "画像"; }
    #cart td.productname:before {
      content: "商品"; }
    #cart td.unitprice:before {
      content: "単価"; }
    #cart td.quantity:before {
      content: "数量"; }
    #cart td.subtotal:before {
      content: "金額（税込み）"; }
    #cart td.stock:before {
      content: "在庫"; } }
