@charset "utf-8";

/* -------------------------------------------------------
共通
------------------------------------------------------- */


/* -------------------------------------------------------
main
------------------------------------------------------- */
.img {
  display: flex;
  justify-content: space-between;
}

.img img {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}


/* -------------------------------------------------------
mobile用
------------------------------------------------------- */
@media screen and (max-width: 1040px) {
  .img {
    justify-content: center;
  }

  .img img {
    margin: 0 5px 30px 5px;
  }
}