.anime-container {
  display: flex;
  margin-bottom:50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end; /* 全体を下で揃える */
  gap: 10px;
  text-align: center;
}

.anime-item {
  width: 150px;
  padding-top:20px;
  font-size:16px;
  /* flexなどは一切入れない */
}

.anime-item img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像下の謎の隙間を消す */
}

/* テキストの余計な余白を消す */
.anime-item p, .anime-item div {
  margin: 0;
}