*{
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
ol, ul {
    list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container{
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
}
.blogList {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 1.4%;
}
.blogList li {
    width: 45.95%;/* 三つ並べは30%ぐらい */
}
.blogList li figure {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 16:9は56.25% */
}
.blogList li figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogList li time {
    font-size: 14px;
    letter-spacing: 0.075em;
}
.blogList li h2 {
    font-size: 18px;
    letter-spacing: 0.075em;
}
Run Pen


Resources


/* 異なるサイズの画像をサイズを揃えてキレイに配置する方法 */