.newsArchives {
  max-width: 800px;
  margin: 0 auto;
}
.newsArchivesList {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 30px;
  @media screen and (max-width: 750px){
    padding: 0 20px;
    gap: 60px 30px;
  }
}
.newsArchivesList__item {
  width: calc((100% - 60px) / 3);
  @media screen and (max-width: 750px){
    width: calc((100% - 30px) / 2);
  }
  a {
    display: block;
    height: 100%;
    padding-bottom: 36px;
    position: relative;
    color: inherit;
    text-decoration: none;
  }
}
.newsArchivesList__thumb {
  img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    border-radius: 90px 0 0 0;
  }
}
.newsArchivesList__title {
  font-size: 14px;
  margin-top: 15px;
}
.newsArchivesList__date {
  font-size: 11px;
  font-family: var(--font-en);
  margin-top: 12px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  .cat {
    display: inline-block;
    margin-left: 0.6em;
    padding-left: 1em;
    border-left: 1px solid var(--color-text);
    line-height: 1;
  }
}

.news__date {
  font-size: 11px;
  font-family: var(--font-en);
  .cat {
    display: inline-block;
    margin-left: 0.6em;
    padding-left: 1em;
    border-left: 1px solid var(--color-text);
    line-height: 1;
  }
}
.newsSingle__title {
  font-size: 26px;
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-blue);
}
.newsSingle__content {
  margin-top: 60px;
}
.newsCat {
  margin-bottom: 70px;
}
.newsCat__title {
  text-align: center;
  font-size: 42px;
  letter-spacing: 0.15em;
  color: var(--color-blue);
  font-family: var(--font-en);
  @media screen and (max-width: 750px){
    font-size: 28px;
  }
}
.newsCat__list {
  display: flex;
  justify-content: center;
  gap: 1.25em;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    flex-wrap: wrap;
  }
  li {
    position: relative;
    padding-left: 34px;
    @media screen and (max-width: 750px){
      padding-left: 24px;
    }
    &:before {
      content: "";
      background: url(../img/icon_arrow_btn.png) no-repeat center / contain;
      width: 28px;
      aspect-ratio: 1 / 1;
      position: absolute;
      top: 4px;
      left: 0px;
      @media screen and (max-width: 750px){
        width: 20px;
        top: 1px;
      }
    }
  }
  a {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 24px;
    font-family: var(--font-en);
    letter-spacing: 0.15em;
    &:hover {
      text-decoration: underline;
    }
    @media screen and (max-width: 750px){
      font-size: 16px;
    }
  }
}