@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  color: #333;
}

.series {
  max-width: 750px;
  padding: 45px 25px;
  margin: 0 auto;
  background-color: #f3f3f3;
}

.series__title {
  text-align: center;
  margin-bottom: 30px;
}

.series__title-sub {
  font-size: 18px;
  color: #BF1725;
  font-weight: 700;
  margin-bottom: 6px;
}

.series__title-main {
  font-size: 25px;
  margin-bottom: 12px;
}

.series__title-line {
  width: 60px;
  height: 3px;
  margin: auto;
  background-color: #BF1725;
}

.series__grid {
  display: -ms-grid;
  display: grid;
  gap: 30px 20px;
  -ms-grid-columns: (minmax(220px, 1fr))[3];
      grid-template-columns: repeat(3, minmax(220px, 1fr));
  /* ↓ レスポンシブにしたい場合 ↓ */
}

.series__grid-item {
  display: block;
  color: #333;
  text-decoration: none;
}

.series__grid-item:hover {
  text-decoration: underline;
}

.series__grid-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(0.75);
          filter: brightness(0.75);
}

.series__grid-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}

.series__grid-img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.series__grid-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px;
  font-weight: 500;
  color: white;
  line-height: 1;
  z-index: 2;
  text-shadow: 1px 1px 1px rgba(51, 51, 51, 0.2);
}
/*# sourceMappingURL=series.css.map */