@charset "UTF-8";
/**************************************/
/* -------------------------
 * トップ、下層共通
 * ------------------------- */
.news__date-grid {
  font-family: var(--hanken);
  display: grid;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-template-areas: "day day" "month year";
}

.news__date-grid--year {
  grid-area: year;
  font-size: var(--f12);
  line-height: 1;
}

.news__date-grid--month {
  grid-area: month;
  font-size: var(--f12);
  line-height: 1;
}

.news__date-grid--day {
  grid-area: day;
  text-align: center;
  font-size: clamp(3rem, 2.9vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}

.news-list > li + li {
  margin-top: 5rem;
}

.news__list-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

.news__list-category {
  border-radius: 100vmax;
  border: solid 1px #ddd;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  font-size: var(--f14);
  font-weight: 700;
}
@media (max-width: 834px) {
  .news__list-category {
    font-size: 1.3rem;
  }
}

.news__list-ttl {
  font-size: 1.6rem;
  font-weight: 600;
}

.news__list-txt {
  display: none;
}

/* -------------------------
 * 下層newsページ
 * ------------------------- */
.news .news__list-category {
  color: #4083f1;
}
@media (max-width: 834px) {
  .news .news__list-category {
    grid-area: category;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.news .news__meta {
  display: grid;
  gap: 3rem 2%;
  grid-template-columns: auto 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media (max-width: 834px) {
  .news .news__meta {
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
    grid-template-areas: "date category" "ttl ttl";
  }
}
.news .news__date-grid {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 834px) {
  .news .news__date-grid {
    grid-area: date;
  }
}
.news .news__date-grid--day {
  font-size: var(--f58);
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.news .news__date-grid--month,
.news .news__date-grid--year {
  font-size: var(--f13);
}
.news .news__ttl {
  font-size: var(--f22);
  font-weight: 600;
}
@media (max-width: 834px) {
  .news .news__ttl {
    grid-area: ttl;
  }
}
.news .news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}
@media (max-width: 834px) {
  .news .news__head {
    gap: 0.5em;
    display: contents;
  }
}
.news .news-list > li + li {
  margin-top: 6rem;
}
@media (max-width: 834px) {
  .news .news-list > li + li {
    margin-top: 4.5rem;
  }
}/*# sourceMappingURL=news.css.map */