/* font color */
/* family */
.top_title_wrap {
  border-bottom: 1px solid #D6DAE1;
}
.top_title_wrap .inner {
  max-width: 1400px;
  padding: 120px 20px 20px;
  margin: 0 auto;
}
.top_title_wrap h2 {
  font-size: 30px;
  line-height: 1.5;
  font-family: "spoqa_bold";
}
.top_title_wrap .sub_title {
  font-size: 14px;
  line-height: 1.5;
  font-family: "noto_medium";
  color: #1273eb;
  word-break: keep-all;
}

.cont1 .inner {
  max-width: 708px;
  padding: 80px 20px;
  margin: 0 auto;
}
.cont1 h2 {
  font-size: 24px;
  font-family: "spoqa_bold";
  line-height: 1.5;
  margin-bottom: 40px;
}
.cont1 .form_wrap {
  border: 1px solid #D6DAE1;
  border-radius: 12px;
  margin-bottom: 80px;
}
.cont1 .all_select_wrap {
  padding: 14px 20px;
  border-bottom: 1px solid #D6DAE1;
}
.cont1 #all_check {
  display: none;
}
.cont1 #all_check + label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cont1 #all_check + label img {
  width: 24px;
}
.cont1 #all_check + label img:nth-child(1) {
  display: block;
}
.cont1 #all_check + label img:nth-child(2) {
  display: none;
}
.cont1 #all_check + label span {
  font-size: 16px;
  line-height: 1.5;
  font-family: "noto_medium";
}
.cont1 #all_check:checked + label img:nth-child(1) {
  display: none;
}
.cont1 #all_check:checked + label img:nth-child(2) {
  display: block;
}
.cont1 .list {
  padding: 20px 30px;
}
.cont1 .list input[type=checkbox] {
  display: none;
}
.cont1 .list input[type=checkbox] + label img:nth-child(2) {
  display: none;
}
.cont1 .list input[type=checkbox]:checked + label img:nth-child(1) {
  display: none;
}
.cont1 .list input[type=checkbox]:checked + label img:nth-child(2) {
  display: block;
}
.cont1 .list li {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cont1 .list li .check_wrap {
  flex: 1;
}
.cont1 .list li:first-child {
  padding: 0 0 12px;
}
.cont1 .list li:last-child {
  padding: 12px 0 0;
}
.cont1 .list li img {
  width: 24px;
}
.cont1 .list li label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.cont1 .list li label span {
  font-family: "noto_regular";
  line-height: 1.5;
}
.cont1 .list li .detail {
  font-size: 16px;
  font-family: "noto_regular";
  color: #1273eb;
}
.cont1 .next_btn {
  max-width: 200px;
  width: 100%;
  border-radius: 8px;
  padding: 16px 0;
  font-size: 14px;
  font-family: "noto_medium";
  line-height: 1.5;
  color: #fff;
  background: #1273eb;
}
.cont1 .next_btn:hover {
  transition: var(--hover-transition);
  background: #1362C3;
}
.cont1 .next_btn[disabled] {
  background: #D6DAE1;
  color: #798CA8;
}
.cont1 .next_btn.on {
  color: #fff;
  background: #1273eb;
}

.modal {
  display: none;
  max-width: 860px;
  width: 100%;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.modal.on {
  display: block;
}
.modal .modal_head {
  padding: 40px 0;
  border-bottom: 1px solid #D6DAE1;
}
.modal .modal_head h2 {
  text-align: center;
  font-size: 20px;
  font-family: "noto_bold";
  line-height: 1.5;
}
.modal .text_wrap {
  padding: 40px 60px;
  border-bottom: 1px solid #D6DAE1;
  font-size: 14px;
  font-family: "noto_regular";
  line-height: 1.5;
  max-height: 480px;
  overflow-y: auto;
}
.modal .modal_foot {
  padding: 40px 0;
}
.modal .modal_foot button {
  background: #1273eb;
  border-radius: 12px;
  padding: 16px 0;
  text-align: center;
  color: #fff;
  width: 200px;
  margin: 0 auto;
  line-height: 1.5;
  font-family: "noto_bold";
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  .top_title_wrap .inner {
    padding: 80px 20px 20px;
  }
  .top_title_wrap h2 {
    font-size: 20px;
  }

  .cont1 .inner {
    max-width: 520px;
    padding: 60px 20px;
  }
  .cont1 h2 {
    font-size: 18px;
  }
  .cont1 .all_select_wrap {
    padding: 14px 16px;
  }
  .cont1 .list {
    padding: 20px 16px;
  }

  .modal {
    width: calc(100% - 96px);
    top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .modal {
    width: calc(100% - 30px);
  }
  .modal .modal_head {
    padding: 30px 0;
  }
  .modal .text_wrap {
    padding: 40px 20px;
  }
  .modal .modal_foot {
    padding: 30px 0;
  }
}

/*# sourceMappingURL=SignUp.css.map */
