@charset "UTF-8";
#entry_btn {
  display: none;
}

/*form*/
dl.dl_form {
  margin: 0 auto 1em;
}
dl.dl_form div {
  margin: 0px 0;
  padding: 20px 1em;
  border-bottom: 1px dotted rgb(var(--main-rgb));
}
@media (min-width: 1024px) {
  dl.dl_form div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
}
dl.dl_form dt {
  font-weight: bold;
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  dl.dl_form dt {
    width: 25%;
  }
}
dl.dl_form dd {
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  dl.dl_form dd {
    width: 73%;
  }
}
dl.dl_form .any dt:after,
dl.dl_form .req dt:after {
  content: "";
  font-weight: normal;
  font-size: 70%;
  border-radius: var(--radius);
  padding: 3px 2px 2px;
  display: inline-block;
  line-height: 1;
  width: 3em;
  text-align: center;
  margin-left: 0.5em;
}
@media (min-width: 1024px) {
  dl.dl_form .any dt:after,
  dl.dl_form .req dt:after {
    display: block;
    margin-left: 0em;
  }
}
dl.dl_form .any dt:after {
  content: "任意";
  color: #666;
  border: solid 1px #666;
}
dl.dl_form .req dt:after {
  content: "必須";
  color: rgb(var(--red));
  border: solid 1px rgb(var(--red));
}
dl.dl_form label {
  display: inline-block;
  padding: 0 20px;
}
dl.dl_form input[type=text],
dl.dl_form input[type=email],
dl.dl_form input[type=tel],
dl.dl_form input[type=date],
dl.dl_form select,
dl.dl_form textarea {
  box-sizing: border-box;
  padding: 8px;
  margin: 0 0 10px;
  border: 1px solid #999;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  min-width: 50%;
}
dl.dl_form input[type=text].age {
  min-width: auto;
  width: 3em;
}
dl.dl_form input[type=date] {
  -webkit-appearance: none;
  padding: 2px 8px;
}
dl.dl_form select,
dl.dl_form input[type=date] {
  min-width: 50%;
  min-height: 2em;
}
dl.dl_form input.hiragana,
dl.dl_form textarea {
  width: 100%;
}
dl.dl_form textarea {
  height: 10em;
}
dl.dl_form input.numeric {
  width: 10em;
}
dl.dl_form input.alpha {
  width: 70%;
}
dl.dl_form input:required,
dl.dl_form select:required,
dl.dl_form textarea:required {
  border-color: rgb(var(--main-rgb));
}

.mail_error {
  display: block;
  color: rgb(var(--red));
  font-size: 90%;
}

.mail_error:before {
  content: "* ";
}

.dl_form input, .dl_form textarea, .dl_form select {
  font-size: 16px;
}
.dl_form input::placeholder {
  font-size: 80%;
}

input.submitbtn,
input.button {
  display: inline-block;
  margin: 0.5em 0.5em;
  font-size: 1rem;
  cursor: pointer;
  background: var(--entry-grd);
  padding: 15px 10%;
  border-radius: 5px;
  text-align: center;
  min-width: 240px;
  transition: ease 0.5s;
  border: 0;
  color: #FFF;
  font-weight: bold;
}

input#modify_btn {
  background: none;
  background-color: rgb(200, 200, 200);
}

input#modify_btn:hover,
input.submitbtn:hover,
input.button:hover {
  background: var(--recruit-grd);
}

input.button {
  padding: 0.5em 1em;
  font-size: 0.8em;
}

input.yubin {
  min-width: 0px;
  padding: 0.25em 0.5em;
  font-size: 0.8em;
}

label.radio {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  padding-left: 30px !important;
  overflow: hidden;
  display: inline-block;
}

label.radio:before {
  position: absolute;
  width: 21px;
  height: 21px;
  border: 1px solid #999;
  border-radius: 50%;
  left: 0px;
  top: 4px;
  content: "";
  z-index: 3;
}

label.radio:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 5px;
  top: 9px;
  background-color: rgba(var(--main-rgb), 1);
  z-index: 1;
}

label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 19px;
  height: 19px;
  left: -19px;
  top: 5px;
  margin: 0px;
  box-shadow: 20px 0px #FFF;
  border-radius: 50%;
}

label.radio:has(input:required):before {
  border: 1px solid rgba(var(--main-rgb), 1) !important;
}

label.radio input[type=radio]:checked {
  box-shadow: none;
}

label.checkbox {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  padding-left: 30px !important;
  overflow: hidden;
  display: inline-block;
}

label.checkbox:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0;
  border: 1px solid #999;
  border-radius: 2px;
  z-index: 3;
}

label.checkbox:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  display: block;
  margin-top: -8px;
  width: 8px;
  height: 12px;
  border-right: 3px solid rgb(250, 45, 100);
  border-bottom: 3px solid rgb(250, 45, 100);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  z-index: 1;
}

label.checkbox input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

label.checkbox input[type=checkbox]:checked {
  box-shadow: none;
}

#step {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  /* active */
}
#step li {
  position: relative;
  width: 33%;
  text-align: center;
  padding: 0px 0 0 12px;
  margin: 0 0 0 2px;
  background: rgb(var(--text-rgb));
  color: #FFF;
  height: 48px;
  line-height: 48px;
  font-weight: bold;
}
#step li:not(:last-child)::before,
#step li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  border: 24px solid transparent;
  border-left: 24px solid rgb(var(--text-rgb));
  margin: auto;
}
#step li:not(:last-child)::before {
  margin-left: 2px;
  border-left-color: rgb(255, 255, 255);
}
#step li.current {
  background: rgb(var(--main-rgb));
}
#step li.current:not(:last-child)::after {
  border-left-color: rgb(var(--main-rgb));
}

#form_validate .form_hidden {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0;
  margin: 0;
}
#form_validate .form_msg {
  display: block;
}
#form_validate .validation {
  color: #F00;
  font-size: 80%;
}
#form_validate .placeholder {
  font-size: 90%;
}

dl.dl_form input[type=text][readonly],
dl.dl_form input[type=email][readonly],
dl.dl_form input[type=tel][readonly],
dl.dl_form textarea[readonly] {
  border-style: none;
  pointer-events: none;
  background-color: transparent;
}

.form_check #form_validate .form_msg {
  display: inline-block;
}

.form_check dl.dl_form input[type=text],
.form_check dl.dl_form input[type=email],
.form_check dl.dl_form input[type=tel],
.form_check dl.dl_form input[type=file],
.form_check dl.dl_form textarea {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0;
  margin: 0;
  pointer-events: none;
  display: inline-block;
  width: 0;
  min-width: auto;
}

.form_check .form_check_hidden,
.form_input .form_input_hidden {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.form_check .form_check_none,
.form_input .form_input_none {
  display: none;
}

/*# sourceMappingURL=form.css.map */
