@charset "UTF-8";
/* CSS Document */

.formArea{
}

.formWrap{
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.formWrap dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.formWrap dt{
  background: #ececec;
  width: 27%;
  padding: 20px;
  border-bottom: 2px solid #fff;
  position: relative;
}

.formWrap dd{
  width: 73%;
  background: #fff;
  padding: 20px;
  border-bottom: 2px solid #ececec;
}

.formWrap dt:nth-last-of-type(1),
.formWrap dd:nth-last-of-type(1){
  border:none;
}

.formWrap .selectList{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.formWrap .selectList li{
  margin: 0 0 10px;
}

.formWrap .formItemGender .selectList li{ width:25%;}
.formWrap .formItemBirth .selectList li,
.formWrap .formItemEmploymentStyle .selectList li,
.formWrap .formItemKnownBy .selectList li{ width:30%;}
.formWrap .formItemName .selectList li,
.formWrap .formItemNameKane .selectList li{ width:50%;}
.formWrap .selectList li select[name="prefecture"]{ width:30%;}


.detail{
  display: inline-block;
  margin: 0;
  font-size: 14px;
}

.formWrap input~.detail{
  margin-left:8px;
}

.required{
  font-size: 14px;
  background: #3399ff;
  display: inline-block;
  margin: 15px 0;
  padding: 9px 10px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
  right: 20px;
}

.caution{
  color: #f00;
  font-size: 14px;
  display: block;
  margin: 5px 0 0;
}

.privacy{
  padding: 0 0 0 31px;
  margin: 5px 0 0;
  display: block;
  font-size: 14px;
}

.formBtnUnit{
  display: flex;
  justify-content: space-between;
}

input,
select,
textarea{
  border: 2px solid #ccc;
  height: 40px;
  padding: 0 10px;
}

input{
  width: 200px;
}

select{
  margin: 0 10px 0 0;
  background: #fff;
  width: 100px;
}

textarea{
  width: 100%;
  min-height: 260px;
  padding: 10px;
  background: #fff;
}

/*input::-webkit-input-placeholder{
  font-size: 16px;
  line-height: 18px;
}

input:-ms-input-placeholder{
  font-size: 16px;
  line-height: 18px;
}

input::-moz-placeholder{
  font-size: 10px;
  line-height: 18px;
}*/

.formWrap input[type="text"]{
  width:200px;
}

.formWrap input[name="address"]{
  width: 300px;
}

.formWrap input[name="email"]{
  width: 300px;
}

.formWrap input[name="job_catchcopy"]{
  width: 100%;
}

.formWrap span.labelAddress {
  display: block;
}

.formWrap span.labelAddress2 {
  display: block;
  margin-top: 10px;
}

.formWrap button{
  cursor: pointer;
}

.formWrap button#confirm{
  line-height:24px;
}
/*
input[type="radio"]:checked,
input[type="checkbox"]:checked,
input[type="radio"]:not(:checked),
input[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}*/

/*input[type="radio"]:checked+label,
input[type="checkbox"]:checked+label,
input[type="radio"]:not(:checked)+label,
input[type="checkbox"]:not(:checked)+label{
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}*/

/*input[type="radio"]:checked+label:before,
input[type="checkbox"]:checked+label:before,
input[type="radio"]:not(:checked)+label:before,
input[type="checkbox"]:not(:checked)+label:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 2px;
  background: #fff;
  box-sizing: border-box;
  background: #f3f8fb;
}*/

/*input[type="radio"]:checked+label:before,
input[type="radio"]:not(:checked)+label:before{
  border-radius: 10px;
}*/

/*input[type="radio"]:checked+label:after,
input[type="checkbox"]:checked+label:after,
input[type="radio"]:not(:checked)+label:after,
input[type="checkbox"]:not(:checked)+label:after{
  content: '';
  width: 10px;
  height: 10px;
  background: #d80c18;
  position: absolute;
  top: 5px;
  left: 5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}*/

/*input[type="radio"]:checked+label:after,
input[type="radio"]:not(:checked)+label:after{
  border-radius: 5px;
}

input[type="radio"]:not(:checked)+label:after,
input[type="checkbox"]:not(:checked)+label:after{
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

input[type="radio"]:checked+label:after,
input[type="checkbox"]:checked+label:after{
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}*/
