@charset "UTF-8";
.textArea {
  line-height: 1.5;
}

.applicationWrap {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .applicationWrap {
    padding-bottom: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .applicationWrap .formField .selectWrap select {
    padding: 3% 2%;
  }
}

.formField {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.formField:not(:first-of-type) {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .formField {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .formField dt, .formField dd, .formField .mwform-radio-field-text, .formField .mwform-checkbox-field-text, .formField a {
    font-size: 3.8888888889vw;
  }
}
.formField dd input[type=text], .formField dd input[type=email], .formField dd textarea, .formField dd select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  padding: 1.5rem;
  outline-color: #419e2b;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.formField dd input[type=text]::-moz-placeholder, .formField dd input[type=email]::-moz-placeholder, .formField dd textarea::-moz-placeholder, .formField dd select::-moz-placeholder {
  color: #d5d5d5;
}
.formField dd input[type=text]:-ms-input-placeholder, .formField dd input[type=email]:-ms-input-placeholder, .formField dd textarea:-ms-input-placeholder, .formField dd select:-ms-input-placeholder {
  color: #d5d5d5;
}
.formField dd input[type=text]::placeholder, .formField dd input[type=email]::placeholder, .formField dd textarea::placeholder, .formField dd select::placeholder {
  color: #d5d5d5;
}
@media only screen and (max-width: 767px) {
  .formField dd input[type=text], .formField dd input[type=email], .formField dd textarea, .formField dd select {
    padding: 2%;
  }
}
.formField dd .text {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .formField dd .text {
    font-size: 3.8888888889vw;
  }
}
.formField dd .text.agreeText {
  margin-top: 10px;
}
.formField dd .text.agreeText .textLink {
  color: #419e2b;
}
.formField dd .text.agreeText .textLink:visited, .formField dd .text.agreeText .textLink:focus, .formField dd .text.agreeText .textLink:active {
  color: #419e2b;
}
.formField dd.dateArea span {
  position: relative;
  width: 13%;
  display: inline-block;
  margin-right: 5px;
}
.formField dd.dateArea span:not(:first-of-type) {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .formField dd.dateArea span {
    width: 24%;
  }
}
.formField dd.selectWrap span:not(.error) {
  position: relative;
}
.formField dd.selectWrap span:not(.error):after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .formField dd.selectWrap select {
    padding: 11%;
  }
}
.formField > dt {
  width: 26%;
}
@media only screen and (max-width: 767px) {
  .formField > dt {
    width: 100%;
  }
}
.formField > dt .req {
  background-color: #419e2b;
  color: #fff;
  display: inline-block;
  margin-left: 1.5rem;
  padding: 0.2rem 0.7rem;
  font-size: 1.2rem;
  border-radius: 0.3rem;
}
.formField > dt .any {
  background-color: #707070;
  color: #fff;
  display: inline-block;
  margin-left: 1.5rem;
  padding: 0.2rem 0.7rem;
  font-size: 1.2rem;
  border-radius: 0.3rem;
}
.formField > dd {
  width: 72%;
}
@media only screen and (max-width: 767px) {
  .formField > dd {
    width: 100%;
    margin-top: 3%;
  }
}
.formField > dd > .subField {
  margin-top: 15px;
}
.formField > dd > .subField > dt {
  margin-bottom: 10px;
}
.formField > dd.customInputWrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mwform-radio-field {
  box-sizing: border-box;
}
.mwform-radio-field label {
  box-sizing: border-box;
}
.mwform-radio-field label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
}
.mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text:after {
  content: "";
  position: absolute;
  left: 3px;
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #419e2b;
}
.mwform-radio-field label .mwform-radio-field-text {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
}
.mwform-radio-field label .mwform-radio-field-text:not(:first-of-type) {
  margin-left: 30px;
}
.mwform-radio-field label .mwform-radio-field-text:before, .mwform-radio-field label .mwform-radio-field-text:after {
  box-sizing: border-box;
}
.mwform-radio-field label .mwform-radio-field-text:before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.mwform-checkbox-field label {
  box-sizing: border-box;
}
.mwform-checkbox-field label input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
}
.mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text:after {
  content: "";
  position: absolute;
  top: 15%;
  left: 6px;
  display: block;
  border-right: 1px solid #419e2b;
  border-bottom: 1px solid #419e2b;
  width: 5px;
  height: 10px;
  transform: rotate(45deg);
}
.mwform-checkbox-field label .mwform-checkbox-field-text {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}
.mwform-checkbox-field label .mwform-checkbox-field-text:before, .mwform-checkbox-field label .mwform-checkbox-field-text:after {
  box-sizing: border-box;
}
.mwform-checkbox-field label .mwform-checkbox-field-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border: 1px solid #e5e5e5;
  width: 16px;
  height: 16px;
}

.mw-wp-form_file {
  margin-top: 10px;
}

.mw_wp_form_confirm dl dd {
  line-height: 1.8;
}
.mw_wp_form_confirm dl dd.dateArea span {
  width: 8%;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form_confirm dl dd.dateArea span {
    width: 14%;
  }
}
.mw_wp_form_confirm dl dd.selectWrap span:after {
  content: none !important;
}

.mw_wp_form .error {
  display: block !important;
  padding-top: 10px;
  line-height: 1.3;
  width: 100% !important;
  margin-left: 0 !important;
  box-sizing: border-box;
}

.btnArea {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.btnArea .btn {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 20px 40px;
  border-radius: 70px;
  box-sizing: border-box;
  border: 2px solid;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  line-height: 1;
  width: 240px;
}
.btnArea .btn:hover {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .btnArea .btn {
    width: 100%;
    padding: 5%;
    font-size: 3.8888888889vw;
  }
}
.btnArea .btn.confirmBtn {
  background-color: #000;
  border-color: #000;
}
.btnArea .btn.confirmBtn:hover {
  background-color: #fff;
  color: #000;
}
.btnArea .btn.sitetopBtn {
  background-color: #000;
  border-color: #000;
}
.btnArea .btn.sitetopBtn:hover {
  background-color: #fff;
  color: #000;
}
.btnArea .btn.backBtn {
  background-color: #707070;
  border-color: #707070;
}
.btnArea .btn.backBtn:hover {
  background-color: #fff;
  color: #707070;
}
.btnArea .btn.sendBtn {
  background-color: #000;
  border-color: #000;
  margin-left: 3%;
}
.btnArea .btn.sendBtn:hover {
  background-color: #fff;
  color: #000;
}

#formThanks .titleArea {
  margin-bottom: 40px;
}
#formThanks .titleArea .title {
  font-size: 26px;
  font-weight: bold;
}
#formThanks .textArea {
  line-height: 1.5;
  margin-bottom: 40px;
}
#formThanks .textArea p:not(:first-of-type) {
  margin-top: 20px;
}