@charset "UTF-8";

.c-formP {
  font-size: 12px;
  text-align: left;
  letter-spacing: 0.1em;
}

.p-formProcess {
  display: flex;
  max-width: 164px;
  justify-content: space-between;
  text-align: center;
  padding-bottom: 30px;
  margin: 20px auto;
  white-space: nowrap;
}
.p-formProcess li {
  /* display: inline-block; */
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #cc0801;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 2px solid #cc0801;
  text-align: center;
  line-height: 44px;
}
/* .p-formProcess li:not(:first-child) {
  margin-left: 66px;
} */
.p-formProcess li:not(:first-child)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  border-top: 6px dotted #949494;
  top: 42%;
  left: -100%;
  transform: translate(-50%);
}

@media screen and (max-width:300px) {
  .p-formProcess li:not(:first-child)::after {
    content: none;
  }
}

.p-formProcess li span {
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  bottom: -100%;
  left: 50%;
  transform: translate(-50%);
  color: #cc0801;
}

.js-formProcess .is-on {
  background-color: #cc0801;
  color: #fff;
}

.p-form {
  border-collapse: collapse;
  border: 1px solid #c4c4c4;
  margin-top: 20px;
}
.p-form .u-error {
  margin: 5px 0 0;
  color: #cc0801;
}
.p-form input {
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  height: 40px;
  max-width: 437px;
  width: 100%;
  padding-left: 5px;
  font-size: 14px;
}
.p-form input[type="text"]:focus {
  border: 2px solid #cc0801;
  outline: 0;
}
.p-form textarea {
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  height: 80px;
  max-width: 603px;
  width: 100%;
  padding: 4px;
}
.p-form textarea[type="text"]:focus {
  border: 2px solid #cc0801;
  outline: 0;
}
.p-form .u-must input {
  background-color: rgba(204, 8, 1, 0.15);
  border: 1px solid #cbcbcb;
}
.p-form input::placeholder {
  font-size: 14px;
  color: #999999;
}
.p-form tr {
  display: flex;
  flex-wrap: wrap;
}
.p-form th {
  position: relative;
  border: 1px solid #c4c4c4;
  border-bottom: none;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 15px 15px 0 15px;
  width: 100%;
  text-align: left;
  transition: 0.3s;
}
.p-form .is-ng th, .p-form .is-ok th, .p-form .u-must th {
  padding: 15px 15px 0 70px;
}
.p-form td {
  width: 100%;
  border: 1px solid hsl(0, 0%, 77%);
  border-top: none;
  padding: 10px 15px 15px 15px;
  transition: 0.3s;
}
.p-form .is-ok:not(.p-form__checkbox_row) td, .p-form .p-form .u-must td {
  padding: 15px;
}
.p-form .is-ng:not(.p-form__checkbox_row) td {
  padding: 50px 15px 15px 15px;
}
.p-form td label {
  position: relative;
}
.p-form__head th {
  line-height: 1.8;
}
.p-form__num {
	text-align: left;
	font-size: 13px;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
  font-weight: normal;
}
.p-form__num::before {
	content: "JOB ID ";
}
.p-form__title {
	text-align: left;
	font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.09em;
}
.p-form__comment {
  font-size: 13px;
  padding-top: 3px;
}
.p-form__birthday td input {
  width: 45px;
  margin: 4px;
}
.p-form__radio input{
  display: none;
}
.p-form__radio input + label{
  padding-left: 25px;
  position:relative;
  margin-right: 28px;
  font-size: 14px;
  line-height: 0;
}
.p-form__radio input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  border-radius: 50%;
}
.p-form__radio input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid #cc0801;
  border-radius: 50%;
}
.p-form__radio input:checked + label::before{
  border: none;
}
.u-must th::after {
  content: "必須";
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background-color: #cc0801;
  border: 1px solid #cc0801;
  border-radius: 3px;
  left: 15px;
  top: 14px;
  padding: 0 7px;
}
.is-ok th::after {
  content: "OK";
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 3px;
  left: 15px;
  top: 15px;
  padding: 0 10px;
}
.is-ok td label.p-form__label::after {
  content: "";
  position: absolute;
  background-image: url(img/common/icon_check_white.svg);
  background-repeat: no-repeat;
  background-size: 21px 16px;
  background-position: center center;
  width: 30px;
  height: 30px;
  font-weight: normal;
  background-color: #000;
  border-radius: 50%;
  top: -40px;
  right: 0;
  transform: translateY(-50%);
}
/*.is-ng td label.p-form__label::before {
  content: none;
   content: none; 
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: 40px;
  top: -50px;
  left: 0;
}
.is-ng.is-ng-must td label.p-form__label::before {
  background-image: url(img/common/fukidashi_must.svg);
  width: 133px;
}
.is-ng.is-ng-kana td label.p-form__label::before {
  background-image: url(img/common/fukidashi_kana.svg);
  width: 133px;
}
.is-ng.is-ng-email td label.p-form__label::before {
  background-image: url(img/common/fukidashi_email.svg);
  width: 133px;
}
.is-ng.is-ng-date td label.p-form__label::before {
  background-image: url(img/common/fukidashi_date.svg);
  width: 133px;
}
*/

.is-ng td label.p-form__label span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -36px;
}
.is-ng td label.p-form__label span::before {
  color: #fff;
  background: #cc0801;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 2;
  position: relative;
}
.is-ng td label.p-form__label span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #cc0801;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -4px;
  transform: rotate(45deg);
  z-index: 1;
}
.is-ng.is-ng-must td label.p-form__label span::before {
  content: "！必須項目です";
}
.is-ng.is-ng-kana td label.p-form__label span::before {
  content: "！全角カタカナで入力ください";
}
.is-ng.is-ng-email td label.p-form__label span::before {
  content: "！メールアドレスが正しくありません";
}
.is-ng.is-ng-date td label.p-form__label span::before {
  content: "！値が正しくありません";
}



.is-ng td label.p-form__label::after {
  content: "";
  position: absolute;
  background-image: url(img/common/icon_ng.svg);
  background-repeat: no-repeat;
  background-size: 19px 19px;
  background-position: 6px 6px;
  width: 30px;
  height: 30px;
  font-weight: normal;
  background-color: #cc0801;
  border-radius: 50%;
  top: -26px;
  right: 0px;
  transform: translateY(-50%);
}

@media screen and (min-width:641px) {

  .c-formP {
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.1em;
  }

  .p-formProcess {
    display: block;
    margin-top: 47px;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .p-formProcess li {
    display: inline-block;
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #cc0801;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border: 2px solid #cc0801;
    text-align: center;
    line-height: 44px;
  }
  .p-formProcess li:not(:first-child) {
    margin-left: 66px;
  }
  .p-formProcess li:not(:first-child)::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    border-top: 6px dotted #949494;
    top: 42%;
    left: -100%;
    transform: translate(-50%);
  }
  .p-formProcess li span {
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    bottom: -100%;
    left: 50%;
    transform: translate(-50%);
    color: #cc0801;
  }

  .js-formProcess .is-on {
    background-color: #cc0801;
    color: #fff;
  }

  .p-form {
    border-collapse: collapse;
    border: 2px solid #c4c4c4;
    margin-top: 37px;
  }
  .p-form tr {
    display: table-row;
  }
  .p-form input {
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    height: 40px;
    width: 437px;
    padding-left: 14px;
    font-size: 16px;
  }
  .p-form input[type="text"]:focus {
    border: 2px solid #cc0801;
    outline: 0;
  }
  .p-form textarea {
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    height: 80px;
    max-width: 603px;
    width: 100%;
    padding: 7px 14px;
  }
  .p-form textarea[type="text"]:focus {
    border: 2px solid #cc0801;
    outline: 0;
  }
  .p-form .u-must input {
    background-color: rgba(204, 8, 1, 0.15);
    border: 1px solid #cbcbcb;
  }
  .p-form input::placeholder {
    font-size: 16px;
    color: #999999;
  }
  .p-form th {
    position: relative;
    border: 2px solid #c4c4c4;
    border-right: none;
    font-size: 16px;
    font-weight: bold;
    padding: 35px 0 35px 85px;
    width: 315px;
    text-align: left;
    letter-spacing: 0;
  }
  .p-form .is-ng th, .p-form .is-ok th, .p-form .u-must th {
    padding: 35px 0 35px 85px;
  }
  .p-form td {
    width: calc(100% - 315px);
    border: 2px solid #c4c4c4;
    border-left: none;
    padding: 27px 79px 27px 0;
    position: relative;
  }
  .p-form .is-ng:not(.p-form__checkbox_row) td, .p-form .is-ok:not(.p-form__checkbox_row) td, .p-form .u-must td {
    padding: 27px 79px 27px 0;
  }
  .p-form td label {
    position: relative;
  }
  .p-form__head th {
    line-height: 1.8;
  }
  .p-form__num {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.09em;
    margin-bottom: 10px;
    font-weight: normal;
  }
  .p-form__num::before {
    content: "JOB ID ";
  }
  .p-form__title {
    text-align: left;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.09em;
  }
  .p-form__comment {
    font-size: 13px;
    padding-top: 3px;
  }
  .p-form__birthday td input {
    width: 97px;
  }
  .p-form__radio input{
    display: none;
  }
  .p-form__radio input + label{
    padding-left: 25px;
    position:relative;
    margin-right: 28px;
    font-size: 16px;
    line-height: 0;
  }
  .p-form__radio input + label::before{
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #000;
    border-radius: 50%;
  }
  .p-form__radio input:checked + label::after{
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 3px solid #cc0801;
    border-radius: 50%;
  }
  .p-form__radio input:checked + label::before{
    border: none;
  }
  .u-must th::after {
    content: "必須";
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    background-color: #cc0801;
    border: 1px solid #cc0801;
    border-radius: 3px;
    top: auto;
    left: 30px;
    padding: 0 5px;
  }
  .is-ok th::after {
    content: "OK";
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 3px;
    top: auto;
    left: 30px;
    padding: 0 10px;
  }
  .is-ok td label.p-form__label::after {
    content: "";
    position: absolute;
    background-image: url(img/common/icon_check_white.svg);
    background-repeat: no-repeat;
    background-size: 21px 16px;
    background-position: center center;
    width: 30px;
    height: 30px;
    font-weight: normal;
    background-color: #000;
    border-radius: 50%;
    top: 50%;
    right: -42px;
    transform: translateY(-50%);
  }
  .is-ng td label.p-form__label {
    position: relative;
  }
/*  .is-ng td label.p-form__label::before {
    content: none;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 40px;
    top: -50px;
    left: 0;
  }
  .is-ng.is-ng-must td label.p-form__label::before {
    background-image: url(img/common/fukidashi_must.svg);
    width: 133px;
  }
  .is-ng.is-ng-kana td label.p-form__label::before {
    background-image: url(img/common/fukidashi_kana.svg);
    width: 133px;
  }
  .is-ng.is-ng-email td label.p-form__label::before {
    background-image: url(img/common/fukidashi_email.svg);
    width: 133px;
  }
  .is-ng.is-ng-date td label.p-form__label::before {
    background-image: url(img/common/fukidashi_date.svg);
    width: 133px;
  }
*/

  .is-ng td label.p-form__label span {
    display: inline-block;
    position: absolute;
    left: 0;
    top: -38px;
  }
  .is-ng td label.p-form__label span::before {
    color: #fff;
    background: #cc0801;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .is-ng td label.p-form__label span::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #cc0801;
    position: absolute;
    bottom: -6px;
    transform: rotate(45deg);
  }
  .is-ng.is-ng-must td label.p-form__label span::before {
    content: "！必須項目です";
  }
  .is-ng.is-ng-kana td label.p-form__label span::before {
    content: "！全角カタカナで入力ください";
  }
  .is-ng.is-ng-email td label.p-form__label span::before {
    content: "！メールアドレスが正しくありません";
  }
  .is-ng.is-ng-date td label.p-form__label span::before {
    content: "！年月日のうちいずれかが正しくありません";
  }









  .is-ng td label.p-form__label::after {
    content: "";
    position: absolute;
    background-image: url(img/common/icon_ng.svg);
    background-repeat: no-repeat;
    background-size: 19px 19px;
    background-position: 6px 6px;
    width: 30px;
    height: 30px;
    font-weight: normal;
    background-color: #cc0801;
    border-radius: 50%;
    top: 50%;
    right: -42px;
    transform: translateY(-50%);
  }
}


/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_

/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

.p-form__checkbox {
  font-size: 14px;
  border-bottom: 1px solid #d6d6d6;
  padding-top: 10px;
}
.p-form__checkbox:first-child {
  padding-top: 0;
}
.p-form__checkbox:last-child {
  border-bottom: none;
}
.p-form__checkbox.hp-noborder {
  border-bottom: none;
  padding-top: 47px;
}

.p-form__checkbox label {
  display: inline-block;
  margin-bottom: 10px;
}
.p-form__checkbox label.p-form__checkbox__all {
  margin-bottom: 0;
}
.p-form__checkbox__all input[type="checkbox"]+span {
  font-size: 14px;
  margin-bottom: 21px;
}

.p-form__checkbox__all input[type="checkbox"]+span {
  font-size: 14px;
  margin-bottom: 10px;
}

.p-form__checkbox input[type="checkbox"]+span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 6px;
}
/* ラベルの左に表示させる正方形のボックス□ */
.p-form__checkbox input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  height: 19px;
  width: 19px;
  transition:all .15s ease-out 0s;
  color: #fff;
  cursor: pointer;
  outline: none;
  border: 1px solid;
  border-color: #d6d6d6;
  border-radius: 2px;
  margin-left: 10px;
  z-index: 99;
  top: 4px;
  background-color: #fff;
}
.p-form__checkbox .c-modal__all input[type=checkbox] {
  top: 2px;
}
/* Checkbox */
.p-form__checkbox input[type=checkbox]:before,input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: #cc0801;
  transition: all .2s ease-in-out;
}
.p-form__checkbox input[type=checkbox]:before {
  left: 2px;
  top: 6px;
  width: 0;
  height: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.p-form__checkbox input[type=checkbox]:after {
  right: 9px;
  bottom: 3px;
  width: 2px;
  height: 0;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transition-delay: .2s;
}
.p-form__checkbox input[type=checkbox]:checked:before {
  left: 1px;
  top: 10px;
  width: 6px;
  height: 2px;
}
.p-form__checkbox input[type=checkbox]:checked:after {
  right: 5px;
  bottom: 1px;
  width: 2px;
  height: 14px;
}
.p-form__checkbox input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
  width: 7px;
  height: 2px;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
.p-form__checkbox input[type=checkbox]:indeterminate:before {
  left: 1px;
  top: 7px;
}
.p-form__checkbox input[type=checkbox]:indeterminate:after {
  right: 1px;
  bottom: 7px;
}
.p-form__checkbox input[type=checkbox]:checked+span,input[type=checkbox]:indeterminate+span {
  /* background: #2196f3; */
  position: relative;
  z-index: 9;
}

.p-form__checkbox input[type=checkbox]:checked+span::after, input[type=checkbox]:indeterminate+span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  padding: 8px 5px 8px 25px;
  /* background-color: #f7d3e7; */
  left: -25px;
  top: -8px;
  z-index: -1;
  border-radius: 5px;
}
