.product-list {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; /*IE10*/
  -webkit-flex-wrap: wrap; /* Safari6.1以降 */
  flex-shrink: 0;
}

.product-list p,
.product-list h3 {
  line-height: 1.5;
  font-size: 12px;
  text-align: left;
}

.t-tokka {
  font-weight: bold;
  color: #ef0000;
}

/* ページャー　ページネーション */
.pagination {
  text-align: center;
}
.pagination a {
  border: 1px solid #ddd;
  padding: 8px 12px;
  margin: 0 4px;
}

.pagination__current {
  border: 1px solid #ddd;
  padding: 8px 12px;
  margin: 0 4px;
  background: #efefef;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  a.pagination__next {
    margin-top: 20px;
    clear: both;
    display: block;
    float: none;
  }
  a.pagination__prev {
    clear: both;
    margin-bottom: 20px;
    display: block;
    float: none;
  }
}

/*　お気に入り  */
.product-list__fav-items {
  margin-top: 5px;
  width: 100%;
  vertical-align: middle;
}
.product-list__fav-items button {
  display: block;
  width: 100%;
  padding: 5px 0;
  cursor: pointer;
  transition: .3s;
  text-align: center;
  color: #999;
  border: 0;
  outline: none;
  background: transparent;
  vertical-align: middle;
  font-size: 12px;
}

.product-list__fav-items .fav-items {
  color: #ff7373;
  vertical-align: middle;
}
.product-list__fav-items .fav-items:after {
  content: '済';
}

.product-list__fav-items svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  vertical-align: middle;
}
/*会員価格表示*/
.members_price {
  background-color: #fdf9c1;
  width: fit-content;
  padding: 2px;
}