.p-step {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
.p-step__item {
  width: 308px;
  padding: 24px;
  background-color: #fff2cc;
  border-radius: 8px;
  position: relative;
}
.p-step__item + .p-step__item::before {
  content: "";
  display: block;
  width: 20px;
  height: 40px;
  background-image: url(../img/icon_arrow-triangle_red.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: -28px;
  top: calc(50% - 20px);
}
.p-step__head {
  padding-bottom: 16px;
  border-bottom: 2px solid #cc0000;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.p-step__text-color {
  color: #cc0000;
  font-size: 1.375rem;
  text-transform: uppercase;
}
.p-step__text {
  margin-top: 16px;
  font-size: 1.375rem;
}
.p-step__body {
  margin-top: 16px;
}
.p-heading__text-color {
  color: #cc0000;
}
.l-container--nallow + .l-container--nallow {
  padding-top: 0px;
}
@media not all and (min-width: 769px) {
  .p-step {
    display: block;
    margin-top: 24px;
  }
  .p-step__item {
    width: 100%;
    padding: 24px 16px;
  }
  .p-step__item + .p-step__item {
    margin-top: 52px;
  }
  .p-step__item + .p-step__item::before {
    top: -46px;
    left: calc(50% - 10px);
    transform: rotate(90deg);
  }
  .p-step__text-color {
    font-size: 1.125rem;
  }
  .p-step__text {
    margin-top: 8px;
    font-size: 1.25rem;
  }
}
