.about-frame {
  position: relative;
  width: 100%;
  margin: 0 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-frame:last-child {
  margin: 0;
}

.about-cat {
  width: 20%;
  margin: 0 3% 0 0;
  padding: 0.2em 1em;
  font-size: 10px;
  font-weight: 500;
  color: #6775d3;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
  border-bottom: #6775d3 solid 1px;
  transform: translateY(-0.4em);
}

.about-cont {
  width: 75%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  transform: translateY(-0.4em);
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .about-frame {
    margin: 0 0 2rem;
    display: block;
    text-align: center;
  }

  .about-cat {
    width: 46%;
    margin: 0 auto 1.2rem;
    padding: 0.2em 1em;
    font-size: 10px;
    transform: translateY(0);
  }

  .about-cont {
    display: block;
    width: 100%;
    font-size: 16px;
    transform: translateY(0);
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .about-cat {
    font-size: 1.302vw;
  }

  .about-cont {
    font-size: 2.083vw;
  }

}