.product {
  width: 100%;
  margin: 0 auto;
}

.product__innr {
  width: 100%;
  margin: 20px auto 0;
}

.product__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
}

.product__head h3 {
  padding: 0;
  background: none;
  font-size: 20px;
  color: #32a541;
}

.product__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.product__item {
  width: calc((100% - 100px) / 5);
  margin-left: 20px;
}

.product__item:first-child {
  margin-left: 0;
}

.product__img {
  width: 100%;
  height: 150px;
}

.product__ttl {
  width: 100%;
  margin-top: 10px;
}

.product__ttl p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product__price {
  margin-top: 20px;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */