#archive #lower-title::before {
  background-image: url(../img/information/information_top.jpg);
}
@media screen and (max-width: 767px) {
  #archive #lower-title::before {
    background-image: url(../img/information/information_top_sp.jpg);
  }
}
#archive #read-wrapper {
  margin: 7rem 0 0;
}
#archive #read-wrapper h2 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
#archive #sort-wrapper {
  margin: 5rem 0 0;
}
#archive #sort-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #archive #sort-wrapper ul {
    gap: 2rem;
    max-width: 320px;
    margin: 0 auto;
  }
}
#archive #sort-wrapper ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  width: 10rem;
  height: 3rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  color: var(--color-white);
}
#archive #sort-wrapper ul li a.category-all {
  background-color: var(--color-border-gray);
}
#archive #sort-wrapper ul li a.category-important {
  background-color: var(--color-pink);
}
#archive #sort-wrapper ul li a.category-news {
  background-color: var(--color-news-green);
}
#archive #sort-wrapper ul li a.category-column {
  background-color: var(--color-column-blue);
}
#archive #post-wrapper {
  margin: 17rem 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #archive #post-wrapper {
    margin: 12rem 0 0;
  }
}
#archive #post-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 80vw;
  height: calc(100% + 20rem);
  background-color: rgba(126, 206, 244, 0.1);
  border-radius: 4rem 0 0 4rem;
}
@media screen and (max-width: 768px) {
  #archive #post-wrapper::before {
    width: 65vw;
    height: calc(100% + 14rem);
  }
}
#archive #post-wrapper ul.post-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #archive #post-wrapper ul.post-list {
    flex-direction: column;
    row-gap: 3rem;
  }
}
#archive #post-wrapper ul.post-list::after {
  content: "";
  display: block;
  width: 30%;
}
#archive #post-wrapper ul.post-list li {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #archive #post-wrapper ul.post-list li {
    width: 100%;
  }
}
#archive #post-wrapper ul.post-list li a {
  border-radius: 2rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
}
#archive #post-wrapper ul.post-list li a::before {
  content: "";
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/icon_arrow_gray_round.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#archive #post-wrapper ul.post-list li a .image-wrapper img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem 2rem 0 0;
}
#archive #post-wrapper ul.post-list li a .text-wrapper {
  background-color: var(--color-white);
  padding: 2rem 2rem 7rem;
  border-radius: 0 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
}
#archive #post-wrapper ul.post-list li a .text-wrapper .top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#archive #post-wrapper ul.post-list li a .text-wrapper .top-wrapper p.date {
  font-size: 1.4rem;
}
#archive #post-wrapper ul.post-list li a .text-wrapper .top-wrapper p.category {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 2rem;
  border-radius: 2rem;
  font-size: 1rem;
}
#archive #post-wrapper ul.post-list li a .text-wrapper .top-wrapper p.category.important {
  background-color: var(--color-pink);
}
#archive #post-wrapper ul.post-list li a .text-wrapper .top-wrapper p.category.news {
  background-color: var(--color-news-green);
}
#archive #post-wrapper ul.post-list li a .text-wrapper .top-wrapper p.category.column {
  background-color: var(--color-column-blue);
}
#archive #post-wrapper ul.post-list li a .text-wrapper h3.title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1.5rem 0 0;
  flex-grow: 1;
  height: 100%;
}
#archive .pagination {
  margin: 14rem 0 0;
}
#archive .pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
#archive .pagination ul.page-numbers li {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}
#archive .pagination ul.page-numbers li span.current {
  opacity: 0.3;
}
#archive .pagination .next img,
#archive .pagination .prev img {
  width: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#archive .pagination .prev img {
  transform: rotate(180deg);
}/*# sourceMappingURL=archive.css.map */