@charset "UTF-8";

/* PC表示設定 */
@media screen and (min-width: 960px) {

/* コンテンツここから */


/* KV */

#kv {
  width: 90%;
  max-width: 1080px;
  margin: 100px auto;
}

#kv h1 {
  font-size: 40px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 1.6px;
}

.kv_cap {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
}


/* コンテンツ */

#content {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}

#content .content_inner {
  width: 90%;
  max-width: 1080px;
  margin: auto;
}


/* ナビ */

#content .content_inner .news_nav {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #BEC5D0;
  padding-bottom: 50px;
}

#content .content_inner .news_nav li {
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 1.44px;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid #131626;
  margin-right: 10px;
  cursor: pointer;
}

#content .content_inner .news_nav li.active {
  color: #fff;
  background-color: #131626;
}


/* ニュース本体 */

#content .content_inner .news_year {
  margin-top: 50px;
}

#content .content_inner .news_year h2 {
  font-size: 30px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 1.2px;
  margin-bottom: 50px;
}

#content .content_inner .news_year ul {
  border-top: 1px solid #BEC5D0;
}

#content .content_inner .news_year ul li {
  border-bottom: 1px solid #BEC5D0;
  padding: 30px 0;
}

#content .content_inner .news_year ul li .news_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

#content .content_inner .news_year ul li .news_title dl {
  display: flex;
  align-items: center;
}
#content .content_inner .news_year ul li .news_title dl dt {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.72px;
  position: relative;
  margin-right: 50px;
}
#content .content_inner .news_year ul li .news_title dl dt::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 38px;
  background-image: url(/assets/img/top/news_line.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -19px;
}

#content .content_inner .news_year ul li .news_title dd {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 300;
}

#content .content_inner .news_year ul li .news_title .news_icon {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  background-image: url(/assets/img/news/icon_news_open.svg);
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: center;
  flex-shrink: 0;
}
#content .content_inner .news_year ul li .news_title .news_icon_close {
  background-image: url(/assets/img/news/icon_news_close.svg);
}


#content .content_inner .news_year ul li .news_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-left: 140px;
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 300;
}
#content .content_inner .news_year ul li .news_text img {
  width: 250px;
  margin-right: 30px;
}




  /* コンテンツここまで */

}