@charset "UTF-8";

/* === kv === */
.inner-kv {
  background-image: url(../img/news/kv.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .inner-kv {
    background-image: url(../img/news/kv_sp.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* === main === */
.news-top-text {
  margin-bottom: 80px;
}

.news-bottom-text {
  margin-top: 70px;
}

.news-item + .news-item {
  margin-top: 150px;
}

.news-year {
  font-size: 1.3636rem;
  color: #004098;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.news-list-item {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #C6C6C6;
  padding: 30px 40px;
}

.news-list-item-date {
  color: #004098;
  font-weight: 600;
  min-width: 170px;
}

.news-list-item-link-wrap {
  display: flex;
  align-items: center;
}

.news-list-item-link-icon {
  width: 43px;
  min-width: 43px;
  height: auto;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .news-top-text {
    margin-bottom: 40px;
  }

  .news-bottom-text {
    margin-top: 20px;
  }

  .news-item + .news-item {
    margin-top: 80px;
  }

  .news-year {
    margin-bottom: 20px;
  }

  .news-list-item {
    display: block;
    padding: 12px 0;
  }

  .news-list-item-link-icon {
    width: 24px;
    min-width: 24px;
  }
}