.pageHead {
  border-bottom: 1px solid #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  padding-top: 20px;
}

.productItem {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.productItem__txt {
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 3px;
  line-height: 1.5;
  color: #626161;
  background-color: #f2f2f2;
}
.productItem__img {
  border-radius: 3px;
  overflow: hidden;
}
.productItem__more {
  display: flex;
  align-items: center;
}
.productItem__img img {
  transition-duration: 0.3s;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.productItem__ttl {
  padding-top: 12px;
  padding-bottom: 8px;
  font-weight: 600;
  color: #000;
}
.productItem__price {
  color: #000;
}
.productItem__new {
  padding: 2px 5px 0;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  background-color: #d2493f;
}
.secRecommend__btn {
  padding-top: 30px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.pageBtn {
  background-color: #fff;
  border: 2px solid #0067b6;
  border-radius: 10px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  height: 65px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-align: center;
  transition-duration: .3s;
  width: 290px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageBtn:hover {
  color: #0067b6;
}
.productItem:hover .productItem__txt {
  color: #0067b6;
}
.productItem:hover .productItem__img img {
  transform: scale(1.0555);
}
.productItem:hover .productItem__ttl {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .productItem__txt {
    font-size: 12px;
  }
    .productItem__ttl {
      font-size: 14px;
      line-height: 1.4;
  }
    .productItem__price {
      font-size: 14px;
  }
    .productItem__new {
      font-size: 12px;
  }
}
.productBtn {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.swiper-button-prev.productBtn-left {
  left: -10px;
}
.swiper-button-next.productBtn-right {
  right: -10px;
}
.slider-wrap {
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .slider-wrap {
    padding: 0 10px;
  }
  .productBtn {
    display: none;
  }
}
