.arrow {
  width: 100%;
  height: 100%;
  display: block;
}

.arrow.--white .arrow__bar {
  background-color: #ffffff;
}

.arrow.--black .arrow__bar {
  background-color: #000;
}

.arrow .arrowInner {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.arrow .arrow__bar {
  position: absolute;
  height: 1px;
  display: block;
  border-radius: 1px;
}

.arrow .arrow__bar_1 {
  width: 100%;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 0) translateZ(0);
  transform: translate(0, 0) translateZ(0);
}

.arrow .arrow__bar_2 {
  width: 40%;
  bottom: 0;
  left: 100%;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translate(-100%, 0) rotate(45deg) translateZ(0);
  transform: translate(-100%, 0) rotate(45deg) translateZ(0);
}

.sortButton {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.sortButton .sortButton__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  text-align: left;
  position: relative;
  background-color: #ffffff;
  padding: 0.7vw 1.05vw;
  border-radius: 0.35vw;
  border: 0.07vw solid #000;
}

.sortButton .sortButton__icon {
  display: grid;
  width: 0.84vw;
  height: 0.84vw;
  grid-gap: 0.28vw;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.sortButton .sortButton__arrowLeft,
.sortButton .sortButton__arrowRight {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 0.84vw;
  height: 0.35vw;
}

.sortButton .sortButton__arrowLeft {
  -webkit-transform: rotate(0) scaleX(-1);
  transform: rotate(0) scaleX(-1);
}

.sortButton .sortButton__arrowRight {
  -webkit-transform: rotate(180deg) scaleX(-1);
  transform: rotate(180deg) scaleX(-1);
}

.sortButton .sortButton__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.05vw;
}

.sortButton .sortButton__list {
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  top: 99%;
  border: 0.07vw solid #000;
  border-radius: 0.35vw;
}

.sortButton .js-show {
  opacity: 1;
  visibility: visible;
}

.sortButton .sortButton__item {
  background: #f5f5f5;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0.7vw;
}

.sortButton .sortButton__item:first-child {
  border-top-left-radius: 0.35vw;
  border-top-right-radius: 0.35vw;
}

.sortButton .sortButton__item:last-child {
  border-bottom-left-radius: 0.35vw;
  border-bottom-right-radius: 0.35vw;
}

.sortButton .sortButton__item:not(:last-child) {
  border-bottom: 0.07vw solid transparent;
}

.sortButton .sortButton__item:hover {
  background: #ffffff;
}

.squareButton {
  width: 9.73vw;
  height: 3.06vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.84vw;
  font-style: normal;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

.squareButton.--black {
  background-color: #000;
  color: #ffffff;
  border: 1px solid #000;
}

.squareButton.--white {
  background-color: #ffffff;
  color: #000;
  border: 1px solid #ffffff;
}

.textBox {
  position: relative;
  width: 100%;
  height: 4.17vw;
  border-radius: 0.35vw;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ffffff;
}

.textBox.--gray {
  background-color: #f5f5f5;
}

.textBox.--white {
  background-color: #ffffff;
}

.textBox .textBox__input {
  width: 100%;
  height: 100%;
  padding-left: 1.05vw;
  padding-right: 3.82vw;
}

.textBox .textBox__input::-webkit-input-placeholder {
  font-size: 1.12vw;
  line-height: 1;
}

.textBox .textBox__input::-moz-placeholder {
  font-size: 1.12vw;
  line-height: 1;
}

.textBox .textBox__input:-ms-input-placeholder {
  font-size: 1.12vw;
  line-height: 1;
}

.textBox .textBox__input::-ms-input-placeholder {
  font-size: 1.12vw;
  line-height: 1;
}

.textBox .textBox__input::placeholder {
  font-size: 1.12vw;
  line-height: 1;
}

.textBox.is-error .textBox__error {
  visibility: visible;
}

.textBox .textBox__error {
  position: absolute;
  top: 100%;
  left: 0;
  width: 296px;
  height: 41px;
  display: block;
  z-index: 2;
  visibility: hidden;
}

.textBox .textBox__error img {
  width: 100%;
  height: 100%;
  display: block;
}

.textBox .textBox__button {
  position: absolute;
  top: 50%;
  width: 2.37vw;
  height: 2.37vw;
  right: 1.05vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.textBox .textBox__button svg {
  display: block;
  width: 100%;
  height: 100%;
}

.textBox .textBox__button svg circle {
  fill: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.textBox .textBox__button svg path {
  stroke: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sectionTitle_2 {
  position: relative;
  color: #000;
  font-style: normal;
  line-height: normal;
  font-family: "Kumbh Sans", sans-serif;
}

.sectionTitle_2.--large {
  font-weight: 300;
  font-size: 3.34vw;
  padding-left: 4.17vw;
}

.sectionTitle_2.--middle {
  font-weight: 400;
  font-size: 2.78vw;
  padding-left: 3.82vw;
}

.sectionTitle_2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.44vw;
  height: 1px;
  display: block;
  background-color: #000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.itemBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  color: #000;
  text-decoration: none;
}

.itemBlock .itemBlock__img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 0.35vw;
  margin-bottom: 0.84vw;
  overflow: hidden;
}

.itemBlock .itemBlock__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background-color: #ffffff;
}

.itemBlock .itemBlock__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.itemBlock .itemBlock__brand {
  margin-bottom: 0.28vw;
  font-size: 0.77vw;
  color: #505050;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.itemBlock .itemBlock__copy {
  display: block;
  width: 100%;
  height: auto;
  max-height: 2.71vw;
  margin-bottom: 1.19vw;
  font-size: 0.98vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.itemBlock .itemBlock__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.32vw;
  gap: 0.56vw;
}

.itemBlock .itemBlock__reviewText {
  font-size: 0.7vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.itemBlock .itemBlock__price {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  font-size: 1.19vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.itemBlock .itemBlock__price--unit {
  margin-right: 0.14vw;
  font-size: 0.84vw;
  font-weight: 700;
  line-height: 1.5;
}

.itemBlock .itemBlock__price--note {
  font-size: 0.77vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

/* 一覧カード：包装あり / のし可 / 温度帯 を横1行に並べる（各30%固定・隙間2.5%） */
.itemBlock .purchaseScreen__temperature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 2.5%;
  margin-top: 0.3vw;
}
.itemBlock .purchaseScreen__temperature > div {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  width: 32%;
  margin: 0;
}
/* 温度帯タグ：一回り小さく（内容幅＋やや小さめ文字） */
.itemBlock .purchaseScreen__temperature .tag2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
/* PC：温度帯・包装・のし の文字を一回り小さく（基準0.77vw→0.66vw）。スマホには適用しない */
@media screen and (min-width: 768px) {
  .itemBlock .purchaseScreen__temperature .tag2 .tag2__text {
    font-size: 0.66vw;
    padding: 0 0.42vw;
  }
  .itemBlock .purchaseScreen__temperature .tag3__text {
    font-size: 0.66vw;
  }
}
/* スマホ：包装あり / のし可 のアイコン(::before)を非表示 & 余白を0に */
@media screen and (max-width: 767px) {
  .itemBlock .purchaseScreen__temperature .tag3.--packing::before,
  .itemBlock .purchaseScreen__temperature .tag3.--noshika::before {
    display: none !important;
    background-image: none !important;
  }
  .itemBlock .purchaseScreen__temperature .tag3__text.--packing,
  .itemBlock .purchaseScreen__temperature .tag3__text.--noshika {
    padding: 0 5px !important;
    text-align: center !important;
  }
  /* 温度帯・包装・のし：スマホは vw を大きめに（基準2.94vw→2.4vw で統一） */
  .itemBlock .purchaseScreen__temperature .tag2 .tag2__text {
    font-size: 2.4vw;
    padding: 0 1.6vw;
  }
  .itemBlock .purchaseScreen__temperature .tag3__text {
    font-size: 2.4vw;
  }
}

.numPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.numPagination .numPagination__arrowLink {
  width: 1.39vw;
  height: 0.42vw;
}

.numPagination .numPagination__prev,
.numPagination .numPagination__next {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.39vw;
  height: 1.46vw;
}

.numPagination .numPagination__prev {
  -webkit-transform: rotate(0) scaleX(-1);
  transform: rotate(0) scaleX(-1);
}

.numPagination .numPagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.39vw;
}

.numPagination .numPagination__item {
  cursor: pointer;
}

.numPagination .numPagination__item a {
  position: relative;
  text-decoration: none;
}

.numPagination .numPagination__item a::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  height: 0.07vw;
}

.numPagination .numPagination__item .numPagination__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.05vw;
}

.numPagination .numPagination__item.is-active a::before {
  visibility: hidden;
}

.numPagination .numPagination__item.is-active .numPagination__text {
  font-weight: 700;
}

.reviewStar {
  width: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviewStar .reviewStar_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.07vw;
  margin-right: 0.56vw;
}

.reviewStar .reviewStar_inner span {
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../../assets/images/top/recommend/star.svg");
  mask-image: url("../../assets/images/top/recommend/star.svg");
}

.reviewStar .reviewStar_inner span.--small {
  width: 1.12vw;
  height: 1.12vw;
}

.reviewStar .reviewStar_inner span.--large {
  width: 1.46vw;
  height: 1.46vw;
}

.reviewStar .reviewStar_text {
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.reviewStar .reviewStar_text.--small {
  font-size: 12px;
}

.reviewStar .reviewStar_text.--large {
  font-size: 15px;
  margin-right: 10px;
}

.searchBox {
  position: relative;
  width: 100%;
  height: 4.17vw;
  border-radius: 0.35vw;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  overflow: hidden;
}

.searchBox.--gray {
  background-color: #f5f5f5;
}

.searchBox.--white {
  background-color: #ffffff;
}

.searchBox .searchBox__input {
  width: 100%;
  height: 100%;
  padding-left: 1.05vw;
  padding-right: 3.82vw;
}

.searchBox .searchBox__button {
  position: absolute;
  top: 50%;
  width: 2.37vw;
  height: 2.37vw;
  right: 1.05vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.searchBox .searchBox__button svg {
  display: block;
  width: 100%;
  height: 100%;
}

.searchBox .searchBox__button svg circle {
  fill: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.searchBox .searchBox__button svg path {
  stroke: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tag {
  display: inline-grid;
  text-decoration: none;
  padding: 0.35vw 0.7vw;
  border: 0.07vw solid #505050;
  border-radius: 1.05vw;
}

.tag .tag__text {
  color: #505050;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-size: 0.84vw;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 90.28vw;
}

.breadcrumb .breadcrumb__item {
  position: relative;
}

.breadcrumb .breadcrumb__item:first-child {
  padding-left: 1.12vw;
}

.breadcrumb .breadcrumb__item:first-child::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.77vw;
  height: 0.77vw;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.breadcrumb .breadcrumb__item:not(:last-child) {
  padding-right: 2.16vw;
}

.breadcrumb .breadcrumb__item:not(:last-child):after {
  content: ">";
  position: absolute;
  top: 0;
  right: 0.84vw;
  font-size: 0.77vw;
}

.breadcrumb .breadcrumb__link {
  text-decoration: none;
}

.breadcrumb .breadcrumb__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-decoration: none;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 0.77vw;
  border-bottom: 0.14vw solid transparent;
}

.search {
  background-color: #f1efec;
}

.search .search__wrap {
  display: grid;
  padding: 6.95vw 0;
  grid-template-columns: 33.34vw 33.34vw;
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 0 8.34vw;
  max-width: 75vw;
  margin: 0 auto;
}

.search .search__formBlock {
  grid-area: 1/1/2/2;
}

.search .search__title {
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.25vw;
  font-size: 1.46vw;
}

.search .search__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.84vw;
  grid-area: 2/1/3/2;
  margin: 3.06vw 0 0.7vw;
}

.search .search__price {
  margin-top: 3.48vw;
  grid-area: 2/2/3/3;
}

.search .search__priceCopy {
  margin-bottom: 0.7vw;
  font-size: 0.98vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.search .search__priceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search .search__priceItem {
  width: 10.56vw;
  height: 2.78vw;
  font-size: 0.84vw;
  border-radius: 0.35vw;
  border: 1px solid #000;
}

.search .search__priceItem a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
}

.search__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.98vw 0;
}

.layouts-wrap {
  padding-top: 113px;
}

.collectionTitle {
  border-bottom: 0.07vw solid #d9d9d9;
}

.collectionTitle .collectionTitle__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3.48vw 0 3.48vw;
}

.collectionTitle .collectionTitle__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.81vw;
  height: 1.81vw;
}

.collectionTitle .collectionTitle__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.74vw;
  margin-top: 0.14vw;
}

.productList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.productList .productList__inner {
  margin-top: 40px;
  width: 100%;
  max-width: 88.89vw;
}

.productList .productList__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productList .productList__count {
  color: #505050;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.91vw;
}

.productList .productList__sortButton {
  min-width: 11.12vw;
}

.productList .productList__main {
  margin: 2.78vw 0 9.59vw;
}

.productList .productList__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.48vw 3.47vw;
}

.productList .productList__item {
  max-width: 15vw;
}

.productList .productList__pagination {
  margin-top: 5.63vw;
}

.productList .productList__list--notSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6.25vw 0;
}

.productList .notSearch__icon {
  width: 8.34vw;
  height: 8.34vw;
}

.productList .notSearch__text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.91vw;
  margin-top: 1.39vw;
}

.sold_out {
  text-align : center;
  font-weight: 600;
	border: 1px solid #000;
   padding : 5px;  
}


@media screen and (min-width: 1100px) {
  .squareButton {
    width: 140px;
    height: 44px;
    font-size: 12px;
  }
}

@media screen and (min-width: 1760px) {
  .sortButton .sortButton__button {
    padding: 12.2px 18.3px;
    border-radius: 6.1px;
    border: 1.22px solid #000;
  }

  .sortButton .sortButton__icon {
    width: 14.64px;
    height: 14.64px;
    grid-gap: 4.88px;
  }

  .sortButton .sortButton__arrowLeft,
  .sortButton .sortButton__arrowRight {
    width: 14.64px;
    height: 6.1px;
  }

  .sortButton .sortButton__text {
    font-size: 18.3px;
  }

  .sortButton .sortButton__list {
    border: 1.22px solid #000;
    border-radius: 6.1px;
  }

  .sortButton .sortButton__item {
    padding: 12.2px;
  }

  .sortButton .sortButton__item:first-child {
    border-top-left-radius: 6.1px;
    border-top-right-radius: 6.1px;
  }

  .sortButton .sortButton__item:last-child {
    border-bottom-left-radius: 6.1px;
    border-bottom-right-radius: 6.1px;
  }

  .sortButton .sortButton__item:not(:last-child) {
    border-bottom: 1.22px solid transparent;
  }

  .textBox {
    height: 73.2px;
    border-radius: 6.1px;
  }

  .textBox .textBox__input {
    padding-left: 18.3px;
    padding-right: 67.1px;
  }

  .textBox .textBox__input::-webkit-input-placeholder {
    font-size: 19.52px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .textBox .textBox__input::-moz-placeholder {
    font-size: 19.52px;
    transform: translateY(0);
  }

  .textBox .textBox__input:-ms-input-placeholder {
    font-size: 19.52px;
    transform: translateY(0);
  }

  .textBox .textBox__input::-ms-input-placeholder {
    font-size: 19.52px;
    transform: translateY(0);
  }

  .textBox .textBox__input::placeholder {
    font-size: 19.52px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .textBox .textBox__button {
    width: 41.48px;
    height: 41.48px;
    right: 18.3px;
  }

  .sectionTitle_2.--large {
    font-size: 58.56px;
    padding-left: 73.2px;
  }

  .sectionTitle_2 {
    padding-left: 73.2px;
  }

  .sectionTitle_2.--large {
    font-size: 58.56px;
    padding-left: 73.2px;
  }

  .sectionTitle_2.--middle {
    font-size: 48.8px;
    padding-left: 67.1px;
  }

  .sectionTitle_2::before {
    width: 42.7px;
    height: 1.22px;
  }

  .itemBlock .itemBlock__img {
    margin-bottom: 14.64px;
    border-radius: 6.1px;
  }

  .itemBlock .itemBlock__brand {
    margin-bottom: 4.88px;
    font-size: 13.42px;
  }

  .itemBlock .itemBlock__copy {
    max-height: 47.58px;
    margin-bottom: 20.74px;
    font-size: 17.08px;
  }

  .itemBlock .itemBlock__review {
    margin-bottom: 23.18px;
    gap: 9.76px;
  }

  .itemBlock .itemBlock__reviewText {
    font-size: 12.2px;
  }

  .itemBlock .itemBlock__price {
    font-size: 20.74px;
  }

  .itemBlock .itemBlock__price--unit {
    margin-right: 2.44px;
    font-size: 14.64px;
  }

  .itemBlock .itemBlock__price--note {
    font-size: 13.42px;
  }

  .numPagination .numPagination__arrowLink {
    width: 24.4px;
    height: 7.32px;
  }

  .numPagination .numPagination__prev,
  .numPagination .numPagination__next {
    width: 24.4px;
    height: 25.62px;
  }

  .numPagination .numPagination__list {
    gap: 24.4px;
  }

  .numPagination .numPagination__item a::before {
    height: 1.22px;
  }

  .numPagination .numPagination__item .numPagination__text {
    font-size: 18.3px;
  }

  .reviewStar .reviewStar_inner {
    gap: 1.22px;
    margin-right: 9.76px;
  }

  .reviewStar .reviewStar_inner span.--small {
    width: 19.52px;
    height: 19.52px;
  }

  .reviewStar .reviewStar_inner span.--large {
    width: 25.62px;
    height: 25.62px;
  }

  .searchBox {
    height: 73.2px;
    border-radius: 6.1px;
  }

  .searchBox .searchBox__input {
    padding-left: 18.3px;
    padding-right: 67.1px;
  }

  .searchBox .searchBox__button {
    width: 41.48px;
    height: 41.48px;
    right: 18.3px;
  }

  .tag {
    padding: 6.1px 12.2px;
    border: 1.22px solid #505050;
    border-radius: 18.3px;
  }

  .tag .tag__text {
    font-size: 14.64px;
  }

  .breadcrumb {
    min-width: 1586px;
  }

  .breadcrumb .breadcrumb__item:first-child {
    padding-left: 19.52px;
  }

  .breadcrumb .breadcrumb__item:first-child::before {
    width: 13.42px;
    height: 13.42px;
  }

  .breadcrumb .breadcrumb__item:not(:last-child) {
    padding-right: 37.82px;
  }

  .breadcrumb .breadcrumb__item:not(:last-child):after {
    right: 14.64px;
    font-size: 13.42px;
  }

  .breadcrumb .breadcrumb__text {
    font-size: 13.42px;
    border-bottom: 2.44px solid transparent;
  }

  .search .search__wrap {
    margin: 0 auto;
    grid-template-columns: 585.6px 585.6px;
    padding: 122px 0;
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 0 146.4px;
    max-width: 1317.6px;
  }

  .search .search__title {
    margin-bottom: 21.96px;
    font-size: 25.62px;
  }

  .search .search__tag {
    gap: 14.64px;
    margin: 53.68px 0 12.2px;
  }

  .search .search__price {
    margin-top: 61px;
  }

  .search .search__priceCopy {
    margin-bottom: 12.2px;
    font-size: 17.08px;
  }

  .search .search__priceItem {
    width: 185.44px;
    height: 48.8px;
    font-size: 14.64px;
    border-radius: 6.1px;
  }

  .search__breadcrumb {
    padding: 17.08px 0;
  }

  .collectionTitle {
    border-bottom: 1.22px solid #d9d9d9;
  }

  .collectionTitle .collectionTitle__inner {
    padding: 61px 0 61px;
  }

  .collectionTitle .collectionTitle__icon {
    width: 31.72px;
    height: 31.72px;
  }

  .collectionTitle .collectionTitle__text {
    font-size: 30.5px;
    margin-top: 2.44px;
  }

  .productList .productList__inner {
    max-width: 1561.6px;
  }

  .productList .productList__count {
    font-size: 15.86px;
  }

  .productList .productList__sortButton {
    min-width: 195.2px;
  }

  .productList .productList__main {
    margin: 48.8px 0 168.36px;
  }

  .productList .productList__list {
    gap: 61px 60.878px;
  }

  .productList .productList__item {
    max-width: 263.52px;
  }

  .productList .productList__pagination {
    margin-top: 98.82px;
  }

  .productList .productList__list--notSearch {
    padding: 109.8px 0;
  }

  .productList .notSearch__icon {
    width: 146.4px;
    height: 146.4px;
  }

  .productList .notSearch__text {
    font-size: 15.86px;
    margin-top: 24.4px;
  }
}

@media screen and (max-width: 1099px) {
  .layouts-wrap {
    padding-top: 7.85vw;
  }
}

@media screen and (max-width: 767px) {
  .sortButton .sortButton__button {
    padding: 2.67vw 4vw;
    border-radius: 1.34vw;
    border: 0.27vw solid #000;
  }

  .sortButton .sortButton__icon {
    width: 3.2vw;
    height: 3.2vw;
    grid-gap: 1.07vw;
  }

  .sortButton .sortButton__arrowLeft,
  .sortButton .sortButton__arrowRight {
    width: 3.2vw;
    height: 1.34vw;
  }

  .sortButton .sortButton__text {
    font-size: 3.47vw;
  }

  .sortButton .sortButton__list {
    border: 0.27vw solid #000;
    border-radius: 1.34vw;
  }

  .sortButton .sortButton__item {
    padding: 2.67vw;
  }

  .sortButton .sortButton__item:first-child {
    border-top-left-radius: 1.34vw;
    border-top-right-radius: 1.34vw;
  }

  .sortButton .sortButton__item:last-child {
    border-bottom-left-radius: 1.34vw;
    border-bottom-right-radius: 1.34vw;
  }

  .sortButton .sortButton__item:not(:last-child) {
    border-bottom: 0.27vw solid transparent;
  }

  .squareButton {
    width: 84vw;
    height: 16vw;
    font-size: 4.54vw;
  }

  .squareButton.--black {
    border: 0.27vw solid #000;
  }

  .squareButton.--white {
    border: 0.27vw solid #000;
  }

  .textBox {
    height: 13.34vw;
    border-radius: 1.34vw;
    border: 0px;
  }

  .textBox .textBox__input {
    padding-left: 4vw;
    padding-right: 14.67vw;
  }

  .textBox .textBox__input::-webkit-input-placeholder {
    font-size: 4.27vw;
    -webkit-transform: translateY(0.54vw);
    transform: translateY(0.54vw);
  }

  .textBox .textBox__input::-moz-placeholder {
    font-size: 4.27vw;
    transform: translateY(0.54vw);
  }

  .textBox .textBox__input:-ms-input-placeholder {
    font-size: 4.27vw;
    transform: translateY(0.54vw);
  }

  .textBox .textBox__input::-ms-input-placeholder {
    font-size: 4.27vw;
    transform: translateY(0.54vw);
  }

  .textBox .textBox__input::placeholder {
    font-size: 4.27vw;
    -webkit-transform: translateY(0.54vw);
    transform: translateY(0.54vw);
  }

  .textBox .textBox__button {
    width: 9.07vw;
    height: 9.07vw;
    right: 2.67vw;
  }

  .sectionTitle_2 {
    padding-left: 5.34vw;
  }

  .sectionTitle_2.--large {
    font-size: 8.54vw;
  }

  .sectionTitle_2.--middle {
    font-size: 6.67vw;
  }

  .sectionTitle_2::before {
    width: 3.2vw;
  }

  .itemBlock .itemBlock__img {
    border-radius: 1.34vw;
    margin-bottom: 3.2vw;
  }

  .itemBlock .itemBlock__brand {
    margin-bottom: 1.07vw;
    font-size: 2.94vw;
  }

  .itemBlock .itemBlock__copy {
    max-height: 10.4vw;
    margin-bottom: 1.07vw;
    font-size: 3.47vw;
  }

  .itemBlock .itemBlock__review {
    margin-bottom: 3.2vw;
    gap: 1.66vw;
  }

  .itemBlock .itemBlock__reviewText {
    font-size: 2.67vw;
  }

  .itemBlock .itemBlock__price {
    font-size: 4.54vw;
  }

  .itemBlock .itemBlock__price--unit {
    margin-right: 0.54vw;
    font-size: 3.2vw;
  }

  .itemBlock .itemBlock__price--note {
    font-size: 2.94vw;
  }

  .numPagination .numPagination__arrowLink {
    width: 5.34vw;
    height: 1.6vw;
  }

  .numPagination .numPagination__prev,
  .numPagination .numPagination__next {
    width: 5.34vw;
    height: 5.6vw;
  }

  .numPagination .numPagination__list {
    gap: 5.34vw;
  }

  .numPagination .numPagination__item:nth-child(n+6):nth-child(-n+9) {
    display: none;
  }

  .numPagination .numPagination__item a::before {
    height: 0.27vw;
  }

  .numPagination .numPagination__item .numPagination__text {
    font-size: 4vw;
  }

  .reviewStar .reviewStar_inner {
    gap: 0.22vw;
    margin-right: 1.6vw;
  }

  .reviewStar .reviewStar_inner span.--small {
    width: 3.2vw;
    height: 3.2vw;
  }

  .reviewStar .reviewStar_inner span.--large {
    width: 5.87vw;
    height: 5.87vw;
  }

  .reviewStar .reviewStar_text.--small {
    font-size: 3.2vw;
  }

  .reviewStar .reviewStar_text.--large {
    font-size: 4vw;
  }

  .searchBox {
    height: 13.34vw;
    border-radius: 1.34vw;
    border: 0px;
  }

  .searchBox .searchBox__input {
    padding-left: 4vw;
    padding-right: 14.67vw;
  }

  .searchBox .searchBox__button {
    width: 9.07vw;
    height: 9.07vw;
    right: 2.67vw;
  }

  .tag {
    padding: 1.34vw 2.67vw;
    border-radius: 4vw;
  }

  .tag .tag__text {
    font-size: 3.2vw;
  }

  .breadcrumb {
    min-width: 84vw;
  }

  .breadcrumb .breadcrumb__item:first-child {
    padding-left: 4.27vw;
  }

  .breadcrumb .breadcrumb__item:first-child::before {
    width: 2.94vw;
    height: 2.94vw;
  }

  .breadcrumb .breadcrumb__item:not(:last-child) {
    padding-right: 8.27vw;
  }

  .breadcrumb .breadcrumb__item:not(:last-child):after {
    right: 3.2vw;
    font-size: 2.94vw;
  }

  .breadcrumb .breadcrumb__text {
    font-size: 2.94vw;
    border-bottom: 0.54vw solid transparent;
  }

  .search .search__wrap {
    padding: 10.67vw 0;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    max-width: 84vw;
    margin: 0 auto;
  }

  .search .search__formBlock {
    grid-area: 1/1/2/2;
  }

  .search .search__title {
    margin-bottom: 4vw;
    font-size: 4.54vw;
  }

  .search .search__tag {
    gap: 2.14vw;
    margin-top: 5.34vw;
    grid-area: 3/1/4/2;
  }

  .search .search__form {
    margin-bottom: 5.34vw;
  }

  .search .search__price {
    grid-area: 4/1/5/2;
    margin-top: 13.34vw;
  }

  .search .search__priceCopy {
    margin-bottom: 2.67vw;
    font-size: 3.47vw;
  }

  .search .search__priceList {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.6vw;
  }

  .search .search__priceItem {
    width: 41.07vw;
    height: 10.67vw;
    font-size: 3.2vw;
    border-radius: 1.34vw;
  }

  .search__breadcrumb {
    padding: 1.87vw 0;
  }

  .layouts-wrap {
    padding-top: 27.47vw;
  }

  .collectionTitle {
    border-bottom: 0.27vw solid #d9d9d9;
  }

  .collectionTitle .collectionTitle__inner {
    padding: 9.87vw 0 9.87vw;
  }

  .collectionTitle .collectionTitle__icon {
    width: 6.94vw;
    height: 6.94vw;
  }

  .collectionTitle .collectionTitle__text {
    font-size: 6.67vw;
    margin-top: 0.54vw;
  }

  .productList .productList__inner {
    max-width: 100%;
    padding: 0 5.34vw;
  }

  .productList .productList__count {
    font-size: 3.47vw;
  }

  .productList .productList__sortButton {
    min-width: 42.67vw;
  }

  .productList .productList__main {
    margin: 10.67vw 0 24vw;
  }

  .productList .productList__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10.67vw 5.34vw;
  }

  .productList .productList__item {
    max-width: 42.67vw;
  }

  .productList .productList__pagination {
    margin-top: 16vw;
  }

  .productList .productList__list--notSearch {
    padding: 24vw 0;
  }

  .productList .notSearch__icon {
    width: 32vw;
    height: 32vw;
  }

  .productList .notSearch__text {
    font-size: 3.47vw;
    margin-top: 5.34vw;
  }
}

@media (hover: hover) {
  .sortButton {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .sortButton:hover .sortButton__arrowLeft {
    -webkit-transform: rotate(0) scaleX(-1) translateX(1px);
    transform: rotate(0) scaleX(-1) translateX(1px);
  }

  .sortButton:hover .sortButton__arrowRight {
    -webkit-transform: rotate(180deg) scaleX(-1) translateX(1px);
    transform: rotate(180deg) scaleX(-1) translateX(1px);
  }

  .squareButton {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .squareButton:hover.--black {
    background-color: #ffffff;
    color: #000;
  }

  .squareButton:hover.--white {
    background-color: #000;
    color: #ffffff;
  }

  .textBox .textBox__button {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .textBox .textBox__button:hover svg circle {
    fill: #ffffff;
  }

  .textBox .textBox__button:hover svg path {
    stroke: #000;
  }

  .itemBlock {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .itemBlock:hover {
    color: #000;
  }

  .itemBlock:hover .itemBlock__img img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }

  .itemBlock:hover .itemBlock__copy {
    text-decoration: underline;
  }

  .numPagination .numPagination__item a {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .numPagination .numPagination__item a:hover::before {
    opacity: 0;
  }

  .searchBox .searchBox__button {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .searchBox .searchBox__button:hover svg circle {
    fill: #ffffff;
  }

  .searchBox .searchBox__button:hover svg path {
    stroke: #000;
  }

  .tag {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .tag:hover {
    background-color: #000;
  }

  .tag:hover .tag__text {
    color: #ffffff;
  }

  .search .search__priceItem a {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .search .search__priceItem a:hover {
    background-color: #000;
    color: #ffffff;
  }
}