/* 유의 문의 */
.notice_con {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #f5f7f8;
  padding: 40px;
  border-radius: 10px;
}

.notice_leftcon {
  display: flex;
}

.notice_rightcon {
  width: calc(100% - 250px);
}

.notice_rightcon div {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

.notice_rightcon p {
  width: 100%;
}

.notice_rightcon p::before {
  content: "\F633";
  font-family: "bootstrap-icons" !important;
  margin-right: 10px;
  color: #FFA83F;
}

.notice_rightcon span {
  margin-left: 30px;
}

.icon {
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
  margin-right: 10px;
  color: #fff;
}

.inquiry_icon::before {
  content: '\F50C';
  font-family: "bootstrap-icons" !important;
}

.arrow_img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
}

/* 절차 시작 */
.step_wrap {
  padding-bottom: 150px;
  border-bottom: 1px dashed #d7dce5;
}

.list_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.step_ing {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: calc((80% - 100px) - 20px);
  margin-left: 20px;
}

.step_ing::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  height: 1px;
  background-color: #ff7b0f;
}

.step_ing::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #ff7b0f;
  border-radius: 50%
}

.step_circle {
  position: relative;
  width: calc(25% + 20px);
  margin-left: -20px;
}

.step_end {
  position: relative;
  width: 20%;
}

.circle_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFA83F;
  border-radius: 50%;
  padding: 40px;
  text-align: center;
}

.circle_box img {
  width: 50px;
}

.step_circle::before {
  content: "";
  display: block;
  padding-bottom: 100%
}

.step_end .step_circle {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 20px solid #FFA83F;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 123, 15, 0.5);
  position: relative;
}

.step_end .step_circle::after {
  width: 130%;
  height: 130%;
  border-radius: 50%;
  content: '';
  border: 1px dashed #FFA83F;
  position: absolute;
}

.step_comment {
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
}

/* 출장교정 */
.step_con2 .step_circle {
  width: calc(20% + 20px);
}

.step_con2 .step_end .step_circle {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}

.step_con2 .step_ing {
  width: calc((80% - 100px) - 20px);
}

.step_con2 .step_ing::before {
  right: -40px;
}

.step_con2 .step_ing::after {
  right: -40px;
}

@media screen and (max-width:1440px) {
  .list_box {
      flex-direction: column;
  }

  .step_ing::before,
  .step_ing::after {
      display: none;
  }

  .step_ing,
  .step_end .step_circle {
      width: 100% !important;
  }

  .step_end {
      width: 30%;
  }

  .step_end .step_circle {
      margin-left: 0;
      margin-top: 50px;
  }

  .step_wrap {
      margin-bottom: 100px;
  }
}

@media screen and (max-width:1200px) {
  .notice_con {
      flex-direction: column;
  }

  .notice_rightcon {
      width: 100%;
      margin-top: 10px;
  }
}

@media screen and (max-width:740px) {
  .step_circle {
      width: calc(50% + 20px) !important;
      margin-top: -20px;
  }

  .step_ing {
      justify-content: center;
  }

  .step_end {
      width: 60%;
  }

  .notice_con {
      padding: 20px;
  }
}

@media screen and (max-width:420px) {

  .step_circle,
  .step_end {
      width: 70% !important;
      margin: auto;
  }

  .list_box {
      margin-top: 50px;
  }

  .step_ing {
      margin-left: 0;
  }
}


@media screen and (max-width:320px) {

  .step_circle,
  .step_end {
      width: 100% !important
  }
}