.unit {
}

.unit > .title {
  width: max-content;
  margin: 4vmax auto 0;
  font-size: clamp(1.25rem, 1.092rem + 0.67vw, 2rem);
  font-weight: 900;
  text-align: center;
  position: relative;
}

.unit > .title::before,
.unit > .title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  width: 10vw;
  max-width: 64px;
  height: 1px;
  border-radius: 2px;
}

.unit > .title::before {
  left: -40%;
}

.unit > .title::after {
  right: -40%;
}

.unit > .slogan {
  background-color: #79bbff;
  width: max-content;
  padding: 4px 18px;
  margin: 1vmax auto 2vmax;
  border-radius: 20px;
  box-shadow: 0 2px 6px 0 rgba(51, 126, 204, 1);
  color: #ffffff;
  font-size: clamp(0.875rem, 0.744rem + 0.56vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}
