section {
  width: 100%;
  min-height: 100vh;
}
section.contact {
  padding-top: 180px;
}
section.contact > h2 {
  font-size: 66px;
  font-weight: 800;
  line-height: 78px;
  letter-spacing: 0em;
  margin-bottom: 30px;
}
section.contact > p {
  font-size: 32px;
  font-weight: 600;
  color: #a8a8a8;
  line-height: 50px;
  letter-spacing: 0em;
  margin-bottom: 120px;
}
.contact-form {
  border-top: 1px solid #000;
}
.contact-form > .row {
  display: flex;
  gap: 100px;
  height: 85px;
  border-bottom: 1px solid #ededed;
  align-items: center;
}
.contact-form > .row.textarea {
  height: 300px;
}
.contact-form > .row > p {
  width: 100px;
  font-size: 18px;
  font-weight: 600;
  color: #9f9f9f;
}
.radio-box {
  font-size: 16px;
  font-weight: 500;
  padding: 18px 33px;
  color: #a0a0a0;
  border: 1px solid #a0a0a0;
  box-sizing: border-box;
}
.radio-box:nth-child(1),
.radio-box:nth-child(2) {
  border-right: 0;
}
.radio-box.selected {
  border: 1px solid #000;
  box-sizing: border-box;
}
.radio-box input {
  display: none;
}
.radio-box input:checked + span {
  color: #000;
}
.radio-box.file {
  border: 1px solid #a0a0a0 !important;
}
.form-input > input[type="text"] {
  width: 620px;
  border: 1px solid #cecece;
  height: 57px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.form-input > textarea {
  width: 620px;
  border: 1px solid #cecece;
  height: 270px;
  padding-top: 10px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
input::placeholder,
textarea::placeholder {
  color: #a0a0a0;
}
.chk__checked {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 30px;
}

.chk__checked .check_wrap {
  display: flex;
  align-items: center;
}

.chk__checked #check_btn {
  display: none;
}

input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
  height: 100%;
  width: 100%;
  border: none;
  line-height: normal;
  text-align: center;
  font-size: 18px;
}

.chk__checked #check_btn + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #1e1b1b;
  vertical-align: middle;
  background-color: #fff;
}

.chk__checked #check_btn:checked + label:before {
  content: "";
  background-color: #fff;
  background-image: url(/image/ico/ico_chked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

.chk__checked #check_btn ~ label span {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}

.chk__checked a {
  color: #000;
  font-size: 16px;
}
.confirm {
  margin: 0 auto;
  width: 262px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0em;
  color: #fff;
  background-color: #000;
  padding: 24px 74px;
  margin-bottom: 230px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  section.contact {
    padding: 100px 20px;
  }
  section.contact > h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  section.contact > p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .contact-form > .row {
    flex-direction: column;
    gap: 5px;
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
  }
  .contact-form > .row > p {
    width: 50px;
    font-size: 16px;
  }
  .form-input > input[type="text"] {
    width: 100%;
  }
  .form-input > textarea {
    width: 100%;
    height: 150px;
  }
  .contact-form > .row.textarea {
    height: 230px;
  }
  .radio-box {
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0;
    border: 1px solid #a0a0a0;
    padding: 10px;
  }
  .form-input {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  .confirm {
    width: 150px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 100px;
    padding: 15px 0;
  }
}
