body {
  color: var(--gray);
}
.archive-news {
  margin-top: 6rem;
  padding-bottom: 20rem;
  line-height: 1.7;
  letter-spacing: 0.15em;
}
.page-head_wrap {
  padding-inline: 10rem;
}
.news_inner {
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
.page-head_title {
  transform: translateY(-40%);
}
#newslist {
  scroll-margin-top: 20rem;
}
.news_list {
  margin-top: 6rem;
}
.news_link {
  position: relative;
  display: flex;
  gap: 10rem;
  padding: 4rem 2rem;
  /* justify-content: space-between; */
  align-items: baseline;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_link:before {
  content: "";
  width: 100%;
  height: 0.14rem;
  background-color: rgb(93 93 93 / 0.4);
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.news_link:after {
  content: "";
  width: 100%;
  height: 0.14rem;
  background-color: var(--main-color);
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news_link:hover {
    color: var(--main-color);
    background-color: rgba(255, 254, 244, 0.3);
  }
  .news_link:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.news_info {
  display: flex;
  gap: 2rem;
  align-items: center;
  line-height: 1;
}
.news_date {
  font-size: 1.7rem;
}
.news_category {
  font-size: 1.4rem;
}
.news_title {
  font-size: 1.7rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .page-head_wrap {
    padding-inline: 2rem;
  }
  .archive-news {
    padding-bottom: 8rem;
  }
  .news_link {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .news_date,
  .news_category {
    font-size: 1.2rem;
  }
  .news_title {
    font-size: 1.4rem;
  }
}

/* single-news */
.single-news {
  margin-top: 4rem;
}
.single-news .wp-pagenavi {
  justify-content: space-between;
  margin-top: 5rem;
}
.single-news .filter {
  margin: 7rem 0 15rem;
}
.news_article {
  background-color: rgba(255, 254, 244, 0.5);
  letter-spacing: 0.15em;
  border-radius: 0.7rem;
}
.news_article_inner {
  padding: 4rem 5rem;
}
.news_article_cont {
  padding: 0 2rem 3rem 2rem;
}
.news_article .news_date {
  font-size: 1.7rem;
  color: var(--main-color);
}
.news_article .news_category {
  padding: 0.5rem 2rem;
  font-size: 1.4rem;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
}
/* .news_article  h2.wp-block-heading */
.news_article h2,
.news_article h3 {
  line-height: 1.7;
  font-weight: 500;
}
.news_article h2 {
  margin-top: 2rem;
  padding-bottom: 2rem;
  font-size: 3rem;
  border-bottom: 1px solid #5d5d5d;
}
.news_article h3 {
  margin-top: 4rem;
  font-size: 2.4rem;
}
.news_article p {
  margin-top: 2rem;
  font-size: 1.7rem;
  line-height: 1.7;
}
.news_article a {
  color: var(--main-color);
  font-size: 1.7rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--main-color);
}
.news_article a:hover {
  opacity: 0.6;
}
.news_article figure {
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 1rem;
}
.news_article figure.is-landscape {
  width: calc(700 / 1000 * 100%);
}
.news_article figure.is-portrait {
  width: calc(380 / 1000 * 100%);
}
.news_article figure.is-square {
  width: calc(500 / 1000 * 100%);
}
.news_article figure img {
  display: block;
  width: 100%;
  height: auto;
  padding-inline: 4rem;
  object-fit: cover;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .news_article_inner {
    padding: 2.5rem;
  }
  .news_article_cont {
    padding: 0;
  }
  .news_article .news_date {
    font-size: 1.3rem;
  }
  .news_article .news_category {
    font-size: 1.2rem;
  }
  .news_article h2 {
    /* margin-top: 2rem;
    padding-bottom: 2rem; */
    font-size: 2rem;
  }
  .news_article h3 {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
  .news_article p {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .news_article a {
    font-size: 1.4rem;
  }
  .news_article figure.is-landscape,
  .news_article figure.is-portrait,
  .news_article figure.is-square {
    width: 100%;
  }
  .news_article figure img {
    padding-inline: 3rem;
  }
}
