@charset "UTF-8";
.nx-form {
  position: relative;
}
.nx-form__row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.nx-form__col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 640px) {
  .nx-form__col {
    flex-direction: column;
    padding: 0.9375rem 0.625rem;
  }
}
.nx-form__col.full {
  width: 100%;
}
.nx-form__col.long {
  align-items: flex-start;
}
.nx-form__col.half {
  width: 50%;
}
@media (max-width: 640px) {
  .nx-form__col.half {
    width: 100%;
  }
}
.nx-form__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .nx-form__label {
    font-size: calc(0.875rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__label {
    font-size: calc(0.875rem / 1.15);
  }
}
.nx-form__label > span {
  letter-spacing: 0.15rem;
}
.nx-form__label-area {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 11.25rem;
  height: 5rem;
  padding: 0.9375rem 0.625rem;
}
@media (max-width: 1024px) {
  .nx-form__label-area {
    width: 8.75rem;
  }
}
@media (max-width: 640px) {
  .nx-form__label-area {
    width: 100%;
    height: auto;
    padding: 0;
    font-size: 1rem;
  }
}
.nx-form__required-icon {
  display: inline-block;
  margin-left: 0.1875rem;
  color: var(--primary-import);
}
.nx-form__input {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 40.625rem;
  height: 3.125rem;
  padding: 0 1.875rem;
  background-color: transparent;
  font-size: 0.9375rem;
  border: 1px solid #000;
}
@media (max-width: 768px) {
  .nx-form__input {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__input {
    font-size: calc(0.9375rem / 1.15);
  }
}
@media (max-width: 1024px) {
  .nx-form__input {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .nx-form__input {
    padding: 0 1.25rem;
  }
}
@media (max-width: 640px) {
  .nx-form__input {
    width: 100%;
    height: 2.8125rem;
    padding: 0 0.625rem;
  }
}
.nx-form__input.full {
  max-width: none;
}
.nx-form__input.file-text {
  gap: 0 0.625rem;
}
.fail .nx-form__input {
  border-color: var(--color-error);
}
.success .nx-form__input {
  border-color: var(--color-success);
}
.nx-form__input-area {
  position: relative;
  width: calc(100% - 11.25rem);
  padding: 0.9375rem 1.25rem;
}
@media (max-width: 640px) {
  .nx-form__input-area {
    padding: 0;
    width: 100%;
    margin-top: 0.625rem;
  }
}
.nx-form__input-area.email-col {
  display: flex;
  flex-wrap: wrap;
}
@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: 28.125rem;
}
.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: 28.125rem;
}
.nx-form__input-password .nx-form__input {
  padding-right: 3.125rem;
}
.nx-form__input-password .toggle-password-wrap {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
}
.nx-form__chk-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1.25rem;
  max-width: 43.125rem;
  height: 3.125rem;
}
@media (max-width: 640px) {
  .nx-form__chk-area {
    height: auto;
  }
}
.nx-form__has-btn {
  display: flex;
  gap: 0 0.625rem;
  position: relative;
}
.nx-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 7.5rem;
  height: 3.125rem;
  padding: 0 0.625rem;
  font-size: 0.9375rem;
  color: #fff;
  border: 0;
  background-color: #222;
  transition: color 0.3s, background-color 0.3s;
}
@media (max-width: 768px) {
  .nx-form__btn {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__btn {
    font-size: calc(0.9375rem / 1.15);
  }
}
@media (min-width: 1025px) {
  .nx-form__btn:hover {
    background-color: var(--color-primary);
  }
}
@media (max-width: 640px) {
  .nx-form__btn {
    width: 5.625rem;
    height: 2.8125rem;
  }
}
.nx-form__agree-area {
  margin-top: 5px;
}
.nx-form__captcha-area {
  display: flex;
  align-items: center;
  padding: 0.625rem 0;
  margin-top: 0.3125rem;
}
.nx-form__captcha-label {
  width: 6.25rem;
  padding-left: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .nx-form__captcha-label {
    font-size: calc(1rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__captcha-label {
    font-size: calc(1rem / 1.15);
  }
}
.nx-form__cap-wrap {
  display: flex;
  align-items: center;
  padding-left: 1.25rem;
}
.nx-form__cap-img-wrap img {
  display: block;
  max-width: 100%;
}
.nx-form__cap-reload {
  padding: 0 0.625rem;
  border: 0;
  background-color: transparent;
}
.nx-form__cap-reload .xicon {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .nx-form__cap-reload .xicon {
    font-size: calc(1.125rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__cap-reload .xicon {
    font-size: calc(1.125rem / 1.15);
  }
}
.nx-form__cap-input {
  width: 8.125rem;
  height: 2.8125rem;
  border: 1px solid #e5e5e5;
  padding: 0 0.9375rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .nx-form__cap-input {
    font-size: calc(0.875rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__cap-input {
    font-size: calc(0.875rem / 1.15);
  }
}
.nx-form__email-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 40.625rem;
}
.nx-form__email-wrap:not(:last-child) {
  width: calc(100% - 13.125rem);
}
@media (max-width: 768px) {
  .nx-form__email-wrap:not(:last-child) {
    width: calc(100% - 10.625rem);
  }
}
@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: 1.125rem;
  color: #555;
  text-align: center;
}
@media (max-width: 768px) {
  .nx-form__email-item:not(:last-child)::after {
    font-size: calc(1.125rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__email-item:not(:last-child)::after {
    font-size: calc(1.125rem / 1.15);
  }
}
.nx-form__email-item .nx-form__input {
  max-width: none;
}
.nx-form__tel-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 40.625rem;
}
@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 0.625rem;
  font-size: 1.125rem;
  color: #555;
  text-align: center;
}
@media (max-width: 768px) {
  .nx-form__tel-item:not(:first-child)::before {
    font-size: calc(1.125rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__tel-item:not(:first-child)::before {
    font-size: calc(1.125rem / 1.15);
  }
}
.nx-form__tel-item .nx-form__input {
  max-width: none;
}
.nx-form__select {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 2.8125rem 0 1.875rem;
  background-color: transparent;
  font-size: 0.9375rem;
  border: 1px solid #000;
  cursor: pointer;
  appearance: none;
}
@media (max-width: 768px) {
  .nx-form__select {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__select {
    font-size: calc(0.9375rem / 1.15);
  }
}
@media (max-width: 768px) {
  .nx-form__select {
    padding: 0 2.1875rem 0 1.25rem;
  }
}
@media (max-width: 640px) {
  .nx-form__select {
    padding: 0 1.875rem 0 0.625rem;
  }
}
.nx-form__select::-ms-expand {
  display: none;
}
.nx-form__select-wrap {
  position: relative;
  width: 100%;
  max-width: 40.625rem;
  height: 3.125rem;
  border: 1px solid #e5e5e5;
}
@media (max-width: 1024px) {
  .nx-form__select-wrap {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .nx-form__select-wrap {
    height: 2.8125rem;
  }
}
.nx-form__input-area.email-col .nx-form__select-wrap {
  max-width: 12.5rem;
  margin-left: 0.625rem;
}
@media (max-width: 768px) {
  .nx-form__input-area.email-col .nx-form__select-wrap {
    max-width: 10rem;
  }
}
@media (max-width: 640px) {
  .nx-form__input-area.email-col .nx-form__select-wrap {
    max-width: none;
    margin: 0.625rem 0 0;
  }
}

.nx-form__select-wrap:not(.custom-select)::after {
  content: "\e936";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  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 (max-width: 768px) {
  .nx-form__select-wrap:not(.custom-select)::after {
    right: 1.25rem;
  }
}
@media (max-width: 640px) {
  .nx-form__select-wrap:not(.custom-select)::after {
    right: 0.625rem;
  }
}
.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: 12.5rem;
  padding: 1.25rem 1.875rem;
  font-size: 0.9375rem;
  border: 1px solid #e5e5e5;
  resize: none;
}
@media (max-width: 768px) {
  .nx-form__textarea {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__textarea {
    font-size: calc(0.9375rem / 1.15);
  }
}
@media (max-width: 768px) {
  .nx-form__textarea {
    padding: 1.25rem;
  }
}
@media (max-width: 640px) {
  .nx-form__textarea {
    height: 9.375rem;
    padding: 0.625rem;
  }
}
.nx-form__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3rem;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 2501;
}
@media (max-width: 768px) {
  .nx-form__spinner {
    font-size: calc(3rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__spinner {
    font-size: calc(3rem / 1.3);
  }
}
.nx-form__action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nx-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 3.75rem;
  padding: 0 1.875rem;
  margin: 2.5rem auto;
  border-radius: 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  font-weight: 500;
  background-color: var(--color-primary);
  transition-property: color, border-color, background-color;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .nx-form__submit {
    font-size: calc(1rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__submit {
    font-size: calc(1rem / 1.15);
  }
}
@media (min-width: 1025px) {
  .nx-form__submit:focus, .nx-form__submit:hover {
    background-color: var(--color-primary);
  }
}
@media (max-width: 768px) {
  .nx-form__submit {
    max-width: 10rem;
    height: 3.125rem;
    padding: 0 1.25rem;
    margin-top: 3.125rem;
  }
}
.nx-form__term {
  position: relative;
  margin-top: 3.125rem;
}
.nx-form__term-wrap + .nx-form__term-wrap {
  margin-top: 1.875rem;
}
.nx-form__term-content {
  height: 11.25rem;
  overflow-y: auto;
  padding: 1.25rem 1.875rem;
  border: 1px solid #e5e5e5;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .nx-form__term-content {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__term-content {
    font-size: calc(0.9375rem / 1.15);
  }
}
.nx-form__term-content:not(:first-child) {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .nx-form__term-content {
    padding: 1.25rem;
  }
}
@media (max-width: 640px) {
  .nx-form__term-content {
    padding: 0.9375rem;
  }
}
.nx-form__term-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .nx-form__term-content p {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__term-content p {
    font-size: calc(0.9375rem / 1.15);
  }
}
.nx-form__term-detail {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  border: 0;
  background-color: transparent;
}
.nx-form__term-detail:focus, .nx-form__term-detail:hover {
  text-decoration: underline;
}
.nx-form__term-action {
  margin-top: 0.625rem;
}
.type-box .nx-form__term-action {
  padding: 0.9375rem 1.875rem;
  margin-top: 0;
  border: solid #e5e5e5;
  border-width: 0 1px 1px 1px;
  background-color: #f8f8f8;
}
@media (max-width: 768px) {
  .type-box .nx-form__term-action {
    padding: 0.9375rem 1.25rem;
  }
}
@media (max-width: 640px) {
  .type-box .nx-form__term-action {
    padding: 0.625rem;
  }
}
.nx-form__term-action.check-all {
  text-align: center;
}
.nx-form__term-action.check-all:not(:first-child) {
  margin-top: 2.5rem;
}
.nx-form__counter {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  color: #999;
  text-align: right;
}
@media (max-width: 768px) {
  .nx-form__counter {
    font-size: calc(0.8125rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__counter {
    font-size: calc(0.8125rem / 1.15);
  }
}
.nx-form__counter-wrap {
  position: relative;
  width: 100%;
}
.nx-form__counter-wrap:has(.nx-form__input) {
  max-width: 40.625rem;
}
.nx-form__error {
  display: block;
  width: 100%;
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-error);
}
@media (max-width: 768px) {
  .nx-form__error {
    font-size: calc(0.875rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form__error {
    font-size: calc(0.875rem / 1.15);
  }
}
.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: 3.125rem;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .nx-form .form-mask__loader {
    font-size: calc(3.125rem / 1.1);
  }
}
@media (max-width: 445px) {
  .nx-form .form-mask__loader {
    font-size: calc(3.125rem / 1.3);
  }
}

.chk-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0 0.3125rem;
}
.chk-item__input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  transform: translateY(2px);
}
@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: 1.25rem;
  color: #888;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .chk-item__input::before {
    font-size: calc(1.25rem / 1.1);
  }
}
@media (max-width: 445px) {
  .chk-item__input::before {
    font-size: calc(1.25rem / 1.15);
  }
}
.chk-item__input:checked::before {
  color: var(--color-primary);
}
.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: 1rem;
  color: #888;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .chk-item__text {
    font-size: calc(1rem / 1.1);
  }
}
@media (max-width: 445px) {
  .chk-item__text {
    font-size: calc(1rem / 1.15);
  }
}
@media (min-width: 1025px) {
  .chk-item__text:focus, .chk-item__text:hover {
    color: #222;
  }
}

.upload-file {
  position: relative;
}
.upload-file__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
@media (min-width: 1025px) {
  .upload-file__input:focus:focus-within ~ .nx-form__file-btn {
    color: var(--color-primary);
    background-color: transparent;
  }
}
.upload-file__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 3.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  border: 0;
  background-color: #222;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .upload-file__btn {
    font-size: calc(0.9375rem / 1.1);
  }
}
@media (max-width: 445px) {
  .upload-file__btn {
    font-size: calc(0.9375rem / 1.15);
  }
}
@media (min-width: 1025px) {
  .upload-file__btn:hover {
    background-color: var(--color-primary);
  }
}
@media (max-width: 640px) {
  .upload-file__btn {
    height: 2.8125rem;
  }
}
.upload-file__info {
  margin-top: 0.625rem;
}
.upload-file__info-item {
  display: flex;
  gap: 0 0.1875rem;
  position: relative;
  padding-left: 0.625rem;
  font-size: 0.875rem;
  color: #777;
}
@media (max-width: 768px) {
  .upload-file__info-item {
    font-size: calc(0.875rem / 1.1);
  }
}
@media (max-width: 445px) {
  .upload-file__info-item {
    font-size: calc(0.875rem / 1.15);
  }
}
@media (max-width: 768px) {
  .upload-file__info-item {
    padding-left: 0.4375rem;
  }
}
.upload-file__info-item::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: #777;
}
@media (max-width: 768px) {
  .upload-file__info-item::before {
    top: 0.5rem;
  }
}
.upload-file__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem 0;
  margin-top: 0.625rem;
}
.upload-file__item {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-width: 1px;
  padding: 0.1875rem 0.625rem 0.1875rem 0.9375rem;
  border-radius: 1.25rem;
  background-color: var(--border-color);
}
@media (max-width: 768px) {
  .upload-file__item {
    padding: 0.1875rem 0.4375rem 0.1875rem 0.625rem;
  }
}
.upload-file__text {
  display: flex;
  gap: 0 0.1875rem;
  max-width: 100%;
  min-width: 1px;
  font-size: 0.875rem;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .upload-file__text {
    font-size: calc(0.875rem / 1.1);
  }
}
@media (max-width: 445px) {
  .upload-file__text {
    font-size: calc(0.875rem / 1.15);
  }
}
.upload-file__icon {
  flex-shrink: 0;
  margin-right: 0.3125rem;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .upload-file__icon {
    font-size: calc(1.25rem / 1.1);
  }
}
@media (max-width: 445px) {
  .upload-file__icon {
    font-size: calc(1.25rem / 1.15);
  }
}
.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: 0.1875rem;
  font-size: 0.8125rem;
  color: #999;
}
@media (max-width: 768px) {
  .upload-file__size {
    font-size: calc(0.8125rem / 1.1);
  }
}
@media (max-width: 445px) {
  .upload-file__size {
    font-size: calc(0.8125rem / 1.15);
  }
}
.upload-file__delete {
  flex-shrink: 0;
  margin-left: 0.625rem;
  font-size: 1.875rem;
  color: #aaa;
  border: 0;
  background-color: transparent;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .upload-file__delete {
    font-size: calc(1.875rem / 1.1);
  }
}
@media (max-width: 445px) {
  .upload-file__delete {
    font-size: calc(1.875rem / 1.3);
  }
}
@media (min-width: 1025px) {
  .upload-file__delete:hover {
    color: var(--color-error);
  }
}