/* 購入確認(最終チェック)用 */

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 18px;
  font-size: 14px;
  word-break: break-all;
  align-items: center;
  justify-content: flex-start; /* 左寄せ */
  text-align: left; /* テキストを左に寄せる */
}

th {
  background-color: #f4f4f4;
}

.border-title{
  border-bottom: 1px solid #ccc;
}

.cart-check-productinfo{
  display: flex;
}

.cart-product-img img{
  width: 100%;
  height: 100px;
}

.cart-product-title{
  margin-left: 40px;
}

.cart-check-price-title{
  text-align: right;
}

.button-area {
  display: flex;
  justify-content: center;
}

.button-area button {
  margin: 10px;
}


/* スマホ画面対応（最大幅480px） */
@media (max-width: 480px) {
  .cart-product-img img{
    width: 100%;
    height: auto;
  }
  .cart-check-productinfo{
    display: block;
  }

  .cart-product-title{
    margin-left: 0px;
  }
  .keep-word {
    word-break: keep-all;
  }

  .button-area {
    display: block;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }
}

