@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

/*----------------------------------------
	font-face
----------------------------------------*/
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/HelveticaLTStd-Light.otf") format("opentype");
}
/*----------------------------------------
	u-device-sp
----------------------------------------*/
.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

/*----------------------------------------
	u-device-pc
----------------------------------------*/
@media screen and (max-width: 767px) {
  .u-device-pc {
    display: none;
  }
}

/*----------------------------------------
	u-animation-fadein
----------------------------------------*/
.u-animation-fadein {
  opacity: 0;
  translate: 0 10%;
  transition: 1s;
}
.u-animation-fadein.is-active {
  opacity: 1;
  translate: 0 0;
}

/*----------------------------------------
	u-animation-blur
----------------------------------------*/
.u-animation-blur {
  display: block;
  opacity: 0;
  scale: 1.2;
  filter: blur(4rem);
  transition: 1s;
}
.u-animation-blur.is-active {
  opacity: 1;
  scale: 1;
  filter: none;
}

/*----------------------------------------
	p-highclass
----------------------------------------*/
.p-highclass {
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  color: #080812;
  background: rgba(226, 226, 226, 0.7);
}

/*----------------------------------------
	p-highclass-mv
----------------------------------------*/
.p-highclass-mv__heading {
  padding: 6rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__heading {
    padding: 3.2rem 1.6rem;
  }
}
.p-highclass-mv__heading h2 {
  font-size: 9rem;
  font-weight: normal;
  font-family: "EB Garamond", serif;
  line-height: 1;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__heading h2 {
    font-size: 3.5rem;
    margin: 0 0 1.6rem;
  }
}
.p-highclass-mv__heading p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__heading p {
    font-size: 1rem;
  }
}

/* アンカーリンクナビゲーションの修正 */
.p-highclass-mv__nav {
  display: flex;
  justify-content: center; /* PCで中央寄せ */
  border-top: 1px solid #080812;
  border-bottom: 1px solid #080812;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__nav {
    flex-direction: column; /* SPで縦1列 */
  }
}
.p-highclass-mv__nav li {
  width: 25%; /* PCでは25%のまま（3つなので中央寄せ効果） */
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__nav li {
    width: 100%; /* SPで縦1列（100%幅） */
  }
}
.p-highclass-mv__nav li + li {
  position: relative;
}
.p-highclass-mv__nav li + li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: calc(100% - 3rem);
  background: #080812;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__nav li + li:before {
    content: none; /* SPで縦の境界線は不要 */
  }
}
/* SPで縦1列の場合、横の境界線を追加 */
@media screen and (max-width: 767px) {
  .p-highclass-mv__nav li + li {
    border-top: 1px solid #080812;
  }
}
.p-highclass-mv__nav li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Cormorant", serif;
  line-height: 1.2;
  padding: 1.6rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__nav li a {
    font-size: 1.4rem;
    padding: 1.6rem;
  }
}
.p-highclass-mv__nav li a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.8rem;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #080812;
  border-bottom: 1px solid #080812;
  margin: auto;
  rotate: 45deg;
  transform-origin: right;
}
@media screen and (max-width: 767px) {
  .p-highclass-mv__nav li a:after {
    right: 1.6rem;
  }
}

/*----------------------------------------
	p-highclass-product
----------------------------------------*/
.p-highclass-product {
  padding: 6rem 0 0;
  border-bottom: 1px solid #080812;
}
@media screen and (max-width: 767px) {
  .p-highclass-product {
    padding: 3rem 0 0;
  }
}
.p-highclass-product__img {
  overflow: hidden;
}
.p-highclass-product__content {
  padding: 2.8rem 2.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__content {
    padding: 2.4rem 1.6rem 0;
  }
}
.p-highclass-product__heading {
  padding: 0 0 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__heading {
    padding: 0 0 0.8rem;
  }
}
.p-highclass-product__heading h2 {
  font-size: 6.6rem;
  font-weight: normal;
  font-family: "EB Garamond", serif;
  line-height: 1;
  margin: 0 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__heading h2 {
    font-size: 3.5rem;
    margin: 0 0 3.2rem;
  }
}
.p-highclass-product__heading p {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__heading p {
    font-size: 1rem;
  }
}
.p-highclass-product__column {
  padding: 3.2rem 0 6rem;
  border-top: 1px solid #080812;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__column {
    padding: 2.4rem 0 4rem;
  }
}
.p-highclass-product__message {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__message {
    font-size: 1rem;
    margin: 0.8rem 0 1.6rem;
  }
}
.p-highclass-product__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-highclass-product__list li:nth-child(1) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(2) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(3) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(4) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(5) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(6) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(7) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(8) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(9) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(10) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(11) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(12) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(13) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(14) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(15) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(16) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(17) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(18) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(19) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(20) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(21) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(22) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(23) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(24) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(25) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(26) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(27) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(28) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(29) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(30) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(31) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(32) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(33) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(34) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(35) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(36) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(37) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(38) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(39) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(40) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(41) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(42) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(43) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(44) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(45) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(46) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(47) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(48) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(49) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(50) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(51) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(52) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(53) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(54) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(55) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(56) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(57) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(58) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(59) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(60) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(61) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(62) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(63) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(64) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(65) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(66) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(67) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(68) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(69) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(70) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(71) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(72) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(73) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(74) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(75) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(76) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(77) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(78) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(79) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(80) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(81) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(82) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(83) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(84) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(85) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(86) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(87) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(88) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(89) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(90) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(91) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(92) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(93) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(94) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(95) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(96) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(97) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(98) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(99) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(100) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(101) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(102) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(103) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(104) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(105) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(106) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(107) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(108) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(109) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(110) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(111) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(112) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(113) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(114) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(115) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(116) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(117) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(118) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(119) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(120) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(121) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(122) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(123) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(124) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(125) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(126) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(127) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(128) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(129) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(130) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(131) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(132) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(133) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(134) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(135) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(136) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(137) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(138) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(139) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(140) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(141) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(142) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(143) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(144) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(145) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(146) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(147) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(148) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(149) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(150) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(151) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(152) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(153) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(154) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(155) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(156) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(157) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(158) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(159) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(160) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(161) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(162) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(163) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(164) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(165) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(166) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(167) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(168) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(169) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(170) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(171) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(172) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(173) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(174) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(175) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(176) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(177) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(178) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(179) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(180) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(181) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(182) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(183) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(184) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(185) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(186) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(187) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(188) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(189) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(190) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(191) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(192) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(193) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(194) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(195) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(196) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(197) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(198) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(199) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(200) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(201) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(202) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(203) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(204) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(205) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(206) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(207) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(208) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(209) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(210) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(211) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(212) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(213) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(214) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(215) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(216) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(217) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(218) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(219) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(220) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(221) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(222) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(223) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(224) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(225) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(226) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(227) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(228) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(229) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(230) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(231) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(232) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(233) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(234) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(235) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(236) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(237) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(238) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(239) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(240) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(241) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(242) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(243) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(244) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(245) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(246) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(247) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(248) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(249) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(250) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(251) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(252) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(253) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(254) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(255) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(256) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(257) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(258) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(259) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(260) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(261) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(262) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(263) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(264) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(265) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(266) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(267) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(268) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(269) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(270) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(271) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(272) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(273) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(274) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(275) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(276) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(277) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(278) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(279) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(280) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(281) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(282) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(283) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(284) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(285) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(286) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(287) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(288) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(289) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(290) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(291) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(292) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(293) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(294) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(295) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(296) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(297) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(298) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(299) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(300) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(301) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(302) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(303) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(304) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(305) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(306) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(307) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(308) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(309) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(310) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(311) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(312) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(313) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(314) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(315) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(316) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(317) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(318) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(319) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(320) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(321) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(322) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(323) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(324) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(325) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(326) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(327) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(328) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(329) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(330) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(331) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(332) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(333) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(334) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(335) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(336) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(337) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(338) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(339) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(340) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(341) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(342) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(343) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(344) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(345) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(346) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(347) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(348) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(349) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(350) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(351) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(352) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(353) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(354) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(355) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(356) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(357) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(358) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(359) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(360) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(361) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(362) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(363) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(364) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(365) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(366) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(367) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(368) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(369) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(370) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(371) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(372) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(373) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(374) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(375) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(376) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(377) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(378) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(379) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(380) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(381) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(382) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(383) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(384) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(385) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(386) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(387) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(388) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(389) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(390) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(391) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(392) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(393) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(394) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(395) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(396) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(397) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(398) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(399) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(400) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(401) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(402) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(403) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(404) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(405) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(406) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(407) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(408) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(409) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(410) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(411) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(412) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(413) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(414) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(415) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(416) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(417) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(418) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(419) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(420) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(421) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(422) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(423) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(424) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(425) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(426) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(427) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(428) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(429) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(430) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(431) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(432) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(433) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(434) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(435) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(436) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(437) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(438) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(439) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(440) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(441) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(442) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(443) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(444) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(445) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(446) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(447) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(448) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(449) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(450) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(451) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(452) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(453) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(454) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(455) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(456) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(457) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(458) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(459) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(460) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(461) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(462) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(463) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(464) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(465) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(466) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(467) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(468) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(469) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(470) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(471) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(472) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(473) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(474) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(475) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(476) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(477) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(478) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(479) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(480) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(481) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(482) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(483) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(484) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(485) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(486) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(487) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(488) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(489) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(490) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(491) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(492) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(493) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(494) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(495) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(496) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(497) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(498) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(499) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(500) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(501) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(502) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(503) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(504) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(505) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(506) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(507) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(508) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(509) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(510) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(511) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(512) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(513) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(514) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(515) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(516) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(517) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(518) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(519) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(520) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(521) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(522) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(523) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(524) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(525) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(526) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(527) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(528) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(529) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(530) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(531) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(532) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(533) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(534) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(535) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(536) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(537) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(538) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(539) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(540) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(541) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(542) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(543) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(544) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(545) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(546) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(547) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(548) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(549) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(550) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(551) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(552) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(553) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(554) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(555) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(556) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(557) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(558) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(559) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(560) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(561) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(562) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(563) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(564) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(565) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(566) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(567) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(568) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(569) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(570) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(571) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(572) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(573) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(574) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(575) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(576) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(577) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(578) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(579) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(580) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(581) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(582) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(583) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(584) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(585) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(586) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(587) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(588) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(589) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(590) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(591) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(592) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(593) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(594) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(595) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(596) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(597) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(598) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(599) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(600) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(601) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(602) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(603) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(604) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(605) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(606) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(607) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(608) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(609) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(610) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(611) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(612) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(613) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(614) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(615) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(616) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(617) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(618) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(619) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(620) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(621) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(622) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(623) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(624) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(625) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(626) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(627) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(628) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(629) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(630) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(631) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(632) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(633) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(634) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(635) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(636) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(637) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(638) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(639) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(640) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(641) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(642) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(643) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(644) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(645) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(646) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(647) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(648) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(649) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(650) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(651) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(652) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(653) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(654) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(655) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(656) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(657) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(658) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(659) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(660) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(661) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(662) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(663) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(664) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(665) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(666) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(667) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(668) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(669) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(670) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(671) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(672) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(673) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(674) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(675) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(676) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(677) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(678) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(679) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(680) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(681) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(682) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(683) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(684) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(685) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(686) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(687) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(688) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(689) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(690) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(691) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(692) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(693) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(694) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(695) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(696) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(697) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(698) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(699) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(700) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(701) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(702) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(703) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(704) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(705) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(706) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(707) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(708) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(709) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(710) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(711) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(712) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(713) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(714) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(715) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(716) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(717) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(718) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(719) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(720) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(721) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(722) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(723) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(724) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(725) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(726) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(727) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(728) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(729) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(730) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(731) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(732) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(733) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(734) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(735) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(736) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(737) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(738) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(739) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(740) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(741) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(742) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(743) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(744) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(745) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(746) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(747) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(748) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(749) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(750) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(751) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(752) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(753) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(754) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(755) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(756) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(757) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(758) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(759) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(760) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(761) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(762) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(763) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(764) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(765) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(766) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(767) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(768) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(769) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(770) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(771) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(772) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(773) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(774) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(775) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(776) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(777) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(778) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(779) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(780) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(781) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(782) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(783) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(784) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(785) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(786) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(787) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(788) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(789) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(790) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(791) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(792) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(793) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(794) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(795) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(796) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(797) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(798) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(799) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(800) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(801) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(802) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(803) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(804) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(805) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(806) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(807) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(808) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(809) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(810) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(811) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(812) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(813) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(814) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(815) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(816) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(817) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(818) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(819) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(820) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(821) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(822) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(823) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(824) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(825) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(826) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(827) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(828) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(829) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(830) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(831) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(832) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(833) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(834) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(835) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(836) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(837) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(838) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(839) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(840) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(841) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(842) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(843) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(844) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(845) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(846) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(847) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(848) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(849) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(850) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(851) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(852) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(853) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(854) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(855) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(856) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(857) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(858) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(859) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(860) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(861) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(862) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(863) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(864) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(865) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(866) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(867) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(868) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(869) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(870) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(871) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(872) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(873) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(874) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(875) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(876) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(877) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(878) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(879) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(880) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(881) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(882) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(883) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(884) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(885) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(886) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(887) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(888) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(889) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(890) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(891) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(892) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(893) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(894) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(895) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(896) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(897) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(898) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(899) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(900) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(901) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(902) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(903) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(904) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(905) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(906) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(907) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(908) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(909) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(910) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(911) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(912) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(913) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(914) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(915) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(916) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(917) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(918) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(919) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(920) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(921) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(922) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(923) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(924) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(925) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(926) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(927) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(928) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(929) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(930) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(931) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(932) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(933) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(934) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(935) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(936) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(937) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(938) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(939) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(940) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(941) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(942) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(943) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(944) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(945) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(946) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(947) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(948) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(949) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(950) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(951) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(952) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(953) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(954) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(955) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(956) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(957) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(958) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(959) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(960) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(961) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(962) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(963) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(964) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(965) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(966) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(967) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(968) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(969) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(970) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(971) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(972) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(973) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(974) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(975) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(976) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(977) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(978) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(979) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(980) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(981) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(982) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(983) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(984) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(985) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(986) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(987) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(988) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(989) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(990) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(991) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(992) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(993) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(994) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(995) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li:nth-child(996) {
  transition-delay: 0.08s;
}
.p-highclass-product__list li:nth-child(997) {
  transition-delay: 0.16s;
}
.p-highclass-product__list li:nth-child(998) {
  transition-delay: 0.24s;
}
.p-highclass-product__list li:nth-child(999) {
  transition-delay: 0.32s;
}
.p-highclass-product__list li:nth-child(1000) {
  transition-delay: 0.4s;
}
.p-highclass-product__list li a {
  position: relative;
  overflow: hidden;
}
.p-highclass-product__list li a:hover figure {
  scale: 1.1;
}
.p-highclass-product__list li a figure {
  transition: 1s;
}
.p-highclass-product__list li a figure img {
  aspect-ratio: 1;
}
.p-highclass-product__list li a p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 1rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  padding: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__list li a p {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
}
.p-highclass-product__button {
  display: flex;
  justify-content: center;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__button {
    margin: 2rem 0 0;
  }
}
.p-highclass-product__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 78.6rem;
  width: 100%;
  height: 4.4rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.p-highclass-product__button a:hover {
  border: 1px solid black;
}
.p-highclass-product__button a:hover span:before {
  opacity: 0;
  translate: 100% 0;
}
.p-highclass-product__button a:hover span:after {
  opacity: 1;
  translate: 0 0;
}
.p-highclass-product__button a span {
  position: relative;
  font-size: 1.6rem;
  font-family: "Helvetica";
  line-height: 1;
  padding: 0.2em 13.2rem 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-highclass-product__button a span {
    font-size: 1.2rem;
    padding: 0.2em 8rem 0;
  }
}
.p-highclass-product__button a span:before, .p-highclass-product__button a span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3.2rem;
  height: 4.2rem;
  background: url(../img/icon-arrow01.svg) center/cover;
  margin: auto;
  transition: 0.6s;
}
.p-highclass-product__button a span:before {
  left: 0;
}
.p-highclass-product__button a span:after {
  right: 0;
  opacity: 0;
  translate: -100% 0;
}

/*----------------------------------------
	p-highclass-back
----------------------------------------*/
.p-highclass-back {
  display: flex;
  padding: 6rem 2.8rem 12rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-back {
    padding: 6rem 1.6rem 4rem;
  }
}
.p-highclass-back a {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 25.6rem;
  font-size: 1.6rem;
  font-family: "Helvetica";
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: 1s;
}
@media screen and (max-width: 767px) {
  .p-highclass-back a {
    width: 17rem;
    font-size: 1.2rem;
    padding: 0.6rem 0;
  }
}
.p-highclass-back a:hover {
  border-bottom: 1px solid black;
}
.p-highclass-back a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-left: 1px solid #080812;
  border-bottom: 1px solid #080812;
  margin: auto;
  rotate: 45deg;
  transform-origin: left;
}

/*----------------------------------------
	p-highclass-totop
----------------------------------------*/
.p-highclass-totop {
  position: fixed;
  right: 2.8rem;
  bottom: 2.8rem;
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .p-highclass-totop {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}/*# sourceMappingURL=highclass.css.map */