/*=======================================================
news
=======================================================*/


/* +++++++++++++++++++++++++++++++++++++++++ sec1 */
/* common.cssに設定 */

#News #sec1 {
  margin-bottom: 40px;
}


@media (max-width:767px) {
  #News #sec1 {
    margin-bottom: 6px;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++ #Post */

#Post{
  padding-bottom: 100px;
}

#Post .news .news-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3列 */
  gap: 42px;
  /* 列の間の余白（必要に応じて調整） */
}

#Post .news .news-list li {}

#Post .news .news-list li a:hover {
  text-decoration: none;
  opacity: 0.8;
}

#Post .news .news-list .thumbnail {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 3 / 2;
  /* 幅3:高さ2（例：390x260） */
  overflow: hidden;
  position: relative;
  border: thin solid #eee;
  margin: 0 auto 10px auto;
}

#Post .news .news-list .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

#Post .news .news-list .summary {
  max-width: 390px;
  margin: 0 auto;
}

#Post .news .news-list .summary .post-meta {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 0 0 10px 0;
  padding: 0 !important;

  /*font*/
  font-family: 'REM', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: normal;
  color: #7E7977;
}

#Post .news .news-list .summary .post-meta li {
  margin: 0px ! !important;
}

#Post .news .news-list .summary .post-meta .category {
  background-color: #F0EEED;
  border-radius: 100px;
  padding: 2px 8px;
}

#Post .news .news-list .summary .excerpt {
  font-size: 15px;
  font-weight: 500;
  /* Medium ウェイト */
  letter-spacing: 0.05em;
  /* XDのAV=50 */
  line-height: 27px;
  /* 固定行間 */
}

@media (max-width:767px) {

  #Post .content-wrap {
    padding: 0 20px;
  }

  #Post .news .news-list {
    display: block;
  }

  #Post .news .news-list>li {
    width: 100%;
    margin-bottom: 30px;
  }

  #Post .news .news-list li:last-child {
    margin-bottom: 0px;
  }

  #Post .news .news-list .summary .excerpt {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 25.2px;
  }

}

/*****/


/*=======================================================
single
=======================================================*/

#News #sec1 .ttl-container-single .inner-content,
#News #Post.single .inner-content {
  width: 100%;
  max-width: 800px;
}

#News #sec1 .ttl-container-single .inner-content h1 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: normal;
  text-align: left;
  margin: 0 0 40px 0;
}

/*sec1*/

#News #sec1 ul.post-meta {
  list-style: none;
  display: flex;
  margin-bottom: 30px;
  /*font*/
  font-family: 'REM', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: normal;
  color: #7E7977;
}

#News #sec1 ul.post-meta li {
  margin-right: 10px;
}

#News #sec1 ul.post-meta .category {
  background-color: #F0EEED;
  border-radius: 100px;
  padding: 2px 8px;
}

@media (max-width:767px) {

  #News #sec1 .ttl-container-single .inner-content h1 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }

  #News #sec1 ul.post-meta {
    margin-bottom: 20px;
  }

}

/*****/


/*post*/