.common_title {
  font-size: 8.2rem;
}
.filter {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 8rem;
}
.filter_select {
  width: 15.7rem;
  height: 3.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: 1.5rem;
  border-radius: 2.25rem;
  font-family: var(--font-ppneue);
  font-size: 1.4rem;
  font-weight: 500;
  outline: 0;
  background-color: #f5f4ea;
  cursor: pointer;
  background-image: url(../img/plus-icon-brown.svg);
  background-position: right 1.5rem center;
  background-repeat: no-repeat;
  background-size: 1.1rem 1.1rem;
}
.filter_select:hover,
.filter_select:focus,
.filter_select:active {
  background-color: #856d47;
  color: #fafafa;
}

.news {
  padding-top: 13rem;
  background-color: #fafafa;
  position: relative;
}
.news_inner {
  max-width: 135rem;
  margin: 0 auto;
}
.news_box {
  padding-left: 32rem;
  position: relative;
}
.news_title {
  position: absolute;
  top: -1.8rem;
  left: 0;
  overflow: hidden;
}
.news_sub_title {
  font-family: var(--font-ppneue);
  font-size: 1.8rem;
}
.news_list {
  margin-top: 9rem;
}
.news_list_item + .news_list_item {
  margin-top: 3.2rem;
}
.news_list_item_link {
  display: flex;
  color: #303030;
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid rgb(82 82 82 / 0.3);
  position: relative;
}
.news_list_item_link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  mask: url(../img/arrow-right.svg) no-repeat center;
  background-color: #303030;
}
.news_list_item_link.active:after {
  animation-name: transformLeftRight;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  transition-timing-function: ease-out;
}
.news_list_item_date {
  font-family: var(--font-ppneue);
  font-size: 1.4rem;
  width: 15rem;
}
.news_list_item_info {
  width: 70rem;
}
.news_list_item_title {
  font-size: 1.4rem;
  line-height: 1.8;
}
.news_list_item_category {
  font-family: var(--font-ppneue);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  margin-top: 1rem;
  display: inline-block;
}
.news_btn {
  position: absolute;
  top: 0;
  right: 0;
}
.news_empty {
  margin-top: 9rem;
  font-size: 1.4rem;
}
.news_box .wp-pagenavi,
.news_box .navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 2rem;
  min-height: 2.8rem;
  margin-top: 7rem;
  font-family: var(--font-ppneue);
  font-size: 1.4rem;
}
.news_box .wp-pagenavi > a,
.news_box .wp-pagenavi > span,
.news_box .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: rgba(48, 48, 48, 0.5);
  line-height: 1;
}
.news_box .wp-pagenavi .current,
.news_box .navigation.pagination .current {
  color: #303030;
  font-weight: 500;
}
.news_box .wp-pagenavi .previouspostslink,
.news_box .wp-pagenavi .nextpostslink,
.news_box .navigation.pagination .prev,
.news_box .navigation.pagination .next {
  position: absolute;
  top: 50%;
  min-width: auto;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(48, 48, 48, 0.5);
  border-radius: 100vmax;
  transform: translateY(-50%);
}
.news_box .wp-pagenavi .previouspostslink,
.news_box .navigation.pagination .prev {
  left: 0;
}
.news_box .wp-pagenavi .nextpostslink,
.news_box .navigation.pagination .next {
  right: 0;
}
.news_box .wp-pagenavi .nextpostslink:hover,
.news_box .wp-pagenavi .previouspostslink:hover {
  color: #fff;
  background-color: #856d47;
}

.news_box .wp-pagenavi a:focus-visible,
.news_box .navigation.pagination a:focus-visible {
  color: #303030;
  outline: 0.2rem solid #856d47;
  outline-offset: 0.3rem;
}
@media (max-width: 1024px) {
  .common_title {
    font-size: 5rem;
  }

  .filter {
    margin-top: 6rem;
  }
  .filter_select {
    flex: 1;
  }

  .news {
    padding-top: 8rem;
  }
  .news_inner {
    padding: 0 1.6rem;
  }
  .news_box {
    padding-left: 0;
  }
  .news_title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news_title {
    position: static;
  }
  .news_sub_title {
    font-size: 1.6rem;
  }
  .news_list {
    margin-top: 5rem;
  }
  .news_list_item_date {
    font-size: 1.2rem;
    width: 7.5rem;
  }
  .news_list_item_info {
    width: 26rem;
  }
  .news_list_item_title {
    font-size: 1.3rem;
    margin-top: -0.5rem;
  }
  .news_list_item_category {
    margin-top: 1rem;
  }
  .news_btn {
    position: static;
    display: flex;
    margin: 6rem auto 0;
  }
  .news_empty {
    margin-top: 5rem;
    font-size: 1.3rem;
  }
  .news_box .wp-pagenavi,
  .news_box .navigation.pagination .nav-links {
    gap: 1.6rem;
    margin-top: 5rem;
    font-size: 1.2rem;
  }
  .news_box .wp-pagenavi .previouspostslink,
  .news_box .wp-pagenavi .nextpostslink,
  .news_box .navigation.pagination .prev,
  .news_box .navigation.pagination .next {
    padding: 0.4rem 1.2rem;
  }
}

/* single */
.single-news {
  margin-top: 24rem;
}
.single-news .common_title {
  font-size: 2.2rem;
  text-align: left;
}
.news-detail_layout {
  display: grid;
  grid-template-columns: 42rem 65rem;
  gap: 8rem;
  padding-bottom: 13rem;
  border-bottom: 0.1px solid rgba(5, 5, 5, 0.5);
}
.news-detail_side {
  position: sticky;
  top: 24rem;
  align-self: start;
  padding-bottom: 12rem;
}
.news-detail_main,
.news-detail_title {
  margin-top: 6rem;
}
.news-detail_title {
  font-size: 2.4rem;
  line-height: 1.8;
}
.news-detail_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 18rem;
  font-size: 1.8rem;
  font-family: var(--font-ppneue);
}
.news-detail_category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.9rem;
}
.news-detail_meta {
  margin-top: 2rem;
}
.news-detail_thumb {
  aspect-ratio: 648 / 401;
  position: relative;
  margin-bottom: 6rem;
  overflow: hidden;
}
.news-detail_image_back {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  transform: scale(1.1);
}
.news-detail_image {
  position: relative;
  z-index: 1;
  display: block;
  width: 80%;
  height: 100%;
  margin-inline: auto;
  object-fit: cover;
}
.news-detail_cont {
  font-size: 1.4rem;
  line-height: 1.8;
}
.news-detail_cont > :first-child {
  margin-top: 0;
}
.news-detail_cont .wp-block-heading {
  margin-top: 6rem;
  font-weight: 500;
  line-height: 1.6;
}
.news-detail_cont h2.wp-block-heading {
  font-size: 2rem;
}
.news-detail_cont h3.wp-block-heading,
.news-detail_cont h4.wp-block-heading,
.news-detail_cont h5.wp-block-heading,
.news-detail_cont h6.wp-block-heading {
  font-size: 1.6rem;
}
.news-detail_cont ul,
.news-detail_cont ol {
  margin-top: 4rem;
  padding-left: 1.5em;
}
.news-detail_cont ul {
  list-style: disc;
}
.news-detail_cont ol {
  list-style: decimal;
}
.news-detail_cont li + li {
  margin-top: 1rem;
}
.news-detail_cont p a,
.news-detail_cont li a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.news-detail_cont .wp-block-image {
  width: 100%;
  margin: 6rem 0 0;
}
.news-detail_cont .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}
.news-detail_cont .wp-block-image figcaption {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.news-detail_cont .wp-block-image + p,
.news-detail_cont .wp-block-image + .wp-block-heading,
.news-detail_cont ul + p,
.news-detail_cont ol + p {
  margin-top: 6rem;
}
.news-detail_cont + .news-detail_cont {
  margin-top: 8rem;
}
.news-detail_cont p + p {
  margin-top: 8rem;
}
/* .news-detail_cont h2 {
  position: relative;
  margin-top: 8rem;
}
.news-detail_cont h2::before {
  content: "◆";
  margin-right: 0.5rem;
} */
.news-detail_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  width: 25.3rem;
  height: 4.4rem;
  line-height: 1;
  background-color: #856d47;
  color: #fff;
  border-radius: 2.2rem;
}
.news-detail_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.35rem);
  right: 1.6rem;
  width: 0.8rem;
  height: 0.7rem;
  mask: url(../img/arrow-right.svg) no-repeat center;
  mask-size: contain;
  background-color: #fff;
}
.news-detail_btn.active::after {
  animation: transformLeftRight 0.3s ease-out forwards;
}
/* .news-detail_btn .common_btn_arrow {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
}
.news-detail_btn .common_btn_arrow:after {
  transform: rotate(-45deg);
} */
.news-detail_back {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
.news-detail_back .back_btn {
  gap: 1rem;
  font-family: var(--font-ppneue);
}
.news-detail_back .common_btn:before {
  content: "";
  mask: url(../img/arrow-right.svg) no-repeat center;
  mask-size: contain;
  background-color: #303030;
  transform: rotate(-180deg);
  width: 0.8rem;
  height: 0.7rem;
}
.common_btn.back_btn:hover:before {
  animation-name: transformRightLeft;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  transition-timing-function: ease-out;
}
.news-detail_back .common_btn:after {
  display: none;
}
@media (max-width: 1024px) {
  .single-news {
    margin-top: 12rem;
  }
  .news-detail_layout {
    display: block;
    margin-top: 8rem;
    padding-bottom: 8rem;
  }
  .news-detail_side {
    position: static;
    padding-bottom: 0;
  }
  .news-detail_label {
    font-size: 1.2rem;
  }
  .news-detail_title {
    margin-top: 4rem;
    font-size: 2rem;
  }
  .news-detail_meta {
    width: auto;
    justify-content: flex-start;
    gap: 3rem;
    font-size: 1.4rem;
  }
  .news-detail_main {
    margin-top: 6rem;
  }
  .news-detail_cont {
    font-size: 1.3rem;
  }
  .news-detail_cont .wp-block-heading,
  .news-detail_cont p + p {
    margin-top: 4rem;
  }
  .news-detail_cont h2.wp-block-heading {
    font-size: 1.8rem;
  }
  .news-detail_cont h3.wp-block-heading,
  .news-detail_cont h4.wp-block-heading,
  .news-detail_cont h5.wp-block-heading,
  .news-detail_cont h6.wp-block-heading {
    font-size: 1.5rem;
  }
  .news-detail_cont ul,
  .news-detail_cont ol {
    margin-top: 3rem;
  }
  .news-detail_cont .wp-block-image {
    margin-top: 4rem;
  }
  .news-detail_cont .wp-block-image + p,
  .news-detail_cont .wp-block-image + .wp-block-heading,
  .news-detail_cont ul + p,
  .news-detail_cont ol + p {
    margin-top: 4rem;
  }
  .news-detail_thumb {
    margin-bottom: 4rem;
  }
  .news-detail_back {
    margin-top: 8rem;
  }
}
