.top__archive {
    background-color: #F4F1EA;
    margin-bottom: 80px;
}
.top__archive h1 {
      font-size: clamp(24px, calc(3vw + 6px), 30px);
      margin-bottom: 24px;
}
.mw-archive {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.category-wrapprer {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.top__archive {
  padding: 48px 0 40px;
}
.cate-box {
  text-align: center;
  margin-right: 24px;
}
.mr-s {
  margin-right: 4px;
}
.cate-box p {
  font-size: 14px;
  font-weight: 500;
}
.cate-box img {
  width: 70px;
  height: auto;
  margin-bottom: 4px;
}

.category-wrapprer p.current {
    color: #14468B;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
  .category-wrapprer {
    justify-content: center;
  }
}

@media screen and (max-width: 390px) {
	.cate-box img {
		width: 50px;
	}
	.cate-box {
	  margin-right: 16px;
	}
	.mr-s {
    margin-right: 4px;
  }
}



/*========== メインコンテンツ =========================*/
.grid-wrapper-archive {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1120px;
    padding: 0 20px;
    margin: 0 auto 120px;
    gap: 40px;
    row-gap: 72px;
}
.grid-box_archive h3 {
    font-size: clamp(12px, calc(1vw + 8px), 14px);
    font-weight: 500;
    margin-top: 8px;
    color: #333;
}

.product-name {
    font-size: clamp(12px, calc(1vw + 8px), 14px);
    font-weight: 500;
    margin-top: 4px;
    color: #333;
}

.product-price {
    font-size: clamp(12px, calc(1vw + 8px), 14px);
    font-weight: 500;
    margin-top: 4px;
    color: #333;
}
.archive-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 15px -9px #777777;
}

.archive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .grid-wrapper-archive {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    row-gap: 48px;
  }
}

/*==============================
 * ページネーションCSS
 * =============================*/
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}