#step .inner2 {
  display: flex;
  align-items: center;
}
#step ul li {
  border: 2px solid #c2607c;
  padding: 10px 25px 35px 25px;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
#step ul li p {
    width: 250px;
    margin-right: 50px;
    padding-top: 25px;
}
#step ul li dl {
    width: calc( 100% - 300px );
}
#step ul li img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
#step ul li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}
#step ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #c2607c;
}
#step ul li dl dt {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  font-weight: 500;
  border-bottom:dotted 1px #c2607c;
  padding-bottom: 7px;
  margin-bottom: 25px;
  color: #c2607c;
  display: flex;
  align-items: center;
}
#step ul li span {
  color: #f9e2ea;
  margin-right: 0.3em;
  font-size: 2em;
}

@media screen and (max-width: 769px) {
    #step ul li {
        flex-wrap: wrap;
        justify-content: center;
    }
    #step ul li dl,
    #step ul li p {
        width: 100%;
        margin: 0 0 15px 0;
    }
}