.ordermade{  
    text-align: center;
    padding:10px;
    text-decoration: none;
    color:#000000;
}
.ordermade h1{
    color: #004080;
}
.flow-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 960px; /* 300px × 3列 + gap を考慮して上限幅を指定 */
  margin: 0 auto;
  gap: 20px;
}
.step {
    background: #fff;
    border: 1px solid #b8d1ec;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 64, 128, 0.1);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #004080;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}
.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.step-text {
    font-size: 16px;
    color: #444;
}
.step-order-text {
    font-size: 20px;
    color: #004080;
}