.mainWrap {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 5%;
}

@media screen and (max-width: 1100px) {
  .mainWrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
#pageNews .newsListArea {
  width: 100%;
  margin: auto;
}
#pageNews .newsListArea .newsList:first-of-type {
  border-top: solid 2px #B7B7B7;
}
#pageNews .newsListArea .newsList .newsTitle {
  position: relative;
  border-bottom: solid 2px #B7B7B7;
  display: grid;
  align-items: baseline;
  padding: 24px 0 20px;
  transition: 0.3s;
  color: #0096F3;
  font-size: 22px;
  text-decoration: none;
}
#pageNews .newsListArea .newsList .newsTitle .innerWrap {
  align-items: center;
  display: flex;
  gap: 15px;
}
#pageNews .newsListArea .newsList .newsTitle .innerWrap .cat a {
  color: #5BC458;
  font-size: 14px;
  display: block;
}
#pageNews .newsListArea .newsList .newsTitle .innerWrap .newsDate {
  font-size: 14px;
  color: #9b9b9b;
}
#pageNews .newsListArea .newsList .newsTitle .newsLink {
  position: relative;
}
#pageNews .newsListArea .newsList .newsTitle:after {
  content: "";
  background-image: url(../../shared/images/icon_up.png);
  background-size: cover;
  display: block;
  width: 18px;
  height: 10px;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
}

@media only screen and (max-width: 767px) {
  #pageNews .newsListArea {
    width: 100%;
    margin: auto;
  }
  #pageNews .newsListArea .newsList .newsTitle {
    font-size: 20px;
    line-height: 1.4em;
  }
  #pageNews .newsListArea .newsList .newsTitle .newsLink {
    font-size: clamp(14px, 4.62vw, 18px);
    padding-right: 24px;
  }
  #pageNews .newsListArea .newsList .newsTitle .newsDate {
    font-size: 16px;
  }
}
.categoryArea {
  display: grid;
  width: 240px;
}
.categoryArea .ttl {
  border-bottom: 2px solid #5BC458;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.categoryArea .ttl h3 {
  font-weight: 400;
  color: #5BC458;
  font-size: clamp(23px, 2.08vw, 25px);
}
.categoryArea .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.categoryArea .content a {
  font-size: clamp(15px, 1.42vw, 17px);
  color: #5BC458;
}

@media screen and (max-width: 1100px) {
  .categoryArea {
    width: 100%;
    margin: 0 auto;
  }
  .categoryArea .content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.newsWrap {
  background-color: #fff;
}
.newsWrap .news {
  padding-bottom: 90px;
  width: 100%;
}

.secPager .wp-pagenavi a.previouspostslink {
  border: 0px;
  font-family: "Kosugi Maru", sans-serif;
}
.secPager .wp-pagenavi a.nextpostslink {
  border: 0px;
  font-family: "Kosugi Maru", sans-serif;
}
.secPager .wp-pagenavi span {
  background-color: #5BC458;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */