.l-main.top h2 {
  margin: 0;
  margin: min(12vw, 100px) 0 min(4vw, 30px);
  font-size: clamp(
    18px,
    16.7741935484px + 0.0032258065 * 100vw,
    20px
  );
}
.l-main.top h2.news-title {
  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;
}
.l-main.top h2.news-title a {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  border: 1px solid #b3b3b3;
  color: #000;
  padding: 7px 14px;
  text-align: center;
  background: #fff;
  -webkit-transition: color 240ms;
  transition: color 240ms;
}
.l-main.top h2.news-title a:hover {
  color: #8e8e8e;
}
.l-main.top .view-more {
  margin: min(15vw, 100px) 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-main.top .view-more a {
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  border: 1px solid #b3b3b3;
  color: #000;
  padding: 12px 0;
  width: 200px;
  text-align: center;
  background: #fff;
  -webkit-transition: color 240ms;
  transition: color 240ms;
}
.l-main.top .view-more a:hover {
  color: #8e8e8e;
}

/**** ***** NEWS ***** ****/
h2.p-news__ttl {
  margin: 0;
  text-align: center;
}

div.news-list-box {
  margin-top: 60px;
}

ul.news-list-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

ul.news-list-wrap li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 480ms;
  transition: all 480ms;
}
ul.news-list-wrap li.loaded {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

ul.news-list-wrap li:not(:first-of-type) {
  border-top: 1px solid #b3b3b3;
}

ul.news-list-wrap li a {
  color: #000;
  font-size: 1.2rem;
  padding: 2em 0;
  display: block;
  text-align: center;
}

ul.news-list-wrap li a span {
  color: #666;
  margin-right: 3rem;
}