@charset "utf-8";
/*  product.css
---------------------------------------------- */

/*  pc
---------------------------------------------- */
/*-------- product --------*/
#product {
  padding-bottom: 140px;
}
#product .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
#product .product-list_item {
  width: calc((100% - 40px) / 2);
}
#product .product-list_item-img img {
  width: 100%;
}
#product .product-list_item a {
  display: block;
  transition: all 0.3s;
}
#product .product-list_item a:hover {
  opacity: 0.8;
}
#product .product-list_item-txt {
  margin-top: 15px;
  color: #3b4043;
  line-height: 1.6;
}

/*  sp
---------------------------------------------- */
@media only screen and (max-width: 959px) {
  /*-------- product --------*/
  #product {
    padding-bottom: 80px;
  }
  #product .product-list {
    flex-direction: column;
    gap: 30px;
  }
  #product .product-list_item {
    width: 100%;
  }
  #product .product-list_item-txt {
    margin-top: 10px;
  }
}
