/* ===== FLOW ===== */
  .flow-section { background: var(--yellow-pale); position: relative; overflow: hidden; }

  .flow-section::before {
    content: 'FLOW';
    position: absolute;
    right: -8px; bottom: -16px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(68px, 16vw, 160px);
    font-weight: 700;
    color: rgba(255,255,255,0.10);
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
  }

  .flow-steps { display: flex; flex-direction: column; gap: 0; max-width: 600px; }

  .flow-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 36px;
    animation: fadeUp 0.6s ease both;
  }

  .flow-step:nth-child(1) { animation-delay: 0.2s; }
  .flow-step:nth-child(2) { animation-delay: 0.3s; }
  .flow-step:nth-child(3) { animation-delay: 0.4s; }
  .flow-step:nth-child(4) { animation-delay: 0.5s; }

  .flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 54px;
    width: 2px;
    height: calc(100% - 54px);
    background: linear-gradient(to bottom, var(--mint), rgba(94,207,177,0.15));
  }

  .flow-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint), var(--pink-main));
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
  }

  .flow-content .flow-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .flow-content .flow-desc { font-size: 15px; color: var(--gray-text); line-height: 1.8; }

  /* 背景が水色なのでテキストをネイビーに（コントラスト確保） */
  .flow-section .flow-content .flow-title { color: var(--navy); }
  .flow-section .flow-content .flow-desc  { color: #2a5a6a; }

  /* ===== FLOW 固定ページリンクボタン ===== */
  .flow-section .section-more {
    justify-content: flex-start;
    margin-top: 32px;
  }
  .btn-flow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.18em;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold);
    transition: gap 0.3s, color 0.2s;
  }
  .btn-flow:hover {
    color: var(--gold);
    gap: 16px;
  }
  .btn-flow::after {
    content: '→';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px; font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
  }
  .btn-flow:hover::after { transform: translateX(4px); }
