@charset "utf-8";

.archive_articles_wrapper {
  width: 116rem;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: 54rem 54rem;
  column-gap: 8rem;
  font-family: var(--NotoSerif);
}

.articles_wrapper {
  width: 54rem;
  height: 24.5rem;
  padding: 2.5rem 0 1rem;
  border-bottom: .1rem solid black;
}

.articles_link_wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 30rem 22rem;
  column-gap: 2rem;
}

.articles_image {
  width: 30rem;
  height: 21rem;
}

.articles_text_wrapper {
  font-size: 2rem;
}

.articles_time {
  line-height: 2.7rem;
  letter-spacing: .2rem;
}

.articles_title {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: .2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  /* 英文折り返し用 */
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}



/* --------Pagination-------- */

.articles_pagination_wrapper {
  margin: 8rem auto 18rem;
  width: fit-content;
  height: 5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.page-numbers .prev,
.page-numbers .next {
  display: none;
}

ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

ul.page-numbers li {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  /* position: relative;
  left: 1rem; */
}

ul.page-numbers li:has(.next),
ul.page-numbers li:has(.prev) {
  display: none;
}

a.page-numbers {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 2rem;
  color: #2F3C5E;
  display: flex;
  justify-content: center;
  align-items: center;
  border: .1rem solid #2F3C5E;
}

.current {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 2rem;
  color: #2F3C5E;
  display: flex;
  justify-content: center;
  align-items: center;
  border: .1rem solid #2F3C5E;
  background-color: #FFC134;
}

.page-numbers.dots {
  width: fit-content;
  height: 100%;
  font-size: 1.3rem;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: end;
}

ul.page-numbers li:has(.dots) {
  width: 0;
  display: flex;
  justify-content: center;
}


@media screen and (max-width:699.98px) {

  .archive_articles_wrapper {
    width: 35.5rem;
    margin: 1.5rem auto 0;
    grid-template-columns: 33.5rem;
    column-gap: 0;
  }

  .articles_wrapper {
    width: 35.5rem;
    height: 20rem;
    padding: 1.5rem 0;

  }

  .articles_link_wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 17rem 17.5rem;
    column-gap: 1rem;
  }

  .articles_image {
    width: 17rem;
    height: 17rem;
  }

  .articles_title {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: .2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }

  /* --------Pagination-------- */
  .articles_pagination_wrapper {
    margin: 4rem auto 15rem;
    gap: 1.5rem;
  }

  ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  ul.page-numbers li:has(.dots) {
    width: .6rem;
    display: flex;
    justify-content: center;
  }
}