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

/* デフォルトの余白を消すためのマージン指定 */
.p-category__ttl {
  margin: 0 0 32px;
  line-height: 1;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.24em;
}

.p-category__ttl span.is-blank {
  color: #B6B5B8;
}

.p-category__ttl p {
  margin: 16px auto 32px !important;
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .p-category__ttl {
    margin: 24px 0 40px;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 480px) {
  .p-category__ttl p {
  	font-size: 14px;
  }
}

/***** 商品件数・ソート *****/
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 72px;
}
.p-item-list-num {
  color: #797874;
  font-size: 12px;
}
.p-item-sort-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: bold;
}
.p-item-sort-list__item {
  margin-left: 16px;
}
.p-item-sort-list__item:first-child {
  margin-left: 0;
}
.p-item-sort-list__item a,
.p-item-sort-list__item span {
  position: relative;
  display: inline-block;
  margin: 4px 12px;
}

.p-item-sort-list__item a::before,
.p-item-sort-list__item span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1px;
  background: #30302E;
  transform-origin: left bottom;
  transform: scale(0, 1);
  transition: all 0.6s cubic-bezier(0,.71,.6,1);
}

.p-item-sort-list__item span {
  cursor: default;
}

.p-item-sort-list__item a:hover,
.p-item-sort-list__item span {
  color: #30302E;
  text-decoration: none;
}

.p-item-sort-list__item a:hover::before,
.p-item-sort-list__item span::before {
  right: 0;
  transform: scale(1, 1);
}