/* =====================================================================
   流れ (ステップ)
   ===================================================================== */

.flow {
  position: relative;
  padding-left: 8px;
}

.flow__item {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  position: relative;
}

.flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: -4px;
  width: 2px;
  background: var(--blue-100);
}

.flow__no {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  z-index: 1;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(31, 111, 235, .3);
}

.flow__c h4 {
  margin: 6px 0 3px;
  font-size: 14.5px;
  font-weight: 800;
}

.flow__c p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.55;
}
