.page-ttl {
  position: relative;
}
.hero__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: min(80%, 1200px);
  margin: 0 auto;
}
.hero__title__inner {
  display: block;
  position: relative;
  width: fit-content;
}
.hero__title-text {
  display: inline-block;
  color: #d80c18;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 0.6em;
  padding-right: 1.8em;
}
.hero__title__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: -60px;
  background-color: #d80c18;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 32px;
    line-height: 1.2;
    padding: 0 20px;
    width: 100%;
  }
  .hero__title-text {
    font-size: 32px;
  }
  .hero__title__inner::after {
    height: 24px;
    bottom: -24px;
  }
}
