.archive_news {
  color: #11184e;
  margin-top: 7rem;
}

.news_btn_list {
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 15rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  align-items: center;
}

.btn_list_wrap {
  height: 3.3rem;
}

.btn_lists {
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  border: 1px solid #11184e;
  margin-right: 2rem;
  color: #11184E;
}

.btn_lists.selected{
  color: white;
  background-color: #11184e;
}

/* article */

.archive_article {
  width: 128rem;
  margin-top: 12rem;
  margin-bottom: 15rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}

.archive_article_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6.5rem;
  row-gap: 6.5rem;
  padding: 0 5rem;
  margin-bottom: 8.5rem;
}

.archive_article_list_other {
  margin-bottom: 8.5rem;
}

.article_list_wrap {
  width: 35rem;
  padding: 1rem;
  background-color: #11184e;
  min-height: 50rem;
  height: max-content;
}

.article_list {
  border: 2px solid #ffffff;
  padding: 3.6rem 2rem 2.3rem;
  min-height: 48rem;
}

.article_list_date {
  font-size: 1.3rem;
  height: 1.9rem;
}

.article_list_name {
  font-size: 1.9rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: calc(23/19);
  /* height: 5.5rem; */
}

.article_list img {
  width: 100%;
  height: 16.13rem;
  object-fit: contain;
  display: block;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

.article_list img:hover {
  border-radius: 50%;
}

.article_list_detail {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: calc(23/15);
  height: 6.8rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article_list_item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  row-gap: 1.5rem;
}

.article_list_btn {
  font-size: 1.3rem;
  padding: 0.3rem 1.1rem;
  background-color: #ffffff;
  color: #11184e;
  margin-left: 1.5rem;
  height: 2.4rem;
}

/* ページネーション 修正 */
/* 真ん中に設置 */
.pagination {
  text-align: center;
}

/* 横並びにする */
.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 2.5rem;
}

/*  ページタブの共通スタイル */
.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  border: #11184e 0.1rem solid;
  color: #11184e;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 0.8rem;
  margin-bottom: 10rem;
  font-size: 1.4rem;
  font-family: var(--NotoSans);
  font-weight: 500;
  line-height: 2.5rem;
}

/* マウスが乗った時の、ボタンの背景の色と文字の色 */
.nav-links a.page-numbers:hover {
  color: #ffffff;
  background-color: #11184e;
}

/*  現在のページのタブ  */
.nav-links .current {
  background: #11184e;
  color: #ffffff;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.4rem;
  border-radius: 50%;
  margin: 0 0.8rem;
  color: #11184e;
  border: #11184e 0.2rem solid;
  text-align: center;
  font-family: var(--NotoSans);
  font-weight: 500;
  position: relative;
  line-height: 2rem;
}

/*  数字省略の「・・・」 */
.nav-links .dots {
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  color: #11184e;
  line-height: 4rem;
}

.current-cat {
  background-color: #11184e;
  color: #ffffff;
}
/* .article_link {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  justify-content: center;
  margin-bottom: 15rem;
}

.article_link_btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #11184e;
  border-radius: 50%;
  color: #11184e;
  text-align: center;
  margin-right: 0.6rem;
}

.article_link_btn_last {
  margin-right: 0;
}

.article_link_other {
  color: #11184e;
  margin-right: 0.6rem;
  text-align: center;
} */


@media screen and (max-width: 699.98px) {
  /* レスポンシブ */
  .archive_news {
    margin-top: 4.5rem;
  }

  .news_btn_list {
    padding: 0 2.7rem;
    row-gap: 1rem;
  }

  .btn_lists {
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
    margin-right: 2rem;
  }

  .btn_lists_deletion {
    display: none;
  }

  /* article */

  .archive_article {
    width: 100%;
    margin-top: 10rem;
  }

  .archive_article_list {
    flex-direction: column;
    row-gap: 0rem;
    padding: 0 2.5rem;
    margin-bottom: 10rem;
  }

  .archive_article_list_other {
    margin-bottom: 5.5rem;
  }

  .article_list_wrap {
    max-width: 32.5rem;
    margin-bottom: 4.5rem;
  }

  .article_list_wrap:last-child {
    margin-bottom: 0;
  }

  .article_list {
    padding: 3rem 2rem 1.8rem;
  }

  .article_list_name {
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
    line-height: calc(23/16);
    /* height: 4.7rem; */
  }

  /* .article_list img {
    height: 18.6rem;
  } */

  .article_list_detail {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: calc(23/14);
    height: 6.7rem;
  }

  .article_list_btn {
    font-size: 1.3rem;
    padding: 0.2rem 0.8rem;
  }

  .article_list_btn:first-child {
    margin-right: 1rem;
  }

  .article_link {
    margin-bottom: 10rem;
  }

  
}
