#bousai-flow {
        padding: 50px 20px 50px 20px;
        margin-top:0px;
        max-width:100%;
        margin-bottom:0px;
        box-sizing:border-box;
       background:var(--bg-gray);
}
#bousai-flow .inner {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}
#bousai-flow .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
#bousai-flow .section-lead {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 0.95rem;
}
#bousai-flow .flow-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width:1200px;
  margin-right:auto;
  margin-left:auto;
}
#bousai-flow .flow-card {
  display: flex;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
/* 矢印（PC用） */
#bousai-flow .flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 38px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #ccc transparent transparent transparent;
  z-index: 2;
}
#bousai-flow .flow-num {
  background: #333; /* ブランドカラーに合わせて変更可 */
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#bousai-flow .flow-content {
  padding: 20px 20px 20px 20px;
}
#bousai-flow .flow-content h3 {
  font-size:18px;
  margin:0 0 8px 0;
  font-weight: bold;
  padding:0px;
}
#bousai-flow .flow-content p {
  color: #555;
  font-size:15px;
  line-height: 1.6;
  margin: 0;
}

/* タブレット・PC（横並びにする場合） */
@media (min-width: 768px) {
#bousai-flow {
        padding: 30px 20px 30px 20px;
        margin-top:0px;
}
  #bousai-flow .flow-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
  #bousai-flow .flow-card {
    flex-direction: column;
    flex: 1;
    text-align: center;
  }
  #bousai-flow .flow-card:not(:last-child)::after {
    top: 35px;
    left: auto;
    right: -10px;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #ccc;
  }
  #bousai-flow .flow-num {
    width: 100%;
    height: 50px;
    font-size:18px;
  }
  #bousai-flow .flow-content {
    padding: 20px 15px;
  }
  #bousai-flow .flow-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #bousai-flow .flow-content p {
    font-size: 0.85rem;
    text-align: left;
  }
}