.news {
  padding-bottom: 100px;
}
.news .section2 {
  width: 90%;
  margin: 50px auto 0;
}
@media screen and (min-width: 560px) {
  .news .section2 {
    margin: 100px auto 0;
    max-width: 1326px;
  }
}
.news .section2 .category-flex {
  display: flex;
  gap: 10px;
  font-size: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 560px) {
  .news .section2 .category-flex {
    justify-content: left;
    margin-bottom: 100px;
  }
}
.news .section2 .category-flex a {
  width: 130px;
  text-align: center;
  color: #617cd3;
  border: 1px solid #617cd3;
  border-radius: 25px;
  padding: 5px 13px 7px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .news .section2 .category-flex a:hover {
    color: #fff;
    background-color: #617cd3;
  }
}
.news .section2 .category-flex a.active {
  background-color: #617cd3;
  color: #fff;
}
.news .section2 #fetch-postlist a {
  transition: all 0.3s;
}
@media (hover: hover) {
  .news .section2 #fetch-postlist a:hover {
    background-color: #617cd31a;
  }
}
.news .section2 #fetch-postlist a,
.news .section2 #fetch-postlist .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 26px 15px;
  border-top: 1px solid #617cd3;
}
@media screen and (min-width: 560px) {
  .news .section2 #fetch-postlist a,
  .news .section2 #fetch-postlist .text {
    padding: 40px 30px;
  }
}
.news .section2 #fetch-postlist a:nth-last-child(1),
.news .section2 #fetch-postlist .text:nth-last-child(1) {
  border-bottom: 1px solid #617cd3;
}
.news .section2 #fetch-postlist a .date,
.news .section2 #fetch-postlist .text .date {
  color: #617cd3;
  font-size: 16px;
}
.news .section2 #fetch-postlist a .category,
.news .section2 #fetch-postlist .text .category {
  font-size: 10px;
  background-color: #617cd3;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 1px 8px 2px;
  margin-left: 8px;
  justify-content: center;
  width: 96px;
}
@media screen and (min-width: 560px) {
  .news .section2 #fetch-postlist a .category,
  .news .section2 #fetch-postlist .text .category {
    margin: 0 30px 0 60px;
    padding: 3px 0 3px 3px;
  }
}
.news .section2 #fetch-postlist a .title,
.news .section2 #fetch-postlist .text .title {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  position: relative;
}
@media screen and (min-width: 560px) {
  .news .section2 #fetch-postlist a .title,
  .news .section2 #fetch-postlist .text .title {
    width: initial;
    margin-top: 0;
    flex-grow: 1;
  }
}
.news .section2 #fetch-postlist a.pdf .title:after,
.news .section2 #fetch-postlist .text.pdf .title:after {
  content: 'PDF';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  color: #617cd3;
  border: 1px solid #617cd3;
  padding: 1px 8px 2px;
  border-radius: 25px;
}
@media screen and (min-width: 560px) {
  .news .section2 #fetch-postlist a.pdf .title:after,
  .news .section2 #fetch-postlist .text.pdf .title:after {
    right: 30px;
  }
}
.news .section2 .pagination-flex {
  display: flex;
  font-weight: 500;
  color: #617cd3;
  margin: 25px auto 0;
  justify-content: center;
}
@media screen and (min-width: 560px) {
  .news .section2 .pagination-flex {
    justify-content: space-between;
    margin: 100px auto 0;
  }
}
.news .section2 .pagination-flex .prev,
.news .section2 .pagination-flex .next {
  display: none;
  font-size: 12px;
  border: 1px solid #617cd3;
  padding: 12px 68px;
  border-radius: 45px;
  position: relative;
  transition: all 0.3s;
}
@media (hover: hover) {
  .news .section2 .pagination-flex .prev:hover,
  .news .section2 .pagination-flex .next:hover {
    color: #fff;
    background-color: #617cd3;
  }
}
.news .section2 .pagination-flex .prev svg,
.news .section2 .pagination-flex .next svg {
  width: 8px;
  height: 9px;
  position: absolute;
}
@media screen and (min-width: 560px) {
  .news .section2 .pagination-flex .prev,
  .news .section2 .pagination-flex .next {
    display: flex;
  }
}
.news .section2 .pagination-flex .prev.disable,
.news .section2 .pagination-flex .next.disable {
  pointer-events: none;
}
.news .section2 .pagination-flex .prev svg {
  left: 16px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.news .section2 .pagination-flex .next svg {
  right: 16px;
}
.news .section2 .pagination-flex #fetch-pagenation {
  display: flex;
  gap: 16px;
}
.news .section2 .pagination-flex a,
.news .section2 .pagination-flex span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.news .section2 .pagination-flex .current {
  background-color: #617cd3;
  color: #fff;
  border-radius: 25px;
}
