@charset "UTF-8";
/*=========================
取扱鋼種・設備
===========================*/
/*pagetitle*/
.pagetitle_wrap {
  background: url("../img/product_img/pagetitle.jpg") center center no-repeat;
  background-size: cover;
}

.product_img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  :is(img) {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.2s;

    &:hover {
      opacity: 0.8;
    }

    & + figcaption {
      margin-top: 8px;
    }
  }
  :is(figcaption) {
    font-weight: 700;
    text-align: left;
    color: var(--maincolor);
  }
}
