@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #f4f4f4;
  --green: #45b035;
  --border-color: #f2f2f2;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

.pagination {
  padding-top: 6rem;
}
@media screen and (max-width: 834px) {
  .pagination {
    padding-top: clamp(1rem, 4vw, 4rem);
  }
}
.pagination__list {
  font-size: 1.7rem;
  font-family: "Hanken Grotesk", sans-serif;
  display: flex;
  gap: 2.7rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .pagination__list {
    gap: 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  .pagination__list {
    gap: 1rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 499px) {
  .pagination__list {
    gap: 0.5rem;
    font-size: 1.3rem;
  }
}
.pagination__item {
  width: 4rem;
  border-radius: 100vmax;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .pagination__item {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (max-width: 499px) {
  .pagination__item {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.pagination__item.--active {
  background-color: #eff7ed;
  color: var(--green);
}
.pagination__item.--prev, .pagination__item.--next {
  border: 1px solid var(--green);
  color: var(--green);
  padding-top: 3px;
}
@media screen and (max-width: 640px) {
  .pagination__item.--prev span, .pagination__item.--next span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) and (max-width: 499px) {
  .pagination__item.--prev span, .pagination__item.--next span {
    font-size: 1.4rem;
  }
}
.pagination__item.--prev:hover {
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.pagination__item.--next:hover {
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.pagination__item.--threedots {
  width: auto;
  border: none;
  margin-top: -0.5em;
}/*# sourceMappingURL=pagination.css.map */