@media screen and (min-width: 769px) {
  .pageTtl {
    max-width: 930px;
  }
}
.newsNav {
  margin-bottom: 30px;
}
.newsNav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px 12px;
}
.newsNav__list a {
  width: 100%;
  height: 64px;
  background-color: #F3F5F6;
  border-radius: 8px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsNav__list a.current {
  background-color: #F08300;
  color: #fff;
  font-weight: 700;
}
.newsNav__list a:hover {
  background-color: #E9EDEF;
  font-weight: 500;
  opacity: 1;
}
@media screen and (min-width: 576px) {
  .newsNav__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .newsNav__list a {
    height: 64px;
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  .newsNav {
    margin-bottom: 50px;
  }
  .newsNav .inner {
    max-width: 930px;
  }
  .newsNav__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .newsNav__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.newsList {
  margin-bottom: 50px;
  border-top: 1px solid #DBDBDB;
  display: grid;
}
.newsList__item {
  width: 100%;
  padding: 35px 0;
  border-bottom: 1px solid #ddd;
  display: block;
}
.newsList__item .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.newsList__item__txtWrap {
  width: 100%;
}
.newsList__item__txtWrap .meta {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 5px;
}
.newsList__item__txtWrap .meta time {
  font-size: 14px;
  font-weight: 700;
}
.newsList__item__txtWrap .meta .categoryList {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.newsList__item__txtWrap .meta .category {
  height: 28px;
}
.newsList__item__txtWrap .ttl {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.newsList__item__img {
  width: 100%;
  padding-top: 62%;
  margin-bottom: 20px;
}
.newsList__item__img img {
  height: 100% !important;
}
.newsList__item:hover {
  background-color: #E9EDEF;
}
.newsList__item:hover .meta .category {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .newsList {
    margin-bottom: 96px;
  }
  .newsList__item {
    padding: 45px 0;
  }
  .newsList__item .inner {
    max-width: 930px;
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 32px;
  }
  .newsList__item__txtWrap {
    width: calc(79.4% - 32px);
  }
  .newsList__item__txtWrap .meta {
    margin-bottom: 32px;
    flex-direction: row;
    align-items: center;
    grid-gap: 50px;
  }
  .newsList__item__txtWrap .meta .category {
    height: 32px;
  }
  .newsList__item__txtWrap .ttl {
    font-size: 22px;
    letter-spacing: 0.04em;
    line-height: 1.8182;
  }
  .newsList__item__img {
    width: 20.6%;
    padding-top: 16.844%;
    margin-bottom: 0;
    flex-shrink: 0;
    order: 1;
  }
}