/* fonts */
/* color */
/* gradation */
.page .section--01 .section__inner h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 40px;
}
@media only screen and (max-width:960px) {
  .page .section--01 .section__inner h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.page .section--01 .section__inner h1 span {
  position: relative;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 22px;
}
.page .section--01 .section__inner h1 span::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -3px;
  height: 2px;
  width: 17px;
  background: -webkit-gradient(linear, right top, left top, from(#18a4fc), to(#162a89));
  background: linear-gradient(to left, #18a4fc, #162a89);
}