@charset "UTF-8";
body {
  background-color: #F5F4F0;
}

.hidden {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.header-nav__container {
  padding: 15px 40px;
}
.header-nav__wrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  background-color: #EEE6D6;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: "noto serif";
  color: #61402A;
}
.header-nav__wrap::before {
  content: "";
  display: block;
  background: #fff url("../img/ico-arrow--down.svg") no-repeat center 13px;
  background-size: 15px 11px;
  width: 33px;
  height: 33px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  border-radius: 50%;
}

.main__container {
  max-width: 1170px;
  margin: 75px auto 0px;
  padding: 0 40px 150px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.main__wrap {
  width: 60%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: white;
  border-radius: 20px;
  padding: 80px 20px 80px 20px;
}
.main__wrap .form-wrap {
  max-width: 350px;
  margin: 26px auto 0px;
}
.main__visual {
  width: 40%;
  background: url("../img/signUp-bg.png") no-repeat center center;
  border-radius: 20px;
  padding: 0px 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.main__visual p {
  text-align: center;
  color: #F3E5DB;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}
.main__visual p:nth-child(1) {
  margin-top: 50px;
}
.main__visual img {
  display: block;
  width: 42px;
  margin: 25px auto;
}

.form-title {
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  font-family: "noto serif";
  font-weight: 800;
  color: #141414;
}

.form-btn {
  margin-top: 26px;
  width: 100%;
  height: 52px;
  background-color: #61402A;
  color: white;
  font-size: 17px;
  font-weight: 800;
  font-family: "noto serif";
  border-radius: 6px;
  cursor: pointer;
}

.form-link {
  margin-top: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 900;
  font-family: "noto serif";
}

.form-link span:first-child {
  color: #9C9C9C;
}

.form-link span:last-child {
  color: #61402A;
  text-decoration: underline;
}

.form-wrap__pw-toggle {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url("../img/form_pw-hide.svg") no-repeat center center;
  background-size: 24px;
}

.form-wrap__pw-toggle.active {
  background: url("../img/form_pw-show.svg") no-repeat center center;
}

.form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.form-wrap__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  position: relative;
}
.form-wrap__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.form-wrap__row-inner {
  width: calc(50% - 5px);
}
.form-wrap__row-inner2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #B8B8B8;
  border-radius: 6px;
}
.form-wrap__label {
  font-size: 15px;
  font-family: "noto serif";
  font-weight: 800;
  color: #2B2B2B;
}
.form-wrap__input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 45px;
  padding: 15px;
  border: 1px solid #B8B8B8;
  border-radius: 6px;
  color: black;
  font-size: 14px;
  background-color: white;
  font-weight: 600;
}
.form-wrap__input--pw {
  padding-right: 30px;
}
.form-wrap__btn {
  border: 1px solid #61402A;
  color: #61402A;
  border-radius: 6px;
  height: 45px;
  padding: 15px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}
.form-wrap__btn--fill {
  background-color: #61402A;
  color: white;
  font-size: 15px;
  height: 52px;
}
.form-wrap .select-menu {
  position: relative;
}
.form-wrap .select-menu__selected {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 45px;
  padding: 15px;
  border: 1px solid #B8B8B8;
  border-radius: 6px;
  color: black;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.form-wrap .select-menu__selected::after {
  content: "";
  display: block;
  background: url("../img/ico-arrow--down.svg") no-repeat;
  background-size: 12px 8px;
  width: 12px;
  height: 8px;
}
.form-wrap .select-menu__dropdown {
  width: 100%;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  border: 1px solid #B8B8B8;
  background-color: #F5F4F0;
  border-radius: 6px;
  overflow-y: auto;
  z-index: 10;
  max-height: 200px;
}
.form-wrap .select-menu__dropdown.hide {
  display: none;
}
.form-wrap .select-menu__dropdown input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-wrap .select-menu__dropdown label {
  display: block;
  padding: 15px;
  font-size: 14px;
  font-family: "noto serif";
  font-weight: 700;
  cursor: pointer;
}
.form-wrap .select-menu__dropdown input:checked + label {
  background-color: #eee8da;
}
.form-wrap .select-menu__dropdown::-webkit-scrollbar {
  width: 8px;
  background-color: #C4B69A;
  border-radius: 999px;
}
.form-wrap .select-menu__dropdown::-webkit-scrollbar-track {
  background-color: #C4B69A;
  border-radius: 0px;
}
.form-wrap .select-menu__dropdown::-webkit-scrollbar-thumb {
  background-color: #61402A;
}
.form-wrap .select-menu__dropdown::-webkit-scrollbar-button {
  display: none;
}
.form-wrap .select-menu__dropdown::-webkit-scrollbar-corner {
  background-color: #C4B69A;
}
.form-wrap .radio-select__input {
  display: none;
}
.form-wrap .radio-select__input:checked + .radio-select__label::after {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.form-wrap .radio-select__input:checked + .radio-select__label::before {
  border-color: var(--primary-color);
}
.form-wrap .radio-select__label {
  font-size: 14px;
  font-weight: 700;
  font-family: "noto serif";
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 45px;
  border: 1px solid #B8B8B8;
  cursor: pointer;
  padding-left: 15px;
  border-radius: 6px;
}
.form-wrap .radio-select__label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #B8B8B8;
}
.form-wrap .radio-select__label::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #B8B8B8;
  background-color: #E0E0E0;
}
.form-wrap .check-select__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-wrap .check-select__input:focus + .check-select__label {
  outline: 2px solid black;
}
.form-wrap .check-select__input:checked + .check-select__label::after {
  border-color: var(--primary-color);
}
.form-wrap .check-select__input:checked + .check-select__label::before {
  border-color: var(--primary-color);
}
.form-wrap .check-select__label {
  font-size: 14px;
  font-weight: 700;
  font-family: "noto serif";
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 45px;
  cursor: pointer;
  padding: 0px 15px;
  border-radius: 6px;
}
.form-wrap .check-select__label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid #B8B8B8;
}
.form-wrap .check-select__label::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 22.5px;
  width: 5px;
  height: 10px;
  border: solid #B8B8B8;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form-wrap .read-more {
  padding-right: 15px;
  color: #757575;
  font-weight: 700;
  cursor: pointer;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 200;
}

.modal {
  width: 560px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #F5F4F0;
  border-radius: 10px;
}
.modal--small {
  width: 450px;
}
.modal--small .modal__body {
  margin-top: 72px;
  max-height: 40vh;
}
.modal__header {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F5F4F0;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-areas: "empty title close";
  padding: 20px 40px;
  border-radius: 10px 10px 0 0;
}
.modal__header--prev {
  grid-template-areas: "prev title empty";
}
.modal__body {
  margin-top: 72px;
  max-height: 60vh;
  overflow-y: auto;
  margin-bottom: 50px;
}
.modal__body .modal__text-inner {
  line-height: 130%;
  font-size: 16px;
  padding: 15px 40px;
  color: #212121;
  font-family: "noto serif";
  line-height: 1.3;
}
.modal__body::-webkit-scrollbar {
  width: 8px;
  background-color: #C4B69A;
  border-radius: 999px;
}
.modal__body::-webkit-scrollbar-track {
  background-color: #C4B69A;
  border-radius: 0px;
}
.modal__body::-webkit-scrollbar-thumb {
  background-color: #61402A;
}
.modal__body::-webkit-scrollbar-button {
  display: none;
}
.modal__body::-webkit-scrollbar-corner {
  background-color: #C4B69A;
}
.modal__title {
  grid-area: title;
  font-size: 20px;
  font-weight: 700;
  font-family: "noto serif";
  color: #212121;
}
.modal__prev {
  grid-area: prev;
  justify-self: start;
  cursor: pointer;
}
.modal__prev img {
  width: 30px;
  height: 30px;
}
.modal__close {
  grid-area: close;
  justify-self: end;
  cursor: pointer;
}
.modal__close img {
  width: 30px;
  height: 30px;
}
.modal__bottom-btn {
  padding: 10px 40px 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.modal__bottom-btn button {
  font-size: 15px;
  font-weight: 700;
  font-family: "noto serif";
  border-radius: 6px;
  cursor: pointer;
}
.modal__prev2 {
  width: 100%;
  height: 50px;
  border: 1px solid #B8B8B8;
}
.modal__close2 {
  width: 20%;
  height: 50px;
  border: 1px solid #B8B8B8;
}
.modal__submit {
  width: 80%;
  height: 50px;
  background: var(--primary-color);
  color: white;
}
.modal .cart__total {
  width: 100%;
  padding: 15px 0;
  background-color: #F8F3E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.modal .cart__total-txt {
  font-size: 14px;
  letter-spacing: 0.15em;
  font-family: "noto serif";
  font-weight: 700;
  color: black;
}
.modal .cart__total-sum {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-family: "noto serif";
  font-weight: 800;
  color: #FF3E3E;
}
.modal .cart__total-sum::before {
  content: "₩ ";
}

.footer-container {
  background-color: #EEE6D6;
}

.footer-container .footer-wrap {
  padding: 30px 0;
  max-width: 1277px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-container .footer-wrap__img {
  width: 119px;
}

.footer-container .footer-wrap__txt {
  font-size: 13px;
  font-weight: 700;
  color: #9E7E68;
  margin-top: 15px;
}/*# sourceMappingURL=signUp.css.map */