@charset "utf-8";
.news_col {
  width: 100%;
  border-top: 1px solid #C2C2C2;
}
.news_row {
  color: var(--txt-color);
  display: flex;
  align-items: center;
  padding: 25px 30px;
  gap: 15px;
  border-bottom: 1px solid #C2C2C2;
}
.news_cate {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--deep-blue);
  color: #fff;
  border-radius: 50px;
  padding: 0 15px;
  min-width: 95px;
  &::before{
    content: 'お知らせ';
  }
  &[data-cate="news"]{
    &::before{display: none;}
  }
  &[data-cate="info"]{
    background: #004098;
    &::before{display: none;}
  }
}
.news_tit {
  max-width: 730px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 30px auto 0;
}
.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8ecf7;
  color: var(--txt-color);
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 40px;
  &.current{
    background: var(--deep-blue);
    color: #fff;
  }
  &.dots {
    background: no-repeat;
    width: auto;
  }
  &.next {
    padding-bottom: 4px;
  }
  &.prev {
    padding-bottom: 4px;
  }
}
@media screen and (max-width: 767px){

.news_row {
  flex-wrap: wrap;
}
.news_tit {
  width: 100%;
}
.page-numbers {
  width: 29px;
  height: 29px;
}
}