@charset "utf-8";
/* topProducts
------------------------- */
.topProducts {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
  padding: calc(2em - 2.5em) 0;
}
.topProducts h2 {
  padding: 0 0 0 0.6em;
  border-left: 2px solid #1e2021;
  font-size: 260%;
  font-weight: 400;
}
.topProducts ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.topProducts ul li {
  width: 23.4%;
  margin: 2.5em 0 0 0;
  background: #fff;
  line-height: 1;
  transition: 0.2s;
  color: #005AB4;
}
.topProducts ul li img {
  width: 100%;
  border: 1px solid #e1e1e1;
}
.topProducts ul li p {
  margin-top: 10px;
  line-height: 1.4;
}
.topProducts.col3 ul li {
  width: 31%;
}
.topProducts.col3 ul li img {
  border: 0;
}
.topProducts.col3 ul li .ttl {
  font-size: 120%;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  
  /* topProducts
  ------------------------- */
  .topProducts {
    padding: calc(2em - 1.5em) 0 4.5em 0;
  }
  .topProducts ul li {
    width: 48%;
    margin-top: 1.5em;
    font-size: 110%;
  }
  .topProducts.col3 ul li {
    width: 48%;
  }
  .topProducts.col3 ul li .ttl {
    font-size: 110%;
  }
}