/*sub_banner*/
#sub_banner {
  background-image: url(../img/about_banner.jpg);
}

#about {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767px) {
  #about {
    flex-direction: column;
  }
}
#about > div {
  flex: 1 1 50%;
}
@media (max-width: 767px) {
  #about > div {
    flex: auto;
    width: 100%;
  }
}
#about .about_img_box {
  position: relative;
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  #about .about_img_box {
    order: 1;
    width: 100%;
    height: 26.25rem;
  }
}
#about .about_img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about_us {
  padding: 1.5rem;
}
@media (max-width: 767px) {
  #about .about_us {
    padding: 0;
  }
}
#about .about_us > span {
  font-size: 1.25rem;
  color: var(--brand-main);
}
#about .about_us h3 {
  margin: 0.5rem 0 1.75rem;
  font-size: 2.625rem;
}
@media (max-width: 767px) {
  #about .about_us h3 {
    font-size: 2rem;
  }
}
#about .about_us ul {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  #about .about_us ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}
#about .about_us ul li {
  display: flex;
  flex-direction: column;
}
#about .about_us ul li b {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  #about .about_us ul li b {
    font-size: 1.25rem;
  }
}
#about .about_us ul li span {
  color: var(--gray-main);
}

#business {
  padding: 3rem 0;
  background: var(--gray-bg);
}
#business .business_tit h3 {
  font-size: 2.625rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  #business .business_tit h3 {
    font-size: 2rem;
  }
}
#business ul {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
@media (max-width: 767px) {
  #business ul {
    flex-direction: column;
    gap: 1rem;
  }
}
#business ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  width: 100%;
  padding: 2.5rem 0.75rem;
  border-radius: 1rem;
  box-sizing: border-box;
}
#business ul li .icon_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: var(--brand-main);
  border-radius: 100%;
}
#business ul li .icon_box img {
  width: 2.5rem;
}
#business ul li b {
  font-size: 1.125rem;
  font-weight: bold;
}
#business ul li p {
  text-align: center;
}/*# sourceMappingURL=about.css.map */