.page-products__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.page-products__item {
  margin-bottom: 50px;
  width: 48%;
  max-width: 480px;
}

.page-products__img {
  margin-bottom: 30px;
}

.page-products__link {
  font-size: 2.2vw;
  display: block;
  color: #122c64;
  font-weight: 500;
  border-bottom: solid 1px #96C7FC;
  margin-bottom: 10px;
  letter-spacing: .05em;
}

.page-products__link span {
  position: relative;
}

.page-products__link span::after {
  content: '';
  width: 20px;
  height: 8px;
  background: url(/assets/img/common/icon_arrow_05.svg) no-repeat center;
  position: absolute;
  top: 40%;
  right: -30px;
  transition: all .3s ease;
}

.page-products__link:hover span::after {
  right: -37px;
}

.page-products__link-list li {
  margin-bottom: 5px;
}

.page-products__link-list li a {
  display: inline-block;
  position: relative;
}

.page-products__link-list li a::after {
  content: '';
  width: 22px;
  height: 7px;
  background: url(/assets/img/common/icon_arrow_06.svg) no-repeat center;
  position: absolute;
  top: 40%;
  right: -30px;
  transition: all .3s ease;
}

.page-products__link-list li a:hover::after {
  right: -37px;
}

@media screen and (max-width: 767px) {
  .page-products__row {
    max-width: 480px;
    margin: 0 auto;
  }
  .page-products__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-products__link {
    font-size: 1.8rem;
    padding: 0 0 8px;
  }
}

@media screen and (min-width: 1200px) {
  .page-products__link {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 390px) {
  .page-products__link {
    font-size: 1.5rem;
  }
}
