.mokural-maru-step-list {
  display: flex;
}

.mokural-maru-step-item {
  display: flex;
  align-items: center;
}

.mokural-maru-step-arrow-right {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 25.6px;
  height: 48.3px;
  margin: 0 32px;
}

.mokural-maru-step-arrow-right::before,
.mokural-maru-step-arrow-right::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 35px;
  height: 3px;
  border-radius: 9999px;
  background-color: #4a9191;
  transform-origin: calc(100% - 1.5px) 50%;
}

.mokural-maru-step-arrow-right::before {
  transform: rotate(45deg);
}

.mokural-maru-step-arrow-right::after {
  transform: rotate(-45deg);
}

.mokural-maru-step-arrow-bottom {
  position: relative;
  display: inline-block;
  width: 41.2px;
  height: 22.1px;
  margin: 32px 0;
}

.mokural-maru-step-arrow-bottom::before,
.mokural-maru-step-arrow-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 30px;
  border-radius: 9999px;
  background-color: #4a9191;
  transform-origin: 50% calc(100% - 1.5px);
}

.mokural-maru-step-arrow-bottom::before {
  transform: rotate(45deg);
}

.mokural-maru-step-arrow-bottom::after {
  transform: rotate(-45deg);
}

.mokural-maru-step-arrow-right {
  display: block;
}

.mokural-maru-step-arrow-bottom {
  display: none;
}

@media screen and (max-width: 768px) {
  .mokural-maru-step-list {
    flex-direction: column;
  }

  .mokural-maru-step-item {
    flex-direction: column;
  }

  .mokural-maru-step-arrow-right {
    display: none;
  }

  .mokural-maru-step-arrow-bottom {
    display: block;
  }
}
