/* m-product-card — 商品カード */

.m-product-card {
  display: block;
  width: calc((100% - 9rem) / 6);
  padding: 1.2rem 1.2rem 1.8rem;
  background-color: #fff;
  background-image: url("../../img/common/m-product-card-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  box-shadow: 0.4rem 0.4rem 0.7rem rgba(0, 0, 0, 0.25);
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.m-product-card:hover {
  opacity: 0.88;
  transform: translateY(0.15rem);
}

.m-product-card__image {
  margin: 0;
}

.m-product-card__image img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.m-product-card__title {
  position: relative;
  margin: 1.4rem 0 0.8rem;
  padding-bottom: 1.2rem;
  color: #2b2b2b;
  font-family: "Shippori Mincho", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.m-product-card__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 0.1rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #c9a647 18%,
    #e8d27b 50%,
    #c9a647 82%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.m-product-card__desc {
  margin: 0 0 1.2rem;
  color: #555;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.m-product-card__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #2b2b2b;
  font-size: 1.25rem;
  font-weight: 700;
}

.m-product-card__dot {
  display: inline-block;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../../img/common/product-card-link-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
