/* ============================================================
   page-flow.css  — 応募の流れ
   ライトピンク × ネイビー（2カラムレイアウト）
   ============================================================ */

/* ===== ヒーロー ===== */
.flow-page-hero {
  position: relative;
  background: linear-gradient(160deg, #fff0f6 0%, #ffe4ef 55%, #ffd8eb 100%);
  padding: 80px 24px 64px;
  text-align: center;
  overflow: hidden;
}
.flow-page-hero::before {
  content: 'FLOW';
  position: absolute; right: -12px; bottom: -20px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(80px,18vw,200px);
  font-weight: 700;
  color: rgba(240,62,122,.05);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.flow-page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--pink-main), var(--pink-deep));
}
.flow-page-hero .section-label { font-size: 11px; letter-spacing: .25em; color: var(--pink-main); margin-bottom: 14px; }
.flow-page-hero h1 { font-family: 'Noto Serif JP', serif; font-size: clamp(26px,4.5vw,44px); font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 14px; }
.flow-page-hero p  { font-size: 15px; color: var(--gray-text); line-height: 1.95; max-width: 560px; margin: 0 auto; }

/* ===== ページ本体 ===== */
.flow-page-section { background: var(--white); padding: 0 0 80px; }
.flow-page-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 32px 0;
}
.flow-page-inner > .ladyreq-breadcrumb { margin-bottom: 40px; }

/* ===== 2カラムグリッド ===== */
.flow-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  margin-bottom: 60px;
}

/* ===== STEPリスト（左カラム） ===== */
.flow-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 8px;
}
/* 縦ライン */
.flow-steps-list::before {
  content: '';
  position: absolute;
  left: 22px; top: 22px; bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink-main), rgba(240,62,122,.1));
  border-radius: 2px;
}

.fp-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid rgba(240,62,122,.14);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  position: relative; z-index: 1;
  transition: transform .2s, box-shadow .2s;
}
.fp-step:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(240,62,122,.12); }

.fp-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(240,62,122,.3);
}

.fp-body { flex: 1; padding-top: 2px; }
.fp-title {
  font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; line-height: 1.4;
}
.fp-desc {
  font-size: 13px; color: var(--gray-text);
  line-height: 1.85; margin-bottom: 8px;
}
.fp-note {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--pink-main);
  background: rgba(240,62,122,.08);
  padding: 3px 10px; border-radius: 50px;
  letter-spacing: .04em;
}

/* ===== 右カラム インフォカード ===== */
.flow-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.fi-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(240,62,122,.15);
  box-shadow: 0 2px 12px rgba(240,62,122,.06);
}
.fi-card-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240,62,122,.1);
}
.fi-card-title i { color: var(--pink-main); }
.fi-card-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.fi-card-list li {
  font-size: 13px; color: var(--gray-text);
  padding-left: 18px; position: relative; line-height: 1.7;
}
.fi-card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--pink-main); font-weight: 700; font-size: 12px; }
.fi-card-desc { font-size: 13px; color: var(--gray-text); line-height: 1.85; }
.fi-card-link-wrap { margin-top: 12px; }
.btn-outline--sm { font-size: 13px; padding: 8px 18px; }

/* ===== FAQ ===== */
.flow-qa {
  border-top: 1px solid rgba(240,62,122,.1);
  padding-top: 60px;
}
.flow-qa h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px,3vw,28px);
  font-weight: 700; color: var(--navy);
  margin-bottom: 28px; line-height: 1.45;
  padding-bottom: 14px; position: relative;
}
.flow-qa h2::after  { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: rgba(240,62,122,.12); }
.flow-qa h2::before { content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; background: linear-gradient(to right, var(--pink-main), var(--pink-deep)); border-radius: 2px; z-index: 1; }

.flow-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.flow-qa-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(240,62,122,.14);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.flow-qa-q {
  background: linear-gradient(135deg, #fff0f6, #ffe4ef);
  padding: 14px 18px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.flow-qa-q span {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--pink-main);
  color: #fff; font-size: 13px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.flow-qa-a {
  padding: 14px 18px;
  font-size: 13px; color: var(--gray-text); line-height: 1.85;
}
.btn-center-wrap {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px;
  margin: 8px 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 960px) {
  .flow-two-col { grid-template-columns: 1fr; gap: 40px; }
  .flow-info-cards { position: static; }
}
@media (max-width: 768px) {
  .flow-page-inner { padding: 40px 20px 0; }
  .flow-qa-grid { grid-template-columns: 1fr; }
  .flow-steps-list::before { display: none; }
}
@media (max-width: 600px) {
  .flow-page-hero { padding: 60px 20px 48px; }
  .fp-step { padding: 16px 18px; gap: 14px; }
  .fp-num  { width: 36px; height: 36px; font-size: 15px; }
}
