/***** 商品件数・ソート *****/
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
@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-archive__ttl{
  padding: var(--space90) 0;
  background-image: url("https://file001.shop-pro.jp/PA01511/807/images/bg_archive.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-archive__ttl h1{
  font-size: var(--font34);
  letter-spacing: .1em;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}


.p-archive-items{
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat( 2, 1fr);
  gap: 30px 10px;
}

@media screen and (min-width: 768px) {
  .p-archive-items{
    grid-template-columns: repeat( 3, 1fr);
    gap: 40px 30px;
  }
}

.p-archive-item__ttl{
  margin-top: 20px;
}

.p-archive-item__ttl,
.p-archive-item__price,
.p-archive-item__expl
{
	line-height: 2;
    text-align: center;
}

