@charset "UTF-8";
/* -------------------------------- */
/* responsive set                   */
/* -------------------------------- */
/* -------------------------------- */
/* common
/* -------------------------------- */
#contact .snow-monkey-form {
  margin-left: 20px;
  margin-right: 20px;
}
#contact .wrap_2block .smf-item__col.smf-item__col--controls .smf-item__controls {
  display: flex;
  gap: 20px;
}
#contact .wrap_2block .smf-error-messages {
  font-size: 0.875rem;
}
#contact button[type=submit] {
  display: inline-block;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 5px;
  background: rgb(178, 13, 49);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 1em;
}

/* 入力画面だけ表示 */
.snow-monkey-form[data-screen=input] .only-input {
  display: block;
  margin: 20px 0;
}

.snow-monkey-form:not([data-screen=input]) .only-input {
  display: none;
}

/* 確認画面だけ表示 */
.snow-monkey-form[data-screen=confirm] .only-confirm {
  display: block;
  margin: 20px 0;
}

.snow-monkey-form:not([data-screen=confirm]) .only-confirm {
  display: none;
}

/* 完了画面だけ表示 */
.snow-monkey-form[data-screen=complete] .only-complete {
  display: block;
  margin: 20px 0;
}

.snow-monkey-form:not([data-screen=complete]) .only-complete {
  display: none;
}

/* 必須マークをつける */
.smf-item__label__text {
  position: relative;
}

.smf-item__label__text::after {
  position: absolute;
  content: "必須";
  color: #fff;
  width: 40px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  display: grid;
  place-items: center;
  background: rgb(178, 13, 49);
  border-radius: 4px;
  font-size: 12px;
}

/* 最後の項目の必須を外す *//*# sourceMappingURL=style.css.map */