.newsBox {
  background-color: #f8f8f8;
  padding: 85px 0 95px;
}

.catList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 32px;
}

.catListLink {
  background-color: #fff;
  border-radius: 10px;
  color: #0065bb;
  text-align: center;
  padding: 10px;
  display: block;
  text-decoration: none;
  border: 1px solid #0065bb;
}
.catListLink[aria-selected=true] {
  background-color: #0065bb;
  color: #fff;
}

.newsListItem:not(:last-of-type) {
  border-bottom: 1px solid #dfdfdf;
}

.newsListLink {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 15px 0;
}

.newsListHead {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.newsListDate {
  color: #707070;
  width: 100px;
  margin: 0 16px 0 0;
}

.newsListCat {
  border: 1px solid #0065bb;
  border-radius: 5px;
  text-align: center;
  padding: 5px;
  color: #0065bb;
  font-size: 1.3rem;
  line-height: 1.2;
  min-width: 86px;
}

.newsListTitle {
  font-size: 1.6rem;
  font-weight: normal;
}

.newsListMore {
  text-decoration: none;
  color: #0065bb;
  padding: 10px;
  border: 1px solid #0065bb;
  text-align: center;
  display: block;
  margin: 25px 0 0;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
.newsListMore::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  mask-image: url(../../images/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../../images/icon-arrow.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #0065bb;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.newsListMore:hover {
  background-color: #0065bb;
  color: #fff;
}
.newsListMore:hover::after {
  background-color: #fff;
}

.newsListNo {
  text-align: center;
  padding: 40px 0;
}

@media (min-width: 960px) {
  .catList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
  }
  .catListLink {
    width: 192px;
  }
  .newsListLink {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 13px;
  }
  .newsListHead {
    margin: 0;
  }
  .newsListMore {
    margin: 25px 0 0 auto;
    max-width: 252px;
    padding: 15px;
  }
}

/*# sourceMappingURL=index.css.map*/