.auto_slide_wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 130px;
  gap: 40px; /* ¼±ÅÃ: ÁÂ¿ì °£°Ý ¿©À¯ */
  flex-wrap: nowrap; /* &#128165; wrap Á¦°ÅÇØ¼­ ÁÙ¹Ù²Þ ¹æÁö */
}


.auto_left_area {
  width: 590px;
  flex: 1;
  min-width: 500px;
  flex-shrink: 0;
}


.auto_left_area .left_text p {
  font-size: 60px;
  margin-bottom: -5px;
  color: #333;
}


.auto_left_area .left_text p:nth-child(3) {
  font-weight: 700;
  color: #3c6cd4;
}


.auto_left_area .left_CS {
  margin-top: 60px;
}


.auto_right_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-shrink: 1;
}


.auto_right_area {
  position: relative;
  width: 700px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


.changeIMG {
  width: 100%;
  height: 100%;
}


.changeIMG ul {
  position: relative;
  width: 100%;
  height: 100%;
}


.changeIMG li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
  pointer-events: none;
}


.changeIMG li.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}


.changeIMG li img {
  width: 100%;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 15px #999;
}


.changeIMG_btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  width: 100%;
}


.changeIMG_btn ul {
  display: flex;
}


.changeIMG_btn ul li {
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: #999;
  margin: 0 5px;
  cursor: pointer;
}


.changeIMG_btn ul li.active {
  background: #6490f1;
}


/* &#9989; ¹ÝÀÀÇü - 1500px ÀÌÇÏ */
@media (max-width: 1500px) {
  .auto_right_area {
    width: 600px;
  }
}


/* &#9989; ¹ÝÀÀÇü - 1350px ÀÌÇÏ */
@media (max-width: 1350px) {
  .auto_slide_wrap {
    padding: 150px 40px 0;
  }


  .auto_left_area .left_text p {
    font-size: 48px;
  }


  .auto_right_area {
    width: 600px;
  }
}


/* &#9989; ¹ÝÀÀÇü - 1024px ÀÌÇÏ */
@media (max-width: 1024px) {
  .auto_slide_wrap {
    flex-direction: column;
    padding: 150px 0 0;
  }


  .auto_left_area,
  .auto_right_group {
    width: 100%;
    align-items: center;
  }


  .auto_left_area .left_text p {
    font-size: 36px;
    text-align: center;
  }


  .auto_left_area .left_CS {
    text-align: center;
  }


  .auto_left_area .left_CS img {
    width: 150px;
  }


  .auto_right_area {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
  }


  .changeIMG li img {
    border-radius: 40px;
  }


  .changeIMG_btn ul li {
    width: 10px;
    height: 10px;
  }
}


@media (max-width: 550px) {
  .auto_right_area {
    width: 450px;
  }
}


/* &#9989; ¹ÝÀÀÇü - 390px ÀÌÇÏ */
@media (max-width: 450px) {
  .auto_left_area .left_text p {
    font-size: 22px;
  }

  .auto_left_area .left_CS {
    margin-top: 30px;
  }


  .auto_right_area {
    max-width: 320px;
  }


  .changeIMG li img {
    border-radius: 30px;
  }


  .changeIMG_btn ul li {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}