.form-row{
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 21px;
  margin-bottom: 22px;
}
.no-border{
  border: none;
}
.form-caption{
  position: relative;
  margin-bottom: 10px;
}
.caption-inline{
  position: relative;
}
.caption--text{
  display: block;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 29px;
}
.caption--text small{
  display: block;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  margin-top: 5px;
}
.caption--askerisk{
  display: inline-block;
  background: #B54145;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 29px;
  padding: 0 6px;
  position: absolute;
  right: 15px;
  top: 0;
}
.error {
  color: #A51418;
  font-size: 0.89em;
  margin-top: 1em;
}
.error2 {
  color: #A51418;
  font-size: 0.89em;
  margin-bottom: 1em;
}
.error3 {
  color: #A51418;
  font-size: 0.89em;
  margin-top: 0.5em;
}
textarea,
select,
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="email"]{
  background: #F2F2F2;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  width: 100%;
  height: 60px;
  line-height: 30px;
  padding: 0 35px 0 20px;
}
textarea{
  height: 158px;
  padding: 10px 20px;
}
select.size-m,
input.size-m{
  width: 33%;
  margin-right: 3%;
}
select.size-s,
input.size-s{
  width: 27%;
  margin-right: 3%;
}
select.size-xs,
input.size-xs{
  width: 15%;
  margin-right: 3%;
  padding: 15px;
}
select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../img/common/icon_down.svg');
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 94% 50%;
}
.radiomark{
  display: inline-block;
  position: relative;
  padding-left: 42px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[type="radio"]{
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 28px;
  width: 28px;
  background-color: #F2F2F2;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
}
.radiomark:hover input ~ .checkmark{
  background-color: #ccc;
}
.radiomark input:checked ~ .checkmark {
  background-color: #2B4CA3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radiomark input:checked ~ .checkmark:after {
  display: block;
}
.radiomark .checkmark:after {
  left: 9px;
  top: 3px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox{
  display: block;
  position: relative;
  padding-left: 29px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  line-height: 27px;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox__mark{
  position: absolute;
  top: 4px;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #F2F2F2;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
}
.checkbox:hover input ~ .checkbox__mark {
  background-color: #ccc;
}
.checkbox input:checked ~ .checkbox__mark {
  background-color: #2B4CA3;
}
.checkbox__mark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ .checkbox__mark:after {
  display: block;
}
.checkbox .checkbox__mark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

label.d-block{
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  margin-top: 3px;
}
label.block__ttl{
  display: block;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 9px;
}

.input-checkbox,
.input-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.input-checkbox + label {
	cursor: pointer;
	padding-left: 30px;
	vertical-align: top;
	position: relative;
	display: inline-block;
	line-height: 1.8;
}
.input-checkbox + label::before,
.input-checkbox + label::after {
  content: "";
  display: block; 
  position: absolute;
}
.input-checkbox + label::before {
  background-color: #F2F2F2;
  border: 1px solid #D9D9D9;
  width: 20px;
  height: 20px;
  top: 0.3em;
  left: 0;
  border-radius: 5px;
}
.input-checkbox:hover + label::before {
	background-color: #ccc;
}
.input-checkbox + label::after {
	border-bottom: 3px solid #fff;
	border-left: 3px solid #ffffff;
	opacity: 0;
	height: 4px;
	width: 9px;
	transform: rotate(-45deg);
	top: 0.7em;
	left: 5px;
}
.input-checkbox:checked + label::before {
  background-color: #2B4CA3;
}
.input-checkbox:checked + label::after {
  opacity: 1;
}
.input-radio + label {
	cursor: pointer;
	padding-left: 30px;
	vertical-align: top;
	position: relative;
	display: inline-block;
	line-height: 1.8;
  /* font-size: 13px; */
}
.input-radio + label::before,
.input-radio + label::after {
  content: "";
  display: block; 
  position: absolute;
}
.input-radio + label::before {
	background-color: #F2F2F2;
	border: 1px solid #D9D9D9;
	width: 20px;
	height: 20px;
	top: 0.2em;
	left: 0;
	border-radius: 50%;
}
.input-radio + label::after {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	opacity: 0;
	height: 5px;
	width: 10px;
	transform: rotate(-45deg);
	top: 0.6em;
  left: 5px;
}
.input-radio:checked + label::before {
	background-color: #009A9A;
	border: 1px solid #009A9A;
}
.input-radio:checked + label::after {
  opacity: 1;
}
.input-select {
  width: auto;
}
button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	font-size: inherit;
	background-color: inherit;
	color: inherit;
}
.button--modal {
  width: 100%;
  max-width: 480px;
  height: 50px;
  color: #BBBBBB;
  background-image: url(../img/common/icon_plus.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 0 20px;
	text-align: left;
}
.form-value.date{
  display: flex;
  justify-content: space-between;
}
.form-value.date select{
  width: 32%;
}
.address__button{
  width: 54%;
  background: #2B4CA3;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 30px;
  padding: 15px 0;
}
.submit-button{
  margin-top: 40px;
}
.confirm-value{
  display: inline-block;
}
.back__button{
  display: block;
  background: transparent;
  border: none;
  text-align: center;
  color: #2B4CA3;
  line-height: 29px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin: 20px auto 0;
}
.form-box__button{
  border: none;
  display: block;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 30px;
  color: #fff;
  background: #2B4CA3;
  padding: 12px 17px;
  margin: 45px 0 8px auto;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.button__edit{
  width: 152px;
  background: #2B4CA3;
  color: #fff;
  font-weight: 700;
  line-height: 29px;
  padding: 10px 0;
  border-radius: 5px;
  margin-right: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  border: none;
}
.button__edit img{
  width: 17px;
  height: auto;
  margin: -4px 3px 0 0;
}
.button__delete{
  background: transparent;
  border: none;
  color: #2B4CA3;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 29px;
  padding: 10px 0;
}
.button__delete img{
  width: 14px;
  height: auto;
  margin: -3px 2px 0 0;
}

.form-value .toggle {
  padding: 0 30px;
  margin: 30px 0;
}

.form-value .toggle-link,
.form-value .toggle-link-disabled {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 29px;
  padding-bottom: 10px;
  padding-right: 50px;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
}

.form-value .toggle-link:after {
  content: '';
  width: 13px;
  height: 13px;
  border-top: 2px solid #03499B;
  border-right: 2px solid #03499B;
  position: absolute;
  right: 8px;
  top: 2px;
  transform: rotate(135deg);
}

.form-value .toggle.active .toggle-link:after {
  transform: rotate(-45deg);
  top: 11px;
}

.form-value .toggle--s {
  padding: 0;
  margin: 10px 0 0;
}

.form-value .toggle--s .toggle-link {
  display: table;
  padding-bottom: 0;
  border-bottom: none;
  font-weight: 400;
  line-height: 27px;
}

.form-value .toggle--s .toggle-link:after {
  width: 8px;
  height: 8px;
  right: -19px;
  top: 6px;
}

.form-value .toggle--s .toggle-link .checkbox {
  margin-top: 0;
}

.form-value .toggle--s .toggle-main {
  padding: 0 0 20px 30px;
}

.form-box{
  background: #FCFCFC;
  border: 1px solid #D9D9D9;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.04);
  padding: 30px 30px 1px;
}
.form-box--style2{
  padding: 20px 30px;
}
.form-box__row{
  margin-bottom: 30px;
}
.form-box__title{
  font-weight: 700;
  letter-spacing: 0;
  line-height: 29px;
  margin-bottom: 10px;
}
.form-box__info{
  width: 100%;
  display: table;
  line-height: 29px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
.form-box__info:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.form-box__info dt {
	width: 100px;
	display: table-cell;
	font-weight: 700;
	vertical-align: top;
	padding-top: 10px;
}
.form-box__info dd{
  display: table-cell;
}
/* .form-box__info .checkbox:first-child {
  margin-top: 0;
} */
.form-value__row{
  padding: 0 30px;
  margin-bottom: 30px;
}
.form-value__row__title{
  font-weight: 700;
  letter-spacing: 0;
  line-height: 29px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 15px;
}
.toggle-main__title{
  font-weight: 700;
  line-height: 29px;
  margin-top: 20px;
}


.privacy {
  height: 350px;
  margin-top: 30px;
  padding: 30px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #2B4CA3;
  border-radius: 5px;
  overflow: auto;
}
.privacy__ttl {
  margin-bottom: 30px;
  font-weight: 700;
  font-weight: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #2B4CA3;
}
.privacy dl {
  margin-top: 30px;
}
.privacy dl dt {
  color: #2B4CA3;
}
.privacy__checkbox {
  margin-top: 30px;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #EEF3F9;
  border-radius: 5px;
  text-align: center;
}
.privacy__checkbox .radiomark {
  margin: 0;
  font-weight: 700;
}
.privacy__checkbox .checkmark {
  background-color: #fff;
}
.privacy__checkbox .radiomark input:checked ~ .checkmark {
  background-color: #2B4CA3;
}


._education + ._education {
  margin-top: 2em;
}
._education:first-of-type ._delete-education-wrap {
  display: none;
}

._job-history + ._job-history {
  margin-top: 2em;
}
._job-history:first-of-type ._delete-job-history-wrap {
  display: none;
}
@media screen and (max-width: 560px){
  .confirm-main .form-row{
    width: 100%;
    display: block;
  }
  .confirm-main .form-caption {
    display: block;
  }
  .confirm-main .form-value{
    display: block;
  }
}
@media screen and (min-width: 561px){
  .form-row{
    display: table;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .form-row:last-child{
    margin-bottom: 0;
  }
  .form-caption{
    display: table-cell;
    width: 200px;
    margin-bottom: 0;
    vertical-align: top;
  }
  .caption--askerisk{
    font-size: 12px;
    line-height: 17px;
    right: 24px;
    top: 5px;
    padding-bottom: 2px;
  }
  select, option{
    cursor: pointer;
  }
  select,
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  input[type="password"],
  input[type="email"]{
    height: 50px;
    line-height: 24px;
    padding: 0 20px;
  }
  select {
    padding: 0 35px 0 20px;
  }
  input.size-s{
    width: 80px;
    margin-right: 8px;
  }
  input.size-m{
    max-width: 160px;
    width: 100%;
    margin-right: 8px;
  }
  input.size-m-pc{
    max-width: 360px;
    width: 100%;
  }
  select.size-m-pc{
    max-width: 340px;
    width: 100%;
  }
  input.size-s-pc{
    max-width: 160px;
    width: 100%;
  }
  input.size-xs{
    width: 65px;
    margin-right: 12px;
    padding: 13px 10px;
  }
  .d-flex-pc {
    gap: 20px 50px;
  }
  .radiomark{
    padding-left: 29px;
    line-height: 1.4;
  }
  .checkmark {
    height: 19px;
    width: 19px;
    /* top: 6px; */
    top: 0.1em;
    left: 4px;
  }
  .radiomark .checkmark:after{
    top: 2px;
    left: 5px;
    width: 4px;
    height: 9px;
  }
  .checkbox{
    font-size: 16px;
    line-height: 24px;
  }
  label.d-block{
    font-size: 14px;
    line-height: 21px;
  }
  label.block__ttl{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
  }
  .form-value.date{
    max-width: 510px;
    width: 100%;
  }
  .form-value.date select{
    max-width: 160px;
  }
  .address__button{
    max-width: 220px;
    width: 45%;
    line-height: 24px;
    padding: 13px 0;
    cursor: pointer;
  }
  .address__button:hover{
    opacity: 0.8;
  }
  .submit-button{
    margin-top: 58px;
  }
  .confirm-main .form-caption{
    width: 30%;
  }
  .back__button{
    line-height: 24px;
    margin-top: 18px;
    cursor: pointer;
  }
  .back__button:hover{
    text-decoration: none;
  }
  .form-box__button{
    width: 220px;
    margin-top: 12px;
    margin-bottom: 30px;
    cursor: pointer;
  }
  .button__edit{
    width: 130px;
    line-height: 24px;
    padding: 8px 0;
    margin-right: 25px;
    cursor: pointer;
  }
  .button__edit img{
    width: 15px;
  }
  .button__delete{
    cursor: pointer;
  }
  .button__delete:hover,
  .button__edit:hover,
  .form-box__button:hover{
    opacity: 0.8;
  }
  .form-register {
    box-shadow: 0px 0px 8px rgba(0,0,0,0.16);
    border-radius: 12px;
    padding: 60px;
  }
  .form-value .toggle {
    padding: 0;
    margin: 0px 0 30px;
  }
  .form-value .toggle-link,
  .form-value .toggle-link-disabled {
    line-height: 24px;
    padding-bottom: 8px;
  }
  .form-value .toggle-link:after {
    width: 13px;
    height: 13px;
    right: 8px;
    top: 2px;
  }
  .block-flex {
    display: flex;
  }
  .block-flex2 {
    display: flex;
    flex-wrap: wrap;
    margin-top: -10px;
  }
  .toggle-main .block-flex2 {
    margin-top: 0;
  }
  .block-flex2 label{
    width: 49%;
  }
  .block-flex2 label:nth-child(even){
    margin-left: 2%;
  }
  .block-flex .col {
    width: 50%;
    padding-right: 10px;
  }
  .form-value .toggle.active .toggle-link:after {
    top: 11px;
  }
  .form-value .toggle--s .toggle-link {
    line-height: 24px;
  }
  .form-value .toggle--s .toggle-link:after {
    width: 8px;
    height: 8px;
    right: -19px;
    top: 6px;
  }
  .form-value .toggle--s .toggle-main {
    padding: 0 0 10px 30px;
  }
  .d-flex-pc .checkbox {
    margin-right: 30px;
  }
  .flex-between .checkbox {
    margin: 0;
  }
  .form-box--style2{
    padding: 40px;
  }
  .form-box__row{
    width: 100%;
    display: table;
  }
  .form-box__title{
    margin-bottom: 0;
    width: 120px;
    display: table-cell;
    vertical-align: top;
  }
  .form-box__value{
    display: table-cell;
  }
  .form-box__info{
    line-height: 24px;
  }
  .form-box__info dt{
    width: 26%;
  }
  .form-value__row{
    padding: 0;
  }
  .toggle-main__title{
    line-height: 24px;
  }

  .privacy {
    line-height: 24px;
  }
  .privacy__ttl {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

select.size-auto {
	max-width: 100%;
	width: auto;
}
@media screen and (min-width: 561px) and (max-width: 1100px){
  select.size-s, input.size-s{
    width: 33%;
  }
  .form-box--style2{
    padding: 30px;
  }
}

.emp-type-wrap {
	margin-top: 1em;
	background-color: #F9F9F9;
	border-radius: 5px;
	padding: 20px;
	display: none;
}
.enty-explanation-wrap {
	border-radius: 5px;
	padding: 20px;
	margin-top: 0.5em;
  display: none;
}
.enty-explanation-wrap .icon {
	border-radius: 50%;
	background-color: #03499B;
	color: #fff;
	display: inline-block;
	width: 28px;
	height: 28px;
	text-align: center;
	line-height: 28px;
	margin-right: 0.5em;
}
.enty-explanation-wrap .enty-explanation-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #03499B;
}
.enty-explanation-text {
  line-height: 1.4;
  margin-top: 0.5em;
}
.enty-explanation1 {
  background-color: #EEF3F9;
}
.enty-explanation2 {
  background-color: #FFF5F5;
}
.enty-explanation2 .icon{
  background-color: #CB4647;
}
.enty-explanation2 .enty-explanation-ttl {
  color: #CB4647;
}
@media only screen and (max-width: 560px) {
  .form {
    box-shadow: 0vw 0vw 1.43vw rgba(0,0,0,0.16);
    border-radius: 2.14vw;
    padding: 8.93vw 5.36vw;
  }
  .form-row{
    border-bottom: 0.18vw solid #D9D9D9;
    padding-bottom: 3.75vw;
    margin-bottom: 3.93vw;
  }
  .form-caption{
    margin-bottom: 1.79vw;
  }
  .caption--text{
    line-height: 5.18vw;
  }
  .caption--text small{
    font-size: 3.21vw;
    line-height: 4.82vw;
    margin-top: 0.89vw;
  }
  .caption--askerisk{
    border-radius: 0.89vw;
    font-size: 3.21vw;
    line-height: 5.18vw;
    padding: 0 1.07vw;
    right: 0;
  }
  textarea,
  select,
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  input[type="email"]{
    border: 0.18vw solid #D9D9D9;
    border-radius: 0.89vw;
    height: 10.71vw;
    line-height: 5.36vw;
    padding: 0 3.57vw;
  }
  textarea{
    padding: 1.78vw 3.57vw;
    height: 28.21vw;
  }
  select.size-m,
  input.size-m{
    width: 33%;
  }
  select.size-s,
  input.size-s{
    width: 27%;
  }
  select.size-xs,
  input.size-xs{
    margin-right: 3%;
    padding: 0 2.68vw;
  }
  select{
    background-size: 2.68vw;
    background-position: 94% 50%;
    padding: 0 6.57vw 0 3.57vw;
  }
  .radiomark{
    padding-left: 7.5vw;
    margin: 0 10% 2.14vw 0;
  }
  .checkmark {
    top: 0.71vw;
    height: 5vw;
    width: 5vw;
    border: 0.18vw solid #D9D9D9;
  }
  .radiomark .checkmark:after {
    left: 1.61vw;
    top: 0.54vw;
    width: 1.07vw;
    height: 2.32vw;
    border-width: 0 0.36vw 0.36vw 0;
  }
  .checkbox{
    padding-left: 5.18vw;
    font-size: 3.21vw;
    line-height: 4.82vw;
  }
  .checkbox__mark{
    top: 0.71vw;
    height: 3.75vw;
    width: 3.75vw;
    border: 0.18vw solid #D9D9D9;
    border-radius: 0.71vw;
  }
  .checkbox .checkbox__mark:after {
    left: 1.07vw;
    top: 0.36vw;
    width: 0.71vw;
    height: 1.61vw;
    border-width: 0 0.54vw 0.54vw 0;
  }
  label.d-block{
    font-size: 3.21vw;
    line-height: 5.36vw;
    margin-top: 0.54vw;
  }
  label.block__ttl{
    font-size: 3.21vw;
    line-height: 4.82vw;
    margin-bottom: 1.61vw;
  }
  .form-value.date select{
    width: 32%;
  }
  .address__button{
    width: 54%;
    border-radius: 0.89vw;
    line-height: 5.36vw;
    padding: 2.68vw 0;
  }
  .submit-button{
    margin-top: 7.14vw;
  }
  .back__button{
    line-height: 5.18vw;
    text-decoration-thickness: 0.18vw;
    text-underline-offset: 0.54vw;
    margin: 3.57vw auto 0;
  }
  .form-box__button{
    line-height: 5.36vw;
    padding: 2.14vw 3.04vw;
    margin: 8.04vw 0 1.43vw auto;
    border-radius: 0.89vw;
    box-shadow: 0 0.54vw 1.07vw rgba(0,0,0,0.16);
  }
  .button__edit{
    width: 27.14vw;
    font-weight: 700;
    line-height: 5.18vw;
    padding: 1.79vw 0;
    border-radius: 0.89vw;
    margin-right: 3.57vw;
    box-shadow: 0 0.54vw 1.07vw rgba(0,0,0,0.16);
  }
  .button__edit img{
    width: 3.04vw;
    margin: -0.71vw 0.54vw 0 0;
  }
  .button__delete{
    line-height: 5.18vw;
    padding: 1.79vw 0;
  }
  .button__delete img{
    width: 2.5vw;
    margin: -0.54vw 0.36vw 0 0;
  }
  .form-value .toggle {
    padding: 0 5.36vw;
    margin: 5.36vw 0;
  }
  .form-value .toggle-link,
  .form-value .toggle-link-disabled {
    line-height: 5.18vw;
    padding-bottom: 1.79vw;
    padding-right: 8.93vw;
    border-bottom: 0.18vw solid #D9D9D9;
  }
  .form-value .toggle-link:after {
    width: 2.32vw;
    height: 2.32vw;
    border-top: 0.36vw solid #03499B;
    border-right: 0.36vw solid #03499B;
    right: 1.43vw;
    top: 0.36vw;
  }
  .form-value .toggle.active .toggle-link:after {
    top: 1.96vw;
  }
  .form-value .toggle--s {
    margin: 1.79vw 0 0;
  }
  .form-value .toggle--s .toggle-link {
    line-height: 4.82vw;
  }
  .form-value .toggle--s .toggle-link:after {
    width: 1.43vw;
    height: 1.43vw;
    right: -3.39vw;
    top: 1.07vw;
  }
  .form-value .toggle--s .toggle-main {
    padding: 0 0 3.57vw 5.36vw;
  }
  .form-box{
    border: 0.18vw solid #D9D9D9;
    box-shadow: 0.71vw 0.71vw 0.71vw rgba(0,0,0,0.04);
    padding: 5.36vw 5.36vw 0.18vw;
  }
  .form-box--style2{
    padding: 3.57vw 5.36vw;
  }
  .form-box__row{
    margin-bottom: 5.36vw;
  }
  .form-box__title{
    line-height: 5.18vw;
    margin-bottom: 1.79vw;
  }
  .form-box__info{
    line-height: 5.18vw;
    padding-bottom: 3.57vw;
    margin-bottom: 3.57vw;
    border-bottom: 0.18vw solid #D9D9D9;
  }
  .form-box__info dt {
    width: 17.86vw;
    padding-right: 2vw;
    text-align: left;
  }
  .form-value__row{
    padding: 0 5.36vw;
    margin-bottom: 5.36vw;
  }
  .form-value__row__title{
    line-height: 5.18vw;
    padding-bottom: 1.79vw;
    border-bottom: 0.18vw solid #D9D9D9;
    margin-bottom: 2.68vw;
  }
  .toggle-main__title{
    line-height: 5.18vw;
    margin-top: 3.57vw;
  }
  .privacy {
    height: 62.5vw;
    margin-top: 5.36vw;
    padding: 5.36vw 7.14vw;
    border: 0.36vw solid #2B4CA3;
    border-radius: 0.89vw;
  }
  .privacy__ttl {
    margin-bottom: 5.36vw;
    font-weight: 4.29vw;
    line-height: 6.43vw;
    letter-spacing: 0.05em;
  }
  .privacy dl {
    margin-top: 5.36vw;
  }
  .privacy__checkbox {
    margin-top: 5.36vw;
    padding: 4.46vw;
    border-radius: 0.89vw;
  }

  .button--modal {
    width: 100%;
    max-width: 100%;
    height: 8.93vw;
    background-position: calc(100% - 3.57vw) center;
    border-radius: 0.89vw;
    padding: 0 3.57vw;
    background-size: 4.29vw auto;
  }

  .emp-type-wrap {
    border-radius: 0.89vw;
    padding: 3.57vw;
    gap: 3.57vw;
  }
  .enty-explanation-wrap {
    border-radius: 0.89vw;
    padding: 3.57vw;
    margin-top: 0.5em;
  }
  .enty-explanation-wrap .icon {
    width: 5vw;
    height: 5vw;
    line-height: 5vw;
    margin-right: 0.5em;
  }
  .enty-explanation-wrap .enty-explanation-ttl {
    font-size: 3.21vw;
  }
}