@charset "utf-8";
/* --- ールフォーム --- */

#mail_form {
  background-color: #efefef;
    width: 100%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 60px;
}
@media (max-width: 800px) {
  #mail_form {
    padding: 20px 20px;
  }
}
#mail_form .QTitle {
  font-size: 1.4em;
  font-weight: bold;
}
#mail_form dl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}
#mail_form dl dd {
  background-color: #fff;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 60px 40px!important;
    border-radius: 20px;
}
@media (max-width: 800px) {
  #mail_form dl dd {
    padding: 20px 20px 20px 35px!important;
  }
}
/* --- 進行バー --- */
#progress-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  background: #eee;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 25px;
}

#progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00b4db, #0083b0);
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #efefef;
  font-weight: bold;
}

#progress-text {
  position: relative;
  z-index: 1;
  font-size: 15px;
}

/* --- ステップ --- */
.form-step {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  display: none;
}
.form-step.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.NextBtnBox {
  display: flex;
  justify-content: center;
}
/* ボタン共通デザイン */
.btn-prev,
.btn-next {
    display: inline-block;
    margin: 30px 5px 10px 5px;
    padding: 12px 28px;
    background: #0083b0;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
.btn-prev {
    background: #999;
}
.btn-prev:hover {
  background: #ccc;
}
.btn-next:hover {
  background: #006c8a;
}
/*.optionalarea {
  color: #1464c4!important;
  padding: 0 .5em!important;
  display: inline!important;
  width: fit-content!important;
}*/
/*.requiredarea {
  color: #c12620!important;
  padding: 0 .5em!important;
  display: inline!important;
  width: fit-content!important;
}*/
