
.product_list_area {
  background-image: url("/wp-content/themes/futonten/images/logo2.png"), url("/wp-content/themes/futonten/images/logo2.png");
  background-size: 19vw, 27vw;
  background-position: top 3vw left -5vw, bottom right -6vw;
}
.product_list {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  height: auto;
}
.product_list_item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  padding-right: 15px;
  margin-bottom: 3vw;
}
.product_list_item a {
  text-decoration: none;
}
.product_list_thumbnail {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 1vw;
  box-shadow: 15px 15px 0px 0 #FFF5EE;
  overflow: hidden;
}
.product_list_thumbnail img {
  width: 100%;
}
.product_list_description {
  width: 100%;
  height: auto;
  padding: 30px 0;
  box-sizing: border-box;
}
.product_list .title {
  position: relative;
}
.product_list .title h2 {
  color: #e63037;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  padding-right: 30px;
}

.product_list_icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  color: #fff;
  background-color: #e63037;
  border-radius: 30px;
  text-align: center;
  padding-top: 5px;
  padding-left: 3px;
}
.product_list_icon:before {
  color: #fff;
  content: "\f054";
  display: block;
  font: normal 12px/12px FontAwesome;
  text-align: center;
  margin: 2.5px;
}
.product_list_overviewtext {
  font-size: 14px;
  line-height: 1.86;
  color: #222222;
  margin-top: 13px;
}

/* PC用 **/
@media screen and (min-width: 768px) {
  main {
    margin-top: 110px;
  }

  .product_list .title h2 {
    font-size: 20px;
    line-height: 1.35;
  }
  .product_list_icon {
    padding-top: 4px;
  }
  .product_list_overviewtext {
    font-size: 16px;
    line-height: 1.86;
    margin-top: 14px;
  }

  .product_list {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    height: auto;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .product_list > :not(:nth-child(3n-2)) {
    margin-left: 20px;
  }
  .product_list > :nth-child(n+4) {
    margin-top: 20px;
  }
  .product_list_item {
    width: calc((100% - 20px * 2) / 3);
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    padding-right: 15px;
    margin-bottom: 3vw;
  }
}