/* 商品一覧カード内の価格テキストを折り返し可能に */
.box__price,
.box__price-range {
  white-space: normal;      /* 折り返しを許可 */
  word-break: break-word;   /* 長い語でも折り返し */
  line-height: 1.4;
}