/* =============================================================
    NEWS Page
============================================================= */
#Contents {
  margin: 0;
  background-color: var(--color-Bg-Primary);
}
#Contents .newsList .contentArea__inner {
  width: 100rem;
  max-width: 1000px;
  margin: 0 auto !important;
}
@media screen and (max-width: 768px) {
  #Contents .newsList .contentArea__inner {
    width: 92Vw;
    margin: 4rem auto 0;
  }
}
#Contents .newsListArea {
  margin-bottom: 10rem;
  min-height: 40vh;
}
@media screen and (max-width: 768px) {
  #Contents .newsListArea {
    padding: 4rem 1.5rem 0;
    min-height: auto;
    height: auto;
  }
}
#Contents .newsListArea__list--detail {
  padding-top: 15rem;
  margin-top: -15rem;
}
@media screen and (max-width: 768px) {
  #Contents .newsListArea__list--detail {
    padding-top: 7.5rem;
    margin-top: -7.5rem;
  }
}
#Contents .newsListArea__list--detail:not(:last-child) {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #B7B1AD;
}
#Contents .newsListArea__list--date {
  color: #B7B1AD;
  font-family: var(--font-en);
  font-size: var(--text-xl);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #Contents .newsListArea__list--date {
    font-size: 1.4rem;
  }
}
#Contents .newsListArea__list--txt {
  font-size: var(--text-xl);
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #Contents .newsListArea__list--txt {
    font-size: 1.4rem;
  }
}
#Contents .newsListArea__list--txt dt {
  font-size: 1.7rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #Contents .newsListArea__list--txt dt {
    font-size: 1.5rem;
  }
}
#Contents .newsListArea__list--txt dd {
  line-height: 1.7;
}