/*--------------------------------------------------------------
# 一覧
--------------------------------------------------------------*/
#news_archive {
  margin: 5rem 0;
  @media (min-width:768px) {
    margin: 10rem 0;
  }
}
#news_archive .column2_row_layout {
  padding: 4% 4% 2rem;
  border: 0.1rem solid var(--light-gray);
  border-radius: 1rem;
  @media (min-width:768px) {
    align-items: center;
    padding: 2.5%;
  }
}
#news_archive .img_wrap {
  aspect-ratio: 500 / 281;
  overflow: hidden;
  & img {
    height: 100%;
    object-fit: cover;
  }
}
#news_archive .no_thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1rem solid var(--light-gray);
  & img {
    width: 70%;
    height: auto;
    object-fit: contain;
  }
}
#news_archive .news_date {
  display: block;
  color: var(--key-color);
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
  font-weight: 700;
  margin-bottom: 0.5em;
}
#news_archive .btn_wrap {
  margin-top: 0;
  @media (min-width:768px) {
    text-align: left;
  }
}


/*--------------------------------------------------------------
# 記事
--------------------------------------------------------------*/
.news_content {
  margin: 5rem 0;
  @media (min-width:768px) {
    margin: 10rem 0;
  }
}
.news_content .content_block {
  padding: 2.5%;
  border: 0.1rem solid var(--light-gray);
  border-radius: 1rem;
}
.news_content .news_date {
  display: block;
  color: var(--key-color);
  font-size: clamp( 1.6rem, calc( 1.5142857142857142rem + 0.2380952380952381vw ), 1.8rem );
  font-weight: 700;
  margin-bottom: 0.5em;
}
.news_content h1 {
  line-height: 1.5;
  text-align: left;
}
.news_content h2 {
  font-size: var(--fs-sec-title-s);
  line-height: 1.5;
  margin: 1.5em 0 1em;
}
.news_content h3 {
  font-size: var(--fs-large);
  line-height: 1.5;
  margin: 1.5em 0 0.5em;
}
.news_content h4 {
  font-size: var(--fs-normal);
  line-height: 1.5;
  margin: 1.5em 0 0.5em;
}
.news_content img {
  margin-bottom: 1.6rem;
}
.news_content p {
  margin-bottom: 1em;
}
.news_content ul {
  list-style-type: disc;
  margin: 0 0 1em 1.5em;
  & li + li {
    margin-top: 0.5em;
  }
}
.news_content ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em;
  & li {
    padding-left: 0.3em;
    + li {
      margin-top: 0.5em;
    }
  }
}
.news_content dl {
  margin-bottom: 1em;
}
.news_content table {
  margin-bottom: 1em;
}
.news_content table:not(.has-background) th{
  background: var(--pale-blue);
}