@charset "UTF-8";
.header {
  background-color: #E8EBEE;
}

.news {
  position: relative;
  background-color: #E8EBEE;
  padding: 50px 25px 75px;
  /*
  &__group {
  	margin: 40px 0;
  	@include media(tab){
  		margin: 30px 0;
  	}
  }
  */
  /* ニュース一覧 */
  /* ページャ */
  /* ニュース詳細 */
}
@media screen and (max-width: 768px) {
  .news {
    padding: 20px 25px 32px;
  }
}
.news__inner {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .news__head {
    width: 1065px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .news__head {
    position: relative;
  }
}
.news__heading {
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .news__heading {
    padding-top: 8px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news__heading {
    font-size: 30px;
    text-align: center;
    background: #E8EBEE;
  }
}
.news__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 24px;
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .news__category {
    overflow-x: scroll;
    white-space: nowrap;
    margin: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.news__category::-webkit-scrollbar {
  display: none;
}
.news__category > li {
  height: 100%;
}
.news__category > li > a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 14px;
  margin-left: 10px;
  white-space: nowrap;
  border-radius: 12px;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .news__category > li > a {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
  }
}
.news__category > li > a:hover {
  cursor: pointer;
  color: #FFF;
  background-color: #000;
}
.news__category > li > a.active {
  color: #FFF;
  background-color: #000;
}
.news__list {
  width: 100%;
  position: relative;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .news__list {
    margin: 30px 0;
  }
}
.news__list .card {
  position: relative;
  background-color: #FFF;
  width: 525px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.news__list .card:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .news__list .card {
    width: 100%;
    margin-right: 0;
  }
}
.news__list .card__link {
  padding: 46px 20px 33px;
}
.news__list .card__link:hover {
  opacity: 1;
}
.news__list .card__link:hover .card__more--text::before {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -o-transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}
.news__list .card__link:hover .card__more--text::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
  transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
  -o-transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
  transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
  transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99), -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.news__list .card__category {
  position: absolute;
  top: 0;
  left: 21px;
  background-color: #E8EBEE;
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 26px;
  padding: 0 18px;
}
.news__list .card__text {
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 24px;
  height: calc(24px * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .news__list .card__text {
    height: calc(24px * 3);
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
  }
}
.news__list .card__date {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding-bottom: 4px;
}
.news__list .card__more {
  position: absolute;
  bottom: 34px;
  right: 0;
}
.news__list .card__more--text {
  position: relative;
  display: inline-block;
  width: 114px;
  padding-bottom: 7px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  overflow: hidden;
}
.news__list .card__more--text::before, .news__list .card__more--text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.news__list .card__more--text::after {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.news__bottom {
  max-width: 1065px;
}
.news__bottom .paging .pagination {
  font-size: 20px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .news__bottom .paging .pagination {
    font-size: 16px;
    font-weight: 600;
  }
}
.news__bottom .paging .pagination li {
  margin: 0 6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news__bottom .paging .pagination li {
    margin: 0 1px;
  }
}
.news__bottom .paging .pagination li.active {
  background-color: #FFF;
}
.news__bottom .paging .pagination li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3px;
}
.news__bottom .paging .pagination li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3px;
}
@media screen and (max-width: 768px) {
  .news__bottom .paging .pagination li a {
    padding-left: 1px;
  }
}
.news__bottom .paging .pagination li a:hover {
  background-color: #FFF;
  opacity: 1;
}
.news__bottom .paging .pagination .prev a, .news__bottom .paging .pagination .prev span, .news__bottom .paging .pagination .next a, .news__bottom .paging .pagination .next span {
  display: block;
  position: relative;
  width: 26px;
  height: 16px;
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
}
.news__button {
  width: 180px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .news__button_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    left: 15px;
  }
  .news__button_sp img {
    width: 16px;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}
.news .article {
  position: relative;
  background-color: #FFF;
  padding: 86px 180px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news .article {
    padding: 52px 34px;
    margin-top: 30px;
  }
}
.news .article__category {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 26px;
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.66;
  background-color: #E8EBEE;
  padding: 0 19px;
}
@media screen and (max-width: 768px) {
  .news .article__category {
    left: 15px;
  }
}
.news .article__date {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 20px;
}
.news .article__title {
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", "Helvetica", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .news .article__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.news .article__contents {
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic Pro", "MS PGothic", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .news .article__contents {
    font-size: 12px;
    line-height: 2;
  }
}
.news .article__contents a {
  display: inline;
  text-decoration: underline;
  color: #D98000;
}

/*# sourceMappingURL=news.css.map */
