/* ==============================================================================================
   styles for contents product list
   ============================================================================================== */
.proWrp {
  position: relative;
  transition: height 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.proWrp::after {
  content: '現在新商品はありません';
  width: 100%;
  font-size: 1.8em;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.proWrp.notRslt::after {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.15s 0.3s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.15s 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 670px) {
  .proWrp {
    height: 120px;
    min-height: 120px;
  }
  .proWrp.active {
    height: 120px !important;
  }
}

@media screen and (min-width: 671px) {
  .proWrp {
    height: 240px;
    min-height: 240px;
  }
  .proWrp.active {
    height: 240px !important;
  }
}

.icnLoader {
  width: 76px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.icnLoader.invisible {
  opacity: 0;
}

.icnLoader_circle {
  width: 20px;
  height: 20px;
  animation: loaderAnimate 1.4s both cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.icnLoader_circle:nth-child(2) {
  animation-delay: 0.16s;
}

.icnLoader_circle:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes loaderAnimate {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.proLst_itm {
  opacity: 0;
}

.active .proLst_itm {
  animation: productFadeIn 0.3s both cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes productFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
