/******************************/
/* category */
/******************************/
.p-category__ttl {
    font-size: 20px;
    text-align: center;
}
.p-category-free {
    line-height: 2;
    text-align: center;
    max-width: 460px;
    margin: 30px auto;
    width: 90%;
}
.p-category-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.p-category-list__item a {
    border: 1px solid #34373A;
    border-radius: 22px;
    padding: 10px 30px;
  	display: block;
}

.p-category-search {
  margin-bottom: 30px;
}


/***** 商品件数・ソート *****/
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.p-item-list-num {
  font-size: 12px;
}

.p-item-sort {
  display: flex;
  align-items: center;
margin-top: 40px;
}
.p-item-sort__ttl {
  white-space: nowrap;
  margin-right: 10px;
}
.p-item-sort__select {
font-size: 12px;
  padding: 10px;
  border: 1px solid #34373A;
  border-radius: 3px;
  height: auto;
  min-width: 180px;
  line-height: 1.4;
}

.p-item-sort-list {
  display: flex;
  flex-wrap: wrap;
}
.p-item-sort-list__item {
  margin-left: 30px;
}

.p-item-sort-list__item:first-child {
  margin-left: 0;
}
.p-item-sort-list__item span {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  .p-category-free {
    margin-bottom: 35px;
  }
  
  .p-category-search {
    margin-bottom: 20px;
    text-align: center;
  }
  .p-item-list-head {
	flex-direction: column-reverse;
align-items: flex-end;
  }

  .p-item-sort__select {
    flex: 1;
  }
  .p-item-sort-list__item {
    margin-left: 25px;
  }
  .p-item-list-num {
    margin-top: 15px;
  }
}