/***** 商品件数・ソート *****/
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
}
@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;
}



.p-product-list-image{
  max-width: 1200px;
  margin: 0 auto;
}
.p-product-list-image .category_img-pc{
  display: block;  
}
.p-product-list-image .category_img-sp{
  display: none;  
}

@media screen and (max-width: 767px) {
  .p-product-list-image .category_img-pc{
    display: none;      
  }
  .p-product-list-image .category_img-sp{
    display: block;      
  }
}
.product-list-all{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0;

}

@media screen and (max-width: 767px) {
  .product-list-all{
    display: block;
    max-width: 100%;
    padding: 0 24px;
    margin: 16px auto 0;
  }
}

.product-list-all-main{
  width: 996px;
}

@media screen and (max-width: 767px) {
  .product-list-all-main{
    width: 100%;
  }
}
.p-category__ttl{
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-category__ttl h2{
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  padding: 0 16px;
  /* width: 200px; */
  line-height: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-category__ttl h2{
      font-size: 20px;
  }
}
.p-category__ttl:before,
.p-category__ttl:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--primary-color);
}

.p-category__ttl:before {
  margin-right: 1rem;
}

.p-category__ttl:after {
  margin-left: 1rem;
}

.p-category-free{
  padding-left: 32px;
}