@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'");
/* # =================================================================
# Topics
# ================================================================= */

/* -- news -- */
.news {
  padding-top: 60px;
  padding-bottom: 120px;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6.8965517241%;
     -moz-column-gap: 6.8965517241%;
          column-gap: 6.8965517241%;
  border-bottom: 1px solid #3b5266;
  padding: 36px 0;
}
.news__date {
  width: 90px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Lato";
}
.news__tag {
  width: 70px;
}
.news__title {
  width: calc(100% - (6.8965517241% + 160px));
  font-weight: bold;
  line-height: 1.7;
}

@media screen and (max-width: 540px) {
  .news {
    padding-top: 44px;
  }
  .news__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 28px;
    padding: 36px 0 24px;
  }
  .news__title {
    width: 100%;
  }
}


/* -- pagination -- */
.pagination {
  margin: 60px auto 0;
}

.pagination .nav-links {
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 15px;
  background-color: #f4f4f4; 
}
.pagination .page-numbers.current {
  background-color: #171c61;
  color: #fff;
}
  


.screen-reader-text {
	display: none;
}



