html {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
}

.form {
  background-color: #F5F5F5;
  
}

.l_container {
  max-width: calc(100% - 16px);
  width: 1100px;
  margin: 0 auto;
  padding: 70px 0;
}

.l_container h2 {
  text-align: center;
  margin-bottom:49.6px;
}

.form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-top: solid 1px #B1B1B1;
}

.form_item:last-of-type {
  border-bottom: solid 1px #B1B1B1;
}

@media screen and (max-width: 767px) {
  .form_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form_labelWrap {
  width: 165px;
}

@media screen and (max-width: 767px) {
  .form_labelWrap {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.form_label {
  font-weight: normal; /*W3と記載あり*/
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0em;
  color:#000000;
}

@media screen and (max-width: 767px) {
  .form_label {
    font-size: 1.6rem;
    text-align: left;
  }
}

.form_label .small {
  font-size: 12px;
}

.attention {
  font-weight: normal; /*W3と記載あり*/
  font-size: 16px;
  line-height: 1.9; /*2.16*/
  letter-spacing: 0em;
  color:#ffffff;
  background-color: #FF9300;
  width: 80px;
  text-align: center;
  border-radius: 20px; /*値取得できず*/
}

.any {
  background-color: #006FC1;
}

.form_attribute {
  width: 30px;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  margin-left: 8px;
  padding: 3px 4px;
  text-align: center;
  position: relative;
  top: 3px;
}

.form_attribute-required {
  background: #E56E6E;
}

.form_attribute-optional {
  background: #C3C3C3;
}

.form_inputWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 60px;
  padding-right: 10px;
}

.form_select_date:nth-child(-n+2) {
  margin-bottom: 30px;
}

.select_date_head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.select_date_head p:first-of-type{
  margin-right: 30px;
  font-weight: normal; /*W3と記載あり*/
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0em;
  color:#000000;
}

@media screen and (max-width: 767px) {
  .form_inputWrap {
    margin-left: 0;
    margin-top: 7px;
  }
}

.form_inputText {
  font-size: 18px;
  border: 1px solid #313131;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 0 16px;
  height: 60px;
  width: 700px;
}

.form_inputText::placeholder {
  font-weight: normal; /*W3と記載あり*/
  font-size: 18px;
  line-height: 1.89;
  letter-spacing: 0em;
  color:#B1B1B1;
}

.form_inputText-postcode {
  max-width: 52%;
  width: 237px;
}

.form_inputDate {
  font-size: 1.8rem;
  border: 1px solid #313131;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 8px 16px;
  width: 100%;
}

.form_textareaWrap {
  position: relative;
}

.form_textarea_dummy {
  overflow: hidden;
  visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 15px;
  min-height: 120px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1px solid;
}

.form_textarea {
  font-size: 18px;
  width: 100%;
  border: 1px solid #313131;
  background-color: #ffffff;
  padding: 15px 16px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  border-radius: 4px;
  resize: none;
}

.form_radio {
  display: none;
}

.form_radio:checked + .form_radioLabel::before {
  border-color: #000;
}

.form_radio:checked + .form_radioLabel::after {
  background: #000000;
}

.form_radioLabel {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 13px 22px 13px 32px;
  position: relative;
  width: auto;
  font-size: 1.8rem;
}

.form_radioLabel::before {
  background: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  content: '';
  display: block;
  height: 22px;
  left: 1px;
  margin-top: -8px;
  position: absolute;
  top: calc(50% - 2px);
  width: 22px;
}

.form_radioLabel::after {
  background: #DEDEDE;
  border-radius: 50%;
  content: '';
  display: block;
  height: 14px;
  left: 5px;
  margin-top: -4px;
  opacity: 1;
  position: absolute;
  top: calc(50% - 2px);
  width: 14px;
}

.form_checkbox {
  display: none;
}

.form_checkbox:checked + .form_checkboxLabel::before {
  background: #000000;
}

.form_checkbox:checked + .form_checkboxLabel::after {
  opacity: 1;
}

.form_checkboxLabel {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0px 20px 0 30px;
  position: relative;
  width: auto;
  font-size: 1.8rem;
}

.form_checkboxLabel:nth-of-type(n+4) {
  margin-top: 16px;
}

.form_checkboxLabel::before {
  background: #DEDEDE;
  border-radius: 3px;
  content: '';
  display: block;
  height: 21px;
  left: 0px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 21px;
}

.form_checkboxLabel::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  display: block;
  height: 13px;
  left: 6px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 9px;
}

.form_selectWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_selectWrap_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_selectWrap_item:not(:first-child) {
  margin-left: 8px;
}

@media screen and (max-width: 767px) {
  .form_selectWrap_item:not(:first-child) {
    max-width: 27%;
  }
}

.form_select {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #B4B4B4;
  font-size: 1.8rem;
  padding: 14px 20px;
}

.form_select-year {
  width: 100px;
}

.form_select-mon {
  width: 74px;
}

.form_select-day {
  width: 74px;
}

.form_select_unit {
  margin-left: 8px;
  font-size: 1.8rem;
}

.form_add_btn {
  font-size: 1.6rem;
  font-weight: bold;
  border: 1px solid #C3C3C3;
  background: #D9D9D9;
  border-radius: 9999px;
  padding: 6px 15px;
  margin: -4px 0 0 14px;
}

.form_notesWrap {
  border-radius: 4px;
  background: #F2F2F2;
  padding: 5px 23px 5px 29px;
  margin-top: 18px;
}

.form_notes {
  color: #000;
  line-height: 1.5;
  font-size: 1.4rem;
}

.form_agreeWrap {
  margin-top: 30px;
}

.form_agreeWrap .radioWrap {
  text-align: center;
  margin-top: 10px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .form_agreeWrap .radioWrap {
    text-align: left;
    padding-left: 0;
  }
}

.form_agreeText {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .form_agreeText {
    text-align: left;
    font-size: 1.4rem;
  }
}

.form_btnNotesText {
  margin-top: 45px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .form_btnNotesText {
    font-size: 1.2rem;
  }
}

.form_btnWrap {
  width: 420px;
  max-width: 100%;
  margin: 13px auto 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .form_btnWrap {
    width: calc(100% - 60px);
  }
}

.form_btnWrap::before {
  content: '';
  width: 26px;
  height: 5px;
  background-image: url('../image/direction-2.png');
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-size: cover;
}

.form_btn {
  width: 100%;
  height: 70px;
  line-height: 70px;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #fdf101;
  font-size: 22px;
  color: #000000;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .form_btn {
    height: 66px;
    font-size: 2rem;
  }
}

.form_btn.disabled {
  opacity: .5;
  pointer-events: none;
}

.form_termsWrap {
  margin: 24px auto 0;
  width: 500px;
  max-width: 100%;
}

.form_termsTitle {
  font-size: 1.2rem;
  text-align: center;
}

.form_termsTextWrap {
  height: 67px;
  overflow-y: scroll;
  border: 1px solid #B4B4B4;
  border-radius: 4px;
  margin-top: 7px;
  padding: 14px 20px;
}

.form_termsText {
  font-size: 10px;
}

.er_txt {
  font-size: 14px;
  color: #E56E6E;
  margin-top: 5px;
  display: none;
}

.form_item.error .er_txt {
  display: block;
}

.form_item.error .form_inputText,
.form_item.error .form_select {
  border-color: #E56E6E;
}

.form_select_date {
  margin-left: 140px;
}

.form_radioLabel,.form_select_unit {
  font-size: 18px;
}

.form_select {
  background-color: #ffffff;
  font-size: 18px;
}

.form_select_date select, .form_select_content select {
  width: 350px;
  height: 60px;
  padding: 0 20px;
  font-size: 18px;
  border: 1px solid #313131;
  background-color: #ffffff;
  border-radius: 4px;
  background-image: url('../image/triangle.png');
  background-size: 8px 6px;
  background-position: 320px center;
  background-repeat: no-repeat;
}

.form_select_date {
  display: flex;
  flex-direction: column;
}

.form_select_date input[type="date"] {
  margin-bottom: 10px;
  width: 350px;
  height: 60px;
  padding: 0 20px;
  font-size: 18px;
}

.form_btnWrap {
  margin-top: 40px;
}

.form_btn {
  height: 70px;
  line-height: 70px;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #fdf101;
  font-size: 22px;
  color: #000000;
}