@charset "UTF-8";
.games_ {
  width: 100%;
  height: 120px;
}

.games_ li {
  border-radius: 10px 20px 3px 30px;
  width: 240px;
  height: 240px;
  margin: 12px;
  display: inline-block;
  font-size: 12px;
  padding: 0 10px;
  text-align: center;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  /*変化に掛かる時間*/
  background-color: #205E91;
}

.games_ li:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /*画像の拡大率*/
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  /*変化に掛かる時間*/
  -webkit-box-shadow: 0 0 0 5px #FFB060;
          box-shadow: 0 0 0 5px #FFB060;
}

input {
  display: none;
}

.listMother {
  margin-left: 40px;
  margin-right: 40px;
}

.thumbs {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  /* この一行を追加するだけ！ */
}

.square-thumb {
  width: 84px;
  height: 84px;
}

img.lazy {
  width: 80%;
  height: auto;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}
/*# sourceMappingURL=works.css.map */