@charset "UTF-8";


/* 
------------------------------------------------------------------------------------*/
.page_tit {
  --fs: 2.2rem;
  --fh: 3.2rem;
  font-size: var(--fs);
  font-weight: normal;
  text-align: center;
  line-height: var(--fh);
  margin: calc(32px + ((var(--fs) - var(--fh)) / 2)) 16px calc(-2px + ((var(--fs) - var(--fh)) / 2));
}

.page_tit_sub {
  font-size: 1.8rem;
}

.lead_txt {
  --fs: 1.6rem;
  --fh: 2.4rem;
  border-top: #005CB9 solid 4px;
  font-size: var(--fs);
  font-weight: normal;
  line-height: var(--fh);
  margin: calc(32px + ((var(--fs) - var(--fh)) / 2)) 16px calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding: 20px 8px 0;
}

.lead_txt_red {
  color: #c00;
  font-weight: bold;
}

.agreementBtn {
  border: #aaa solid 1px;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  display: block;
  position: relative;
  cursor: pointer;
  margin: 24px 24px 0;
  padding: 8px 12px 8px 46px;
}
.agreementBtn_checked {
  background: #F7FAFF;
}

.agreement_check {
  width: 22px;
  height: 22px;
  background: #fff;
  border: #ddd solid 1px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  -webkit-appearance: none;
}

.agreement_check::before {
  content: "";
  width: 16px;
  height: 10px;
  border-bottom:#DDDDDD solid 3px;
  border-left: #DDDDDD solid 3px;
  display: block; 
  position: absolute;
  top: 3px;
  left: 2px;
  transform: rotate(-45deg);
}

.agreement_check::after {
  content: "";
  width: 16px;
  height: 10px;
  border-bottom:#005CB9 solid 3px;
  border-left: #005CB9 solid 3px;
  display: block; 
  position: absolute;
  top: 3px;
  left: 2px;
  transform: rotate(-45deg);
  opacity: 0;
}
.agreement_check:checked::after { opacity: 1; }

.agreement_link {
  color: #005CB9;
  position: relative;
  padding-left: 18px;
}

.agreement_link::before,
.agreement_link::after {
  content: "";
  width: 12px;
  height: 10px;
  background: #fff;
  border: #005CB9 solid 1px;
  border-radius: 2px;
  display: block;
  position: absolute;
  top: 4px;
}
.agreement_link::after {
  top: 1px;
  left: 3px;
}

.agreement_txt {
  --fs: 1.6rem;
  --fh: 2.4rem;
  background: linear-gradient(to right, #707070, #707070 2px, transparent 2px, transparent 5px) top left / 5px 1px repeat-x;
  font-size: var(--fs);
  font-weight: bold;
  line-height: var(--fh);
  margin: 24px 16px calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-top: 20px;
}

.personalData_wrap {
  border-bottom: #005CB9 solid 4px;
  display: flex;
  flex-direction: column;
  margin: 8px 16px 0;
  padding-bottom: 32px;
}

.personalData_tit {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding: 24px 0 0 2px;
}

.personalData_val {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 8px;
}

.personalData_required {
  color: #c00;
  font-size: 1.4rem;
}

.personalData_annotation {
  --fs: 1.4rem;
  --fh: 1.8rem;
  font-size: var(--fs);
  text-indent: -1em;
  line-height: var(--fh);
  margin: calc(8px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
  padding-left: calc(1em + 2px);
}

.survey_wrap {
  background: #F5F5F5;
  margin-top: 32px;
  padding: 24px 16px 32px;
}

.survey_mainTit {
  font-size: 2rem;
  text-align: center;
  margin-bottom: -8px;
}

.survey_tit {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  margin-top: 32px;
}

.survey_val_radio {
  background: #fff;
  border-radius: 12px;
  border: #aaa solid 1px;
  position: relative;
  margin-top: 8px;
  padding: 12px;
}

.survey_label {
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
  margin: 8px 16px 16px 0;
  padding-left: 26px;
}

.survey_radio {
  width: 20px;
  height: 20px;
  background: #fff;
  border: #aaa solid 1px;
  border-radius: 100px;
  position: absolute;
  top: -4px;
  left: 0;
  cursor: pointer;
  margin: 0 4px 0 0;
  -webkit-appearance: none;
}
.survey_radio:checked { border: #005CB9 solid 1px; }

.survey_radio::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #005CB9;
  border-radius: 100px;
  display: block; 
  position: absolute;
  top: 2px;
  left: 2px;
  opacity: 0;
}
.survey_radio:checked::after { opacity: 1; }

.survey_val { margin-top: 8px; }

.input_1column,
.input_2column,
.textarea_1column {
  width: 100%;
  height: 36px;
  border: #aaa solid 1px;
  border-radius: 8px;
  font-size: 1.6rem;
  line-height: 1.8rem;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 8px 12px;
}

.input_2column { width: 48%; }
.textarea_1column { height: 100px; }

.select_prefecture { 
  width: 100%;
  height: 36px;
  background: url(/images/pulldown_arrow_sp.svg) #fff right center no-repeat;
  background-size: 34px;
  border: 1px solid #aaa;
  border-radius: 8px;
  color: #222;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 8px 34px 8px 12px;
  -webkit-appearance: none;
}

.submitBtn {
  width: 71.2%;
  height: 56px;
  background: #005CB9;
  border: none;
  border-radius: 12px;
  color: #fff;
  font: inherit;
  font-size: 2.2rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin: 48px auto 80px;
  -webkit-appearance: none;
}


/* error系
------------------------------------------------------------------------------------*/
.errorTxt_header {
  background: #c00;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 18px;
  padding: 16px 0;
}

.agreementBtn_error_txt,
.personalData_error_txt,
.personalData_error_txt_l,
.survey_error_txt,
.surveyTextarea_error_txt {
  width: 120px;
  height: auto;
  background: rgba(204, 0, 0, 0.8);
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.4rem;
  position: absolute;
  right: 0;
  z-index: 10;
  padding: 5px 10px;
}
.agreementBtn_error_txt::after,
.personalData_error_txt::after,
.personalData_error_txt_l::after,
.survey_error_txt::after,
.surveyTextarea_error_txt:after {
  content: "";
  border-top: rgba(204, 0, 0, 0.8) solid 8px;
  border-right: transparent solid 6px;
  border-left: transparent solid 6px;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
}

.agreementBtn_error_txt { top: -28px; }
.personalData_error_txt { bottom: -4px; }
.personalData_error_txt_l {
  right: 52%;
  bottom: -4px;
}
.survey_error_txt { bottom: -4px; }
.surveyTextarea_error_txt {
  bottom: 4px;
}

.agreementBtn_error,
.personalData_error,
.survey_val_radio_error {
  background-color: #fae6e5;
  border: #c00 solid 1px;
}

.surveyTextarea_error_wrap {
  height: 0;
  position: relative;
}

/* 住所候補
------------------------------------------------------------------------------------*/
.js_address_list {
  width: 91.46%;
  height: 180px;
  background: #f7fafd;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.45);
  list-style: none;
  position: absolute;
  overflow-y: scroll;
  z-index: 10;
  top: 35px;
  padding: 0 8px;
}

.js_address_list li {
  --fs: 1.4rem;
  --fh: 1.6rem;
  border-bottom: #aaa solid 1px;
  font-size: var(--fs);
  line-height: var(--fh);
  cursor: pointer;
  margin: calc(0px + ((var(--fs) - var(--fh)) / 2)) 0;
  padding: 12px;
}
.js_address_list li:hover {
  background: #d6d7d9;
}