/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

#archiveNews .news {
  padding-bottom: max(11rem, 70px);
}
#archiveNews .news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(10rem, 50px) max(21rem, 100px);
}
@media screen and (max-width: 1300px) {
  #archiveNews .news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  #archiveNews .news__wrapper {
    gap: max(10rem, 50px);
  }
}
#archiveNews .news__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#archiveNews .news__category h3 {
  color: #3a9447;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(2.1rem, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#archiveNews .news__category__list {
  display: grid;
  gap: max(2rem, 20px);
  margin-top: max(3rem, 30px);
}
#archiveNews .news__category__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 10px);
}
#archiveNews .news__category__list__item a .category__radio {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: max(2.2rem, 20px);
  height: max(2.2rem, 20px);
  border-radius: 50%;
  border: max(0.2rem, 2px) solid #3a9447;
}
#archiveNews .news__category__list__item a .category__radio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #3a9447;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#archiveNews .news__category__list__item a .category__name {
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
#archiveNews .news__category__list__item a:hover {
  opacity: 1;
}
#archiveNews .news__category__list__item a:hover .category__radio::before {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
#archiveNews .news__category__list__item a.active .category__radio::before {
  content: "";
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 1;
}
#archiveNews .news__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: max(4rem, 30px);
     -moz-column-gap: max(4rem, 30px);
          column-gap: max(4rem, 30px);
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #archiveNews .news__list {
    row-gap: 10px;
  }
}
#archiveNews .news__list__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
#archiveNews .news__list__item:not(:last-of-type) {
  padding-bottom: max(2rem, 20px);
  margin-bottom: max(2rem, 20px);
  border-bottom: max(0.2rem, 2px) dotted rgba(58, 148, 71, 0.6);
}
#archiveNews .news__list__item a {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media screen and (max-width: 1000px) {
  #archiveNews .news__list__item a {
    grid-column: span 1;
    row-gap: 15px;
  }
}
#archiveNews .news__list__item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px max(4rem, 15px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#archiveNews .news__list__item__meta time {
  color: #3a9447;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(2.1rem, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#archiveNews .news__list__item__meta .news__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
#archiveNews .news__list__item__meta .news__categories__item {
  padding: max(0.8rem, 8px) max(1.5rem, 15px);
  background: #3a9447;
  border-radius: 5px;
  line-height: 1;
}
@media screen and (max-width: 550px) {
  #archiveNews .news__list__item__meta .news__categories__item {
    padding: 5px 15px;
  }
}
#archiveNews .news__list__item__meta .news__categories__item span {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
#archiveNews .news__list__item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  overflow: hidden;
}
#archiveNews .news .pagination {
  padding-top: max(12rem, 80px);
  padding-bottom: max(2rem, 20px);
}
#archiveNews .news .pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(3rem, 25px);
}
#archiveNews .news .pagination .nav-links .page-numbers {
  color: #183b5a;
  font-family: YakuHanJP, "Outfit", sans-serif;
  font-size: max(2.1rem, 18px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
#archiveNews .news .pagination .nav-links .page-numbers.prev, #archiveNews .news .pagination .nav-links .page-numbers.next {
  color: #3a9447;
}
#archiveNews .news .pagination .nav-links .page-numbers.prev.nolink, #archiveNews .news .pagination .nav-links .page-numbers.next.nolink {
  opacity: 0.4;
}
#archiveNews .news .pagination .nav-links .page-numbers.current {
  position: relative;
  color: #3a9447;
}
#archiveNews .news .pagination .nav-links .page-numbers.current::before {
  content: "";
  position: absolute;
  top: 125%;
  left: 50%;
  width: max(max(0.6rem, 6px));
  height: max(max(0.6rem, 6px));
  aspect-ratio: 1/1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background: #3a9447;
}/*# sourceMappingURL=archive-news.css.map */