@charset "utf-8";

.about_businesses_title_wrapper {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 0;
}
.about_businesses_title {
  display: flex;
  align-items: center;
  font-size: 56px;
  font-weight: 600;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards;
}
.about_businesses_title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 32px;
  margin-right: 16px;
  background-color: #182127;
}
.about_businesses_sub_title {
  margin-top: 8px;
  padding-left: 16px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.2s;
}

@media screen and (max-width: 640px) {
  .about_businesses_title_wrapper {
    padding: 48px 20px 0;
  }
}

@media screen and (max-width: 480px) {
  .about_businesses_title_wrapper {
    padding: 32px 20px 0;
  }
  .about_businesses_title {
    font-size: 32px;
  }
  .about_businesses_sub_title {
    font-size: 14px;
  }
}
