@charset "UTF-8";

/* トップページ */

.product-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-list li{
  max-width: 327px;
  margin: 0 auto 30px;
}
.product-list p{
  font-size:2.0rem;
}

.product-list img{
  margin-bottom: 10px;
  vertical-align:top;
  border-radius: 10px;
}

.link{
  display:block;
  text-align: center;
}




/* ipadなど */
@media screen and (max-width: 1024px) {
    .product-list li{
      width:45%;
    }
}

/* スマホ版 */
@media screen and (max-width: 599px) {
  
  .product-list p {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .back {
    padding-top: 30px;
    margin-bottom: 60px;
  }

}


