/*リサイクル商品(ここから)*/
.recycle {
  padding: 21px;
  padding-bottom: 21px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: rgb(27, 64, 115);
}
.recycle-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  justify-items: center;
  grid-gap: 27px;
}
.recycle-item {
  border: solid 1.5px white;
  border-radius: 12px;
  padding: 12px;
}
.recycle-item img {
  width: 240px;
  height: 210px;
  border: solid 1px white;
}
.recycle-item h4 {
  margin-top: 3px;
  margin-bottom: 9px;

  color: white;
  border-bottom: solid 1px white;
}
.recycle-item p {
  color: white;
}
.recycle-item span {
  color: red;
}
.recycle-text {
  text-align: left;
}
/*リサイクル商品(ここまで)*/
/*スマホ表示(ここから)*/
@media screen and (max-width: 780px){
  .recycle-container {
    grid-template-columns: repeat(2,1fr);
  }
  .recycle-item {
    width: 165px;
  }
  .recycle-item img {
    width: 134px;
    height: 120px;
  }
}
/*スマホ表示(ここまで)*/