/***** 商品件数・ソート *****/
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border-top: 1px solid #7d7d7d;
}
@media screen and (max-width: 767px) {
  .p-item-list-head {
    padding: 30px 0;
  }
}
.p-item-list-num {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-item-list-num {
    font-size: 14px;
  }
}
.p-item-sort-list {
  display: flex;
  flex-wrap: wrap;
}
.p-item-sort-list__item {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-item-sort-list__item {
    margin-left: 25px;
  }
}
.p-item-sort-list__item:first-child {
  margin-left: 0;
}
.p-item-sort-list__item span {
  text-decoration: underline;
}


/* custum */
.p-category__ttl {
	position: relative;
	text-align: center;
	font-weight: bold;
	color: #c2007b;
	letter-spacing: 0;
	margin-bottom: 45px;
}
.p-category__ttl::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.5em;
	width: 2em;
	height: 10px;
	background: #f2ecf3;
	margin: 0 auto;
}
.p-item-list-head {
	border-top: 1px solid #b7b7b7;
}