 /*ニュース*/
 * {
  margin: 0;
  padding: 0;
 }
 body{
   max-width: 1200px;
   margin:auto
 }
 h5{
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #A81B4B;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 8%;
  }
  .headline_small{
    font-size: 12px;
    font-weight: 600;
    color: #707070;
    text-align: center;
    margin-top: 0%;
  }
 .news-list{
    list-style: none outside;
    margin-top: 8%;
    overflow-y: scroll; 
    width: 100%;
    height: 600px;
  }  
  .news-list .news-item a{
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 20px 30px;
  }
  .news-list .news-item:first-child a{
    border-top: 1px solid #CCC;
  }
  .news-list .news-item .news-date{
    margin: 0;
    min-width: 100px;
    font-size: 16px;
    color: #707070;
    padding: 0 20px 0 0;
    font-weight: 600;
  }
  .news-list .news-item .category{
    margin: 0;
    min-width: 140px;
    padding: 0 20px 0 0;
  }
  .news-list .news-item .category span{
    background: #F9D8D7;
    color: #707070;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
  }
  .news-list .news-item .title{
    margin: 0;
    margin-top: 10px;
    width: 100%;
  }
  .news-list .news-item a:hover .title{
    color: #A81B4B;
  }
  .news-list .news-item .category2 span{
    background: #A9D9D1;
    color: #707070;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
  }
  .news-list .news-item .category2{
    margin: 0;
    min-width: 140px;
    padding: 0 20px 0 0;
  }

  /* デザインC(PC) */
@media screen and (min-width: 1025px) {
    /* PC用レイアウト 1,025px以上の範囲に収めるデザインはこの中に記述 */
    .news-list .news-item a{
     flex-wrap: nowrap;
    }
    .news-list .news-item .news-date{
     min-width: 140px;
    }
    .news-list .news-item .title{
      margin-top: 0px;
    }
    h5{
      font-size: 32px;
      margin-top: 4%;
    }
    .headline_small {
      font-size: 16px;
    }
}

