.order-flow {
  padding: 10px 20px;
  background: #f9fafb;
}

.order-flow__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.order-flow__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 60px 90px 1fr 140px;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step__num {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.step__staff {
  font-size: 14px;
  color: #6b7280;
}

.step__content h3 {
  font-size: 16px;
  margin: 0 0 4px;
}

.step__content p {
  font-size: 14px;
  margin: 0;
  color: #4b5563;
}

.step__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.order-flow__cta {
  text-align: center;
}

.order-flow__note {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ef4444;
  font-weight: 600;
}

.order-flow__btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.order-flow__btn:hover {
  background: #1d4ed8;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .step {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "num content"
      "staff content"
      "img img";
  }

  .step__num { grid-area: num; }
  .step__staff { grid-area: staff; }
  .step__content { grid-area: content; }
  .step__img { grid-area: img; margin-top: 8px; }
}
