@charset "UTF-8";
/* NEWSページ */
/*変数読み込み*/
/* scss変数設定 */
/* color */
/* fontsize */
/* size */
/* breakpoint */
.news-content .news--main--wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 60px;
}
.news-content .news-list-link:hover {
  opacity: 0.5;
}
.news-content .news-list-itemnews--item {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.news-content .news--item--img {
  width: 100%;
  aspect-ratio: 360/270;
}
.news-content .news--item-date {
  font-size: 14px;
  padding-top: 10px;
}
.news-content .news--item--title {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 960px) {
  .news-content .news--main--wrapper {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 40px;
  }
  .news-content .news--item-date {
    font-size: 12px;
  }
  .news-content .news--item--title {
    font-size: 16px;
  }
}
@media (width < 600px) {
  .news-content .news--main--wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 20px;
  }
  .news-content .news--item-date {
    font-size: 10px;
  }
  .news-content .news--item--title {
    font-size: 14px;
  }
}/*# sourceMappingURL=news.css.map */