.p-flow-anker {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.4rem;
}
.p-flow-anker__item {
  height: 18.3rem;
  border-radius: 1rem;
  align-content: center;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  position: relative;
  transition: 0.4s;
}
.p-flow-anker__item:hover {
  filter: brightness(0.9);
}
.p-flow-anker__item::after {
  content: "";
  background-image: url("../images/flow/triangle-right.svg");
  background-position: center right;
  position: absolute;
  inset: 0 -2rem 0 auto;
  margin: auto 0;
  width: 1.2rem;
  height: 2.5rem;
}
.p-flow-anker__item:last-child::after {
  display: none;
}
.p-flow-anker__item p {
  line-height: 3rem;
}
.p-flow-anker__item img {
  margin: 0 auto;
  margin-bottom: 1rem;
}

.p-flow-box {
  margin-bottom: 6.5rem;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .p-flow-box {
    margin-bottom: 6rem;
  }
}
.p-flow-box::before {
  content: "";
  position: absolute;
  inset: auto 0 -4.5rem;
  margin: auto;
  width: 9rem;
  height: 2.5rem;
  background-image: url("../images/flow/triangle-down.svg");
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-flow-box::before {
    width: 7.5rem;
    height: 2.1rem;
  }
}
.p-flow-box:last-child {
  margin-bottom: 0;
}
.p-flow-box:last-child::before {
  display: none;
}
.p-flow-box__header {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .p-flow-box__header {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .p-flow-box__header-title {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 769px) {
  .p-flow-box__body {
    padding-left: 7rem;
  }
}
@media (max-width: 768px) {
  .p-flow-box__body-row {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .p-flow-box__button .c-before-square-title {
    margin: 0 auto 1.5rem;
    width: fit-content;
  }
}
