/* ============================================================
   flow.css — 導入の流れページ固有スタイル
   ============================================================ */

.flow-section { background: var(--color-white); padding: 70px 0 72px; text-align: center; }


.flow-lead { font-weight: 400; font-size: 15px; color: var(--color-text-dark); margin-top: 18px; padding: 0 20px; }
.flow-headline { font-weight: 700; font-size: 20px; color: var(--color-text-dark); margin-top: 14px; }

.flow-steps {
  width: 820px;
  max-width: calc(100% - 40px);
  margin: 18px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid #cdddf0;
  border-radius: 8px;
  padding: 22px 30px;
  text-align: left;
}


.flow-num {
  flex: none;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--color-primary);
  font-size: 70px;
  line-height: 1;
  min-width: 96px;
}

.flow-icon {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg-light-blue, #DDEFFF);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-icon img { max-width: 34px; max-height: 36px; width: auto; }

.flow-text { flex: 1; }
.flow-text h3 { font-weight: 700; font-size: 18px; color: var(--color-text-dark); }
.flow-text p { font-size: 14px; line-height: 1.7; color: var(--color-text-dark); margin-top: 8px; }

/* 緊急案件 */
.flow-emergency { margin-top: 46px; text-align: center; padding: 40px; /* background: var(--color-white); */ }
.flow-emergency .em-head { font-weight: 700; font-size: 20px; color: #262626; }
.flow-emergency p { font-size: 18px; color: #262626; line-height: 1.7; margin-top: 6px; }
.flow-emergency .em-tel { font-weight: 700; font-size: 30px; color: var(--color-text-dark); margin-top: 18px; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .flow-section { padding: 30px 0 56px; }

  .flow-lead { text-align: center; }
  .flow-headline { text-align: center; font-size: 27px; }
  .flow-step { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; text-align: left; padding: 20px; gap: 8px; }
  .flow-num { font-size: 76px; min-width: auto; flex: none; }
  .flow-icon { flex: none; width: 80px; height: 80px; }
  .flow-icon img { max-width: 44px; max-height: 46px; }
  .flow-text { flex: none; width: 100%; text-align: left; }
  .flow-emergency { text-align: center; margin-top: 0; padding: 30px 10px 0; }
  .flow-emergency p { font-size: 16px; text-align: center; }
  .flow-emergency .em-tel { font-size: 30px; }
}
