.err_message {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442;
  padding: .75rem 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  display: none;
}

.formparts {
  display: none;
}

.formparts-active {
  display: block !important;
}

.form_section .stepbtn {
  display: block;
  border: none;
  border-bottom: 5px solid #c06a00;
  background: #f18500;
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  width: 380px;
  text-align: center;
  font-size: 22px;
  margin: 25px auto;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 769px) {
  .form_section .stepbtn:hover {
    background: #f18500;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
    .form_section .stepbtn {
        width: 100%;
    }
}

.form_section .text-tel {
  width: 30%;
  display: inline-block;
}

/* STEP1〜3 ボタン選択式スタイル */
.btn_select_wrap {
  padding: 20px;
}
.btn_select_ttl {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #37a220;
  text-align: center;
}
.btn_select {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
}
.btn_select li {
  width: calc(50% - 5px) !important;
  box-sizing: border-box !important;
}
.btn_select input[type="radio"] {
  display: none;
}
.btn_select label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  height: 60px;
  background: #c4edc3;
  border: 2px solid #bae4b8;
  border-bottom: 4px solid #37a220;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  color: #0f752b;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1.4;
  box-sizing: border-box;
  padding: 0;
}
.btn_select label:hover {
  background: #8fd4b0;
  border-color: #8fd4b0;
}
.btn_select input[type="radio"]:checked + label {
  background: #3cb371;
  border-color: #3cb371;
  color: #fff;
}

/* 戻るテキストリンク */
.form_section .backbtn {
  display: block;
  background: none;
  border: none;
  color: #777;
  font-size: 14px;
  text-align: center;
  margin: 5px auto 15px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}