/* category free */
.p-category-free h2 {
  font-size: 16px;
  margin: 40px 0 20px;
  display: block;
}
.p-category-free {
  margin-bottom: 60px;
  line-height: 2;
}
.p-category-free p {
  margin: 0 0 20px;
  display: block;
}

/* SOLD表記/ブランド非表示 */
.nonstyle { display: none; }
.is-soldout span {
  text-align: center;
  display: block;
  padding: 7px;
  background: #e0e0e0;
  border-radius: 5px;
}

/* 小カテゴリ・小グループ一覧 */
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 30px;
}
.p-category-list__item {
  box-sizing: border-box;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 25%;
  font-size: 16px;
  text-align: center;
}
.p-category-list__link { position: relative; }
.p-category-list__link:hover { text-decoration: none; }
.p-category-list__img { display: block; margin-bottom: 30px; }
.p-category-list__name { font-size: 13px; padding-right: 20px; }
.p-category-list__name:hover { text-decoration: underline; }

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

/* スマホ (&#8804;648px) */
@media screen and (max-width: 648px) {
  .p-category-list { display: block; margin: 0; }
  .p-category-list__item {
    width: 49%;
    font-size: 12px;
    margin-bottom: 5px;
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  .p-category-list__link {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 10px;
    border: 1px solid #ccc;
    align-items: center;
  }
  .p-category-list__link:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -6px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    transform: rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .p-category-list__img { margin-right: 10px; margin-bottom: 0; }
  .p-category-list__img img {
    width: 35px;
    height: 35px;
    margin: 8px 0;
    border-radius: 5%;
    object-fit: cover;
  }
  .p-category-list__name { flex: 1; }
  .p-category-list__name:hover { text-decoration: none; }

  .p-item-list-head { padding: 30px 0; }
  .p-item-list-num { font-size: 14px; }
  .p-item-sort-list__item { margin-left: 25px; }
}

/* PC (&#8805;649px) */
@media screen and (min-width: 649px) {
  .p-category-list__img img {
    width: 110px;
    height: 110px;
    border-radius: 5%;
    object-fit: cover;
  }
}