/*------------------------------
--------------------------------
 新着情報一覧
--------------------------------
------------------------------*/
section.news_wrap {
  padding: 48px 0 96px;
}

.news .news_inner {
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news .news_item {
  width: 100%;
  height: 100%;
  position: relative;

  padding-bottom: 24px;
  border-bottom: 1px solid var(--frame-line);
  display: flex;
  gap: 32px;
}

.news .news_img {
  width: 29.3%;
  max-width: 300px;
  overflow: hidden;
}

.news .news_item:hover .news_img img {
  transform: scale(1.25,1.25);
}

.news .news_img img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
  transition: all .3s ease;
  aspect-ratio: 3 / 2;
  background: rgba(0,0,0,.1);
}

.news .news_txt_wrap {
  width: calc(100% - 29.3% - 32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news .news_date_tag {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
}

.news .news_date_tag h2 {
  transition: all .3s ease;
}

.news .news_tag {
  display: flex;
  gap: 8px;
}

.news .news_tag span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  color: var(--white);
  background: var(--frame-subtitle);
  padding: 0 11px;
}

.news .news_title {
  color: var(--link);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--logo);
}

.news .news_body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news .news_body figure {
  display: none;
}

.news .wp-pagenavi {
  margin-top: 48px;
  margin-bottom: 0;
}

.news .news_item > a {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 650px){
  section.news_wrap {
    padding: 48px 0;
  }

  .news .news_inner {
    gap: 24px;
  }

  .news .news_item {
    flex-direction: column;
    gap: 24px;
  }

  .news .news_img {
    width: 100%;
    max-width: none;
  }

  .news .news_txt_wrap {
    width: 100%;
    gap: 16px;
  }

  .news .news_date_tag {
    flex-direction: column;
    align-items: flex-start;
  }

  .news .news_tag {
    gap: 6px;
  }

  .news .news_title {
    padding-bottom: 8px;
  }

  .news .news_body {
    -webkit-line-clamp: 4;
  }

  .news .wp-pagenavi {
    margin-top: 48px;
    margin-bottom: 0;
  }
}