
/* カートテーブル商品一覧テーブル行 */
.ec-cartTableRow {
  display: table-row;
}

/* カートテーブル商品画像カラム */
.ec-cartTableRow .ec-cartTableRow__imgColumn {
  display: table-cell;
  width: 40%;
  vertical-align: middle;
  padding-right: 10px;
}

.ec-cartTableRow .ec-cartTableRow__imgColumn .ec-cartTableRow__img {
  display: table-cell;
  width: 40%;
  vertical-align: middle;
  padding-right: 10px;
}

/* カートページ商品行 */
.ec-cartTableRow .ec-cartTableRow__delColumn {
  border-bottom: 1px dotted #ccc;
  text-align: center;
  display: table-cell;
  width: 14%;
  vertical-align: middle;
}

/* カート商品画像 */
.ec-cartTableRow .ec-cartTableRow__imgColumn .ec-cartTableRow__img {
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  padding-right: 10px;
}

/* カートテーブル商品名などカラム */
.ec-cartTableRow .ec-cartTableRow__summary {
  display: table-cell;
  margin-left: 5px;
  font-weight: bold;
  vertical-align: middle;
  width: 46%;
}

/* カートテーブル商品名などカラム商品名 */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__name {
  margin-bottom: 5px;
}

/* カートテーブル商品名などカラム数量 */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amount {
  margin-bottom: 10px;
}

/* カート数量増減領域 */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountUpDown {
  display: flex;
  justify-content: left;
  /* align-items: center; */
}

/* カート数量増減領域プラスボタン */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountUpDown .ec-cartTableRow__amountUpButton {
  margin: 0 2px;
  display: inline-block;
  border: 2px solid #c9c9c9;
  border-radius: 50%;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  cursor: pointer;
  line-height: 40px;
  vertical-align: middle;
  position: relative;
  text-align: center;
  background: #fff;
}

/* カート数量増減領域プラスボタン画像 */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountUpDown .ec-cartTableRow__amountUpButton .ec-cartTableRow__amountUpButton__icon img {
  display: block;
  margin-left: -0.4em;
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 28%;
  left: 50%;
}

/* カート数量増減領域マイナスボタン領域 */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountUpDown .ec-cartTableRow__amountDownButton,
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountUpDown .ec-cartTableRow__amountDownButtonDisabled {
  margin: 0 2px;
  display: inline-block;
  border: 2px solid #c9c9c9;
  border-radius: 50%;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  cursor: pointer;
  line-height: 40px;
  vertical-align: middle;
  position: relative;
  text-align: center;
  background: #fff;
}

/* カート数量増減領域マイナスボタン画像 */
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountDownButton .ec-cartTableRow__amountDownButton__icon img,
.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountDownButtonDisabled .ec-cartTableRow__amountDownButton__icon img {
  display: block;
  margin-left: -0.4em;
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 28%;
  left: 50%;
}

.ec-cartTableRow .ec-cartTableRow__summary .ec-cartTableRow__amountDownButtonDisabled {
  cursor: default;
}

.ec-cart-alert-warning {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.ec-cart-alert-warning .ec-cart-alert-warning__text {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #262626;
  position: relative;
  flex: 1;
  word-break: break-all;
}

/* ×ボタン */
.ec-cartDelete {
  max-width: 15%;
  display: block;
  margin: 0 0 0 auto;
  cursor: pointer;
}

/* 単体価格 */
.ec-cartTableRow .ec-cartTableRow__price {
  display: block;
  text-align: right;
  margin-top: 25px;
}

.ec-cartRole .ec-cartRole__actions {
  width: 100%;
}

/* ボタン */
.ec-cartRole__actions .ec-cartButton {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}

/* レジに進むボタン */
.ec-cartRole__actions .ec-cartButton .ec-cartButton__next {
  width: calc(100% / 2 - 30px);
  text-align: center;
}

/* レジに進むリンク */
.ec-cartRole__actions .ec-cartButton .ec-cartButton__next .ec-cartButton__nextLink {
  margin: 0 auto;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border-radius: 30px;
  --bs-btn-padding-y: 6px;
  --bs-btn-padding-x: 12px;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 1.42857142;
  user-select: none;
  padding: 10px 16px;
  text-decoration: none;
  color: white;
  background-color: #D6AC40;
  border-color: #D6AC40;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 56px;
  padding-top: 0;
  padding-bottom: 0;
}

/* お買い物を続けるボタン */
.ec-cartRole__actions .ec-cartButton .ec-cartButton__prev{
  width: calc(100% / 2 - 30px);
  text-align: center;
}

/* お買い物を続けるリンク */
.ec-cartRole__actions .ec-cartButton .ec-cartButton__prev .ec-cartButton__prevLink {
  margin: 0 auto;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  border-radius: 30px;
  --bs-btn-padding-y: 6px;
  --bs-btn-padding-x: 12px;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 1.42857142;
  user-select: none;
  padding: 10px 16px;
  text-decoration: none;
  color: #fff;
  background-color: #7A7A7A;
  border-color: #7A7A7A;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 56px;
  padding-top: 0;
  padding-bottom: 0;
}

.cart-quantity {
  width: 60px;
}
