/*************************************************

page

*************************************************/
/* products-com-list
---------------------------------------*/
.products-com-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.6rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .products-com-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem 0;
  }
}

.products-com-list__item {
  width: calc(33.3333333333% - 1.6rem);
}
@media screen and (max-width: 767px) {
  .products-com-list__item {
    width: 100%;
  }
}

.products-com-list__anchor {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #131313;
  text-decoration: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.1);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .products-com-list__anchor:hover {
    color: #234F90;
  }
  .products-com-list__anchor:hover .products-com-list__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .products-com-list__anchor:hover .products-com-list-nav01__anchor-arw .in-ov {
    opacity: 1;
  }
}

.products-com-list__img {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 350/280;
}
.products-com-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.products-com-list__title {
  position: relative;
  padding: 4rem 5.5rem 4rem 2.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .products-com-list__title {
    font-size: 1.6rem;
    padding: 2.5rem 4.5rem 2.5rem 1.6rem;
  }
}

.products-com-list__text {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 7rem 1.8rem 3.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .products-com-list__text {
    padding: 0 5rem 1.6rem 1.6rem;
    font-size: 1.4rem;
  }
}

.products-com-list-nav01__anchor-arw {
  position: absolute;
  top: 50%;
  right: 1.7rem;
  width: 2.8rem;
  line-height: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .products-com-list-nav01__anchor-arw {
    right: 1.6rem;
    width: 2.4rem;
  }
}
.products-com-list-nav01__anchor-arw .in-df {
  position: relative;
  z-index: 1;
}
.products-com-list-nav01__anchor-arw .in-ov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
.products-com-list-nav01__anchor-arw img {
  width: 100%;
}