#about {
  background-color: var(--backColor);
}

#about .home-title {
  color: #fff;
  text-align: left;
}

#about .home-title b {
  border-bottom: 0;
  max-width: 100%;
  text-align: left;
}

#about .home-title b::after {
  content: "_";
  border-top: 0;
  display: block;
  width: auto;
  left: 0;
  transform: none;
}

#about .home-title p {
  color: #fff;
  width: 100%;
  text-align: left;
}

#about .about-image {
  width: 100%;
}

#about .list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

#about .list li {
  color: #fff;
  width: 33.33%;
  text-align: center;
  position: relative;
}

#about .list li::after {
  content: "/";
  position: absolute;
  top: 0;
  font-size: 10px;
  line-height: 16px;
  right: 0;
}

#about .list li:last-child::after {
  display: none;
}

#about .list li b {
  color: #838383;
  display: block;
  margin-top: 40px;
}

@media screen and (max-width: 600px) {
  #about .list {
    flex-direction: column;
  }
  #about .list li {
    width: 100%;
    margin-bottom: 40px;
  }
  #about .list li::after {
    display: none;
  }
  #about .list li b {
    margin-top: 10px;
  }
}
