/* Cart / order confirm — notes under billing total */
.c-billing_list__tax-note {
  margin: 8px 0 0;
  padding: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-body, #9a9a9a);
  text-align: left;
}

.c-billing_list__tax-note + .c-billing_list__tax-note {
  margin-top: 4px;
}

/* Cart / confirm line — tax label + secondary (税込) in dual unit display */
.c-cart_item__action__price-tax {
  margin-left: 0.15em;
  font-size: 0.75em;
  font-weight: 500;
  color: var(--color-text-body, #9a9a9a);
}

/*
  Cart page (mobile only): delete under price, bottom-right of the line.
  Stock SP puts delete left of price (row). PC stays column delete→price — untouched.
*/
@media screen and (max-width: 719px) {
  .p-cart_content .c-cart_item__action {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 0;
  }

  .p-cart_content .c-cart_item__action__price {
    order: 1;
  }

  .p-cart_content .c-cart_item__action__delete {
    order: 2;
    flex: 0 0 auto;
  }

  .p-cart_content .c-cart_item__info__quantity {
    margin-bottom: 10px;
  }
}
