/* ==============================================
   相談・依頼の流れセクション
   consultation-flow.css
   配置: template-parts/consultation-flow.css
   ※ ms-merit（依頼メリットセクション）とトーンを統一
   ============================================== */

#content_builder .cf {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px 0;
}

/* --- 無料相談で分かること --- */
#content_builder .cf__merit {
  background: #f5f9f6;
  border: 1px solid #d4e8db;
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
#content_builder .cf__merit-title {
  font-size: 18px;
  font-weight: 700;
  color: #006633;
  text-align: center;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  background: none;
  line-height: 1.4;
}
#content_builder .cf__merit-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#content_builder .cf__merit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
#content_builder .cf__merit-list li::before {
  content: none;
  display: none;
}
#content_builder .cf__merit-list li::marker {
  content: none;
  display: none;
}
#content_builder .cf__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- フロー図 --- */
#content_builder .cf__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#content_builder .cf__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 176px;
}
#content_builder .cf__step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f7f2;
  border: 2px solid #c8ddd0;
}
#content_builder .cf__step-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
#content_builder .cf__step-body {
  margin-top: 16px;
  text-align: center;
}
#content_builder .cf__step-num {
  font-size: 11px;
  font-weight: 700;
  color: #006633;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  padding: 0;
  border: none;
  background: none;
}
#content_builder .cf__step-label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#content_builder .cf__step-note {
  font-size: 12px;
  color: #006633;
  font-weight: 600;
  margin-top: 4px;
}
#content_builder .cf__arrow {
  display: flex;
  align-items: center;
  height: 80px;
  flex-shrink: 0;
  padding: 0 8px;
}
#content_builder .cf__arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* --- SP --- */
@media screen and (max-width: 768px) {
  #content_builder .cf { padding: 10px 16px 0; }
  #content_builder .cf__merit { padding: 22px 20px; margin-bottom: 36px; }
  #content_builder .cf__merit-title { font-size: 16px; margin-bottom: 12px; }
  #content_builder .cf__merit-list {
    flex-direction: column; gap: 8px;
    max-width: 220px; margin: 0 auto;
  }
  #content_builder .cf__steps {
    flex-direction: column;
    position: relative;
    padding-left: 0;
  }
  #content_builder .cf__steps::before {
    content: "";
    position: absolute;
    top: 12px; bottom: 12px; left: 32px;
    width: 2px; background: #d4e8db; z-index: 0;
  }
  #content_builder .cf__arrow { display: none; }
  #content_builder .cf__step {
    flex-direction: row; align-items: center; width: 100%;
    gap: 20px; padding: 12px 0; position: relative;
  }
  #content_builder .cf__step-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    position: relative; z-index: 1;
  }
  #content_builder .cf__step-icon svg { width: 28px; height: 28px; }
  #content_builder .cf__step-body { margin-top: 0; text-align: left; }
  #content_builder .cf__step-num { font-size: 10px; margin-bottom: 2px; }
  #content_builder .cf__step-label { font-size: 15px; }
  #content_builder .cf__step-label br { display: none; }
  #content_builder .cf__step-note { margin-top: 2px; }
}
@media screen and (max-width: 480px) {
  #content_builder .cf__merit { padding: 18px 16px; }
  #content_builder .cf__steps::before { left: 26px; }
  #content_builder .cf__step { gap: 16px; padding: 10px 0; }
  #content_builder .cf__step-icon { width: 52px; height: 52px; }
  #content_builder .cf__step-icon svg { width: 24px; height: 24px; }
}
