.AboutIntro {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 40px;
  height: 400px;
  padding-bottom: 24px;
}
.AboutIntro_image {
  position: absolute;
  right: 140px;
  bottom: 0;
  width: 600px;
  height: auto;
}
.AboutIntro_focus {
  width: 320px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.AboutIntro_focusTitle {
  height: 46px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 12px;
}
.AboutSpread {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.AboutSpread_text {
  margin-top: 40px;
  width: 560px;
}
.AboutSpread_image {
  width: 360px;
  height: auto;
}
@media screen and (max-width: 723px) {
  .AboutIntro {
    position: static;
    height: auto;
  }
  .AboutIntro_image {
    position: static;
    right: 0;
    width: 100%;
  }
  .AboutIntro_focus {
    width: 100%;
    position: static;
    z-index: unset;
  }
  .AboutIntro_focusTitle {
    height: 40px;
    font-size: var(--font-size-lg);
  }
  .AboutSpread {
    display: block;
  }
  .AboutSpread_text {
    margin-top: 0;
    width: 100%;
  }
  .AboutSpread_image {
    width: 100%;
    height: auto;
    margin-top: 16px;
    padding-right: 100px;
  }
}
