/* Worksの枠を16:9で完全に固定 */
.thumb-box { 
  width: 100%; 
  aspect-ratio: 16 / 9; /* 縦横比を固定 */
  overflow: hidden; 
  background: #eee;
}

/* 中の画像を枠いっぱいに広げ、はみ出た分をカット */
.thumb-box img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; /* これがサイズを揃える魔法です */
}