/* リスト */
#content {
    background: #fff;
    margin-top: 7%;
    padding: 2%;
}
.article-list {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
  }
   
  .article-list:hover {
    background-color: #eee;
  }
   
  .article-list a {
    display: block;
    text-decoration: none;
    color: #333;
  }
   
  .article-list a:after {
    display: block;
    clear: both;
    content: '';
  }
   
  .article-list .img-wrap {
    position: relative;
    float: left;
    line-height: 1;
  }
   
  .article-list .img-wrap img {
    width: 240px;
    height: 160px;
    object-fit: cover;
  }
   
  .article-list .img-wrap .cat-data {
    font-size: .75rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: .3rem .5rem;
    color: #fff;
    background-color: #03162f;
  }
   
  .article-list .text {
    margin-left: 260px;
  }
   
  .article-list .text h2 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
  }
   
  .article-list .text .article-date,
  .article-list .text .article-author {
    font-size: .75rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: .5rem;
    color: #888;
  }
   
  .article-list .text .article-date {
    margin-right: .5rem;
  }
   
  .article-list .text .article-author i {
    margin-right: .3rem;
  }
   
  .article-list .text p {
    font-size: .8125rem;
    line-height: 1.7;
  }