@charset "UTF-8";

.form_title {
  text-align: center;
  font-size: 1.2em;
  margin: 20px 0 30px 0;
  background: #eee;
  padding: 20px 0;
}

.form_page {
  padding: 30px 0 0 0;
}

.form_header a {
  width: 170px;
  display: inline-block;
  margin: 10px 0 0 15px;
}
@media screen and (max-width: 768px) {
  .form_header {
    text-align: center;
  }
  .form_header a {
    width: 200px;
    margin: 15px 0 0 0;
  }
}

.thanks_area {
  margin: 50px 0;
}
.thanks_area .text {
  text-align: center;
  display: block;
  margin: 0 0 50px 0;
  line-height: 2;
}
.thanks_area p b {
  font-size: 1.2em;
  line-height: 1.5;
  display: block;
  text-align: center;
  margin: 0 0 -35px 0;
}

/* / / / / / / / / / / / / / / / / / / / / / / / / /
確認画面
/ / / / / / / / / / / / / / / / / / / / / / / / / / */
.confirm {
  margin: 50px 0 0 0;
}
.confirm dl {
  border-top: 1px solid #eee;
  margin: 0 0 30px 0;
}
.confirm dt {
  padding: 15px 0 5px 0;
  font-size: 1rem;
}
.confirm dd {
  border-bottom: 1px solid #eee;
  padding: 0 0 20px 0;
}
.confirm dd.txt {
  font-size: 1em;
  line-height: 2;
}

/* / / / / / / / / / / / / / / / / / / / / / / / / /
入力欄
/ / / / / / / / / / / / / / / / / / / / / / / / / / */
.mailform{
  text-align: start;
}

.description {
  font-size: 1rem;
  color: var(--base-color);
}

form dl dt {
  padding: 35px 0 0 0;
  font-size: 1.1rem;
  text-align: start;
  color: var(--base-color);
}
form dl dd {
  padding: 10px 0 0 0;
  font-size: 1.2rem;
  color: var(--base-color);
}
form dl .cap {
  font-size: 1rem;
  margin: 10px 0 0 0;
  color: var(--base-color);
}
form dl input,
form dl textarea,
form dl select {
  border: none;
  padding: 15px;
  outline: none;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
  border: #354055 solid 1px;
}
form dl input:focus,
form dl textarea:focus,
form dl select:focus {
  background: #f2f2f2;
}
form dl textarea {
  height: 200px;
  line-height: 1.8;
}
form dl .w100 {
  width: 100%;
}

#ckeckbox{
  font-size: 14px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  form dl dt {
    padding: 20px 0 0 0;
  }
}

.radio_area {
  margin: 0 0 5px 0;
}
.radio_area label {
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0 0 0 35px;
  margin: 0 0 10px 0;
}
.radio_area label:last-child {
  margin: 0;
}
.radio_area label:hover span:after {
  opacity: 0.6;
  transform: scale(0.7);
}
.radio_area label span::before, .radio_area label span::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.radio_area label span:before {
  background: #fff;
  border: 1px solid var(--boder);
  height: 20px;
  width: 20px;
  left: 5px;
  top: 14px;
}
.radio_area label span:after {
  background: var(--color_0101);
  opacity: 0;
  height: 14px;
  width: 14px;
  left: 9px;
  top: 7px;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.1);
}
.radio_area input {
  display: none;
}
.radio_area input:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

.check_area span:before, .check_area span:after {
  border-radius: 3px !important;
}

.form_err {
  background: #ffeaef !important;
}

.form_err_radio label {
  background-color: #FFCCD9 !important;
  border-radius: 3px !important;
}

.send_err {
  background-color: #FFCCD9 !important;
  width: 80%;
  max-width: 810px;
  margin: 15px auto;
  padding: 15px;
  color: #FFCCD9;
}

.input_err {
  font-size: 1rem;
  color: var(--base-color);
  margin: 0 0 10px 0;
  display: none;
}

.step_area {
  text-align: center;
}
.step_area ul {
  display: flex;
  grid-gap: 20px;
  justify-content: center;
  margin: 30px 0;
}
.step_area ul li {
  width: 100px;
  height: 100px;
  border: 1px solid var(--base-color);
  display: inline-block;
  line-height: 100px;
  border-radius: 50%;
  letter-spacing: 1px;
  color: var(--base-color);
}
.step_area ul .on {
  background: var(--base-color);
  border: transparent;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .step_area ul {
    grid-gap: 10px;
  }
  .step_area ul li {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

.req {
  font-size: 0;
}

.submit_area {
  text-align: center;
  margin: 30px 0 0 0;
}
.submit_area .SubmitBtn {
  background: #4c9a82;
  color: #fff;
  border: none;
  padding: 15px 0;
  font-size: 1.1em;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  border-radius: 100px;
  letter-spacing: 1px;
  pointer-events: none;
  transition: all 2000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.submit_area .SubmitBtn.btn-on {
  background-image: linear-gradient(to right, #DA3C3C, #B42626); 
  pointer-events: all;
}
.submit_area .SubmitBtn.btn-on:hover {
  background: var(--color_0101_hv);
}
.submit_area .SubmitBtn_min {
  background: #eee;
  border-radius: 100px;
  padding: 10px 50px;
  border: none;
  display: block;
  margin: 20px auto 0;
  cursor: pointer;
  color: #bbb;
  transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.submit_area .SubmitBtn_min:hover {
  background: #D9D9D9;
  color: #333;
}

.SubmitBtn {
  transition: transform .2s;
}

.SubmitBtn:active{
  transform: scale(.95);
}

.message {
  background-color: var(--color_0101);
  text-align: center;
  position: fixed;
  bottom: -300px;
  left: 5%;
  border-radius: 50%;
  z-index: 10;
  font-size: 0.7em;
  color: var(--base-color);
  width: 80px;
  height: 70px;
  line-height: 25px;
  padding: 10px 0 0 0;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.message span {
  font-size: 1.8em;
  color: var(--base-color);
}
.message.on {
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  .message {
    left: 10px;
  }
  .message.on {
    bottom: 10px;
  }
}


/* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■
【SP】ウィンドウ幅が768px以下の場合に適用するCSS
■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ *//*# sourceMappingURL=form.css.map */