.pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  padding: 0 !important;
  right: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 0 0.42vw;
}

.pagination .paginationWrapper {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 1/1 !important;
}

.pagination .paginationButton {
  position: relative !important;
  width: 0.42vw !important;
  height: 0.42vw !important;
  width: auto;
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0px;
  background-color: transparent;
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
  opacity: 1;
  margin: 0;
  -webkit-transition: -webkit-transform 0.3s ease !important;
  transition: -webkit-transform 0.3s ease !important;
  transition: transform 0.3s ease !important;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
  overflow: visible !important;
}

.pagination .paginationButton svg {
  position: absolute;
  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: 0.42vw;
  height: 0.42vw;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  stroke: #ffffff;
}

.pagination .paginationButton.is-active {
  background-color: transparent !important;
}

.pagination .paginationButton.is-active svg rect {
  fill: #000;
  stroke: #000;
}

.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;
}

.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);
}

.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;
}

.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;
}

.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: 4px;
  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: inline-block;
  -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: 500;
  line-height: 1.2;
  text-align: left;
  width:100%;
}

.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;
}

.itemBlock2 .itemBlock2__image {
  overflow: hidden;
}

.itemBlock2 .itemBlock2__image img {
  width: 100%;
  -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;
}

.itemBlock2 .itemBlock2__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  gap: 0.7vw;
  margin-top: 1.39vw;
}

.itemBlock2 .itemBlock2__linkText {
  color: #000;
  text-align: right;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.itemBlock2 .itemBlock2__linkArrow {
  width: 2.02vw;
  height: 0.49vw;
}

.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;
}

.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: 0.8vw;
}

.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;
}

.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;
}

.iconButton1 {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: #000;
  padding: 0.63vw 6.25vw;
  stroke-width: 0.07vw;
  border: 0.11vw solid #000;
}

.iconButton1::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../../assets/images/collection/icon_link.svg");
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.77vw;
  height: 0.77vw;
  right: 0.98vw;
}

.iconButton1 .iconButton1__link {
  text-decoration: none;
}

.iconButton1 .iconButton1__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  font-size: 0.84vw;
}

.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: 2.5vw;
  padding-left: 4.17vw;
}

.sectionTitle_2.--middle {
  font-weight: 400;
  font-size: 2vw;
  padding-left: 3vw;
}

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

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

.heading .heading__main {
  position: relative;
  height: 29.17vw;
}

.heading .heading__main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 90%;
  background-position-x: center;
  background-image: url("../../assets/images/collection/heading/sapporo-nougakkou/bg-pc.png");
}

.heading .heading__title {
  position: absolute;
  top: 47%; /* 50% */
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 23.75vw;
  /* height: 2.99vw; */
}

.heading .heading__sub {
  margin: 0 auto 0;
  max-width: 75vw;
}

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

.heading .heading__button {
  width: 21.88vw;
  height: 2.78vw;
  margin-top: 2.78vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.78vw auto 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.attentionList {
  position: relative;
  margin: 4.17vw 0 0 0;
}

.attentionList .attentionList__wrap {
  width: calc(44.45vw + 50%);
  margin: 0 0 0 auto;
}

.attentionList .attentionList__slider {
  width: 100%;
}

.attentionList .attentionList__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.attentionList .attentionList__item {
  cursor: pointer;
  max-width: 27.09vw;
  min-width: 27.09vw;
  margin-right: 1.05vw;
}

.attentionList .attentionList__pagination {
  width: auto;
  margin-top: 2.78vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0.35vw;
}

.attentionList .attentionList__sub {
  display: grid;
}

.attentionList .attentionList__linkBlock {
  display: none;
}

.attentionList .attentionList__link {
  display: none;
}

.attentionList .attentionList__sliderArrow {
  height: 100%;
  right: auto;
  left: auto;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0);
}

.attentionList .attentionList__sliderArrow--right {
  width: calc(100% - 1150px);
  left: auto;
  right: 0;
}

.attentionList .attentionList__sliderArrow--left {
  display: none;
  width: calc(50% - 990px);
}

.attentionList .attentionList__sliderArrowInner {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.attentionList .attentionList__sliderArrowCircle {
  position: fixed;
  top: 11.46vw;
  right: 10.07vw;
  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;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  -webkit-transition: opacity 0.54s ease;
  transition: opacity 0.54s ease;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  width: 60px;
  height: 60px;
}

.attentionList .attentionList__sliderArrowCircleArrow {
  width: 21px;
  height: 8px;
  display: block;
}

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

.productList .productList__inner {
  width: 100%;
  /*margin-top: 8.34vw; 202412/02 */
  max-width: 88.89vw;
}

.productList .productList__title {
  width: 100%;
}

.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__sortButton {
  min-width: 7.12vw;
}

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

.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: 0;
  /* 6.25vw 0*/
}
.active .sortButton .sortButton__button{
  background-color: black;
}
.active .sortButton .sortButton__button span{
  color: white;
}
.productList .notSearch__icon {
  width: 8.34vw;
  height: 5.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;
}

@media screen and (min-width: 1100px) {
  .squareButton {
    width: 140px;
    height: 44px;
    font-size: 12px;
  }
  .sortButton .sortButton__text {
    font-size: 0.7vw;
  }
  .productList .productList__sortButton {
    min-width: 7.0vw;
  }
}

@media screen and (hover: hover) and (min-width: 1760px) {
  .pagination .paginationButton:hover svg {
    width: 9.516px;
    height: 9.516px;
  }
}

@media screen and (min-width: 1760px) {
  .pagination {
    gap: 0 7.32px;
  }

  .pagination .paginationButton {
    width: 7.32px !important;
    height: 7.32px !important;
  }

  .pagination .paginationButton svg {
    width: 7.32px;
    height: 7.32px;
  }

  .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;
  }

  .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;
  }

  .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;
  }

  .itemBlock2 .itemBlock2__link {
    gap: 12.2px;
    margin-top: 24.4px;
  }

  .itemBlock2 .itemBlock2__linkArrow {
    width: 35.38px;
    height: 8.54px;
  }

  .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;
  }

  .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: 12.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;
  }

  .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;
  }

  .iconButton1 {
    padding: 10.98px 109.8px;
    stroke-width: 1.22px;
    border: 1.83px solid #000;
  }

  .iconButton1::before {
    width: 13.42px;
    height: 13.42px;
    right: 17.08px;
  }

  .iconButton1 .iconButton1__text {
    font-size: 14.64px;
  }

  .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;
  }

  .heading .heading__main {
    height: 512.4px;
    
  }

  .heading .heading__main::before {
    background-position: bottom;
  }

  .heading .heading__title {
    width: 417.24px;
    height: 52.46px;
  }

  .heading .heading__sub {
    margin: 48.8px auto 0;
    max-width: 1317.6px;
  }

  .heading .heading__copy {
    font-size: 18.3px;
  }

  .heading .heading__button {
    width: 384.3px;
    height: 48.8px;
    margin: 48.8px auto 0;
  }

  .attentionList {
    margin: 73.2px 0 0 0;
  }

  .attentionList .attentionList__wrap {
    width: calc(780px + 50%);
  }

  .attentionList .attentionList__sliderContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .attentionList .attentionList__item {
    max-width: 475.8px;
    min-width: 475.8px;
    margin-right: 18.3px;
  }

  .attentionList .attentionList__pagination {
    margin-top: 48.8px;
    padding-left: 6.1px;
  }

  .attentionList .attentionList__sliderArrow--right {
    width: calc(100% - 1403px);
    left: auto;
    right: 0;
  }

  .attentionList .attentionList__sliderArrowCircle {
    width: 73.2px;
    height: 73.2px;
    top: 203.74px;
    right: auto;
  }

  .productList .productList__inner {
    /*margin-top: 146.4px; 202412/02 */
    max-width: 1561.6px;
  }

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

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

  .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: 5.56vw;
  }
}

@media screen and (max-width: 767px) {
  .pagination {
    gap: 0 1.6vw;
  }

  .pagination .paginationButton svg {
    width: 1.6vw;
    height: 1.6vw;
  }

  .pagination .paginationButton {
    width: 1.6vw !important;
    height: 1.6vw !important;
  }

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

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

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

  .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;
  }

  .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;
  }

  .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;
    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;
  }

  .itemBlock2 .itemBlock2__link {
    display: none;
  }

  .itemBlock2 .itemBlock2__linkArrow {
    width: 7.74vw;
    height: 1.87vw;
  }

  .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;
  }

  .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.0vw;
  }

  .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;
  }

  .sortButton .sortButton__text {
    font-size: 2.2vw;
  }
  .sortButton .sortButton__button {
    padding: 1.2vw 4vw;
  }
  .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;
  }

  .iconButton1 {
    padding: 2.4vw 24vw;
    stroke-width: 0.27vw;
    border: 0.4vw solid #000;
  }

  .iconButton1::before {
    width: 2.94vw;
    height: 2.94vw;
    right: 3.74vw;
  }

  .iconButton1 .iconButton1__text {
    font-size: 3.2vw;
  }

  .sectionTitle_2 {
    padding-left: 5.34vw;
  }

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

  .sectionTitle_2.--middle {
    font-size: 5.5vw;
    padding-left: 5vw;
  }

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

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

  .heading .heading__main {
    height: 64vw;
  }
  .heading .heading__main.brand {
    height: 58vw;
  }
  .heading .heading__main.brand .heading__title {
    top: 52%;
  }
  .heading .heading__main::before {
    background-image: url("../../assets/images/collection/heading/sapporo-nougakkou/bg-sp.png");
  }

  .heading .heading__main.notBrand::before {
    background-size: 100%;
  }
  .heading .heading__main.notBrand {
    height: 124.5vw !important;
  }

  .heading .heading__title {
    width: 53.07vw;
   /* height: 6.67vw; */
  }

  .heading .heading__sub {
    max-width: 100%;
    height: 100%;
    margin: 5.34vw 8vw 5.34vw;
  }
  .productList .productList__inner {
    margin-top: 20px;
  }
  .heading .heading__copy {
    font-size: 3.47vw;
    line-height: 1.6;
  }

  .heading .heading__button {
    width: 100%;
    height: 10.67vw;
    margin-top: 8vw;
  }

  .attentionList {
    margin: 16vw 0 0 0;
  }

  .attentionList .attentionList__wrap {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .attentionList .attentionList__slider {
    position: relative;
  }

  .attentionList .attentionList__item {
    max-width: 100%;
    min-width: 100%;
    margin-right: 0;
  }

  .attentionList .attentionList__pagination {
    position: absolute;
    bottom: 1.34vw;
  }

  .attentionList .attentionList__sub {
    padding: 0 5.34vw;
  }

  .attentionList .attentionList__linkBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
  }

  .attentionList .attentionList__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    gap: 2.67vw;
    margin-top: 5.34vw;
  }

  .attentionList .attentionList__linkText {
    color: #000;
    text-align: right;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .attentionList .attentionList__linkArrow {
    width: 7.74vw;
    height: 1.87vw;
  }

  .attentionList .attentionList__sliderArrow--right {
    display: none;
  }

  .productList .productList__inner {
    max-width: 100%;
    padding: 0 5.34vw;
    /*margin-top: 23.74vw;  202412/02 */
  }

  .productList .productList__title {
    /*margin: 0 -5.33vw; 20241202*/
  }

  .productList .productList__sub {
    margin-top: 5.34vw;
  }

  .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) {
  .pagination .paginationButton {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .pagination .paginationButton:hover svg {
    width: 0.546vw;
    height: 0.546vw;
  }

  .pagination .paginationButton:hover svg rect {
    fill: #000;
    stroke: #000;
  }

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

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

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

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

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

  .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;
  }

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

  .itemBlock2:hover .itemBlock2__image img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }

  .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;
  }

  .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);
  }


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

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

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

  .iconButton1:hover {
    background: #ffffff;
  }

  .iconButton1:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Group 244'%3E%3Crect id='Rectangle 78' x='1' y='4' width='8' height='8' rx='2' fill='white' stroke='black'/%3E%3Crect id='Rectangle 79' x='4' y='1' width='8' height='8' rx='2' fill='white' stroke='black'/%3E%3C/g%3E%3C/svg%3E");
  }

  .iconButton1:hover .iconButton1__text {
    color: #000;
  }

  .attentionList .attentionList__sliderArrow--right {
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }

  .attentionList .attentionList__sliderArrow--right:hover .attentionList__sliderArrowCircle {
    opacity: 1;
  }
}

.heading__main.christmasgift-24{
  height: 44.5vw;
}
@media screen and (max-width: 767px) {
  .heading__main.christmasgift-24{
    height: 124.5vw;
  }
}

.productList__item.count_li .itemBlock.price{
  display: inline;
}