:root {
  --main-color: #00335b;
  --main-color2: #001e35;
}

html {
  font-size: 10px;
}

input[type="text"]:disabled {
  background-color: #c4c4c4;
  color: #999;
  cursor: not-allowed;
}

p {
  font-size: 1.8rem;
  word-break: keep-all;
}

.page01 {
  width: 100%;
  background-color: #eeeeee;
}

.page01 > .conteiner {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 50px;
  overflow: hidden;
}

.page01 > .conteiner > .logoImg {
  width: 100%;
}

.page01 > .conteiner > .logoImg2 {
  width: 200px;
  margin: 15px 0 10px 15px;
}

.page01 > .conteiner > .contentBox {
  background-color: #fff;
  padding-bottom: 1px;
}

.page01 > .conteiner > .contentBox > .content {
  padding: 40px;
}

.page > .conteiner > .contentBox > .content > .textBox {
  display: flex;
  gap: 7px;
}

.page > .conteiner > .contentBox > .content > .textBox > h5 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-color);
}

.page > .conteiner > .contentBox > .content > .textBox > p {
  margin-bottom: 10px;
}

.page > .conteiner > .contentBox > .content > .textBox > p > span {
  color: var(--main-color);
}

.page01 > .conteiner > .contentBox > .content2:before {
  content: "개인정보 수집 및 이용 동의";
  font-size: 2rem;
  color: #fff;
  padding: 10px;
  display: inline-block;
  width: 100%;
  background-color: var(--main-color);
}

.page01 > .conteiner > .contentBox > .content2 > .questionBox {
  padding: 20px 40px;
}

.page01 > .conteiner > .contentBox > .content2 > .questionBox > .textBox {
  display: flex;
  gap: 7px;
}

.page01 > .conteiner > .contentBox > .content2 > .questionBox > .textBox > h5 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-color);
}

.page01 > .conteiner > .contentBox > .content2 > .questionBox > .textBox > p {
  margin-bottom: 10px;
}

.page01 > .conteiner > .contentBox > .content2 > .questionBox > .radioBox {
  padding: 10px 10px 0 10px;
}
.page01 > .conteiner > .contentBox > .content2 > .questionBox > .phoneBox {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
}

.page01
  > .conteiner
  > .contentBox
  > .content2
  > .questionBox
  > .phoneBox
  > input {
  margin: 0;
}

.page01 > .conteiner > .contentBox > .content > .agreementBox {
  padding: 20px;
  border: 1px solid #999999;
  border-radius: 10px;
}

.page01 > .conteiner > .contentBox > .content > .agreementBox > p {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.page01 > .conteiner > .contentBox > .content > .agreementBox > .infoBox {
  display: flex;
  margin-top: 15px;
}

.page01
  > .conteiner
  > .contentBox
  > .content
  > .agreementBox
  > .infoBox
  > div
  > p {
  font-size: 1.6rem;
}

.page01
  > .conteiner
  > .contentBox
  > .content
  > .agreementBox
  > .infoBox
  > div
  > .phoneBox {
  display: flex;
  align-items: center;
  gap: 5px;
}

input[type="radio"] {
  display: none;
}

input[type="checkbox"] {
  display: none;
}

.labelBtn {
  width: calc(50% - 22px);
  display: inline-flex;
  align-items: center;
  color: #666;
  font-weight: 500;
  font-size: 1.6rem;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.labelBtn:hover {
  background-color: #f5f5f5;
  color: #333;
}

.labelBtn:before {
  content: "";
  height: 20px;
  width: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  border: 2px solid #999999;
  border-radius: 50%;
  margin-right: 10px;
  transition:
    background-color 0.3s,
    transform 0.3s;
}

input[type="radio"]:checked + label {
  color: black;
}

input[type="radio"]:checked + label:before {
  height: 12px;
  width: 12px;
  border: 6px solid var(--main-color);
}

.checkboxBtn {
  width: calc(50% - 22px);
  display: inline-flex;
  align-items: center;
  color: #666;
  font-weight: 500;
  font-size: 1.6rem;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.checkboxBtn:hover {
  background-color: #f1f1f1;
  color: black;
}

.checkboxBtn:before {
  content: "";
  height: 20px;
  width: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  border: 2px solid #999999;
  border-radius: 50%;
  margin-right: 10px;
  transition:
    background-color 0.3s,
    transform 0.3s;
}

.checkboxBtn2 {
  display: flex;
  color: #999999;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}

.checkboxBtn2:hover {
  background-color: #f1f1f1;
  color: black;
}

.checkboxBtn2:before {
  content: "";
  height: 20px;
  width: 20px;
  border: 2px solid #999999;
  border-radius: 50%;
  margin: auto;
}

input[type="checkbox"]:checked + label {
  color: black;
}

input[type="checkbox"]:checked + label:before {
  height: 12px;
  width: 12px;
  border: 6px solid var(--main-color);
}

.tableSpan {
  display: none;
  margin-left: 10px;
}

input[type="text"] {
  width: calc(100% - 20px);
  padding: 10px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
}

input[type="text"]:focus {
  border: 1px solid var(--main-color);
  outline: 2px solid var(--main-color);
  border-radius: 5px;
}

select {
  width: 150px;
  height: 45px;
  padding: 10px;
  margin: 15px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
  text-align: center;
}

select:focus {
  border: 1px solid var(--main-color);
  outline: 2px solid var(--main-color);
  border-radius: 5px;
}

input[type="date"] {
  height: 45px;
  padding: 10px;
  margin: 15px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
}

input[type="date"]:focus {
  border: 1px solid var(--main-color);
  outline: 2px solid var(--main-color);
  border-radius: 5px;
}

.searchBtn {
  width: 100px;
  height: 40px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all ease-in 0.2s 0s;
  cursor: pointer;
}

.searchBtn:hover {
  background-color: rgb(255, 179, 0);
}

.rastBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 40px auto;
  width: 100px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 2px;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.rastBtn:hover {
  box-shadow: 0 0 10px var(--main-color2);
}

textarea {
  width: calc(100% - 20px);
  height: 250px;
  padding: 10px;
  margin: 20px 10px;
  margin-bottom: 60px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
  resize: none;
  font-family: "Noto Sans KR", sans-serif;
}

textarea:focus {
  border: 1px solid var(--main-color);
  outline: 2px solid var(--main-color);
  border-radius: 5px;
}

.sampleRenge {
  -webkit-appearance: none;
  appearance: none;
  width: 83%;
  height: 12px;
  background: #efefef;
  border-radius: 5px;
  border: 1px solid gray;
  display: flex;
  margin: auto;
}

.sampleRenge::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #d9eeec;
  border: 2px solid var(--main-color);
}

.sampleRengeText {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  font-size: 1.3rem;
}

.sampleRengeText div {
  width: 20%;
  text-align: center;
}

.mobileBr {
  display: none;
}
@media screen and (max-width: 1100px) {
  .page01 > .conteiner > .logoImg2 {
    width: 180px;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 8px;
  }
  input[type="text"] {
    width: 100%;
  }
  .page01 > .conteiner {
    width: 90%;
  }
  .page01 > .conteiner > .logoImg2 {
    width: 150px;
  }
  .page01 > .conteiner > .contentBox > .content {
    padding: 20px;
  }
  .page01 > .conteiner > .contentBox > .contentBox2 > .content {
    padding: 20px;
  }
  .page01 > .conteiner > .contentBox > .contentBox3 > .content {
    padding: 20px;
  }

  .page01 > .conteiner > .contentBox > .content > .questionBox {
    padding: 20px;
  }

  .page01 > .conteiner > .contentBox > .content > .agreementBox {
    padding: 10px;
  }

  .page01 > .conteiner > .contentBox > .content > .agreementBox > .infoBox {
    flex-direction: column;
    gap: 15px;
  }

  .labelBtn:before {
    height: 18px;
    width: 18px;
  }

  input[type="radio"]:checked + label:before {
    height: 10px;
    width: 10px;
  }
}
