/* MVアニメーション */
.split .split-char {
  display: inline-block;
}
.hero__title {
  line-height: 1.2;
	border-bottom: none;
}
.hero__title{
  position: relative;
  display: inline-block;
  line-height: 1.2;
  --line-scale: 0;
}
.hero__title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-0.15em;
  width:100%;
  height:1px;
  background:#fff;

  transform: scaleX(var(--line-scale));
  transform-origin: left;
}
.hero__sub-title{
  opacity: 0;
  transform: translateY(0.6em);
  will-change: transform, opacity;
}
