@charset "UTF-8";
/* CSS Document */


/* =========================
  news-archive
========================= */

.news-archive {
  padding-top: 90px;
  margin-bottom: 160px;
}
.news-archive__head {
  margin-top: 40px;
  text-align: center;
}
.news-archive__ttl {
  color: #274870;
  line-height: 1.1;
}
.news-archive__ttl-sub {
  color: #274870;
}
.news-archive__list {
  margin-top: 60px;
  border-top: 1px solid #cfcfcf;
}
.news-archive__item {
  border-bottom: 1px solid #cfcfcf;
}
.news-archive__link {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}
.news-archive__date {
  width: 90px;
  color: #00bce3;
  flex-shrink: 0;
  line-height: 1.4;
}
.news-archive__txt {
  flex: 1;
  line-height: 1.5;
}
.news-archive__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  background: #274870;
  border-radius: 50%;
  flex-shrink: 0;
}
.news-archive__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .news-archive {
    padding-top: 80px;
    margin-bottom: 120px;
  }
  .news-archive__head {
    margin-top: 35px;
  }
  .news-archive__list {
    margin-top: 40px;
  }
  .news-archive__link {
    gap: 20px;
    padding: 15px 0;
  }
  .news-archive__date {
    width: 95px;
  }
  .news-archive__txt {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
	
	
}

@media screen and (max-width: 500px) {
  .news-archive {
    padding-top: 65px;
    margin-bottom: 100px;
  }
  .news-archive__head {
    margin-top: 30px;
  }
  .news-archive__list {
    margin-top: 30px;
  }
  .news-archive__link {
    gap: 15px;
    padding: 12px 0;
  }
  .news-archive__date {
    width: 75px;
  }
  .news-archive__arrow {
    width: 26px;
    height: 26px;
  }
  .news-archive__arrow::before {
    width: 7px;
    height: 7px;
  }
}

/* =========================
  pager
========================= */

.pager {
  margin-top: 40px;
}
.pager__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.pager__item {
  line-height: 1;
}
.pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #000;
  border-radius: 50%;
}
.pager__item--current .pager__link {
  color: #fff;
  background: #274870;
}
.pager__item--next .pager__link,
.pager__item--prev .pager__link{
  position: relative;
  background: #f3f3f3;
}
.pager__link--next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
.pager__link--prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.pager__dots {
  display: block;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .pager {
    margin-top: 35px;
  }
}

@media screen and (max-width: 500px) {
  .pager {
    margin-top: 30px;
  }
  .pager__list {
    gap: 10px;
  }
  .pager__link {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  .pager__dots {
    font-size: 2rem;
  }
  .pager__link--next::before {
    width: 10px;
    height: 10px;
  }
}