@charset "utf-8";

.item-list {
  display: flex;
  flex-wrap: wrap;
}
.item-list__wrap {
  width: 100%;
  margin-bottom: 2em;
}
.item-list__img {
  width: 100%;
}

@media screen and (min-width: 640px) {
  .item-list {
    justify-content:space-between;
  }
  .item-list__wrap {
    width: 49%;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
}