@charset "utf-8";

/* 全体設定 */

.archive_site_wrap {
  width: 100%;
  margin-top: 4.5rem;
  margin-bottom: 20rem;
  color: #000;
  font-family: var(--NotoSans);
}

/* タイトル */

.archive_title_wrap {
  width: 10.9rem;
  margin-left: 4.1rem;
}

.archive_title {
  font-size: 4rem;
  font-weight: bold;
  padding-left: 1rem;
  margin-bottom: 4.5rem;
  border-left: 1rem #0068B7 solid;
}

/* アーカイブ コンテンツ */

.archive_content_wrap {
  width: 115rem;
  margin: 0 auto;
  margin-bottom: 4.3rem;
}

.archive_item {
  display: flex;
  flex-wrap: wrap;
  gap: calc((115rem - 25rem *4) /3);
}

.archive_img {
  object-fit: contain;
  width: 25rem;
  height: 28rem;
  margin-bottom: 1.5rem;
  background-color: #aeb3b7;
}

.archive_datetime {
  font-size: 1.5rem;
  font-weight: 600;
}

.archive_item_title {
  margin-top: 0.5rem;
  width: 25rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: calc(20/15);
  word-break: break-all;
}

/* ページネーション部分 */

.nav-links {
  width: 1.5rem;
  height: 4rem;
  margin: 0 auto;
}

.page-numbers {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  border: 0.1rem solid #000;
  border-radius: 5rem;
}

.current {
  width: 4rem;
  height: 4rem;
  border-radius: 5rem;
  line-height: 4rem;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.prev {
  border: none;
}

.dots {
  padding-top: 1rem;
  border: none;
}

.next {
  border: none;
}

ul.page-numbers {
  border: none;
}

/* レスポンシブ */

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


  /* 全体設定 */

  .archive_site_wrap {
    width: 34.5rem;
    margin: 0 auto;
    margin-top: 2.2rem;
    margin-bottom: 15rem;
  }

  /* タイトル */

  .archive_title_wrap {
    width: 7rem;
    margin: 0;
  }

  .archive_title {
    font-size: 2.5rem;
    margin-bottom: 1.4rem;
    padding-left: 0.5rem;
  }

  /* アーカイブコンテンツ */

  .archive_content_wrap {
    width: 34.5rem;
    margin: 0 auto;
    margin-bottom: 4.8rem;
  }

  .archive_item {
    flex-direction: column;
    gap: 3rem;
  }

  .archive_img {
    width: 34.5rem;
    height: 17.5rem;
  }

  .archive_item_title {
    width: 34.5rem;
  }




}