@charset "UTF-8";
/**
 * Mixin
 */
:root {
  --ww: 100vw;
  --pw: 1920;
}
@media (min-width: 1921px) {
  :root {
    --ww: 1920px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --pw: 375;
  }
}

.page_ttl {
  background-image: url(../img/news/header.jpg);
}
@media only screen and (max-width: 767px) {
  .page_ttl {
    background-image: url(../img/news/sp_header.jpg);
  }
}

.page_subttl {
  color: #bfef30;
  padding: 200px 0 160px;
}
@media only screen and (max-width: 767px) {
  .page_subttl {
    padding: 80px 0 85px;
  }
}

.news_content {
  background-color: #5a5a5a;
  padding-bottom: 400px;
}

.news_list {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #aaa;
}
.news_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid #aaa;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 0px;
}
.news_arrow {
  position: absolute;
  right: 10px;
  top: calc(50% - 1px);
  pointer-events: none;
}

.news_date {
  color: #ccc;
  font-size: 1.4rem;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .news_date {
    font-size: 1.2rem;
  }
}

.news_badge {
  font-size: 1.2rem;
  border-radius: 14px;
  min-width: 90px;
  text-align: center;
  display: inline-block;
}

.news_badge.news_badge--works {
  background-color: #fff;
  color: #333;
}

.news_badge.news_badge--infomation {
  background-color: #bfef34;
  color: #333;
}

.news_title {
  color: #fff;
  font-size: 1.6rem;
  padding: 30px 20px 30px 0;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .news_date {
    margin-top: 30px;
  }
  .news_badge {
    margin-top: 30px;
  }
  .news_title {
    min-width: 100%;
    padding: 10px 35px 30px 0;
  }
}

.news_arrow {
  width: 20px;
  display: flex;
}

.news_title:hover + .news_arrow .arrow {
  animation: arrow-bounce 0.8s infinite;
}

.navigation {
  max-width: 960px;
  margin: 88px auto 0;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .navigation {
    margin: 60px 0 0;
  }
}
.navigation a,
.navigation span {
  color: #fff;
}

.page-numbers + .page-numbers::before {
  content: ".";
  margin: 0 3px;
}

.dots.page-numbers {
  vertical-align: text-top;
}

.next.page-numbers::before,
.prev.page-numbers::before,
.prev.page-numbers + .page-numbers::before,
.dots.page-numbers::before,
.dots.prev.page-numbers + .page-numbers::before,
.dots.page-numbers + .page-numbers::before {
  content: none;
}

.news_box {
  background-color: #fff;
  padding: 100px 0 180px;
}
@media only screen and (max-width: 767px) {
  .news_box {
    padding: 50px 0 70px;
  }
}

.news_box__header,
.news_box__content {
  max-width: 620px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}

.news_box__header {
  border-bottom: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
}

.news_box__header_date {
  font-size: 1.4rem;
  margin-right: 20px;
}

.news_box__content {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .news_box__content {
    padding: 0 10px;
  }
}

.news_box__ttl {
  font-size: 2.4rem;
  margin: 90px 0 75px;
}
@media only screen and (max-width: 767px) {
  .news_box__ttl {
    margin: 40px 0;
    font-size: 2.2rem;
  }
}

.news_back_btn {
  font-size: 1.2rem;
  width: 180px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin: 110px auto 0;
  color: #fff;
  background-color: #969696;
  display: block;
}
@media only screen and (max-width: 767px) {
  .news_back_btn {
    margin: 100px auto 0;
  }
}
