@charset "UTF-8";
/* =====================
	商品ページ 独自コメント6 まとめ買い
 ======================= */

.bulk-purchase {
  width: 100%;
  margin: 0 auto;
}

.bulk-purchase__title {
  color: #111111;
  font-size: 14px;
  margin: 0 0 14px 0;
  padding: 0;
  line-height: 1.5;
}

.bulk-purchase__title-sub {
  color: #5d1b30;
  font-weight: bold;
}

.bulk-purchase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.bulk-purchase__grid a {
  transition: all 0.3s;
  opacity: 1;
}

.bulk-purchase__grid a:hover {
  border-color: #a68f5d;
  /* accent without layout shift */
  box-shadow: inset 0 0 0 1px #a68f5d;
}

/* .bulk-purchase__grid a:hover .bulk-purchase__quantity {
  color: #fff;
}

.bulk-purchase__grid a:hover .bulk-purchase__price {
  color: #fff;
}

.bulk-purchase__grid a:hover .bulk-purchase__unit-price {
  color: #fff;
} */

@media (max-width: 768px) {
  .bulk-purchase__grid {
    margin-bottom: 20px;
  }
}

.bulk-purchase__item {
  display: block;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.bulk-purchase__item:hover {
  opacity: 1;
}

.bulk-purchase__quantity {
  color: #111111;
  font-size: 20px;
  margin-bottom: 7px;
  line-height: 1.2;
}

.bulk-purchase__price {
  color: #111111;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 7px;
  line-height: 1.2;
}

.bulk-purchase__price-unit {
  font-size: 13px;
  font-weight: normal;
}

.bulk-purchase__unit-price {
  color: #5d1b30;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.bulk-purchase__unit-text {
  font-size: 12px;
  font-weight: normal;
}

/* タブレット・SP対応 */
@media (max-width: 768px) {
  .bulk-purchase__title {
    font-size: 13px;
  }

  .bulk-purchase__quantity {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .bulk-purchase__price {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .bulk-purchase__price-unit {
    font-size: 11px;
  }

  .bulk-purchase__unit-price {
    font-size: 12px;
  }

  .bulk-purchase__unit-text {
    font-size: 10px;
  }
}
