<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*───────────────────────────────────────────────────────────

	Mixin

───────────────────────────────────────────────────────────*/
.nx-form {
  position: relative;
  border-top: 2px solid #222;
}
.nx-form__row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.nx-form__col {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-form__col {
    flex-direction: column;
    padding: 15rem 10rem;
  }
}
.nx-form__col.full {
  width: 100%;
}
.nx-form__col.long {
  align-items: flex-start;
}
.nx-form__col.half {
  width: 50%;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-form__col.half {
    width: 100%;
  }
}
.nx-form__label {
  font-size: 16rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .nx-form__label {
    font-size: 14.5454545455rem;
  }
}
@media (max-width: 445px) {
  .nx-form__label {
    font-size: 13.9130434783rem;
  }
}
.nx-form__label-area {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 170rem;
  height: 80rem;
  padding: 15rem 10rem;
  /* Media Query */
}
@media (max-width: 1024px) {
  .nx-form__label-area {
    width: 140rem;
  }
}
@media (max-width: 640px) {
  .nx-form__label-area {
    height: auto;
    padding: 0;
    font-size: 16rem;
  }
}
.nx-form__required-icon {
  display: inline-block;
  margin-left: 3px;
  color: var(--primary-import);
}
.nx-form__input {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 650rem;
  height: 50rem;
  padding: 0 30rem;
  font-size: 15rem;
  border: 1px solid #e5e5e5;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__input {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__input {
    font-size: 13.0434782609rem;
  }
}
@media (max-width: 1024px) {
  .nx-form__input {
    max-width: none;
  }
}
@media (max-width: 800px) {
  .nx-form__input {
    padding: 0 20rem;
  }
}
@media (max-width: 640px) {
  .nx-form__input {
    height: 45rem;
    padding: 0 10rem;
  }
}
.nx-form__input.full {
  max-width: none;
}
.nx-form__input.file-text {
  gap: 0 10rem;
}
.fail .nx-form__input {
  border-color: var(--primary-error);
}
.success .nx-form__input {
  border-color: var(--primary-success);
}
.nx-form__input-area {
  position: relative;
  width: 100%;
  padding: 15rem 20rem;
}
@media (max-width: 640px) {
  .nx-form__input-area {
    padding: 0;
    margin-top: 10rem;
  }
}
.nx-form__input-area.email-col {
  display: flex;
  flex-wrap: wrap;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-form__input-area.email-col {
    flex-direction: column;
  }
}
.nx-form__input-area.tel-col {
  display: flex;
  flex-wrap: wrap;
}
.nx-form__input-wrap {
  width: 100%;
  min-width: 1px;
  max-width: 450rem;
}
.nx-form__input-wrap.full {
  max-width: none;
}
.nx-form__input-wrap:has(.nx-form__textarea) {
  max-width: none;
}
.nx-form__input-password {
  position: relative;
  max-width: 450rem;
}
.nx-form__input-password .nx-form__input {
  padding-right: 50rem;
}
.nx-form__input-password .toggle-password-wrap {
  position: absolute;
  top: 50%;
  right: 15rem;
  transform: translateY(-50%);
}
.nx-form__chk-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10rem 20rem;
  max-width: 690rem;
  height: 50rem;
  /* Media Query */
}
@media (max-width: 640px) {
  .nx-form__chk-area {
    height: auto;
  }
}
.nx-form__has-btn {
  display: flex;
  gap: 0 10rem;
  position: relative;
}
.nx-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120rem;
  height: 50rem;
  padding: 0 10rem;
  font-size: 15rem;
  color: #fff;
  border: 0;
  background-color: #222;
  transition: color 0.3s, background-color 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__btn {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__btn {
    font-size: 13.0434782609rem;
  }
}
@media (min-width: 1025px) {
  .nx-form__btn:hover {
    background-color: var(--primary-color);
  }
}
@media (max-width: 640px) {
  .nx-form__btn {
    width: 90rem;
    height: 45rem;
  }
}
.nx-form__agree-area {
  margin-top: 5px;
}
.nx-form__captcha-area {
  display: flex;
  align-items: center;
  padding: 10rem 0;
  margin-top: 5rem;
}
.nx-form__captcha-label {
  width: 100rem;
  padding-left: 10rem;
  font-size: 16rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .nx-form__captcha-label {
    font-size: 14.5454545455rem;
  }
}
@media (max-width: 445px) {
  .nx-form__captcha-label {
    font-size: 13.9130434783rem;
  }
}
.nx-form__cap-wrap {
  display: flex;
  align-items: center;
  padding-left: 20rem;
}
.nx-form__cap-img-wrap img {
  display: block;
  max-width: 100%;
}
.nx-form__cap-reload {
  padding: 0 10rem;
  border: 0;
  background-color: transparent;
}
.nx-form__cap-reload .xicon {
  font-size: 18rem;
}
@media (max-width: 800px) {
  .nx-form__cap-reload .xicon {
    font-size: 16.3636363636rem;
  }
}
@media (max-width: 445px) {
  .nx-form__cap-reload .xicon {
    font-size: 15.652173913rem;
  }
}
.nx-form__cap-input {
  width: 130rem;
  height: 45rem;
  border: 1rem solid #e5e5e5;
  padding: 0 15rem;
  font-size: 14rem;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .nx-form__cap-input {
    font-size: 12.7272727273rem;
  }
}
@media (max-width: 445px) {
  .nx-form__cap-input {
    font-size: 12.1739130435rem;
  }
}
.nx-form__email-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 650rem;
}
.nx-form__email-wrap:not(:last-child) {
  width: calc(100% - 210rem);
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__email-wrap:not(:last-child) {
    width: calc(100% - 170rem);
  }
}
@media (max-width: 640px) {
  .nx-form__email-wrap:not(:last-child) {
    width: 100%;
    max-width: none;
  }
}
.nx-form__email-item {
  display: flex;
  align-items: center;
  width: 50%;
}
.nx-form__email-item:not(:last-child)::after {
  content: "@";
  display: inline-block;
  flex-shrink: 0;
  margin: 0 10rem;
  font-size: 18rem;
  color: #555;
  text-align: center;
}
@media (max-width: 800px) {
  .nx-form__email-item:not(:last-child)::after {
    font-size: 16.3636363636rem;
  }
}
@media (max-width: 445px) {
  .nx-form__email-item:not(:last-child)::after {
    font-size: 15.652173913rem;
  }
}
.nx-form__email-item .nx-form__input {
  max-width: none;
}
.nx-form__tel-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 650rem;
  /* Media Query */
}
@media (max-width: 1024px) {
  .nx-form__tel-wrap {
    max-width: none;
  }
}
.nx-form__tel-item {
  display: flex;
  align-items: center;
  width: 25%;
}
.nx-form__tel-item:not(:first-child) {
  width: 37.5%;
}
.nx-form__tel-item:not(:first-child)::before {
  content: "–";
  display: inline-block;
  flex-shrink: 0;
  margin: 0 10rem;
  font-size: 18rem;
  color: #555;
  text-align: center;
}
@media (max-width: 800px) {
  .nx-form__tel-item:not(:first-child)::before {
    font-size: 16.3636363636rem;
  }
}
@media (max-width: 445px) {
  .nx-form__tel-item:not(:first-child)::before {
    font-size: 15.652173913rem;
  }
}
.nx-form__tel-item .nx-form__input {
  max-width: none;
}
.nx-form__select {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 45rem 0 30rem;
  font-size: 15rem;
  border: 0;
  cursor: pointer;
  appearance: none;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__select {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__select {
    font-size: 13.0434782609rem;
  }
}
@media (max-width: 800px) {
  .nx-form__select {
    padding: 0 35rem 0 20rem;
  }
}
@media (max-width: 640px) {
  .nx-form__select {
    padding: 0 30rem 0 10rem;
  }
}
.nx-form__select::-ms-expand {
  display: none;
}
.nx-form__select-wrap {
  position: relative;
  width: 100%;
  max-width: 650rem;
  height: 50rem;
  border: 1px solid #e5e5e5;
  /* Media Query */
}
@media (max-width: 1024px) {
  .nx-form__select-wrap {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .nx-form__select-wrap {
    height: 45rem;
  }
}
.nx-form__input-area.email-col .nx-form__select-wrap {
  max-width: 200rem;
  margin-left: 10rem;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__input-area.email-col .nx-form__select-wrap {
    max-width: 160rem;
  }
}
@media (max-width: 640px) {
  .nx-form__input-area.email-col .nx-form__select-wrap {
    max-width: none;
    margin: 10rem 0 0;
  }
}

.nx-form__select-wrap:not(.custom-select)::after {
  content: "\e936";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 30rem;
  font-family: xeicon !important;
  font-style: normal;
  color: #666;
  line-height: 1;
  font-variant: normal;
  text-transform: none;
  speek: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateY(-50%);
  transition: transform 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__select-wrap:not(.custom-select)::after {
    right: 20rem;
  }
}
@media (max-width: 640px) {
  .nx-form__select-wrap:not(.custom-select)::after {
    right: 10rem;
  }
}
.nx-form__select-wrap:not(.custom-select).on::after {
  transform: translateY(-50%) rotate(180deg);
}
.nx-form__select-icon {
  flex-shrink: 0;
  color: #666;
}
.nx-form__textarea {
  width: 100%;
  height: 200rem;
  padding: 20rem 30rem;
  font-size: 15rem;
  border: 1px solid #e5e5e5;
  resize: none;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__textarea {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__textarea {
    font-size: 13.0434782609rem;
  }
}
@media (max-width: 800px) {
  .nx-form__textarea {
    padding: 20rem;
  }
}
@media (max-width: 640px) {
  .nx-form__textarea {
    height: 150rem;
    padding: 10rem;
  }
}
.nx-form__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 48rem;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 2501;
}
@media (max-width: 800px) {
  .nx-form__spinner {
    font-size: 43.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__spinner {
    font-size: 36.9230769231rem;
  }
}
.nx-form__action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200rem;
  height: 60rem;
  padding: 0 30rem;
  margin: 80rem auto 0;
  font-size: 16rem;
  font-weight: 600;
  color: #fff;
  font-weight: 500;
  background-color: #222;
  transition-property: color, border-color, background-color;
  transition-duration: 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__submit {
    font-size: 14.5454545455rem;
  }
}
@media (max-width: 445px) {
  .nx-form__submit {
    font-size: 13.9130434783rem;
  }
}
@media (min-width: 1025px) {
  .nx-form__submit:focus, .nx-form__submit:hover {
    background-color: var(--primary-color);
  }
}
@media (max-width: 800px) {
  .nx-form__submit {
    max-width: 160rem;
    height: 50rem;
    padding: 0 20rem;
    margin-top: 50rem;
  }
}
.nx-form__term {
  position: relative;
  margin-top: 50rem;
}
.nx-form__term-wrap + .nx-form__term-wrap {
  margin-top: 30rem;
}
.nx-form__term-content {
  height: 180rem;
  overflow-y: auto;
  padding: 20rem 30rem;
  border: 1px solid #e5e5e5;
  font-size: 15rem;
  line-height: 1.6;
  /* Media Query */
}
@media (max-width: 800px) {
  .nx-form__term-content {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__term-content {
    font-size: 13.0434782609rem;
  }
}
.nx-form__term-content:not(:first-child) {
  margin-top: 20rem;
}
@media (max-width: 800px) {
  .nx-form__term-content {
    padding: 20rem;
  }
}
@media (max-width: 640px) {
  .nx-form__term-content {
    padding: 15rem;
  }
}
.nx-form__term-content p {
  font-size: 15rem;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .nx-form__term-content p {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .nx-form__term-content p {
    font-size: 13.0434782609rem;
  }
}
.nx-form__term-detail {
  font-size: 16rem;
  font-weight: 500;
  color: var(--primary-color);
  border: 0;
  background-color: transparent;
}
.nx-form__term-detail:focus, .nx-form__term-detail:hover {
  text-decoration: underline;
}
.nx-form__term-action {
  margin-top: 10rem;
}
.type-box .nx-form__term-action {
  padding: 15rem 30rem;
  margin-top: 0;
  border: solid #e5e5e5;
  border-width: 0 1px 1px 1px;
  background-color: #f8f8f8;
  /* Media Query */
}
@media (max-width: 800px) {
  .type-box .nx-form__term-action {
    padding: 15rem 20rem;
  }
}
@media (max-width: 640px) {
  .type-box .nx-form__term-action {
    padding: 10rem;
  }
}
.nx-form__term-action.check-all {
  text-align: center;
}
.nx-form__term-action.check-all:not(:first-child) {
  margin-top: 40rem;
}
.nx-form__counter {
  display: block;
  margin-top: 10rem;
  font-size: 13rem;
  color: #999;
  text-align: right;
}
@media (max-width: 800px) {
  .nx-form__counter {
    font-size: 11.8181818182rem;
  }
}
@media (max-width: 445px) {
  .nx-form__counter {
    font-size: 11.3043478261rem;
  }
}
.nx-form__counter-wrap {
  position: relative;
  width: 100%;
}
.nx-form__counter-wrap:has(.nx-form__input) {
  max-width: 650rem;
}
.nx-form__error {
  display: block;
  width: 100%;
  margin-top: 10rem;
  font-size: 14rem;
  color: var(--primary-error);
}
@media (max-width: 800px) {
  .nx-form__error {
    font-size: 12.7272727273rem;
  }
}
@media (max-width: 445px) {
  .nx-form__error {
    font-size: 12.1739130435rem;
  }
}
.nx-form .form-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  transition-property: visibility, opacity;
  transition-duration: 0.3s;
  z-index: 2001;
}
.nx-form .form-mask.show {
  visibility: visible;
  opacity: 1;
}
.nx-form .form-mask__loader {
  font-size: 50rem;
  color: var(--primary-color);
}
@media (max-width: 800px) {
  .nx-form .form-mask__loader {
    font-size: 45.4545454545rem;
  }
}
@media (max-width: 445px) {
  .nx-form .form-mask__loader {
    font-size: 38.4615384615rem;
  }
}

/*─────────── Check &amp; Radio ───────────*/
.chk-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0 5rem;
}
.chk-item__input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  transform: translateY(2px);
  /* Media Query */
}
@media (min-width: 1025px) {
  .chk-item__input:focus:not(:checked)::before, .chk-item__input:hover:not(:checked)::before {
    color: #222;
  }
  .chk-item__input:focus-within:not(:checked) ~ .chk-item__text {
    color: #222;
  }
}
.chk-item__input::-ms-expand {
  display: none;
}
.chk-item__input::before {
  font-size: 20rem;
  color: #888;
  transition: color 0.3s;
}
@media (max-width: 800px) {
  .chk-item__input::before {
    font-size: 18.1818181818rem;
  }
}
@media (max-width: 445px) {
  .chk-item__input::before {
    font-size: 15.3846153846rem;
  }
}
.chk-item__input:checked::before {
  color: var(--primary-info);
}
.chk-item__input:checked ~ .chk-item__text {
  color: #222;
}
.chk-item__input--radio:checked::before {
  content: "\e9c7";
}
.chk-item__input--checkbox:checked::before {
  content: "\e92d";
}
.chk-item__text {
  align-self: center;
  font-size: 16rem;
  color: #888;
  transition: color 0.3s;
}
@media (max-width: 800px) {
  .chk-item__text {
    font-size: 14.5454545455rem;
  }
}
@media (max-width: 445px) {
  .chk-item__text {
    font-size: 13.9130434783rem;
  }
}
@media (min-width: 1025px) {
  .chk-item__text:focus, .chk-item__text:hover {
    color: #222;
  }
}

/*───────────// Check &amp; Radio ───────────*/
/*─────────── Files Upload ───────────*/
.upload-file {
  position: relative;
}
.upload-file__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  /* Media Query */
}
@media (min-width: 1025px) {
  .upload-file__input:focus:focus-within ~ .nx-form__file-btn {
    color: var(--primary-color);
    background-color: transparent;
  }
}
.upload-file__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120rem;
  height: 50rem;
  font-size: 15rem;
  font-weight: 500;
  color: #fff;
  border: 0;
  background-color: #222;
  transition: background-color 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .upload-file__btn {
    font-size: 13.6363636364rem;
  }
}
@media (max-width: 445px) {
  .upload-file__btn {
    font-size: 13.0434782609rem;
  }
}
@media (min-width: 1025px) {
  .upload-file__btn:hover {
    background-color: var(--primary-color);
  }
}
@media (max-width: 640px) {
  .upload-file__btn {
    height: 45rem;
  }
}
.upload-file__info {
  margin-top: 10rem;
}
.upload-file__info-item {
  display: flex;
  gap: 0 3rem;
  position: relative;
  padding-left: 10rem;
  font-size: 14rem;
  color: #777;
  /* Media Query */
}
@media (max-width: 800px) {
  .upload-file__info-item {
    font-size: 12.7272727273rem;
  }
}
@media (max-width: 445px) {
  .upload-file__info-item {
    font-size: 12.1739130435rem;
  }
}
@media (max-width: 800px) {
  .upload-file__info-item {
    padding-left: 7rem;
  }
}
.upload-file__info-item::before {
  content: "";
  position: absolute;
  top: 9rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #777;
  /* Media Query */
}
@media (max-width: 800px) {
  .upload-file__info-item::before {
    top: 8rem;
  }
}
.upload-file__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5rem 0;
  margin-top: 10rem;
}
.upload-file__item {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-width: 1px;
  padding: 3rem 10rem 3rem 15rem;
  border-radius: 20rem;
  background-color: var(--bright-gray-eight);
  /* Media Query */
}
@media (max-width: 800px) {
  .upload-file__item {
    padding: 3rem 7rem 3rem 10rem;
  }
}
.upload-file__text {
  display: flex;
  gap: 0 3rem;
  max-width: 100%;
  min-width: 1px;
  font-size: 14rem;
  color: #444;
}
@media (max-width: 800px) {
  .upload-file__text {
    font-size: 12.7272727273rem;
  }
}
@media (max-width: 445px) {
  .upload-file__text {
    font-size: 12.1739130435rem;
  }
}
.upload-file__icon {
  flex-shrink: 0;
  margin-right: 5rem;
  font-size: 20rem;
}
@media (max-width: 800px) {
  .upload-file__icon {
    font-size: 18.1818181818rem;
  }
}
@media (max-width: 445px) {
  .upload-file__icon {
    font-size: 15.3846153846rem;
  }
}
.upload-file__name {
  max-width: 100%;
  min-width: 1px;
  overflow: hidden;
  word-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.upload-file__ext {
  flex-shrink: 0;
}
.upload-file__size {
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: 3rem;
  font-size: 13rem;
  color: #999;
}
@media (max-width: 800px) {
  .upload-file__size {
    font-size: 11.8181818182rem;
  }
}
@media (max-width: 445px) {
  .upload-file__size {
    font-size: 11.3043478261rem;
  }
}
.upload-file__delete {
  flex-shrink: 0;
  margin-left: 10rem;
  font-size: 30rem;
  color: #aaa;
  border: 0;
  background-color: transparent;
  transition: color 0.3s;
  /* Media Query */
}
@media (max-width: 800px) {
  .upload-file__delete {
    font-size: 27.2727272727rem;
  }
}
@media (max-width: 445px) {
  .upload-file__delete {
    font-size: 23.0769230769rem;
  }
}
@media (min-width: 1025px) {
  .upload-file__delete:hover {
    color: var(--primary-error);
  }
}

/*─────────── Files Upload ───────────*/</pre></body></html>