.container {
  max-width: 1000px;
}

/* Archive Header */
.archive-header {
  margin: 40px auto;
  padding: 0 1.4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-header__title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 400;
  font-family: 'Sintony', sans-serif;
  font-size: 20px;
}
.sort {
  display: flex;
  list-style: none;
  margin: 0;
}
.sort li {
  margin: 0;
  padding: 0 15px;
  line-height: 1;
  border-right: 1px solid #444;
}
.sort li:last-child {
  border: 0;
  padding-right: 0;
}
.sort li a {
  color: #aaa;
}
/* --------------------------- Archive Header SP */
@media (max-width: 768px) {
  .archive-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }
  .archive-header__title {
    margin-bottom: 20px;
  }
 .sort li:first-child {
    padding-left: 0;
  }
}

/* Items List */
.prd-lst-unit {
  margin-bottom: 50px;
}
.items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.items-section {
  padding: 0 3.5%;
}
.items-section:nth-child(3) {
  margin-right: 0;
}
.items-section img {
  transition: .5s;
}
.items-section a {
  display: block;
  color: #666;
  transition: .5s;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}
.items-section a:hover {
  opacity: .7;
}
.items-section a:hover img {
  transform: scale(1.05);
}
.items-section__img {
  margin-bottom: 20px;
  overflow: hidden;
}
.items-section__title {
  margin: 0 0 10px;
  font-size: 16px;
  color: #000;
  font-weight: normal;
}
.items-section__price {
  margin-bottom: 20px;
  font-size: 14px;
}
.items-section__btn {
  display: inline-block;
  padding: 10px 60px;
  border: 1px solid #db9a1f;
  border-radius: 30px;
  color: #d5ae3e !important;
  transition: .5s;
}
.items-section a:hover .items-section__btn {
  background: #db9a1f;
  color: #fff !important;
  opacity: 1 !important;
}
/* --------------------------- Items List SP */
@media (max-width: 768px) {
  .prd-lst-unit {
    margin-bottom: 20px;
  }
  .items {
    display: block;
  }
}

/* Pager */
.pager {
  display: flex;
  justify-content: center;
  margin: 40px 0 60px;
}
.pager li + li {
  margin-left: 1em;
}
.pager li span {
  color: #aaa;
}
/* --------------------------- Pager SP */
@media (max-width: 768px) {

}
