@charset "utf-8";

/*------------------------
サムネイル表示用CSS
-------------------------*/



.article-thumbnail {
  width: 50%;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 65, 22, 0.8);
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*------------------------
レスポンシブ対応
-------------------------*/

@media screen and (max-width: 768px) {

  .article-thumbnail {
    width: 100%;
  }
}