@charset "UTF-8";
.square_wrap {
  position: relative;
  border: 1px solid #363a43;
}
.square_wrap.border_clear {
  border: none;
}
.square_wrap.fill_clear {
  background-color: none;
}
.square_wrap.rounded_2px {
  border-radius: 2px;
}
.square_wrap.rounded_3px {
  border-radius: 3px;
}
.square_wrap.rounded_4px {
  border-radius: 4px;
}
.square_wrap.border_color_red {
  border-color: #bd1c22;
}
.square_wrap.fill_color_red {
  background-color: #bd1c22;
}
.square_wrap.font_color_red {
  color: #bd1c22;
}
.square_wrap.border_color_brightRed {
  border-color: #f54336;
}
.square_wrap.fill_color_brightRed {
  background-color: #f54336;
}
.square_wrap.font_color_brightRed {
  color: #f54336;
}
.square_wrap.border_color_blue4D99FF {
  border-color: #4d99ff;
}
.square_wrap.fill_color_blue4D99FF {
  background-color: #4d99ff;
}
.square_wrap.font_color_blue4D99FF {
  color: #4d99ff;
}
.square_wrap.border_color_blue3C80DB {
  border-color: #3c80db;
}
.square_wrap.fill_color_blue3C80DB {
  background-color: #3c80db;
}
.square_wrap.font_color_blue3C80DB {
  color: #3c80db;
}
.square_wrap.border_color_Purple6343EB {
  border-color: #6343eb;
}
.square_wrap.fill_color_Purple6343EB {
  background-color: #6343eb;
}
.square_wrap.font_color_Purple6343EB {
  color: #6343eb;
}
.square_wrap.border_color_gray363a43 {
  border-color: #363a43;
}
.square_wrap.fill_color_gray363a43 {
  background-color: #363a43;
}
.square_wrap.font_color_gray363a43 {
  color: #363a43;
}

.gray_border_box {
  border: 1px solid #dbdbdb;
  color: #000;
  border-top: 1px solid #363a43;
}
.gray_border_box:not(.company_info) {
  border-top: 3px solid #363a43;
}

.sub_layout {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 45px 72px 45px;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sub_layout {
    padding: 50px 30px 60px 30px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .sub_layout {
    padding: 50px 20px 60px 20px;
  }
}

.sub_title {
  text-align: center;
  font-family: "Pretendard-Bold";
  font-size: 30px;
  color: #000;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .sub_title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}
@media (max-width: 500px) {
  .sub_title {
    font-size: 23px;
    margin-bottom: 16px;
  }
}

.sub_cont {
  text-align: center;
  font-family: "Pretendard-Regular";
  font-size: 16px;
  color: #727272;
  margin-bottom: 66px;
  margin-top: 19px;
}

.bl_radius {
  margin: 0 auto;
  border-radius: 26px;
  border: 0 solid;
  background-color: #363a43;
  color: #fff;
  padding: 10px 28px;
  font: 25px "Pretendard-Medium";
}
@media (max-width: 1023px) {
  .bl_radius {
    padding: 5px 15px;
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .bl_radius {
    padding: 5px 15px;
    font-size: 18px;
  }
}

.btn_style01 {
  width: 100%;
  margin-top: 50px;
  padding: 25px 0;
  font: 18px "Pretendard-Medium";
  background-color: #363a43;
  color: #fff;
  text-align: center;
}

.btn_style02 {
  width: 100%;
  margin-top: 50px;
  padding: 25px 0;
  font: 18px "Pretendard-Medium";
  background-color: #d2d2d2;
  color: #fff;
  text-align: center;
}

.btn_style03 {
  width: 100%;
  margin-top: 50px;
  padding: 25px 0;
  font: 18px "Pretendard-Medium";
  background-color: #bd1c22;
  color: #fff;
  text-align: center;
}

.btn_style04 {
  width: 150px;
  margin-top: 0;
  padding: 15px 0;
  font: 16px "Pretendard-Medium";
  background-color: #363a43;
  color: #fff;
  text-align: center;
}

.btn_style05 {
  border-radius: 3px;
  border: 1px solid #cacacb;
  color: #363a43;
  padding: 5px 10px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
}

.blue_txt {
  color: #3c80db;
  font: 18px "Pretendard-Medium";
}

.red_txt {
  color: #bd1c22;
  font: 17px;
}

button:disabled {
  background-color: #d2d2d2;
  cursor: default;
}

.input_style_form02 {
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  color: #363a43;
  font: 17px "Pretendard-Regular";
}
.input_style_form02::placeholder {
  color: #9d9ea2;
  font: 15px "Pretendard-Light";
}

.input_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
@media (max-width: 1023px) {
  .input_box {
    width: 100%;
  }
}
.input_box label {
  width: 100%;
}
.input_box:not(:first-child) {
  margin-top: 25px;
}
.input_box .email_wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 8px;
}
@media (max-width: 1023px) {
  .input_box .email_wrap {
    width: 100%;
  }
}
.input_box .email_wrap span {
  line-height: 50px;
}
.input_box .radio_box {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.input_box .radio_box div {
  margin-right: 20px;
  font: 16px "Pretendard-Medium";
  color: #363a43;
}
.input_box .radio_box label {
  width: auto;
  font: 16px "Pretendard-Regular";
  color: #363a43;
}
.input_box .radio_box label:not(:first-child) {
  margin-left: 14px;
  margin-bottom: 0;
}
.input_box .radio_box input {
  margin-right: 5px;
}
.input_box .wrap {
  width: calc(100% - 150px - 10px);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .input_box .wrap {
    width: calc(100% - 120px - 10px);
  }
  .input_box .wrap.telephone {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .input_box .wrap {
    width: calc(100% - 78px - 8px);
  }
}
.input_box .wrap.telephone input {
  position: relative;
}
.input_box .wrap.telephone span {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: 24px 5px 0 5px;
  background-color: #363a43;
}
.input_box .password_wrap01,
.input_box .password_wrap02,
.input_box .password_wrap03 {
  position: relative;
  width: 100%;
}
.input_box .password_wrap01 .see,
.input_box .password_wrap02 .see,
.input_box .password_wrap03 .see {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 22px;
  right: 0;
  font: 15px "Pretendard-Light";
  cursor: pointer;
}
.input_box label {
  display: block;
  font: 16px "Pretendard-Medium";
}
.input_box .input_style_form01 {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  color: #363a43;
  font: 17px "Pretendard-Regular";
}
.input_box .input_style_form01::placeholder {
  color: #9d9ea2;
  font: 15px "Pretendard-Light";
}
@media (max-width: 500px) {
  .input_box .input_style_form01::placeholder {
    font-size: 13px;
  }
}

.checkbox_custom label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0 9px;
}
.checkbox_custom label input[type=checkbox] {
  display: none;
}
.checkbox_custom label input[type=checkbox]:checked + .chk_more {
  background-color: #4d99ff;
  border-color: #3c80db;
}
.checkbox_custom label input[type=checkbox]:checked + .chk_more::after {
  content: "";
  display: flex;
  align-items: center;
}
.checkbox_custom label .chk_more {
  position: relative;
  width: 25px;
  min-width: 25px;
  height: 25px;
  border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #9d9ea2;
  background-color: #fff;
  color: #000;
}
.checkbox_custom label .chk_more::after {
  content: "";
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 7.5px;
  top: 3px;
}

input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

input[type=date].date_empty::before {
  content: attr(data-placeholder);
  width: 100%;
  display: none;
}

input[type=date].date_empty::before {
  display: block;
}

input[type=date] {
  position: relative;
  margin-right: 20px;
  background: url("/images/user/pages/sell_list/calendar_red.svg") no-repeat center right 10px;
  outline: none;
}

input[type=date].bg_green {
  background: url("/images/user/pages/sell_list/calendar_gray.svg") no-repeat center right;
}

input[data-placeholder].bg_green::before {
  color: #a3ab94;
  font-size: 16px;
}

input[type=number]::-webkit-inner-spin-button {
  appearance: none;
}

.pyeong_m {
  position: relative;
  width: 42px;
  height: 22px;
  font: 14px "Pretendard-Light";
  border: 1px solid #363a43;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-left: 20px;
}
.pyeong_m::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("/images/user/common/reset.svg") no-repeat center center;
  background-size: contain;
}

.essential_box {
  display: flex;
}
.essential_box .essential_dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 4px 7px;
  background-color: #f54336;
}

.black_checkbox {
  display: flex;
  flex-wrap: wrap;
}
.black_checkbox label {
  cursor: pointer;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .black_checkbox label {
    margin: 3px 0;
  }
}
.black_checkbox label:not(:last-child) {
  margin-right: 8px;
}
.black_checkbox label input[type=checkbox] {
  display: none;
}
.black_checkbox label input[type=checkbox]:not(:checked) + span {
  border-radius: 17px;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  background-color: #fff;
  color: #363a43;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 34px;
}
@media (max-width: 1023px) {
  .black_checkbox label input[type=checkbox]:not(:checked) + span {
    width: 60px;
    font-size: 15px;
  }
}
.black_checkbox label input[type=checkbox]:checked + span {
  border-radius: 17px;
  border: 1px solid;
  background-color: #363a43;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 34px;
}
@media (max-width: 1023px) {
  .black_checkbox label input[type=checkbox]:checked + span {
    width: 60px;
    font-size: 15px;
  }
}

.black_radio {
  display: flex;
  flex-wrap: wrap;
}
.black_radio label {
  cursor: pointer;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .black_radio label {
    margin: 3px 0;
  }
}
.black_radio label:not(:last-child) {
  margin-right: 8px;
}
.black_radio label input[type=radio] {
  display: none;
}
.black_radio label input[type=radio]:not(:checked) + span {
  border-radius: 17px;
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  background-color: #fff;
  color: #363a43;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 34px;
}
@media (max-width: 1023px) {
  .black_radio label input[type=radio]:not(:checked) + span {
    width: 60px;
    font-size: 15px;
  }
}
.black_radio label input[type=radio]:checked + span {
  border-radius: 17px;
  border: 1px solid;
  background-color: #363a43;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 34px;
}
@media (max-width: 1023px) {
  .black_radio label input[type=radio]:checked + span {
    width: 60px;
    font-size: 15px;
  }
}

.login_index {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 90px 0 180px;
}
@media (max-width: 767px) {
  .login_index {
    max-width: 100%;
    padding-left: 4.4%;
    padding-right: 4.4%;
  }
}
@media (max-width: 500px) {
  .login_index {
    padding-top: 50px;
  }
}
.login_index .login_box {
  width: 100%;
  padding: 70px;
}
@media (max-width: 767px) {
  .login_index .login_box {
    padding: 40px;
  }
}
@media (max-width: 500px) {
  .login_index .login_box {
    padding: 40px 25px;
  }
}
.login_index .login_box h4 {
  font: 25px "Pretendard-Bold";
  margin-bottom: 17px;
}
.login_index .login_box p {
  font: 16px "Pretendard-Regular";
  color: #727272;
}
.login_index .login_box form {
  margin-top: 50px;
}
.login_index .login_box form .login_more {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}
@media (max-width: 500px) {
  .login_index .login_box form .login_more {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .login_index .login_box form .login_more label {
    width: 100%;
  }
}
.login_index .login_box form .login_more label .chk_more {
  width: 19px;
  min-width: 19px;
  height: 19px;
}
.login_index .login_box form .login_more label .chk_more::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 1px;
}
.login_index .login_box form .login_more label span {
  color: #9d9ea2;
  font: 15px "Pretendard-Light";
}
@media (max-width: 500px) {
  .login_index .login_box form .login_more .find_account {
    margin-left: auto;
  }
}
.login_index .login_box form .login_more .find_account > span {
  font: 15px "Pretendard-Medium";
}
.login_index .login_box form .login_more .find_account .find_id {
  position: relative;
  padding-right: 31px;
}
.login_index .login_box form .login_more .find_account .find_id::after {
  content: "|";
  color: #9d9ea2;
  position: absolute;
  top: 0;
  right: 12px;
}
.login_index .login_box .join_us {
  position: relative;
  display: flex;
  justify-content: space-around;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .login_index .login_box .join_us {
    margin-top: 32px;
  }
}
@media (max-width: 500px) {
  .login_index .login_box .join_us {
    justify-content: space-around;
  }
}
@media (max-width: 370px) {
  .login_index .login_box .join_us {
    justify-content: space-between;
  }
}
.login_index .login_box .join_us::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: block;
  width: 2px;
  height: 100%;
  background-color: #363a43;
}
.login_index .login_box .join_us .join > a {
  display: flex;
  height: 85px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .login_index .login_box .join_us .join > a {
    height: 72px;
  }
}
.login_index .login_box .join_us .join > a > div {
  position: relative;
  padding-right: 30px;
  color: #000;
  text-align: center;
  font: 20px "Pretendard-Bold";
}
@media (max-width: 500px) {
  .login_index .login_box .join_us .join > a > div {
    font-size: 16px;
    display: flex;
    padding-right: 26px;
  }
}
.login_index .login_box .join_us .join > a > div::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  background: url(/images/user/pages/login/arrow_join.svg) no-repeat center center;
  background-size: contain;
}
.login_index .login_box .join_us .join > a > div > span {
  color: #bd1c22;
}

.find_id_pass_index {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 152px;
}
@media (max-width: 1279px) {
  .find_id_pass_index {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .find_id_pass_index {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.find_id_pass_index .join_tit {
  gap: 21px 0;
  padding-bottom: 64px;
}
.find_id_pass_index .join_tit .sub_title {
  margin: 0;
}
.find_id_pass_index .join_tit .sub_cont {
  margin: 0;
}
.find_id_pass_index .flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 38px;
}
@media (max-width: 1279px) {
  .find_id_pass_index .flex {
    flex-direction: column;
  }
}
.find_id_pass_index .flex > .box_wrap {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.find_id_pass_index .flex > .box_wrap .gray_tit {
  flex: 0;
}
.find_id_pass_index .flex > .box_wrap .gray_border_box {
  flex: 1;
  padding: 63px 65px;
}
@media (max-width: 767px) {
  .find_id_pass_index .flex > .box_wrap .gray_border_box {
    padding: 45px 25px;
  }
}
.join_us .btn_style04 {
  height: 50px;
}
@media (max-width: 767px) {
  .join_us .btn_style04 {
    width: 120px;
  }
}
@media (max-width: 500px) {
  .join_us .btn_style04 {
    width: 78px;
    font-size: 15px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .join_us .input_style_form01 {
    padding: 0 15px;
  }
}
@media (max-width: 500px) {
  .join_us .input_style_form01 {
    font-size: 16px;
  }
}
.join_us .join_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.join_us .gray_tit {
  font: 23px "Pretendard-Bold";
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .join_us .form_wrap .input_box .certify {
    width: 100%;
  }
}
.join_us .form_wrap .input_box .certify.complete {
  background-color: #3c80db;
  pointer-events: none;
}
.join_us .form_wrap .input_box .time_num {
  display: none;
  width: 100%;
  position: relative;
}
.join_us .form_wrap .input_box .time_num.active {
  display: block;
}
.join_us .form_wrap .input_box .time_num label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.join_us .form_wrap .input_box .time_num label .input_time {
  width: 100%;
  height: 50px;
  color: #000;
}
.join_us .form_wrap .input_box .time_num label .delete {
  position: absolute;
  right: 68px;
  display: none;
  width: 18px;
  height: 18px;
  background: url("/images/user/common/text_delete_btn.svg") no-repeat center;
  background-color: #cbd2e2;
  background-size: 5.5px 5.5px;
  border-radius: 50%;
}
.join_us .form_wrap .input_box .time_num label .timer {
  font: 15px "Pretendard-Light";
  color: #f54336;
  position: absolute;
  right: 10px;
}
.join_us .tog_all {
  margin-top: 50px;
}
.join_us .tog_all .tog_terms .checkbox_custom {
  margin-bottom: 14px;
}
.join_us .tog_all .tog_terms .checkbox_custom label .chk_more {
  width: 25px;
  width: 25px;
}
.join_us .tog_all .tog_terms .checkbox_custom label span {
  font: 20px "Pretendard-Medium";
}
@media (max-width: 767px) {
  .join_us .tog_all .tog_terms .checkbox_custom label span {
    font-size: 18px;
  }
}
.join_us .tog_all .gray_border_box {
  padding: 0;
}
.join_us .tog_all .gray_border_box > li {
  border-bottom: 1px solid #dbdbdb;
}
.join_us .tog_all .gray_border_box > li:last-child {
  border-bottom: none;
}
.join_us .tog_all .gray_border_box > li .tog_tit {
  padding: 22px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .join_us .tog_all .gray_border_box > li .tog_tit {
    padding: 10px 20px;
  }
}
.join_us .tog_all .gray_border_box > li .tog_tit span:nth-of-type(2) {
  font: 18px "Pretendard-Regular";
}
@media (max-width: 767px) {
  .join_us .tog_all .gray_border_box > li .tog_tit span:nth-of-type(2) {
    font-size: 16px;
  }
}
.join_us .tog_all .gray_border_box > li .tog_tit .checkbox_custom {
  width: 100%;
}
@media (max-width: 500px) {
  .join_us .tog_all .gray_border_box > li .tog_tit .checkbox_custom {
    margin-bottom: 8px;
  }
}
.join_us .tog_all .gray_border_box > li .tog_tit .checkbox_custom label {
  width: 100%;
}
.join_us .tog_all .gray_border_box > li .tog_tit .checkbox_custom label .blue_txt {
  flex: 0 0 32px;
}
@media (max-width: 767px) {
  .join_us .tog_all .gray_border_box > li .tog_tit .checkbox_custom label .blue_txt {
    font-size: 16px;
  }
}
.join_us .tog_all .gray_border_box > li .tog_tit .btn_style05 {
  flex: 0 0 70px;
}
.join_us .tog_all .gray_border_box > li .tog_tit .btn_style05 img {
  margin-left: 8px;
}
.join_us .tog_all .gray_border_box > li .tog_con {
  display: none;
  width: 100%;
  padding: 22px 20px 52px 20px;
  background-color: #ebf0f6;
}
.join_person {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 0 170px;
}
@media (max-width: 1023px) {
  .join_person {
    margin: 0;
    max-width: 1023px;
    width: 100%;
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .join_person {
    padding-left: 4.4%;
    padding-right: 4.4%;
  }
}
@media (max-width: 500px) {
  .join_person {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.join_person .gray_border_box {
  padding: 63px 70px 71px;
}
@media (max-width: 1023px) {
  .join_person .gray_border_box {
    padding: 63px 45px;
  }
}
@media (max-width: 767px) {
  .join_person .gray_border_box {
    padding: 48px 40px;
  }
}
@media (max-width: 500px) {
  .join_person .gray_border_box {
    padding: 32px 20px;
  }
}
.join_person .gray_border_box .form_wrap .input_box .email_wrap {
  width: 100%;
}

.join_company {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 170px;
}
@media (max-width: 1023px) {
  .join_company {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 45px 170px;
  }
}
@media (max-width: 767px) {
  .join_company {
    padding-left: 4.4%;
    padding-right: 4.4%;
  }
}
@media (max-width: 500px) {
  .join_company {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.join_company .gray_border_box {
  padding: 60px 69px 70px;
  background-color: #f9f9f9;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box {
    padding: 63px 45px;
  }
}
@media (max-width: 767px) {
  .join_company .gray_border_box {
    padding: 48px 25px;
  }
}
@media (max-width: 500px) {
  .join_company .gray_border_box {
    padding: 32px 20px;
  }
}
.join_company .gray_border_box .form_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 40px;
}
.join_company .gray_border_box .form_wrap .input_box {
  margin: 0;
  width: 410px;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box .form_wrap .input_box {
    width: 100%;
  }
}
.join_company .gray_border_box .form_wrap .input_box:last-child {
  width: 100%;
}
.join_company .gray_border_box .form_wrap .input_box.address_box {
  width: 100%;
}
.join_company .gray_border_box .form_wrap .input_box.address_box .wrap {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 7px;
  gap: 0 10px;
}
.join_company .gray_border_box .form_wrap .input_box.address_box .wrap input {
  width: 30%;
  background-color: #f4ffdf;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box .form_wrap .input_box.address_box .wrap input {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .join_company .gray_border_box .form_wrap .input_box.address_box .wrap input {
    width: calc(100% - 120px);
  }
}
.join_company .gray_border_box .form_wrap .input_box.address_box > input {
  width: 49%;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box .form_wrap .input_box.address_box > input {
    width: 100%;
  }
}
.join_company .gray_border_box .form_wrap .input_box.address_box > input:nth-of-type(1) {
  background-color: #f4ffdf;
}
.join_company .gray_border_box .form_wrap .input_box .telephone {
  display: flex;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box .form_wrap .input_box .telephone {
    width: 100%;
  }
}
.join_company .gray_border_box .form_wrap .input_box .telephone span {
  width: 30px;
  height: 1px;
  background-color: #000;
  margin: 24px 5px 0 5px;
}
.join_company .gray_border_box .notice {
  margin-top: 40px;
}
.join_company .gray_border_box .notice .red_txt {
  margin-left: 8.5px;
}
.join_company .gray_border_box.company_info {
  background-color: #fff;
}
.join_company .gray_border_box.company_info .form_wrap {
  display: flex;
  flex-direction: column;
}
.join_company .gray_border_box.company_info .form_wrap .input_box {
  width: 100%;
}
.join_company .gray_border_box.company_info .form_wrap .input_box:nth-of-type(2n) {
  margin-left: 0;
}
.join_company .gray_border_box.company_info .form_wrap .input_box.small_box .wrap {
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box.small_box .wrap {
    gap: 10px;
  }
}
.join_company .gray_border_box.company_info .form_wrap .input_box.small_box .wrap input {
  width: 242px;
}
@media (max-width: 1023px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box.small_box .wrap input {
    width: calc(100% - 150px - 10px);
  }
}
@media (max-width: 767px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box.small_box .wrap input {
    width: calc(100% - 120px - 10px);
  }
}
@media (max-width: 500px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box.small_box .wrap input {
    width: calc(100% - 78px - 10px);
  }
}
.join_company .gray_border_box.company_info .form_wrap .input_box.medium_box {
  width: 608px;
}
@media (max-width: 767px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box.medium_box {
    width: 100%;
  }
}
.join_company .gray_border_box.company_info .form_wrap .input_box.medium_box .telephone {
  width: calc(100% - 168px);
}
@media (max-width: 767px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box.medium_box .telephone {
    width: 100%;
  }
}
.join_company .gray_border_box.company_info .form_wrap .input_box.medium_box .telephone span {
  margin: 0 5px;
}
.join_company .gray_border_box.company_info .form_wrap .input_box .introduce_wrap {
  width: 100%;
}
.join_company .gray_border_box.company_info .form_wrap .input_box .introduce_wrap textarea {
  padding: 10px;
  height: 160px;
}
.join_company .gray_border_box.company_info .form_wrap .input_box .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.join_company .gray_border_box.company_info .form_wrap .input_box .wrap .notice02 {
  position: relative;
  word-break: keep-all;
  font: 16px "Pretendard-Light";
  padding-left: 22px;
}
.join_company .gray_border_box.company_info .form_wrap .input_box .wrap .notice02::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 19px;
  height: 19px;
  background: url(/images/user/pages/join/notice_snow_icon.svg) no-repeat;
  background-size: contain;
}
.join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap01 {
  width: 49%;
}
@media (max-width: 767px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap01 {
    width: 100%;
  }
}
.join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap02 {
  width: 49%;
}
@media (max-width: 767px) {
  .join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap02 {
    width: 100%;
  }
}
.join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap02 input {
  margin-top: 0;
}
.join_company .tog_all {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 50px;
}

.sell_list {
  position: relative;
}
@media (max-width: 630px) {
  .sell_list .pyeong_m {
    margin-left: 0;
  }
}
.sell_list * {
  word-break: keep-all;
}
.sell_list textarea {
  outline: none;
  width: 100%;
  border: 1px solid #dbdbdb;
  color: #000;
  height: 80px;
  padding: 20px;
  font: 16px "Pretendard-Light";
}
.sell_list textarea::placeholder {
  color: #9d9ea2;
}
.sell_list textarea.large_height {
  height: 400px;
}
@media (max-width: 767px) {
  .sell_list .top_img {
    height: 100px;
  }
}
@media (max-width: 500px) {
  .sell_list .top_img {
    display: none;
  }
}
.sell_list .top_img img {
  width: 100%;
}
@media (max-width: 767px) {
  .sell_list .top_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -30px;
  }
}
.sell_list .sub_title {
  margin-top: 50px;
  margin-bottom: 40px;
}
.sell_list .btn_wrap {
  margin: 0 auto;
  width: 60%;
}
.sell_list .btn_wrap #saveBtn {
  background-color: #D2D2D2;
  pointer-events: none;
}
.sell_list .btn_wrap #saveBtn.active {
  background-color: #bd1c22;
  pointer-events: all;
}
.sell_list .tab_menu .tab_menu_list {
  display: flex;
  justify-content: center;
  gap: 0 7px;
  padding: 0 80px;
}
@media (max-width: 1023px) {
  .sell_list .tab_menu .tab_menu_list {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .sell_list .tab_menu .tab_menu_list {
    padding: 0 15px;
  }
}
@media (max-width: 500px) {
  .sell_list .tab_menu .tab_menu_list {
    gap: 0 1px;
  }
}
.sell_list .tab_menu .tab_menu_list > li {
  width: 0;
  flex: 1;
  padding: 20px 0;
  text-align: center;
  font: 18px "Pretendard-Medium";
  border: 3px solid #d7d8d9;
  border-bottom: none;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  color: #6d6d6d;
}
@media (max-width: 1023px) {
  .sell_list .tab_menu .tab_menu_list > li {
    padding: 15px 5px;
    font-size: 16px;
    letter-spacing: -0.5px;
    margin-right: 3px;
  }
}
.sell_list .tab_menu .tab_menu_list > li.active {
  position: relative;
  border-color: #363a43;
  color: #000;
}
.sell_list .tab_menu .tab_menu_list > li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 5px;
  background-color: #fff;
}
.sell_list .tab_menu .tab_menu_list > li:last-child {
  margin-right: 0;
}
.sell_list .tab_con {
  border: 1px solid #dbdbdb;
  color: #000;
  border-top: 3px solid #363a43;
  padding: 50px 50px 70px 50px;
  display: none;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con {
    padding: 40px 30px 45px 30px;
  }
}
@media (max-width: 500px) and (max-width: 1023px) {
  .sell_list .tab_con {
    padding: 40px 0px;
    border-left: none;
    border-right: none;
  }
}
.sell_list .tab_con.active {
  display: block;
}
.sell_list .tab_con .tab_inner .top_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  height: 41px;
}
.sell_list .tab_con .tab_inner .top_tit > .tit {
  display: flex;
  align-items: flex-end;
}
.sell_list .tab_con .tab_inner .top_tit > .tit h4 {
  font: 23px "Pretendard-Bold";
  margin-left: 16px;
}
.sell_list .tab_con .tab_inner .top_tit .reference {
  display: flex;
  height: 30px;
  border: 1px solid #363A43;
  font-size: 14px;
}
@media (max-width: 767px) {
  .sell_list .tab_con .tab_inner .top_tit .reference {
    flex-direction: column;
    height: auto;
  }
}
.sell_list .tab_con .tab_inner .top_tit .reference > * {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
}
.sell_list .tab_con .tab_inner .top_tit .reference > *:nth-child(n+3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 53.3333333333%;
  background-color: #363A43;
}
@media (max-width: 767px) {
  .sell_list .tab_con .tab_inner .top_tit .reference > *:nth-child(n+3)::before {
    display: none;
  }
}
.sell_list .tab_con .tab_inner .top_tit .reference > .tit {
  background-color: rgba(54, 58, 67, 0.6);
  color: #fff;
}
.sell_list .tab_con .tab_inner .top_tit .reference > button {
  font-size: 14px;
}
.sell_list .tab_con .tab_inner .top_tit .reference > [class*=btn_] {
  gap: 6px;
}
.sell_list .tab_con .tab_inner .top_tit .reference i.icon_more {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/images/user/pages/sell_list/icon_more_red.svg") no-repeat center;
  background-size: cover;
}
.sell_list .tab_con .tab_inner .registrant_info {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 48px;
  background-color: #f4f8fe;
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info {
    padding: 15px 30px;
  }
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .registrant_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
  }
}
.sell_list .tab_con .tab_inner .registrant_info .comingsoon {
  position: relative;
  font: 17px "Pretendard-Medium";
  padding-left: 35px;
}
.sell_list .tab_con .tab_inner .registrant_info .comingsoon::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  background: url("/images/user/pages/sell_list/exclamation_mark.svg") no-repeat;
}
.sell_list .tab_con .tab_inner .registrant_info .info_tit {
  width: 15%;
  font: 17px "Pretendard-Medium";
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info .info_tit {
    width: 23%;
    font: 17px "Pretendard-Medium";
  }
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .registrant_info .info_tit {
    width: 100%;
  }
}
.sell_list .tab_con .tab_inner .registrant_info .radio_box {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box {
    width: 77%;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box label {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box label:nth-child(3) {
    width: 15%;
  }
}
@media (max-width: 767px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box label:nth-child(3) {
    width: 100%;
  }
}
.sell_list .tab_con .tab_inner .registrant_info .radio_box label span {
  padding-left: 8px;
  font: 18px "Pretendard-Medium";
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box label span {
    font-size: 16px;
    line-height: 30px;
  }
}
.sell_list .tab_con .tab_inner .registrant_info .radio_box .search_more {
  width: 50%;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  pointer-events: none;
  font: 17px "Pretendard-Regular";
  border: 1px solid #dbdbdb;
  background-color: #fff;
  color: #363a43;
}
@media (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box .search_more {
    width: 85%;
    margin-left: 0;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .sell_list .tab_con .tab_inner .registrant_info .radio_box .search_more {
    width: 100%;
    margin-left: 0;
  }
}
.sell_list .tab_con .tab_inner .inner_info .main_tit {
  display: flex;
  justify-content: space-between;
  padding-top: 62px;
  padding-bottom: 15px;
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .inner_info .main_tit {
    padding-top: 40px;
  }
}
.sell_list .tab_con .tab_inner .inner_info .main_tit strong {
  font: 20px "Pretendard-Bold";
}
.sell_list .tab_con .tab_inner .inner_info .main_tit .essential_box {
  align-items: center;
}
.sell_list .tab_con .tab_inner .select_all {
  width: 100%;
  border-top: 2px solid #9d9ea2;
  display: flex;
  flex-wrap: wrap;
}
.sell_list .tab_con .tab_inner .select_all.detail_info .sect_sub_con {
  position: relative;
}
.sell_list .tab_con .tab_inner .select_all.detail_info .sect_sub_con .input_style_form02 {
  padding-right: 80px;
}
.sell_list .tab_con .tab_inner .select_all.detail_info .sect_sub_con input[type=text]::placeholder {
  color: #9d9ea2;
}
.sell_list .tab_con .tab_inner .select_all.detail_info .length_txt {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font: 16px "Pretendard-Light";
  color: #363a43;
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all.detail_info .length_txt {
    bottom: 5px;
  }
}
.sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con {
  display: flex;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con.month_pay {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con.month_pay .area:nth-child(2) {
  margin-top: 10px;
  margin-left: 0;
}
.sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con .area {
  display: flex;
  align-items: center;
}
.sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con .area span {
  width: 42px;
}
.sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con .red_box_view {
  display: none;
}
.sell_list .tab_con .tab_inner .select_all .tab_pay .sect_sub_con .red_box_view.active {
  display: block;
}
.sell_list .tab_con .tab_inner .select_all > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 1279px) and (max-width: 1279px) and (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li.gross_area {
    align-items: flex-start;
  }
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con {
    flex-direction: column;
    align-items: flex-start;
  }
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con .area:not(:first-child) {
    margin: 10px 0 0 0;
  }
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con .area span {
    display: inline-block;
    width: 56px;
  }
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con .radio_box {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1279px) and (max-width: 1279px) and (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con .radio_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1279px) and (max-width: 1279px) and (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con .radio_box > label {
    display: inline-block;
    margin-bottom: 8px;
  }
}
@media (max-width: 1279px) and (max-width: 1279px) and (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li.gross_area .sect_sub_con .radio_box > label:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 819px) {
  .sell_list .tab_con .tab_inner .select_all > li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sell_list .tab_con .tab_inner .select_all > li.address {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.sell_list .tab_con .tab_inner .select_all > li.address .sect_sub_con {
  align-items: flex-start;
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li.address .sect_sub_con {
    flex-direction: column;
  }
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li.address .sect_sub_con .area {
    width: 48%;
    margin-top: 0;
    margin-right: 5px;
  }
  .sell_list .tab_con .tab_inner .select_all > li.address .sect_sub_con .area:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li.address .sect_sub_con .btn_style01 {
    width: 50%;
    margin-left: 0;
    margin-top: 10px;
    height: 30px;
    font-size: 16px;
  }
}
@media (max-width: 500px) and (max-width: 500px) {
  .sell_list .tab_con .tab_inner .select_all > li.address .sect_sub_con .btn_style01 {
    width: 100%;
  }
}
.sell_list .tab_con .tab_inner .select_all > li.half_left {
  width: 50%;
  border-right: 1px solid #dbdbdb;
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li.half_left {
    width: 100%;
    border-right: none;
  }
}
.sell_list .tab_con .tab_inner .select_all > li.half_right {
  width: 50%;
  padding-left: 30px;
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li.half_right {
    width: 100%;
    padding-left: 0;
  }
}
.sell_list .tab_con .tab_inner .select_all > li.half_right .title_box {
  width: 150px;
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li.half_right .title_box {
    width: 140px;
  }
}
@media (max-width: 819px) {
  .sell_list .tab_con .tab_inner .select_all > li.half_right .title_box {
    width: 100%;
    margin-bottom: 15px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li.half_right .sect_sub_con {
  width: calc(100% - 150px);
}
@media (max-width: 819px) {
  .sell_list .tab_con .tab_inner .select_all > li.half_right .sect_sub_con {
    width: 100%;
  }
}
@media (max-width: 819px) {
  .sell_list .tab_con .tab_inner .select_all > li.half_right .sect_sub_con {
    width: 100%;
  }
}
.sell_list .tab_con .tab_inner .select_all > li.sub_division {
  display: none;
}
.sell_list .tab_con .tab_inner .select_all > li.sub_division_price_wrap .sect_sub_con {
  gap: 10px 30px;
}
.sell_list .tab_con .tab_inner .select_all > li.loan .sect_sub_con {
  gap: 10px 80px;
}
.sell_list .tab_con .tab_inner .select_all > li.privateArea .sect_sub_con {
  gap: 10px 30px;
}
.sell_list .tab_con .tab_inner .select_all > li.floor .sect_sub_con {
  gap: 10px 27px;
}
.sell_list .tab_con .tab_inner .select_all > li .title_box {
  width: 180px;
  font: 16px "Pretendard-Medium";
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li .title_box {
    width: 140px;
  }
}
@media (max-width: 819px) {
  .sell_list .tab_con .tab_inner .select_all > li .title_box {
    width: 100%;
    margin-bottom: 15px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .place_text p {
  position: relative;
  font-size: 16px;
  margin-top: 11px;
  padding-left: 10px;
  color: #363a43;
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li .place_text p {
    font-size: 15px;
    margin-top: 5px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .place_text p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background-color: #363a43;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con {
  width: calc(100% - 180px);
  display: flex;
  align-items: center;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con:has(.column):has(.place_box) {
  gap: 47px;
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con {
    width: calc(100% - 140px);
  }
}
@media (max-width: 819px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con {
    width: 100%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 0;
  }
}
@media (max-width: 627px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con select {
    width: 70%;
  }
}
@media (max-width: 500px) and (max-width: 500px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con select {
    width: 100%;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con select:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 627px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con select:not(:last-child) {
    margin-right: 0;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column + .place_box {
  flex: 0 0 340px;
  width: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between {
  width: 100%;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap:first-child {
  margin-bottom: 15px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap.second_line {
  flex-wrap: nowrap;
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap.second_line .area {
    width: 100%;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap.second_line .area:last-child {
  width: 60%;
  justify-content: space-between;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap.second_line .area:last-child {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap.second_line .area:last-child > input[type=text] {
  width: 70%;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap.second_line .area .btn_style01 {
  margin-top: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap > div {
  display: flex;
  align-items: center;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .column_between .area_wrap .checkbox_custom {
  margin-left: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .checkbox_custom {
  margin-left: 40px;
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .checkbox_custom {
    margin-left: 0;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .checkbox_custom.gap_check {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 50px;
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .checkbox_custom.gap_check {
    gap: 8px 30px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .checkbox_custom.gap_check label {
  width: 100px;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .checkbox_custom.gap_check label span {
    font-size: 15px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .notice img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area_wrap.place_box {
  height: 200px;
  border-radius: 10px;
  border: 0 solid;
  background-color: #ebf0f6;
  color: #000;
}
@media (max-width: 1279px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area_wrap.place_box {
    width: 75%;
    margin-top: 20px;
  }
}
@media (max-width: 500px) and (max-width: 1279px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area_wrap.place_box {
    width: 100%;
    margin-top: 20px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area_wrap.place_box p {
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
  color: #93a7bf;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area_wrap:has(.area) {
  gap: 10px 25px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area {
  position: relative;
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    display: flex;
    align-items: center;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area:first-child {
  margin-left: 0;
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area:first-child {
    margin-top: 0;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area > span {
  font-family: "Pretendard-Light";
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area > span:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area > span:not(:last-child) {
    margin-right: 5px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area select,
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area input {
  margin-right: 10px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .area .essential_dot {
  position: absolute;
  top: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .btn_style01 {
  height: 40px;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box {
  line-height: 40px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box.flex_box {
  display: flex;
  align-items: center;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box label {
  cursor: pointer;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box label:not(:last-child) {
  margin-right: 35px;
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box label:not(:last-child) {
    margin-right: 15px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box label input {
  margin-right: 5px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box label span {
  font: 16px "Pretendard-Regular";
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .radio_box .checkbox_custom {
    margin-top: 5px;
    margin-left: 0;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .red_box {
  display: flex;
  gap: 10px 15px;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .red_box li .red_chk {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .red_box li .red_chk input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .red_box li .red_chk input:checked + span {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #bd1c22;
  color: #fff;
  cursor: pointer;
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .red_box li .red_chk span {
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  transition: all 0.3s;
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .red_box li .red_chk span {
    width: auto;
    height: 35px;
    padding: 0 20px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .sect_sub_con .soft_p {
  font: 17px "Pretendard-Light";
  color: #9d9ea2;
  margin-left: 10px;
}
.sell_list .tab_con .tab_inner .select_all > li .input_style_form02 {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font: 17px "Pretendard-Regular";
  border: 1px solid #dbdbdb;
  background-color: #fff;
  color: #363a43;
}
.sell_list .tab_con .tab_inner .select_all > li .input_style_form02[name=privateAreaPercent] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li .input_style_form02 {
    font-size: 16px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .sell_list .tab_con .tab_inner .select_all > li .input_style_form02 {
    height: 30px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .input_style_form02::placeholder {
  color: #9d9ea2;
  font: 15px "Pretendard-Light";
}
.sell_list .tab_con .tab_inner .select_all > li.bg_gray {
  background-color: #f5f5f5;
  padding: 45px 50px;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .sell_list .tab_con .tab_inner .select_all > li.bg_gray {
    padding: 20px 30px;
  }
}
@media (max-width: 500px) and (max-width: 500px) {
  .sell_list .tab_con .tab_inner .select_all > li.bg_gray {
    padding: 10px;
  }
}
.sell_list .tab_con .tab_inner .select_all > li .bg_green {
  background-color: #f4ffdf;
  pointer-events: none;
}
.sell_list .tab_con .tab_inner .select_all > li input:checked + .bg_green {
  background-color: unset;
  pointer-events: all;
}
.sell_list .tab_con .tab_inner .select_all > li .width70 {
  width: 70px;
}
.sell_list .tab_con .tab_inner .select_all > li .width100 {
  width: 100px;
}
.sell_list .tab_con .tab_inner .select_all > li .width110 {
  width: 110px;
}
.sell_list .tab_con .tab_inner .select_all > li .width140 {
  width: 140px;
}
.sell_list .tab_con .tab_inner .select_all > li .width200 {
  width: 200px;
}
.sell_list .tab_con .tab_inner .select_all > li .width220 {
  width: 220px;
}
.sell_list .tab_con .tab_inner .select_all > li .width280 {
  width: 280px;
}
.sell_list .tab_con .tab_inner .select_all > li .width_auto {
  width: auto;
}
@media (max-width: 630px) {
  .sell_list .tab_con .tab_inner .select_all > li .width100, .sell_list .tab_con .tab_inner .select_all > li .width140, .sell_list .tab_con .tab_inner .select_all > li .width200, .sell_list .tab_con .tab_inner .select_all > li .width220, .sell_list .tab_con .tab_inner .select_all > li .width280, .sell_list .tab_con .tab_inner .select_all > li .width_auto {
    width: 70%;
  }
}
@media (max-width: 500px) and (max-width: 500px) {
  .sell_list .tab_con .tab_inner .select_all > li .width100, .sell_list .tab_con .tab_inner .select_all > li .width140, .sell_list .tab_con .tab_inner .select_all > li .width200, .sell_list .tab_con .tab_inner .select_all > li .width220, .sell_list .tab_con .tab_inner .select_all > li .width280, .sell_list .tab_con .tab_inner .select_all > li .width_auto {
    width: 100%;
  }
}

.popup_address {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup_address .pr_wrap {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
}
@media (max-width: 630px) {
  .popup_address .pr_wrap {
    top: 10%;
    width: 80%;
  }
}
@media (max-width: 500px) {
  .popup_address .pr_wrap {
    width: 90%;
  }
}
.popup_address .pr_wrap .pr_inner {
  padding: 30px 30px 30px 40px;
  background-color: #fff;
}
@media (max-width: 500px) {
  .popup_address .pr_wrap .pr_inner {
    padding: 30px 20px;
  }
}
@media (max-width: 580px) {
  .popup_address .pr_wrap .pr_inner {
    height: 400px;
    overflow-y: scroll;
  }
}
.popup_address .pr_wrap .pr_inner i {
  text-align: center;
  display: block;
  font-size: 50px;
  margin-bottom: 15px;
  color: #bd1c22;
}
.popup_address .pr_wrap .pr_inner strong {
  display: block;
  text-align: center;
  font: 20px "Pretendard-Bold";
  margin-bottom: 20px;
}
@media (max-width: 630px) {
  .popup_address .pr_wrap .pr_inner strong {
    font-size: 18px;
  }
}
.popup_address .pr_wrap .pr_inner .content {
  margin-top: 20px;
}
@media (max-width: 630px) {
  .popup_address .pr_wrap .pr_inner .content * {
    font-size: 15px;
  }
}
.popup_address .pr_wrap .pr_inner .content > span {
  display: inline-block;
  margin: 10px 0;
  color: #999;
}
.popup_address .pr_wrap .pr_inner .all_check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  background-color: #f5f5f5;
  margin-top: 20px;
}
@media (max-width: 630px) {
  .popup_address .pr_wrap .pr_inner .all_check {
    font-size: 15px;
  }
}
.popup_address .pr_wrap .pr_inner .all_check span {
  color: #000;
}
.popup_address .pr_wrap .pr_inner .more_check {
  margin-top: 15px;
}
.popup_address .pr_wrap .pr_inner .more_check b {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}
.popup_address .pr_wrap .pr_inner .more_check .checkbox_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 630px) {
  .popup_address .pr_wrap .pr_inner .more_check .checkbox_wrap {
    display: flex;
    flex-direction: column;
  }
  .popup_address .pr_wrap .pr_inner .more_check .checkbox_wrap .checkbox_custom {
    margin-bottom: 5px;
  }
}
.popup_address .pr_wrap .pr_inner .more_check .checkbox_wrap span {
  font-size: 15px;
}
.popup_address .pr_wrap .popup_footer {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  border-top: 1px solid #ddd;
}
.popup_address .pr_wrap .popup_footer button {
  width: 50%;
  height: 70px;
  font: 20px "Pretendard-Medium";
  transition: all 0.3s;
  background-color: #f5f5f5;
}
@media (max-width: 630px) {
  .popup_address .pr_wrap .popup_footer button {
    height: 50px;
    font-size: 17px;
  }
}
.popup_address .pr_wrap .popup_footer button.btn_close {
  border-right: 1px solid #ddd;
  background-color: #bd1c22;
  color: #fff;
}
.popup_address .pr_wrap .popup_footer button.btn_apply {
  background-color: #bd1c22;
  color: #fff;
}
.popup_address .pr_wrap .popup_footer button.btn_apply:disabled {
  background-color: #f5f5f5;
  color: #000;
}

.my_page_wrap .tab_menu .tab_menu_list .count {
  display: inline-block;
  padding: 2px 11px;
  text-align: center;
  margin-left: 9px;
  border-radius: 6px;
  border: 0 solid #363a43;
  background-color: #D4DAE2;
  color: #fff;
}
@media (max-width: 767px) {
  .my_page_wrap .tab_menu .tab_menu_list .count {
    font-size: 14px;
    padding: 2px 7px;
    margin: 7px auto 0;
    display: block;
    width: auto;
  }
}
.my_page_wrap .tab_menu .tab_menu_list li.active .count {
  border: 0 solid #363a43;
  background-color: #4d99ff;
  color: #fff;
}
@media (max-width: 767px) {
  .my_page_wrap .tab_menu .tab_menu_list li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 7px 3px;
  }
}
.my_page_wrap .tab_con .ss_wrap {
  display: flex;
  align-items: center;
  width: 500px;
  border-radius: 10px;
  border: 2px solid #9d9ea2;
  color: #000;
  margin: 0 auto;
  padding: 13px 20px;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .ss_wrap {
    padding: 7px 15px;
    width: 400px;
  }
}
@media (max-width: 767px) {
  .my_page_wrap .tab_con .ss_wrap {
    width: 350px;
    padding: 4px 10px;
  }
}
@media (max-width: 500px) {
  .my_page_wrap .tab_con .ss_wrap {
    width: 100%;
    padding: 2px 7px;
  }
}
.my_page_wrap .tab_con .ss_wrap .my_select {
  width: 30%;
  border: none;
  outline: none;
  font: 16px "Pretendard-Light";
  padding: 10px;
}
@media (max-width: 767px) {
  .my_page_wrap .tab_con .ss_wrap .my_select {
    font-size: 15px;
  }
}
.my_page_wrap .tab_con .ss_wrap > span {
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #9d9ea2;
}
.my_page_wrap .tab_con .ss_wrap .wrap_search {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.my_page_wrap .tab_con .ss_wrap .wrap_search .my_search {
  width: 100%;
  position: relative;
  color: #363a43;
  padding-left: 10px;
  padding-right: 10px;
}
.my_page_wrap .tab_con .my_table_wrap {
  width: 100%;
  overflow-x: auto;
}
.my_page_wrap .tab_con .my_table_wrap .my_table {
  width: 100%;
  border: 1px solid #363a43;
  color: #000;
  margin-top: 30px;
  border-collapse: collapse;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table {
    width: 890px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .checkbox_custom {
  margin: 0 auto;
  justify-content: center;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .checkbox_custom label .chk_more {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .checkbox_custom label .chk_more::after {
  top: 2px;
  left: 5.5px;
  height: 11px;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr th {
  border-top: 1px solid #363a43;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #363a43;
  padding: 17px 10px;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.0509803922);
  font: 16px "Pretendard-Medium";
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr th:first-child {
  padding: 17px 15px;
  border-left: none;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr td {
  font: 16px "Roboto", "Pretendard-Regular";
  text-align: center;
  padding: 15px 10px;
  border: 1px solid #e5e5e5;
  border-top: none;
  letter-spacing: -0.5px;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table tr td {
    font: 15px "Roboto", "Pretendard-Regular";
    padding: 5px 10px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info {
  width: 260px;
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info {
    width: 240px;
    padding-left: 13px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info div {
  margin: 5px 0;
  color: #000;
  font-family: "Pretendard-Medium";
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info .item_num {
  font: 15px "Roboto", "Pretendard-Medium";
  color: #363A43;
  font-weight: 400;
  margin-bottom: 10px;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info .item_num span {
  color: #3C80DB;
  margin-right: 10px;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info .item_price span {
  display: inline-block;
  width: 21px;
  height: 21px;
  font: 15px "Pretendard-Regular";
  color: #FFF;
  line-height: 21px;
  border-radius: 3px;
  text-align: center;
  margin-right: 7px;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info .item_price span.p_sale {
  background-color: #e71818;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info .item_price span.p_lease {
  background-color: #3C80DB;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_info .item_price span.p_rent {
  background-color: #0D986A;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_add {
  width: 200px;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table tr .house_add {
    width: 185px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .house_add span {
  display: block;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .open_hours {
  width: 170px;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table tr .open_hours {
    width: 130px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .open_hours span {
  display: block;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_result {
  width: 120px;
  padding: 10px 15px;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_result span {
  display: inline-flex;
  width: 70px;
  height: 27px;
  font: 14px "Pretendard-Medium";
  color: #4b5d6e;
  border-radius: 30px;
  background-color: #FFF;
  border: 1px solid #4b5d6e;
  justify-content: center;
  align-items: center;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state {
  width: 120px;
  padding: 10px 15px;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state {
    width: 90px;
    padding: 5px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state button {
  display: block;
  border-radius: 30px;
  width: 70px;
  height: 27px;
  font: 14px "Pretendard-Medium";
  margin: 4px auto;
}
@media (max-width: 1023px) {
  .my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state button {
    width: 60px;
    font-size: 13px;
  }
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state button.btn_stop {
  background-color: #7dbd0e;
  color: #FFF;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state button.btn_close {
  background-color: #f75409;
  color: #FFF;
}
.my_page_wrap .tab_con .my_table_wrap .my_table tr .td_state button.btn_edit {
  background-color: #FFF;
  border: 1px solid #363A43;
  color: #363A43;
}
.my_page_wrap .tab_con .not_data {
  padding: 47px 0;
  border-bottom: 1px solid #9d9ea2;
}
.my_page_wrap .tab_con .not_data > p {
  font: 16px "Pretendard-Light";
  text-align: center;
  color: #9d9ea2;
}
.my_page_wrap .tab_con .sub_layout {
  padding: 0 120px;
}
@media (max-width: 767px) {
  .my_page_wrap .tab_con .sub_layout {
    padding: 0 40px;
  }
}
@media all and (max-width: 520px) {
  .my_page_wrap .tab_con .sub_layout {
    padding: 0px;
  }
}
.my_page_wrap .tab_con .sub_layout .join_tit .gray_tit {
  font-size: 32px;
  margin-bottom: 20px;
}
.my_page_wrap .tab_con .sub_layout .not_correct {
  background-color: #f4ffdf;
  line-height: 50px;
  color: #363a43;
}
.my_page_wrap .tab_con .sub_layout .email_wrap {
  width: 100%;
}
.my_page_wrap .tab_con .join_company.sub_layout {
  padding-top: 0;
}
.my_page_wrap .tab_con .join_company .gray_border_box {
  border: none;
  border-top: 2px solid #363a43;
}
.my_page_wrap .tab_con .join_company .gray_border_box.company_info .form_wrap .input_box.medium_box {
  margin: 0;
}
.my_page_wrap .tab_con .join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap01,
.my_page_wrap .tab_con .join_company .gray_border_box.company_info .form_wrap .input_box .password_wrap02 {
  width: 100%;
}
.my_page_wrap .tab_con .join_company .gray_border_box.company_info .form_wrap .input_box .radio_box {
  width: 100%;
}
.my_page_wrap .tab_con .join_company .small_box > div {
  width: 50%;
}
.my_page_wrap .tab_con .join_company .address_box > .wrap .btn_style04 {
  margin-left: 10px;
}

.inquiryMy {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 40px 84px;
}
.inquiryMy_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inquiryMy_title_txt {
  font-family: "Pretendard-Bold", sans-serif;
  font-size: 2rem;
  color: #000;
}
.inquiryMy_title_num {
  border-radius: 6px;
  border: 0 solid;
  background-color: #4d99ff;
  color: #000;
  padding: 2px 8px;
  font-family: "Pretendard-Medium", sans-serif;
  color: #fff;
}
.inquiryMy_main {
  padding-top: 27px;
}
.inquiryMy_table_row.rows_more.hide {
  display: none;
}
.inquiryMy_table_row.row_main.hide .item_main, .inquiryMy_table_row.row_main.hide .item_question {
  border-bottom-width: 1px;
}
.inquiryMy_table_item.items_last {
  padding-bottom: 23px;
}
.inquiryMy_table_item.item_result {
  width: 90px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: "Pretendard-Medium", sans-serif;
  vertical-align: top;
  padding-left: 5px;
}
.inquiryMy_table_item.item_main {
  padding-top: 17px;
  padding-bottom: 17px;
  border-bottom-width: 0;
}
.inquiryMy_table_item.item_question {
  border-bottom-width: 0;
}
.inquiryMy_table_item.item_reply {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-width: 0;
}
.inquiryMy_table_item.item_reply_txt {
  padding-top: 4px;
}
.inquiryMy_cont {
  display: flex;
  align-items: center;
  gap: 5px;
}
.inquiryMy_cont_type {
  border-radius: 4px;
  border: 0 solid transparent;
  background-color: #363a43;
  color: #000;
  padding: 4px 6px;
  font-family: "Pretendard-SemiBold", sans-serif;
  font-size: 1.3rem;
  color: #fff;
}
.inquiryMy_cont_price {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.48px;
}
.inquiryMy_cont_name {
  font-family: "Pretendard-Medium", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.48px;
}
.inquiryMy_cont_salenum {
  font-size: 1.4rem;
  letter-spacing: 0.28px;
  color: #363a43;
  margin-left: 7px;
}
.inquiryMy_cont_date {
  margin-left: auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  color: #363a43;
  padding-right: 5px;
}
.inquiryMy_cont_question {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 1.5rem;
  line-height: 22px;
}
.inquiryMy_link_article {
  font-family: "Pretendard-Regular";
  display: flex;
  align-items: center;
  gap: 6px;
}
.inquiryMy_link_article .txt {
  font-size: 14px;
  letter-spacing: 0.28px;
}
.inquiryMy_link_article .icon {
  display: block;
  width: 13px;
  height: 13px;
  background: url("/images/user/pages/mypage/icon_export_page.svg") no-repeat center;
  background-size: contain;
}
.inquiryMy_reply {
  display: flex;
  align-items: center;
}
.inquiryMy_reply_title {
  display: flex;
  align-items: center;
  gap: 6.58px;
}
.inquiryMy_reply_title .txt {
  font-family: "Pretendard-Medium", sans-serif;
  font-size: 15px;
}
.inquiryMy_reply_title .icon {
  display: block;
  width: 15px;
  height: 15px;
  background: url("/images/user/pages/mypage/icon_reply.svg") no-repeat center;
  background-size: contain;
}
.inquiryMy_reply_date {
  margin-left: auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  color: #363a43;
  padding-right: 5px;
}
.inquiryMy_reply_txt {
  font-family: "Pretendard-Light";
  font-size: 15px;
  color: #363a43;
}
.inquiryMy_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 35px;
}
.inquiryMy_page_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 0px solid #363a43;
  color: #363a43;
}
.inquiryMy_page_num.active {
  border-width: 1px;
  font-weight: 500;
}
.inquiryList {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 40px 84px;
}
.inquiryList_title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inquiryList_title_txt {
  font-family: "Pretendard-Bold", sans-serif;
  font-size: 2rem;
  color: #000;
}
.inquiryList_title_num {
  border-radius: 6px;
  border: 0 solid;
  background-color: #4d99ff;
  color: #000;
  padding: 2px 8px;
  font-family: "Pretendard-Medium", sans-serif;
  color: #fff;
}
.inquiryList_main {
  padding-top: 27px;
}
.inquiryList_table_row.rows_more.hide {
  display: none;
}
.inquiryList_table_row.row_main.hide .item_main, .inquiryList_table_row.row_main.hide .item_question {
  border-bottom-width: 1px;
}
.inquiryList_table_row.row_main.hide .item_question .inquiryList_cont_question > *:not(:first-child) {
  display: none;
}
.inquiryList_table_item {
  position: relative;
}
.inquiryList_table_item.items_last {
  padding-bottom: 23px;
}
.inquiryList_table_item.item_result {
  width: 90px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: "Pretendard-Medium", sans-serif;
  vertical-align: top;
  padding-left: 5px;
}
.inquiryList_table_item.item_question {
  padding-top: 17px;
  padding-bottom: 17px;
}
.inquiryList_table_item.item_question .inquiryList_cont {
  align-items: flex-start;
}
.inquiryList_table_item.item_reply {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-width: 0;
}
.inquiryList_table_item.item_reply_txt {
  padding-top: 4px;
}
.inquiryList_table_item.th {
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 767px) {
  .inquiryList_table_item.th {
    border-bottom-width: 1px;
    border-bottom-color: #363a43;
  }
}
.inquiryList_cont {
  display: flex;
  align-items: center;
  gap: 5px;
}
.inquiryList_cont_type {
  border-radius: 4px;
  border: 0 solid transparent;
  background-color: #363a43;
  color: #000;
  padding: 4px 6px;
  font-family: "Pretendard-SemiBold", sans-serif;
  font-size: 1.3rem;
  color: #fff;
}
.inquiryList_cont_price {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.48px;
}
.inquiryList_cont_name {
  font-family: "Pretendard-Medium", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.48px;
}
.inquiryList_cont_salenum {
  font-size: 1.4rem;
  letter-spacing: 0.28px;
  color: #363a43;
  margin-left: 7px;
}
.inquiryList_cont_date {
  margin-left: auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  color: #363a43;
  padding-right: 5px;
}
.inquiryList_cont_question {
  font-size: 1.5rem;
  line-height: 22px;
}
.inquiryList_link_article {
  font-family: "Pretendard-Regular";
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.inquiryList_link_article .txt {
  font-size: 14px;
  letter-spacing: 0.28px;
}
.inquiryList_link_article .icon {
  display: block;
  width: 13px;
  height: 13px;
  background: url("/images/user/pages/mypage/icon_export_page.svg") no-repeat center;
  background-size: contain;
}
.inquiryList_reply {
  display: flex;
  align-items: center;
}
.inquiryList_reply_title {
  display: flex;
  align-items: center;
  gap: 6.58px;
}
.inquiryList_reply_title .txt {
  font-family: "Pretendard-Medium", sans-serif;
  font-size: 15px;
}
.inquiryList_reply_title .icon {
  display: block;
  width: 15px;
  height: 15px;
  background: url("/images/user/pages/mypage/icon_reply.svg") no-repeat center;
  background-size: contain;
}
.inquiryList_reply_txt {
  font-family: "Pretendard-Light";
  font-size: 15px;
  color: #363a43;
}
.inquiryList_reply_typing {
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  width: calc(100% - 13px - 5px);
}
.inquiryList_reply_typing::-webkit-scrollbar {
  width: 0px;
}
.inquiryList_reply_typing::-webkit-scrollbar-track {
  border-radius: 800px;
  background-color: transparent;
}
.inquiryList_reply_typing::-webkit-scrollbar-thumb {
  border-radius: 800px;
  background-color: transparent;
}
.inquiryList_reply_typing::-webkit-scrollbar {
  width: 4px;
}
.inquiryList_reply_typing::-webkit-scrollbar-thumb {
  background-color: #CBCBCB;
}
.inquiryList_reply_typing.typing {
  height: 100%;
}
.inquiryList_reply_typingwrap {
  position: relative;
  display: block;
}
.inquiryList_reply_typingwrap.typing {
  border-radius: 10px;
  border: 1px solid #CBCBCB;
  height: 100px;
  padding: 18px 22px;
}
.inquiryList_reply_typingwrap.typing .btn_delete_txt {
  display: block;
}
.inquiryList_reply_btns {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}
.inquiryList_reply_btns.reply .inquiryList_btn.btn_save {
  display: none;
}
.inquiryList_reply_btns.typing .inquiryList_btn.btn_remove {
  display: none;
}
.inquiryList_reply_btns.typing .inquiryList_btn.btn_modify {
  display: none;
}
.inquiryList_btn.btn_remove {
  font-family: "Pretendard-Medium";
  font-size: 14px;
}
.inquiryList_btn.btn_modify {
  font-family: "Pretendard-Medium";
  font-size: 14px;
}
.inquiryList_btn.btn_save {
  font-family: "Pretendard-Medium";
  font-size: 14px;
}
.inquiryList_btn.btn_delete_txt {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 20px;
  height: 20px;
  background: url("/images/user/pages/mypage/btn_delete_txt_gray.svg") no-repeat center;
  background-size: contain;
  display: none;
}
.inquiryList_btn.btn_delete_txt.active {
  background: url("/images/user/pages/mypage/btn_delete_txt_blue.svg") no-repeat center;
  background-size: contain;
}

.private_use_wrap {
  position: relative;
  padding-bottom: 55px;
  counter-reset: counterBox 0;
}
.private_use_wrap h4 {
  padding-bottom: 20px;
}
.private_use_box {
  padding-bottom: 25px;
  counter-increment: counterBox;
}
.private_use_box:nth-last-of-type(1) {
  padding-bottom: 0px;
}
.private_use_box_title {
  font: 16px "Pretendard-Medium";
}
.private_use_box_cont {
  padding-top: 10px;
  position: relative;
  font: 15px "Pretendard-Light";
  line-height: 24px;
}
.private_use_box_cont + .table {
  margin-top: 25px;
  margin-bottom: 5px;
}
.private_use_table .table_tr {
  display: table-row;
}
.private_use_table .private_use_item {
  display: table-cell;
}
.private_use_item.th {
  padding: 14px 10px;
  font-family: "Pretendard-Medium";
  font-size: 15px;
  text-align: center;
}
.private_use_item.td {
  padding: 14px 10px;
  padding: 14px 10px;
  font-family: "Pretendard-Light";
  font-size: 14px;
  letter-spacing: -0.28px;
}
.private_use_list {
  font: 15px "Pretendard-Light";
  letter-spacing: -0.3px;
}
.private_use_list li {
  line-height: 24px;
}
.private_use_list li::before {
  font: 15px "Pretendard-Light";
  letter-spacing: -0.3px;
}

.private_use {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.private_use .gray_border_box {
  padding: 63px 70px;
}
@media (max-width: 767px) {
  .private_use .gray_border_box {
    padding: 58px 40px;
  }
}
@media (max-width: 500px) {
  .private_use .gray_border_box {
    padding: 30px 20px;
  }
}
.private_use .gray_border_box .wrap_txt {
  position: relative;
  padding-bottom: 55px;
}
.private_use .gray_border_box .wrap_txt:last-child {
  padding-bottom: 0;
}
.private_use .gray_border_box .wrap_txt h4 {
  position: relative;
  font: 17px "Pretendard-Medium";
}
.private_use .gray_border_box .wrap_txt h4:nth-of-type(1) {
  padding-bottom: 20px;
}
.private_use .gray_border_box .wrap_txt > .box {
  padding-bottom: 25px;
}
.private_use .gray_border_box .wrap_txt > .box:nth-last-of-type(1) {
  padding-bottom: 0px;
}
.private_use .gray_border_box .wrap_txt > .box p {
  padding-top: 10px;
}
.private_use .gray_border_box .wrap_txt strong {
  position: relative;
  display: block;
  font: 16px "Pretendard-Medium";
}
.private_use .gray_border_box .wrap_txt p {
  position: relative;
  font: 15px "Pretendard-Light";
  line-height: 24px;
}
.private_use .gray_border_box .wrap_txt p > span {
  display: inline-block;
}

.private_personal_wrap {
  position: relative;
  padding-bottom: 55px;
  counter-reset: counterBox 0;
}
.private_personal_wrap h4 {
  padding-bottom: 20px;
}
.private_personal_box {
  padding-bottom: 25px;
  counter-increment: counterBox;
}
.private_personal_box:nth-last-of-type(1) {
  padding-bottom: 0px;
}
.private_personal_box_title {
  font: 16px "Pretendard-Medium";
}
.private_personal_box_title::before {
  content: counter(counterBox) ".";
  position: relative;
  display: inline-block;
  padding-right: 6px;
}
.private_personal_box_cont {
  padding-top: 10px;
  position: relative;
  font: 15px "Pretendard-Light";
  line-height: 24px;
}
.private_personal_box_cont + .table {
  margin-top: 25px;
  margin-bottom: 5px;
}
.private_personal_table .table_tr {
  display: table-row;
}
.private_personal_table .private_personal_item {
  display: table-cell;
}
.private_personal_item.th {
  padding: 14px 10px;
  font-family: "Pretendard-Medium";
  font-size: 15px;
  text-align: center;
}
.private_personal_item.td {
  padding: 14px 10px;
  padding: 14px 10px;
  font-family: "Pretendard-Light";
  font-size: 14px;
  letter-spacing: -0.28px;
}
.private_personal_list {
  font: 15px "Pretendard-Light";
  letter-spacing: -0.3px;
}
.private_personal_list li::before {
  font: 15px "Pretendard-Light";
  letter-spacing: -0.3px;
}

.private_personal {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.private_personal .gray_border_box {
  padding: 63px 70px;
}
@media (max-width: 767px) {
  .private_personal .gray_border_box {
    padding: 58px 40px;
  }
}
@media (max-width: 500px) {
  .private_personal .gray_border_box {
    padding: 30px 20px;
  }
}
.private_personal .gray_border_box .wrap_txt {
  position: relative;
  padding-bottom: 55px;
}
.private_personal .gray_border_box .wrap_txt:last-child {
  padding-bottom: 0;
}
.private_personal .gray_border_box .wrap_txt h4 {
  position: relative;
  font: 17px "Pretendard-Medium";
}
.private_personal .gray_border_box .wrap_txt h4:nth-of-type(1) {
  padding-bottom: 20px;
}
.private_personal .gray_border_box .wrap_txt > .box {
  padding-bottom: 25px;
}
.private_personal .gray_border_box .wrap_txt > .box:nth-last-of-type(1) {
  padding-bottom: 0px;
}
.private_personal .gray_border_box .wrap_txt > .box p {
  padding-top: 10px;
}
.private_personal .gray_border_box .wrap_txt strong {
  position: relative;
  display: block;
  font: 16px "Pretendard-Medium";
}
.private_personal .gray_border_box .wrap_txt p {
  position: relative;
  font: 15px "Pretendard-Light";
  line-height: 24px;
}
.private_personal .gray_border_box .wrap_txt p > span {
  display: inline-block;
}
.private_personal .gray_border_box .wrap_txt .table {
  width: 100%;
}
.private_personal .gray_border_box .wrap_txt .table.table_collection .thead, .private_personal .gray_border_box .wrap_txt .table.table_collection .tbody {
  grid-template-columns: repeat(2, 1.5fr) 1fr;
}
.private_personal .gray_border_box .wrap_txt .table.table_provision .thead, .private_personal .gray_border_box .wrap_txt .table.table_provision .tbody {
  grid-template-columns: repeat(5, 1fr);
}
.private_personal .gray_border_box .wrap_txt .table.table_consignment .thead, .private_personal .gray_border_box .wrap_txt .table.table_consignment .tbody {
  grid-template-columns: repeat(2, 1fr);
}
.private_personal .gray_border_box .wrap_txt .table.table_destruction .thead, .private_personal .gray_border_box .wrap_txt .table.table_destruction .tbody {
  grid-template-columns: 1.28fr 1fr 0.28fr;
}
.private_personal .gray_border_box .wrap_txt .table .thead {
  border: 1px solid #363A43;
  display: grid;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.0509803922);
}
.private_personal .gray_border_box .wrap_txt .table .thead .th {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #E5E5E5;
  padding: 14px 10px;
  font-family: "Pretendard-Medium";
  font-size: 15px;
}
.private_personal .gray_border_box .wrap_txt .table .thead .th.start {
  border-left-width: 0;
}
.private_personal .gray_border_box .wrap_txt .table .tbody {
  display: grid;
}
.private_personal .gray_border_box .wrap_txt .table .tbody .td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 10px;
  border-left: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 14px 10px;
  font-family: "Pretendard-Light";
  font-size: 14px;
  letter-spacing: -0.28px;
}
.private_personal .gray_border_box .wrap_txt .table .tbody .td.rowspan3 {
  grid-row-end: span 3;
}
.private_personal .gray_border_box .wrap_txt .table .tbody .td.start {
  border-left-width: 0;
}
.private_personal .gray_border_box .wrap_txt p + .table {
  padding-top: 25px;
  padding-bottom: 5px;
}

.private_regulation {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.private_regulation .gray_border_box {
  padding: 63px 70px;
}
@media (max-width: 767px) {
  .private_regulation .gray_border_box {
    padding: 58px 40px;
  }
}
@media (max-width: 500px) {
  .private_regulation .gray_border_box {
    padding: 30px 20px;
  }
}
.private_regulation .gray_border_box .wrap_txt {
  position: relative;
  padding-bottom: 55px;
}
.private_regulation .gray_border_box .wrap_txt:last-child {
  padding-bottom: 0;
}
.private_regulation .gray_border_box .wrap_txt h4 {
  position: relative;
  font: 17px "Pretendard-Medium";
}
.private_regulation .gray_border_box .wrap_txt h4:nth-of-type(1) {
  padding-bottom: 20px;
}
.private_regulation .gray_border_box .wrap_txt > .box {
  padding-bottom: 25px;
}
.private_regulation .gray_border_box .wrap_txt > .box:nth-last-of-type(1) {
  padding-bottom: 0px;
}
.private_regulation .gray_border_box .wrap_txt > .box > span {
  display: inline-block;
  padding-top: 10px;
  padding-left: 15px;
}
.private_regulation .gray_border_box .wrap_txt > .box > span.icon_etc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.private_regulation .gray_border_box .wrap_txt > .box > span.icon_etc::before {
  content: "※";
  position: relative;
  display: block;
}
.private_regulation .gray_border_box .wrap_txt > .box > span.icon_etc > span {
  padding-left: 0;
}
.private_regulation .gray_border_box .wrap_txt strong {
  position: relative;
  display: block;
  font: 16px "Pretendard-Medium";
}
.private_regulation .gray_border_box .wrap_txt span {
  font: 15px "Pretendard-Light";
  letter-spacing: -0.3px;
  line-height: 24px;
}
.private_regulation .gray_border_box .wrap_txt ul.mark_bar > li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.private_regulation .gray_border_box .wrap_txt ul.mark_bar > li::before {
  content: "-";
  position: relative;
  display: block;
}
.private_regulation .gray_border_box .wrap_txt ol.mark_number_half_curve > li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  counter-increment: counterName;
}
.private_regulation .gray_border_box .wrap_txt ol.mark_number_half_curve > li::before {
  content: counter(counterName) ")";
  position: relative;
  display: inline-block;
  padding-right: 4px;
}
.private_regulation .gray_border_box .wrap_txt .table {
  width: 100%;
}
.private_regulation .gray_border_box .wrap_txt .table:first-of-type {
  padding-top: 15px;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings {
  display: flex;
  min-height: 375px;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .thead {
  flex: 0 0 100px;
  box-shadow: 5px 0px 0px rgba(0, 0, 0, 0.0509803922);
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .thead .th {
  border: 0;
  border-top: 1px solid #E5E5E5;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .thead .th.start {
  border-top-width: 0;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .tbody {
  flex: 1;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .tbody .td {
  border: 0;
  border-top: 1px solid #E5E5E5;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .tbody .td.start {
  border-top-width: 0;
}
.private_regulation .gray_border_box .wrap_txt .table.table_warnings .thead, .private_regulation .gray_border_box .wrap_txt .table.table_warnings .tbody {
  width: 0;
  grid-template-rows: repeat(2, 42px) 1fr 1fr;
}
.private_regulation .gray_border_box .wrap_txt .table .thead {
  border: 1px solid #363A43;
  display: grid;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.0509803922);
}
.private_regulation .gray_border_box .wrap_txt .table .thead .th {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #E5E5E5;
  padding: 14px 10px;
  font-family: "Pretendard-Medium";
  font-size: 15px;
}
.private_regulation .gray_border_box .wrap_txt .table .thead .th.start {
  border-left-width: 0;
}
.private_regulation .gray_border_box .wrap_txt .table .tbody {
  display: grid;
}
.private_regulation .gray_border_box .wrap_txt .table .tbody .td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 10px;
  border-left: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 14px 10px;
  font-family: "Pretendard-Light";
  font-size: 14px;
  letter-spacing: -0.28px;
}
.private_regulation .gray_border_box .wrap_txt .table .tbody .td.rowspan3 {
  grid-row-end: span 3;
}
.private_regulation .gray_border_box .wrap_txt .table .tbody .td.start {
  border-left-width: 0;
}
.private_regulation .gray_border_box .wrap_txt p + .table {
  padding-top: 25px;
  padding-bottom: 5px;
}

.file_box,
.preview,
.preview li {
  display: flex;
}

.file_box {
  margin-bottom: 10px;
}

.addimgBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 130px;
  background-color: #fff;
  color: #9d9ea2;
  border: 2px solid #d8d8d8;
  font: 15px "Pretendard-Regular";
}
@media (max-width: 1023px) {
  .addimgBtn {
    width: 150px;
    height: 110px;
  }
}
@media (max-width: 767px) {
  .addimgBtn {
    width: 120px;
    height: 90px;
  }
}
.addimgBtn > span {
  margin-top: 8px;
}

.preview {
  flex-wrap: wrap;
  gap: 10px;
}
.preview li {
  height: 130px;
  position: relative;
  cursor: move;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .preview li {
    width: 150px;
    height: 110px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .preview li {
    width: 120px;
    height: 90px;
  }
}
.preview li.file_box .addimgBtn img {
  width: auto;
  height: auto;
}
.preview li:not(.file_box):first-child::before {
  content: "대표";
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  font-size: 13px;
  color: #fff;
  padding: 0 3px;
  background-color: #4d99ff;
}
.preview li img {
  width: 180px;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .preview li img {
    width: 150px;
    height: 110px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .preview li img {
    width: 120px;
    height: 90px;
  }
}

.delBtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  background-color: #f54336;
  color: #fff;
  width: 18px;
  height: 18px;
  line-height: 16px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.file_custom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file_custom input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.file_custom .upload_hidden {
  display: inline-block;
  padding: 0.5em 0.75em;
  font-size: 12px;
  font-family: inherit;
  line-height: normal;
  vertical-align: middle;
  border: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wish_wrap {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 90px 0 180px;
}
.wish_wrap .wish {
  width: 100%;
}
.wish_wrap .wish_list_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.wish_wrap .wish_list_wrap .top_total {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.wish_wrap .wish_list_wrap .top_total .inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 15px;
}
.wish_wrap .wish_list_wrap .top_total .inner ul {
  position: relative;
  display: flex;
  gap: 0 20px;
}
.wish_wrap .wish_list_wrap .top_total .inner ul > li {
  position: relative;
  display: flex;
  align-items: center;
}
.wish_wrap .wish_list_wrap .top_total .inner ul > li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 23px;
  background: #dbdbdb;
}
.wish_wrap .wish_list_wrap .top_total .inner ul > li button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 0 solid #363a43;
  color: #000;
  height: 31px;
  font-size: 17px;
  padding: 0 17px;
  transition: all 0.3s;
}
.wish_wrap .wish_list_wrap .top_total .inner ul > li button.active {
  border-radius: 4px;
  border: 0 solid #363a43;
  background-color: #4d99ff;
  color: #fff;
}
.wish_wrap .wish_list_wrap .top_total .inner .house_mp {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  margin-left: auto;
  border: 1px solid #dbdbdb;
  background-color: #eceded;
  color: #000;
}
.wish_wrap .wish_list_wrap .top_total .inner .house_mp .tab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-size: 14px;
}
.wish_wrap .wish_list_wrap .top_total .inner .house_mp .tab.active {
  border-radius: 2px;
  border: 1px solid #363a43;
  background-color: #fff;
  color: #000;
}
.wish_wrap .wish_list_wrap .top_total .inner .house_mp .tab span sup {
  font-size: 10px;
}
.wish_wrap .wish_list_wrap .wish_list {
  border-top: 1px solid #dbdbdb;
}
.wish_wrap .wish_list_wrap .wish_list > li {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  width: 100%;
  padding: 15px 0;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building {
  display: flex;
  gap: 0 20px;
  width: 100%;
  padding: 0 15px;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_img_wrap {
  position: relative;
  width: 0;
  height: 165px;
  flex: 0 0 165px;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_img_wrap .intro_img {
  width: 100%;
  height: 100%;
  background: #ebf0f6;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px 0;
  width: 0;
  flex: 1;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .intro_info {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .intro_info .sale {
  display: flex;
  align-items: center;
  gap: 0 11px;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .intro_info .sale .type {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #363a43;
  color: #000;
  height: 31px;
  font-family: "Pretendard-SemiBold";
  font-size: 18px;
  padding: 0 10px;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .intro_info .sale .price {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.66px;
  line-height: 27px;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .intro_info .more_info {
  font-family: "Pretendard-Light";
  color: #666;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .link_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .link_wrap .vr_link span {
  position: relative;
}
.wish_wrap .wish_list_wrap .wish_list > li .intro_building .intro_info_wrap .link_wrap .vr_link span::before {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 12px;
  background: url("/images/user/common/Icon feather-chevron-right.svg") no-repeat center;
  background-size: contain;
}

.filebox {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
}
@media (max-width: 767px) {
  .filebox {
    flex-flow: column;
  }
}
.filebox input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.filebox label {
  display: inline-block;
  margin-right: 15px;
  width: 140px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Pretendard-Medium";
  font-size: 16px;
  color: #fff;
  background-color: #363a43;
  cursor: pointer;
}
.filebox .upload-name {
  display: inline-block;
  font-family: "roboto", "Pretendard-Regular", sans-serif;
  font-size: 1.6rem;
  line-height: 2.3rem;
  vertical-align: middle;
  border: 0px;
  -webkit-appearance: none; /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  width: 100%;
}
@media (max-width: 767px) {
  .filebox .upload-name {
    margin-top: 7px;
    text-overflow: ellipsis;
  }
}

@media (max-width: 1023px) {
  .sell_cont_floor_plan .title_box {
    display: none;
  }
}/*# sourceMappingURL=sub.css.map */