:root {
  --main-color: #011655;
  --main-color2: #000c2f;
  --main-color3: #0116556b;
}

p {
  line-height: normal;
}

body {
  word-break: keep-all;
}

#htmlFontSize {
  font-size: 11px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.2;
}

.show {
  display: flex !important;
}

.ani {
  animation: show_move 0.5s;
}

@keyframes show_move {
  to {
    left: 0;
    opacity: 1;
  }
  from {
    left: 50px;
    opacity: 0;
  }
}

body.locked {
  pointer-events: none;
  opacity: 0.5;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--main-color);
  border-bottom: 6px solid var(--main-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page {
  position: relative;
  display: none;
  justify-content: center;
}

.page .conteiner {
  width: 90%;
  max-width: 1000px;
  background-color: #f8f8f8;
}

.page .conteiner h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin: 20px;
}

.page .conteiner .imgBox {
  width: 30%;
  padding: 20px 0 5px 0;
}

.page .conteiner .imgBox img {
  width: 100%;
  height: auto;
}

.page .conteiner .contentBox {
  background-color: #fff;
}

.page > .conteiner > .contentBox > .content > div {
  padding: 30px 30px;
}

.page .conteiner .contentBox .content p {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.page .conteiner .contentBox .content img {
  width: 100%;
  height: auto;
}

.page .conteiner .contentBox .content > .logoBox {
  text-align: center;
  padding: 10px 0;
}

.page .conteiner .contentBox .content > .logoBox > img {
  width: 200px;
}

.page .conteiner .contentBox .content .contentTextBox p {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

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

.page .conteiner .contentBox .questionBox {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 15px;
  margin-top: 30px;
  font-size: 1.7rem;
}

.page .conteiner .contentBox .questionBox > .textBox > h5 {
  font-weight: bold;
}

.page .conteiner .contentBox .questionBox > .textBox > p {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #999999;
}

.page .conteiner .contentBox .questionBox > .tableBox {
  border-radius: 15px;
  background-color: #efefef;
  font-size: 1.5rem;
  padding: 30px;
}

.page .conteiner .contentBox .questionBox > .tableBox tr td {
  padding: 10px;
}

.page .conteiner .contentBox .questionBox > .tableBox tr td:nth-child(1) {
  font-weight: bold;
}

.textBox2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  box-sizing: border-box;
  border: 1px dashed black;
  background-color: #fffae6;
}
.textBox2 > p {
  font-size: 2rem !important;
  line-height: 40px !important;
}

.page .conteiner .content2 {
  padding: 25px;
  margin-top: 50px;
  border-radius: 10px;
  border: 2px solid #999999;
}

.page .conteiner .content2 > p {
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 30px;
}

.page .conteiner .content2 > h5 {
  text-align: center;
  margin-bottom: 30px;
}

.page .conteiner .content2 > .infoBox > div > p {
  font-size: 1.6rem;
  margin: 0 0 5px 20px;
}

.phoneBox {
  margin-top: 10px;
}

.phoneBox > input {
  text-align: center;
}

.agreementBox {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.agreementBox > .labelBtn {
  width: 50%;
}

.infoBox {
  display: flex;
  margin-top: 10px;
}
.infoBox > .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.infoBox > .content > label {
  font-size: 1.7rem;
  flex: none;
}

.infoBox > .content1 > label {
  margin: 0 10px 0 10px;
}

.infoBox > .content2 {
  margin: 20px 0 20px 0;
}
.infoBox > .content2 > label:nth-child(1) {
  margin: 0 10px 0 10px;
}
.infoBox > .content2 > label:nth-child(3) {
  margin: 0 10px 0 25px;
}

.infoBox > .content3 > label:nth-child(1) {
  margin: 0 23px 0 10px;
}

.textSpan:after {
  content: "";
  border: 1px solid var(--main-color);
  margin: 0px 10px;
}

.smollLabelBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #999999;
  font-weight: 500;
  font-size: 1.4rem;
  border: 1px solid #999999;
  border-radius: 5px;
  padding: 8px;
  /* 조정된 부분: padding 값 조정 */
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  /* 부드러운 hover 효과를 위한 transition 추가 */
}

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

input[type="radio"]:checked + .smollLabelBtn {
  background-color: var(--main-color);
  color: #fff;
}

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

.labelBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-weight: 500;
  font-size: 1.6rem;
  border: 1px solid #999999;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.labelBtn > svg {
  margin-right: 15px;
}

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

input[type="radio"]:checked + label {
  color: black;
  outline: 2px solid var(--main-color);
  border: 1px solid var(--main-color);
}

input[type="radio"]:checked + label > svg > path {
  fill: var(--main-color);
}

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

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

.checkBoxBtn {
  display: flex;
  justify-content: center;
  height: 100%;
}

.checkBoxBtn label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkBoxBtn label:before {
  content: "";
  flex-grow: 0;
  flex-shrink: 0;
  height: 18px;
  width: 18px;
  border: 2px solid gray;
  border-radius: 5px;
  margin: 0px 10px;
}

.checkBoxBtn input[type="checkbox"]:checked + label:before {
  border: 2px solid var(--main-color);
  background-color: #ffeae4;
  color: var(--main-color);
  content: "✔";
  font-size: 17px;
  text-align: center;
  line-height: 16px;
  height: 18px;
  width: 18px;
}

.tableSpan {
  display: none;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
  font-family: "Noto Sans KR", sans-serif;
}

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

select {
  width: 100%;
  height: 45px;
  padding: 10px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
  font-family: "Noto Sans KR", sans-serif;
}

select:focus {
  border: 1px solid var(--main-color);
  outline: 2px dashed 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;
  font-family: "Noto Sans KR", sans-serif;
}

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;
  font-family: "Noto Sans KR", sans-serif;
  transition: all ease-in 0.2s 0s;
  cursor: pointer;
}

.searchBtn:hover {
  background-color: var(--main-color2);
}

.rastBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 50px auto;
  width: 250px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans KR", sans-serif;
  transition: all ease-in 0.2s 0s;
  cursor: pointer;
}

.rastBtn:hover {
  background-color: var(--main-color2);
}

textarea {
  width: 90%;
  height: 250px;
  padding: 10px;
  margin: 15px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: 1px solid #999999;
  font-family: "Noto Sans KR", sans-serif;
  resize: none;
}

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: #ffe28b;
  border: 2px solid var(--main-color);
}

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

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

.mobileBr {
  display: none;
}

.longLabelBtn-Orenge {
  width: 100%;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
}

.longLabelBtn-Orenge:hover {
  cursor: pointer;
  background-color: var(--main-color2);
}

@media screen and (max-width: 960px) {
  #htmlFontSize {
    font-size: 9px;
  }

  .infoBox > .content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  #htmlFontSize {
    font-size: 8px;
  }

  .page .conteiner {
    width: 100%;
  }

  .page .conteiner .contentBox .content > .logoBox {
    padding: 10px 0;
  }

  .page .conteiner .contentBox .content > .logoBox > img {
    width: 120px;
  }

  .page > .conteiner > .contentBox > .content > div {
    padding: 30px 20px;
  }

  .infoBox {
    flex-direction: column;
    gap: 20px;
  }
  .infoBox > div > p {
    margin: 20px 0 0 15px;
  }
  .infoBox > div > .phoneBox {
    margin-left: 15px;
  }

  .labelBtn {
    padding: 8px;
  }

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

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

  .page .conteiner .contentBox .questionBox {
    padding: 20px;
  }

  .page .conteiner .contentBox .questionBox > .tableBox {
    padding: 10px;
  }

  .page .conteiner .contentBox .questionBox > .tableBox tr td {
    padding: 5px;
  }
}
