/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./admin/blocks/src/flow/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --black: #333;
  --white: #fff;
  --lite-gray: #aaa;
  --gray: #666;
  --light-blue: #6687a9;
  --navy-blue: #143352;
  --red: #f23126;
  --light-pink: #f8e2e6;
  --dark-text: var(--black);
  --dim-text: var(--gray);
  --light-text: var(--white);
  --light-border: var(--lite-gray);
  --dark-border: var(--gray);
  --dark-background: var(--navy-blue);
  --dim-background: var(--lite-gray);
  --light-background: var(--white);
  --accent-background: var(--light-blue);
  --light-accent-background: var(--white);
  --alert-text: var(--red);
  --alert-dark-background: var(--red);
  --alert-light-background: var(--light-pink);
  /* ステップ表示 */
  --flow-text: var(--dim-text);
  --flow-background: var(--light-background);
  --flow-current-text: var(--light-text);
  --flow-current-background: var(--accent-background);
  /* 必須アイコン・任意アイコン */
  --icon-required-text: var(--light-text);
  --icon-required-background: var(--alert-text);
  --icon-optional-text: var(--light-text);
  --icon-optional-background: var(--dim-text);
  /* 必須項目の <input> の背景 */
  --input-required-background: var(--alert-light-background);
  --input-optional-background: var(--light-background);
  /* 注釈 */
  --header-notice-text: var(--dim-text);
  --body-notice-text: var(--alert-text);
  /* バリデーションエラーのメッセージ */
  --validation-error-text: var(--light-text);
  --validation-error-background: var(--alert-dark-background);
  /* サブミットボタン・戻るボタン */
  --button-submit-text: var(--light-text);
  --button-submit-background: var(--accent-background);
  --button-disabled-text: var(--light-text);
  --button-disabled-background: var(--dim-background);
  --button-back-text: var(--light-text);
  --button-back-background: var(--dim-background);
  /* 残り必須項目数表示 */
  --num-remaining-text: var(--light-text);
  --num-remaining-background: var(--alert-dark-background);
}

.form__flow:not(:root) {
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  width: 100%;
  padding: 0;
  list-style: none;
  color: var(--flow-text);
  font-size: 1.14em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
}
.form__flow-step {
  counter-increment: step;
  flex-grow: 1;
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin: 0 2.5px;
  padding: 16px 0;
}
.form__flow-step:first-child {
  margin-left: -16px;
  padding-left: 16px;
}
.form__flow-step:last-child {
  margin-right: -16px;
  padding-right: 16px;
}
.form__flow-step::before, .form__flow-step::after {
  position: absolute;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 50.8%;
  background-color: var(--flow-background);
}
.form__flow-step::before {
  bottom: 0;
  transform: skew(-30deg);
}
.form__flow-step::after {
  top: 0;
  transform: skew(30deg);
}
.form__flow-step--current {
  color: var(--flow-current-text);
}
.form__flow-step--current::before, .form__flow-step--current::after {
  background-color: var(--flow-current-background);
}
.form__flow-step > span {
  display: inline-block;
  padding: 0 2em;
}
.form__flow-step > span::before {
  content: counter(step) ".";
  margin-right: 0.2em;
}

/*# sourceMappingURL=style-index.css.map*/