.flow__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-10);
}
.flow__item {
  display: flex;
  align-items: center;
  gap: var(--spacer-10);
  width: 100%;
  position: relative;
}
.flow__item:last-child .flow__vertical-line {
  display: none;
}
.flow__item::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-black);
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: -0.375rem;
  top: 50%;
  transform: translateY(-50%);
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -0.5px;
  top: 50%;
  width: 1px;
  height: calc(var(--spacer-10) + 100%);
  background-color: var(--color-black);
}
.flow__line {
  width: 4rem;
  height: 1px;
  background-color: var(--color-black);
  flex-shrink: 0;
}
.flow__text {
  display: flex;
  align-items: center;
  gap: var(--spacer-8);
  flex: 1;
}
.flow__number {
  font-family: var(--font-eng);
  font-weight: 600;
  font-size: var(--fz-4);
  color: var(--color-black);
  line-height: 1;
  white-space: nowrap;
  width: 5rem;
  margin: 0;
}
.flow__title {
  font-family: var(--font-ja--bold);
  font-size: var(--fz-8);
  color: var(--color-black);
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 1079px) {
  .flow__content {
    gap: var(--spacer-7);
  }
  .flow__item {
    gap: var(--spacer-4);
  }
  .flow__item:not(:last-child)::after {
    height: calc(var(--spacer-7) + 100%);
  }
  .flow__line {
    width: 2rem;
  }
  .flow__text {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacer-4r5);
  }
  .flow__number {
    width: auto;
    font-size: var(--fz-3r5);
  }
  .flow__title {
    font-size: var(--fz-5);
    white-space: normal;
  }
}

/*# sourceMappingURL=permit_applications.css.map */
