@charset "UTF-8";

#main div:before,
#main div:after,
ul:before,
ul:after,
ol:before,
ol:after,
dl:before,
dl:after {
  display: none;
}

#box1 {
  line-height: 1.7;
}

#box1 .inner {
  margin: 30px 0 25px;
  display: flex;
  justify-content: space-between;
}

#box1 .inner.rev {
  flex-direction: row-reverse;
}

#box1 .inner_txt {
  width: 65%;
  margin-right: 5%;
}

#box1 .inner_img {
  width: 30%;
}

#box1 .inner_img img {
  width: 100%;
  height: auto;
}

#box1 .stepCnt {
  margin-bottom: 25px;
}

#box1 .stepCnt li {
  margin-bottom: 10px;
}

#box1 .stepCntImg {
  text-align: center;
}

#box1 .stepCntImg img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

#box1 .stepCnt .special {
  margin: 10px auto;
  padding: 10px;
  border-left: 5px solid rgb(165, 120, 167);
  border-right: 5px solid rgb(165, 120, 167);
  font-weight: bold;
  text-align: center;
  max-width: 500px;
}

#box1 .stepChat {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

#box1 .stepChatImg img {
  width: 80px;
  height: auto;
  border-radius: 50%;
}

#box1 .stepChatTxt {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5em 15px;
  padding: 10px 10px;
  min-width: 120px;
  max-width: 100%;
  background: rgb(165, 120, 167);
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  align-items: center;
}

#box1 .stepChatTxt::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -14px;
  margin-top: -15px;
  border: 7px solid transparent;
  border-right: 7px solid rgb(165, 120, 167);
}

#box1 .stepChatTxt::after {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 779px) {
  #box1 .inner {
    display: block;
  }

  #box1 .inner_txt,
  #box1 .inner_img {
    width: 100%;
    margin-bottom: 25px;
  }

  #box1 .inner_txt {
    margin-right: 0;
  }
}