/**
 * 部分リライト — ステップウィザード
 * .section-rewrite-wizard--flat 時は従来どおり縦並び（display: contents）
 */
#sectionRewriteForm .section-rewrite-wizard.section-rewrite-wizard--flat {
  display: contents;
}

#sectionRewriteForm .section-rewrite-wizard--flat .section-rewrite-wizard__step {
  display: contents;
}

#sectionRewriteForm .section-rewrite-wizard--flat .section-rewrite-wizard__step-toolbar {
  display: none;
}

/* ステップモード: 1 パネルのみ表示 */
#sectionRewriteForm .section-rewrite-wizard:not(.section-rewrite-wizard--flat) {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
}

#sectionRewriteForm .section-rewrite-wizard:not(.section-rewrite-wizard--flat) .section-rewrite-wizard__step {
  display: none;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

#sectionRewriteForm
  .section-rewrite-wizard:not(.section-rewrite-wizard--flat)
  .section-rewrite-wizard__step.section-rewrite-wizard__step--active {
  display: flex;
}

#sectionRewriteForm .section-rewrite-wizard__step-toolbar {
  margin-bottom: 0.75rem;
}

#sectionRewriteForm .section-rewrite-wizard__step-heading {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
}

#sectionRewriteForm .section-rewrite-wizard__step-count {
  margin-right: 0.35rem;
  opacity: 0.85;
}

#sectionRewriteForm .section-rewrite-wizard__step-label {
  margin-left: 0.15rem;
}

#sectionRewriteForm .section-rewrite-wizard__step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

#sectionRewriteForm .section-rewrite-wizard__step-toolbar--last .section-rewrite-wizard__btn-next {
  display: none;
}

#sectionRewriteForm .section-rewrite-wizard__step-toolbar--first .section-rewrite-wizard__btn-back {
  display: none;
}

#sectionRewriteForm .section-rewrite-wizard__summary {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--trust-radius-md, 8px);
  border: 1px solid color-mix(in srgb, var(--trust-border, #ccc) 80%, transparent);
  background: color-mix(in srgb, var(--trust-surface, #fff) 96%, transparent);
}

#sectionRewriteForm .section-rewrite-wizard__summary-hint {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}
