@charset "UTF-8";
@media screen and (min-width: 1080px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .is-pc {
    display: none;
  }
}

.article-inner {
  max-width: 1000px;
  font-size: 14px;
  padding-bottom: 100px;
}

.news-archive {
  margin: 70px 0;
}
.news-archive .news-archive-item {
  display: flex;
  gap: 20px;
  padding: 5px 0;
  flex-wrap: wrap;
  margin: 15px 0;
}
.news-archive .news-archive-item .news-archive-item-cate {
  background: #1f4cf0;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .news-archive .news-archive-item .news-archive-item-cate {
    margin-right: 140px;
  }
}
@media screen and (max-width: 960px) {
  .news-archive .news-archive-item {
    padding: 15px;
    gap: 5px;
  }
}
.news-archive .dashed {
  display: block;
  height: 2px;
  width: 100%;
  background-image: linear-gradient(to right, #c5d0d8, #c5d0d8 4px, transparent 4px, transparent 0px); /* 幅2の線を作る */
  background-size: 10px 1.3px; /* グラデーションの幅・高さを指定 */
  background-position: left bottom; /* 背景の開始位置を指定 */
  background-repeat: repeat-x; /* 横向きにのみ繰り返す */
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 50%;
  text-decoration: none;
  color: black;
  letter-spacing: normal;
}

.pagination li a:hover {
  background-color: #f0f0f0;
}

.pagination li a.active {
  background-color: #000;
  color: #fff;
}/*# sourceMappingURL=archive-news.css.map */