.head-h2 {
  position: relative;
  padding-bottom: 12px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .055em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
@media screen and (max-width:1744px) and (min-width:1025px) {
  .head-h2 {
    padding-bottom: calc(12 / 1744 * 100vw);
    font-size: clamp(14px, calc(32 / 1744 * 100vw), 32px)
  }
}
@media screen and (max-width:1024px) {
  .head-h2 {
    padding-bottom: calc(12 / 1024 * 100vw);
    font-size: clamp(14px, calc(32 / 1024 * 100vw), 32px)
  }
}
@media screen and (max-width:750px) {
  .head-h2 {
    padding-bottom: calc(18 / 750 * 100vw);
    font-size: clamp(14px, calc(40 / 750 * 100vw), 40px)
  }
}
.head-h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: #1f1f1f
}
.head-h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: #ffc80a
}