main {
  padding-bottom: 80px;
}

@media screen and (min-width: 769px) {
  main {
    padding-bottom: 112px;
  }
  .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: #48AC23;
  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;
  letter-spacing: 0.1em;
}
.newsList__item__txtWrap .meta .categoryList {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.newsList__item__txtWrap .meta .category {
  height: 28px;
  color: #48AC23;
}
.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: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;
  }
}

.wp-pagenavi .page:hover {
  background-color: #48AC23;
}
.wp-pagenavi .current {
  background-color: #48AC23;
}

.newsLink {
  margin-top: 40px;
}
.newsLink a {
  width: 100%;
  padding: 20px 20px 0;
  background-color: #0080CB;
  border-radius: 16px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.newsLink a span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.newsLink a span span {
  font-size: 125%;
  letter-spacing: 0.04em;
}
.newsLink a .img01 {
  width: 120px;
  margin-bottom: 15px;
  display: block;
}
.newsLink a .img02 {
  width: 160px;
  margin-bottom: -60px;
  border: 18px solid #0080CB;
  border-radius: 50%;
  overflow: hidden;
}
.newsLink a .img02 img {
  width: 100%;
  display: block;
}
.newsLink a:hover span {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .newsLink {
    margin-top: 80px;
  }
  .newsLink a {
    height: 120px;
    padding: 0 30px;
    flex-direction: row;
    justify-content: space-between;
  }
  .newsLink a span {
    font-size: 20px;
  }
  .newsLink a .img01, .newsLink a .img02 {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .newsLink a {
    height: 160px;
  }
  .newsLink a span {
    font-size: 28px;
    letter-spacing: 0.04em;
  }
  .newsLink a .img01 {
    width: 170px;
  }
  .newsLink a .img02 {
    width: 210px;
  }
}