@charset "utf-8";
/* ============================================================
 NEWS
============================================================ */
/* 一覧 */
.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -40px;
}
.news-list > li {
  width: calc((100% / 2) - 2%);
  margin-top: 40px;
}
.news-list a {
  display: block;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.news-list .cont {
  margin-bottom: 40px;
}
.news-list .eyecatch-wrap {
  margin-bottom: 20px;
}
.news-list .txt-wrap {
  padding-left: 8%;
  padding-right: 8%;
}
.news-list .date {
  margin-bottom: 10px;
  line-height: 1;
}
.news-list .ttl {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
}
.news-list .summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 6.5em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news-list {
    display: block;
    margin-top: -30px;
  }
  .news-list > li {
    width: 100%;
    margin-top: 30px;
  }
  .news-list .cont {
    margin-bottom: 25px;
  }
  .news-list .ttl {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
  }
}
/* 記事 */
article .article-head {
  margin-top: 60px;
  margin-bottom: 60px;
}
article .date {
  margin-bottom: 10px;
}
article .article-main img {
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  article .article-head {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.prev-next {
  margin-top: 80px;
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #DEDEDE;
}
.prev-next > li {
  width: 24.5%;
}
.prev-next a {
  display: block;
}
.prev-next .to-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
}
.prev-next .btn {
  padding: 0.8em 0.3em;
}
.prev-next .prev-ttl,
.prev-next .next-ttl {
  font-size: 1.1rem;
}
.prev-next .prev-ttl span,
.prev-next .next-ttl span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
  line-height: 1;
  color: #333;
  font-weight: 400;
}
.prev-next .next-ttl {
  text-align: right;
}
.prev-next .article-ttl {
  margin-top: 10px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .prev-next {
    margin-top: 40px;
    padding-top: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .prev-next > li {
    width: 50%;
  }
  .prev-next .to-index {
    width: 100%;
    margin-top: 30px;
  }
  .prev-next .btn {
    width: 60%;
    padding: 0.8em 0.3em;
    margin: 0 auto;
  }
  .prev-next .to-prev {
    padding-right: 1.5em;
  }
  .prev-next .to-next {
    padding-left: 1.5em;
    text-align: right;
    border-left: 1px solid #DEDEDE;
  }
  .prev-next .prev-ttl,
  .prev-next .next-ttl {
    font-size: 1rem;
  }
}
