@charset "UTF-8";
html {
  overflow-x: hidden;
}

h1 {
  margin: 40px 0 58px;
  line-height: 1;
  font-size: 48px;
  font-size: 4.8rem;
  text-align: center;
  font-family: "Noto Sans CJK JP Regular", sans-serif;
}
@media screen and (max-width: 768px) {
  h1 {
    margin: 24px 0 25px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.productListArea {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto 120px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .productListArea {
    padding: 0 2.5%;
  }
}
.productListArea ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .productListArea ul {
    justify-content: center;
  }
}
.productListArea ul li {
  width: 30%;
  margin: 0 1.5% 30px;
  padding-bottom: 0;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .productListArea ul li {
    width: 48%;
    margin: 0 4% 25px 0;
  }
}
@media screen and (max-width: 500px) {
  .productListArea ul li {
    width: 90%;
    margin: 0 0 20px;
  }
}
.productListArea ul li:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .productListArea ul li:nth-of-type(3n) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 500px) {
  .productListArea ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .productListArea ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.productListArea ul li:hover span {
  text-decoration: underline;
}
.productListArea ul li img {
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .productListArea ul li img {
    margin-bottom: 5px;
  }
}
.productListArea ul li span {
  width: 100%;
  text-align: left;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .productListArea ul li span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=layout.css.map */