/* ==========================
ご利用の流れ
========================== */
/* 各セクションの余白を全ページ共通（重要） */
.flow {
  padding: 20px 20px;
  margin: 0 auto 20px;
  box-sizing: border-box;
}

/* リスト */
.flow-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  position: relative;
  counter-reset: step;
}

/* 線 */
.flow-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 30px;
  width: 2px;
  background: linear-gradient(#5FAF5F, transparent);
  opacity: 0.5;
}

/* カード */
.flow-item {
  position: relative;
  padding: 30px 20px 30px 130px;
  margin-bottom: 30px;

  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
  transition: 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.flow-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* 番号 */
.flow-item::before {
  content: counter(step);
  counter-increment: step;

  position: absolute;
  left: 20px;


  width: 72px;
  height: 72px;
  border-radius: 50%;

  background: linear-gradient(135deg, #3F5F3F, #5FAF5F);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 36px;
  font-family: 'Shippori Mincho', serif;

  box-shadow: 0 4px 10px rgba(63,95,63,0.3);

  top: 22px;
  transform: none;
}

.flow-item h3.section-title {
  text-align: left;
}

/* タイトル */
.flow-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2f4f2f;
}

/* 本文 */
.flow-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-left: 20px;
}



/* =========================================
   SP表示
========================================= */
@media screen and (max-width:767px) {
.flow-list {
  padding: 0 20px;
}
  }
