

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px; /* ボタンと入力欄の間隔 */
}

.quantity-control .quantity-minus,
.quantity-control .quantity-plus {
  /* ボタンの共通設定 */
  font-size: 20px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 8px; /* 角を丸くする */
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
 
}

.quantity-control .quantity-minus:hover,
.quantity-control .quantity-plus:hover {
  background-color: #f0f0f0; /* ホバー時の色 */
}

.quantity-control .productnum {
  /* 入力欄のデザイン */
  text-align: center;
  font-size: 16px;
  width: 60px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0 4px;
}