@charset "UTF-8";
/* ::::::::::  お知らせ  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
common
========================================================= */
/* =========================================================
news
========================================================= */
.news {
  display: flex;
  flex-direction: column;
  background: #f2f2f2;
  min-height: calc(100vh - 370px);
}
@media (max-width: 768px) {
  .news {
    min-height: calc(100vh - 290px);
  }
}
.news .wrapper {
  padding-top: 0;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .news .wrapper {
    padding-inline: 20px;
    padding-bottom: 50px;
  }
}
.news .newsList li a {
  position: relative;
  display: flex;
  background: #fff;
  width: 100%;
  padding: 40px 50px;
  margin-bottom: 10px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news .newsList li a {
    display: block;
    padding: 20px 20px;
  }
}
.news .newsList li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 1px solid #70c7a9;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.28, 1);
}
.news .newsList li a[target=_blank] .title::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin: 0 0 2px 8px;
  background: url(../img/common/svg/icon_external.svg) no-repeat;
  background-size: 100%;
  vertical-align: middle;
}
.news .newsList li a[href$=".pdf"] .title::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/common/svg/icon_pdf.svg) no-repeat;
  background-size: 100%;
  margin: 0 0 2px 8px;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .news .newsList li a:hover .icon_arrow {
    transform: translateX(3px);
  }
}
.news .newsList li .date {
  display: block;
  width: 85px;
  color: #b1b1b1;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .news .newsList li .date {
    width: 100%;
    margin-bottom: 3px;
  }
}
.news .newsList li .title {
  display: block;
  width: calc(100% - 85px - 110px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (max-width: 768px) {
  .news .newsList li .title {
    -webkit-line-clamp: 2;
    width: calc(100% - 50px);
  }
}
.news .newsList li .arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 110px;
  height: calc(100% - 20px);
  border-left: 1px solid #70c7a9;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .news .newsList li .arrow {
    width: 60px;
  }
}
.news .newsList li .arrow .icon_arrow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  fill: #70c7a9;
  vertical-align: middle;
  transition: all 0.3s;
}
.moreBtn {
  appearance: none;
  display: block;
  border: none;
  border: 1px solid;
  background: #fff;
  width: 100px;
  padding: 10px 0;
  margin: 40px auto 0;
  color: #70c7a9;
  font-size: 1.4rem;
  font-family: YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
}
@media (max-width: 768px) {
  .moreBtn {
    margin-top: 20px;
  }
}

.pageNav {
  margin-top: 45px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .pageNav {
    margin-top: 30px;
  }
}
.pageNav .prev,
.pageNav .next {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s;
}
.pageNav .prev svg,
.pageNav .next svg {
  fill: #000;
}
@media (min-width: 1024px) {
  .pageNav .prev:hover {
    transform: translateX(-3px);
  }
}
@media (min-width: 1024px) {
  .pageNav .next:hover {
    transform: translateX(3px);
  }
}
.pageNav .num {
  display: inline-block;
  margin: 0 10px;
  color: #b1b1b1;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* =========================================================
newsArticle
========================================================= */
@media (max-width: 768px) {
  .newsArticle {
    background: #f2f2f2;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .newsArticle .wrapper {
    background: #fff;
    padding-block: 25px;
  }
}
.newsArticleHeader {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .newsArticleHeader {
    margin-bottom: 15px;
  }
}
.newsArticleHeader .newsTitle {
  line-height: 1.7;
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .newsArticleHeader .newsTitle {
    font-size: 2rem;
  }
}
.newsArticleHeader .date {
  color: #b1b1b1;
  font-size: 1.2rem;
}
.newsArticle .textBlock p + p {
  margin-top: 2em;
}
.newsArticleFooter {
  background: #f2f2f2;
}
.newsArticleFooter .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  padding-block: 40px;
}
@media (max-width: 768px) {
  .newsArticleFooter .wrapper {
    flex-direction: column;
    padding-block: 30px 40px;
  }
}
.newsArticleFooter .snsListWrap {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  font-weight: 700;
}
.newsArticleFooter .snsList {
  display: flex;
  align-items: center;
  gap: 15px;
}
.newsArticleFooter .snsList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 15px;
  max-height: 15px;
}
.newsArticle .backBtn a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #000;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .newsArticle .backBtn a:hover .icon_arrow {
    transform: translateX(2px);
  }
}
.newsArticle .backBtn .icon_arrow {
  scale: -1 1;
}
/*# sourceMappingURL=map/news.css.map */
