#news {
  .news__list {
    grid-template-columns: auto 1fr;
    column-gap: 10rem;
  }
  .news__item {
    grid-template-columns: subgrid;
    grid-column: span 2;
    align-items: center;
  }
  .news__item_text {
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
    -webkit-box-orient: inherit;
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
  }
  .news__item_date {
    font-size: 2em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
  }
  @media screen and (max-width: 767px) {
    .news__item {
      grid-template-columns: 1fr;
      justify-items: center;
      row-gap: 2vw;
    }
    .news__item_text {
      text-align: center;
    }
  }
}
