@charset "UTF-8";

/* ---------------------
  news
--------------------- */
.news .main__list {
  background-image: linear-gradient(to right, #808080 2px, transparent  2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.news .main__item {
  margin-top: 0;
  background-image: linear-gradient(to right, #808080 2px, transparent  2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}
.news__link {
  display: flex;
  position: relative;
  width: 100%;
  padding: 30px 30px 30px 0;
  color: #2b2b2b;
  font-size: 2rem;
  line-height: 1.4;
}
.news__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  background: url(../../common/images/renewal2023/ico_btn_04.png) no-repeat 0 0 / 100% auto;
  transform: translateY(-50%);
}
.news__link:visited {
  color: #2b2b2b;
}
.news__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.news__date {
  max-width: 185px;
  margin-right: 30px;
  color: #00aeeb;
  font-weight: 700;
  font-size: 2.1rem;
}


/* SP */
@media screen and (max-width: 750px) {
  .news__link {
    display: block;
    padding: 15px 20px 15px 0;
    font-size: 1.6rem;
  }
  .news__link::after {
    width: 16px;
    height: 16px;
  }
  .news__date {
    max-width: 100%;
    margin-right: 0;
    font-size: 1.6rem;
  }
  .news__name {
    margin-top: 2px;
  }
}