/* stylelint-disable no-descending-specificity, selector-class-pattern, selector-pseudo-element-colon-notation, selector-not-notation */

/* ****************************
category
***************************** */

.p-category__ttl {
  margin: 10px 0 30px;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.4;
}

.p-category-free {
  margin-bottom: 60px;
  line-height: 2;
}

/***** カテゴリ一覧 *****/

.p-category-list {
  display: flex;
  flex-wrap: wrap;
  margin: 60px -15px;
}

@media screen and (width <= 767px) {
  .p-category-list {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }
}

.p-category-list__item {
  box-sizing: border-box;
  width: 33.3333%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 60px;
  font-size: 16px;
  text-align: center;
}

@media screen and (width <= 767px) {
  .p-category-list__item {
    width: auto;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 15px;
    text-align: left;
  }
}

.p-category-list__link {
  position: relative;
}

@media screen and (width <= 767px) {
  .p-category-list__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.p-category-list__link:hover {
  text-decoration: none;
}

@media screen and (width <= 767px) {
  .p-category-list__link::before {
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    content: '';
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
    transform: rotate(-45deg);
  }
}

.p-category-list__img {
  display: block;
  margin-bottom: 30px;
}

@media screen and (width <= 767px) {
  .p-category-list__img {
    width: 75px;
    margin-right: 10px;
    margin-bottom: 0;
  }
}

.p-category-list__name:hover {
  text-decoration: underline;
}

@media screen and (width <= 767px) {
  .p-category-list__name:hover {
    text-decoration: none;
  }
}

@media screen and (width <= 767px) {
  .p-category-list__name {
    flex: 1;
  }
}

/***** 商品件数・ソート *****/

.p-item-list-head {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border-top: 1px solid #7d7d7d;
}

@media screen and (width <= 767px) {
  .p-item-list-head {
    padding: 30px 0;
  }
}

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

@media screen and (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 (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;
}

/*
Custom CSS
*/

body .p-category__ttl {
  text-align: center;
}

body .p-item-list-head {
  padding: 0 0 2em;
  border-top: none;
}

.c-item-list {
  margin-right: -15px;
  margin-left: -15px;
}

.c-item-list__item {
  padding-right: 15px;
  padding-left: 15px;
}