main {
  width: 100%;
}

section {
  width: 81%;
  max-width: 100%;
  margin: 0 auto;
}
section .about-item {
  display: flex;
  gap: 80px;
}
section .about-item div.title {
  width: 57.64%;
}
section .about-item div.img-content {
  width: 42.36%;
}
section .about-item div.img-content .img {
  width: 500px;
  height: 400px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}
section .about-item .title h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 1px;
  text-align: left;
  color: #000000;
}
section .about-item .title p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  color: #717071;
  margin-bottom: 40px;
}
section .about-item .title a {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: left;
  color: #fff;
  background: #FFA70B;
  padding: 12px 32px 12px 32px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
section .about-item .title a:hover {
  background: #E28D05;
}
section article {
  display: flex;
  flex-direction: column;
  gap: 115px;
}
section .about-item:first-child {
  padding-top: 105px;
}
section .about-item:last-child {
  padding-bottom: 105px;
}
section .line-content {
  position: relative;
  background: #D9D9D9;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 40px;
}
section .line-content .line {
  position: absolute;
  background: #FFA70B;
  width: 10%;
  height: 2px;
  top: -0.5px;
}

@media (max-width: 768px) {
  main section {
    width: 100%;
  }
  main section article {
    padding: 0 24px;
    gap: 48px;
  }
  main section article .about-item {
    flex-direction: column;
    gap: 24px;
  }
  main section article .about-item .title {
    width: 100%;
    order: 2;
  }
  main section article .about-item .img-content {
    width: 100%;
  }
  section .about-item div.img-content .img {
    width: 100%;
    height: unset;
    aspect-ratio: 500/400;
  }
}
/*# sourceMappingURL=index.css.map */