/*--------------------------------------------------------------
# ページビジュアル
--------------------------------------------------------------*/
.page_visual {
  background: url(/assets/img/news/page_visual.jpg) no-repeat center / cover;
}
/*--------------------------------------------------------------
# サイド
--------------------------------------------------------------*/
.page_content_wrap {
  padding-bottom: 13rem;
  @media (min-width:768px) {
    padding-bottom: 20rem;
    @media (min-width: 1200px) {
      background-image: url(/assets/img/common/side_flower_left.png),url(/assets/img/common/side_flower_right.png);
      background-position: top left, top right;
      background-repeat: repeat-Y;
      background-size: 6%, 7%;
    }
  }
}
/*--------------------------------------------------------------
# コンテンツ
--------------------------------------------------------------*/
.news_content {
  min-height: 30rem;
}
.news_date {
  color: var(--key-color);
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
}
.news_content .news_title {
  font-size: var(--fs-block-title);
  line-height: 1.5;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem,transparent 1.6rem);
  background-size: 1.6rem 0.2rem;
  background-position: left 0 top 98%;
  background-repeat: repeat-x;
}
.news_content h2 {
  color: var(--key-color);
  font-size: clamp( 1.8rem, calc( 1.2rem + 1.6666666666666667vw ), 3.2rem );
  line-height: 1.5;
  margin: 0.5em 0;
}
.news_content h3 {
  font-size: var(--fs-block-title);
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.news_content p {
  margin-bottom: 1em;
}
.news_content ul {
  list-style-type: disc;
  margin: 0 0 1em 1.5em;
}
.news_content ol {
  list-style-type: decimal;
  margin: 0 0 1em 1.5em;
}
.news_content img {
  margin: 1rem 0;
}
/*--------------------------------------------------------------
# アーカイブ
--------------------------------------------------------------*/
.news_list {
  margin-top: 6rem;
  padding-top: 1em;
  background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem,transparent 1.6rem);
  background-size: 1.6rem 0.2rem;
  background-position: left 0 top 0;
  background-repeat: repeat-x;
  @media (min-width:768px) {
    margin-top: 8rem;
  }

  & li {
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    background-image: linear-gradient(to right, #D9D9D9, #D9D9D9 0.8rem, transparent 0.8rem,transparent 1.6rem);
    background-size: 1.6rem 0.2rem;
    background-position: left 0 top 98%;
    background-repeat: repeat-x;

    & a {
      color: inherit;
      padding-bottom: 0.5em;
      @media (min-width:768px) {
        display: flex;
        align-items: center;
        gap: 0 2em;
      }
      .block_title {
        transition: color 0.4s ease;
      }
      &:hover {
        .block_title {
          color: #008CFF;
        }
      }
    }
  }
}
/*--------------------------------------------------------------
# ページナビ
--------------------------------------------------------------*/
.wp-pagenavi {
	width: fit-content;
  margin: 5.6rem auto 0;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-flex;
  color: #FFF;
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0.2em;
  padding: 0.2em 0.5em;
  background: var(--key-color);
  border: 0.1rem solid var(--key-color);
  border-radius: 0.4rem;
}
.wp-pagenavi a:hover {
  color: var(--key-color);
	background: #FFF;
}
.wp-pagenavi span.current {
  color: var(--key-color);
	background: #FFF;
  border: none;
}