@charset "UTF-8";
/*-------------------------------------------------

Title       : singo(신고센터) Sub1
Author      : EASESOFT
Create Date : 2024-07

-------------------------------------------------*/
.c010100 .cont_box.step {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.c010100 .cont_box.step .num {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  flex: none;
  background: #149F78;
  color: #fff;
  border-radius: 100%;
}
.c010100 .cont_box.step:nth-last-of-type(2) .num {
  background: #39A5CE;
}
.c010100 .cont_box.step:nth-last-of-type(3) .num {
  background: #BE3A9B;
}
.c010100 .cont_box.bg {
  background: #264B90;
  padding: 2rem 4rem;
  font-size: 2.2rem;
  word-break: keep-all;
  word-wrap: break-word;
}
.c010100 .understanding {
  background: #F5F8FF;
  border-radius: 1.6rem;
  padding: 6rem;
  margin-top: 4rem;
}
.c010100 .understanding h2 {
  position: relative;
  margin-bottom: 6rem;
}
.c010100 .understanding h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #1C9ED0;
}
.c010100 .understanding h2 span {
  padding: 0 1.5rem;
  background: #F5F8FF;
  position: relative;
  z-index: 1;
}
.c010100 .understanding div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.c010100 .understanding div + div {
  margin-top: 4rem;
}
.c010100 .understanding div strong {
  flex: none;
  width: 36rem;
  box-sizing: border-box;
  padding-right: 5rem;
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */
@media (max-width: 1024px) {
  .c010100 .understanding {
    padding: 3rem;
  }
  .c010100 .understanding div {
    display: block;
  }
  .c010100 .understanding div strong {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .c010100 .cont_box.bg {
    font-size: 2rem;
  }
  .c010100 .understanding {
    padding: 3rem 2rem;
  }
  .c010100 .understanding h2 span {
    display: block;
    width: 27rem;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .c010100 .cont_box.bg {
    font-size: 1.8rem;
  }
  .c010100 .understanding h2 {
    margin-bottom: 4rem;
  }
  .c010100 .understanding h2 span {
    width: 100%;
  }
  .c010100 .understanding h2::before {
    display: none;
  }
  .c010100 .understanding div strong {
    font-size: 2rem;
  }
}