@charset "UTF-8";
em {
  font-style: normal;
}

/*/////////////////////////////////////////
//  一覧共通ヘッダー
/////////////////////////////////////////*/
.p-page-header {
  height: 261px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 60px;
  background-image: url("../images/product-list/list-header-back.svg");
  background-size: 839.96px 260.13px;
  background-position: 95% center;
  background-repeat: no-repeat;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-page-header {
    height: 36.15384615vw;
    margin-bottom: 32px;
    background-image: url("../images/product-list/list-header-back_sp.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.p-page-header .group-ttl {
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-page-header .group-ttl {
    font-size: 22px;
    letter-spacing: 0.03em;
  }
}
.p-page-header .filter-ttl .result-ttl {
  font-size: 35px;
  display: block;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-page-header .filter-ttl .result-ttl {
    font-size: 22px;
    letter-spacing: 0.03em;
  }
}
.p-page-header .filter-ttl .result-txt {
  font-size: 18px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-page-header .filter-ttl .result-txt {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}

/*/////////////////////////////////////////
//  最近チェックした商品
/////////////////////////////////////////*/
.p-product-checked {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-product-checked {
    padding-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-product-checked .p-product__ttl {
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-product-checked .p-product__ttl {
    font-size: 22px;
  }
}
.p-product-checked .c-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  width: 980px;
}
@media screen and (max-width: 767px) {
  .p-product-checked .c-item-list {
    width: 100%;
    gap: 32px 16px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-product-checked .c-item-list__item {
  width: calc((100% - 80px) / 5);
  padding: 0;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-product-checked .c-item-list__item {
    width: calc((100% - 16px) / 2);
  }
}
.p-product-checked .c-item-list__img {
  margin-bottom: 20px;
}
.p-product-checked .c-item-list__ttl {
  font-size: 16px;
  line-height: 1.625;
  color: #000000;
  font-weight:500;
}
.p-product-checked .c-item-list__price {
  font-size: 14px;
  color: #000000;
  text-align: right;
}

/*/////////////////////////////////////////
//  ページャー
/////////////////////////////////////////*/
.c-pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
}
.c-pager li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.c-pager li.current {
  background: #2e6e8b;
  color: #fff;
}
.c-pager li span,
.c-pager li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #236e8b;
  text-decoration: none;
}
.c-pager li a {
  transition: linear 0.3s all;
}
.c-pager li.num span {
  color: #fff;
}
.c-pager li.num a {
  color: #2e6e8b;
}
.c-pager li.num a:hover {
  background: #236e8b;
  color: #fff;
}
.c-pager li.prev {
  margin-right: 16px;
}
.c-pager li.prev span:before,
.c-pager li.prev a:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #236e8b;
  border-left: 1px solid #236e8b;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 2px;
}
.c-pager li.prev a:hover {
  background: #236e8b;
  color: #fff;
}
.c-pager li.prev a:hover:before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.c-pager li.prev .disabled {
  background: #d8d8d8;
  border: none;
}
.c-pager li.prev .disabled:before {
  content: "";
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.c-pager li.prev em {
  display: none;
}
.c-pager li.next {
  margin-left: 16px;
}
.c-pager li.next span:before,
.c-pager li.next a:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #236e8b;
  border-right: 1px solid #236e8b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 2px;
}
.c-pager li.next a:hover {
  background: #236e8b;
  color: #fff;
}
.c-pager li.next a:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.c-pager li.next .disabled {
  background: #d8d8d8;
  border: none;
}
.c-pager li.next .disabled:before {
  content: "";
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.c-pager li.next em {
  display: none;
}
.c-pager li.to-blog {
  width: 190px;
}
.c-pager li.to-blog a {
  width: 190px;
  border-radius: 50px;
  background: #2e6e8b;
  color: #fff;
  font-size: 18px;
}
.c-pager li.to-blog a:hover {
  background: rgb(52.3405405405, 125.1621621622, 158.1594594595);
}