@charset "UTF-8";
/* CSS Document */
.products_imgbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.products_card {
  position: relative;
  width: calc((100% - 10px) / 2);
  margin-bottom: 40px;
}
.img_text01 {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--secondaryColor);
  font-size: 16px;
  width: 100%;
}
.img_text01 p {
  font-size: 14px;
  margin-bottom: 0;
}
.img_text01::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -10px;
  right: -10px;
  bottom: -6px;
  background: transparent;
  z-index: -1;
}
.products_link {
  font-size: 15px;
}
.products_link div:nth-of-type(1) {
  margin: 30px 0 15px;
}
@media screen and (min-width: 768px) {
  .products_imgbox {
    gap: 30px;
    flex-wrap: nowrap;
	margin: 0 auto 4rem;  
  }
  .products_card {
    margin-bottom: 0;
  }
  .img_text01 {
    bottom: -35px;
  }
  .img_text01 p {
    font-size: 18px;
  }
  .article_text.products_link {
    display: flex;
	justify-content: space-around;  
    font-size: 18px;
    margin-bottom: 100px;
  }
  .products_link div:nth-of-type(1) {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .img_text01 {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--secondaryColor);
    font-size: 20px;
    width: auto;
  }
  .img_text01 p {
    font-size: 20px;
  }
  .img_text01::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -10px;
    right: -10px;
    bottom: -6px;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
  }
}