@charset "UTF-8";
/* ===========================================
   色・ブレイクポイント（Youth Personnel）
   750px 以下＝SP（375 基準 vw）／751px 以上＝PC（1920 基準 vw・rem）
   =========================================== */
/* ---------- Entry FAB（PCは固定px・SPのみ縮小） ---------- */
@keyframes entry-fab-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.entry-fab {
  position: fixed;
  top: 146px;
  right: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  color: #414897;
  text-decoration: none;
}
@media screen and (max-width: 749px) {
  .entry-fab {
    top: 23.4666666667vw;
    right: 3.2vw;
    width: 23.4666666667vw;
    height: 23.4666666667vw;
  }
}

.entry-fab__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  animation: entry-fab-spin 10s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .entry-fab__bg {
    animation: none;
  }
}

.entry-fab__label {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #414897;
  text-align: center;
  pointer-events: none;
}
@media screen and (max-width: 749px) {
  .entry-fab__label {
    margin-top: 1.0666666667vw;
    font-size: 3.2vw;
    letter-spacing: 0.32vw;
  }
}

.entry-fab__arrow {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: auto;
  margin-top: 4px;
  pointer-events: none;
  transform: scaleX(-1);
  transition: transform 0.4s ease;
}
@media screen and (max-width: 749px) {
  .entry-fab__arrow {
    width: 3.2vw;
    margin-top: 0.5333333333vw;
  }
}

.entry-fab:hover .entry-fab__arrow,
.entry-fab:focus-visible .entry-fab__arrow {
  transform: scaleX(-1) translateX(-5px);
}
@media screen and (max-width: 749px) {
  .entry-fab:hover .entry-fab__arrow,
.entry-fab:focus-visible .entry-fab__arrow {
    transform: scaleX(-1);
  }
}

/* ---------- ヒーロー ---------- */
@media screen and (min-width: 750px) {
  .page-hero--form .page-hero__en {
    width: 11.40625vw;
    max-width: 11.40625vw;
  }
}
@media screen and (max-width: 749px) {
  .page-hero--form .page-hero__en {
    width: 29.0666666667vw;
    max-width: 100%;
  }
}

/* ---------- レイアウト ---------- */
.form-page {
  padding: 2.0833333333vw 0 6.25vw;
}
@media screen and (max-width: 749px) {
  .form-page {
    padding: 6.4vw 0 21.3333333333vw;
  }
}

.form-page__inner {
  box-sizing: border-box;
  max-width: calc(391px + 573px + 143px + 240px);
  margin: 0 auto;
  padding: 0 clamp(20px, 6.25vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 391px) minmax(0, 573px);
  justify-content: center;
  gap: clamp(32px, 7.45vw, 143px);
  align-items: start;
}
@media screen and (min-width: 750px) and (max-width: 1199px) {
  .form-page__inner {
    max-width: 720px;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding: 0 clamp(24px, 4vw, 60px);
  }
}
@media screen and (max-width: 749px) {
  .form-page__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
    grid-template-columns: minmax(0, 1fr);
    gap: 10.6666666667vw;
  }
}

/* ---------- サイドナビ ---------- */
.form-nav {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
}
@media screen and (max-width: 749px) {
  .form-nav {
    gap: 10.6666666667vw;
  }
}
@media screen and (min-width: 750px) and (max-width: 1399px) {
  .form-nav {
    gap: 40px;
  }
}

.form-nav__block {
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
}
@media screen and (max-width: 749px) {
  .form-nav__block {
    gap: 4.2666666667vw;
  }
}

.form-nav__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #1b204f;
}
@media screen and (max-width: 749px) {
  .form-nav__desc {
    font-size: 4vw;
    letter-spacing: 0.12vw;
    line-height: 2;
  }
}
@media screen and (min-width: 750px) and (max-width: 1399px) {
  .form-nav__desc {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.form-nav__tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 3.6458333333vw;
  padding: 1.40625vw 2.5vw;
  background: #dfe2e6;
  color: #1b204f;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
@media screen and (max-width: 749px) {
  .form-nav__tab {
    min-height: 18.6666666667vw;
    padding: 7.2vw 10.6666666667vw;
  }
}
@media screen and (min-width: 750px) and (max-width: 1399px) {
  .form-nav__tab {
    min-height: 70px;
    padding: 24px 40px;
  }
}
.form-nav__tab--active {
  background: #1b204f;
  color: #ffffff;
}
.form-nav__tab--active .form-nav__tab-icon {
  background-image: url("../img/form/icon-tab-arrow-white.svg");
}

.form-nav__tab-label {
  flex: 0 1 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .form-nav__tab-label {
    font-size: 4.2666666667vw;
    letter-spacing: 0.2133333333vw;
  }
}

.form-nav__tab-icon {
  position: absolute;
  top: 50%;
  right: 1.1979166667vw;
  flex-shrink: 0;
  width: 13px;
  height: 11px;
  background: url("../img/form/icon-tab-arrow-dark.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 749px) {
  .form-nav__tab-icon {
    right: 5.3333333333vw;
    width: 3.4666666667vw;
    height: 2.9333333333vw;
  }
}
@media screen and (min-width: 750px) and (max-width: 1399px) {
  .form-nav__tab-icon {
    right: 20px;
    width: 13px;
    height: 11px;
  }
}

/* ---------- フォーム本体 ---------- */
.form-main__title {
  margin: 0 0 2.0833333333vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #1b204f;
}
@media screen and (max-width: 749px) {
  .form-main__title {
    margin-bottom: 8.5333333333vw;
    font-size: 5.3333333333vw;
    letter-spacing: 0.2666666667vw;
    line-height: 1.8;
  }
}

.yp-form {
  display: flex;
  flex-direction: column;
  gap: 1.6666666667vw;
}
@media screen and (max-width: 749px) {
  .yp-form {
    gap: 8.5333333333vw;
  }
}

.yp-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
  margin: 0;
  padding: 0;
  border: 0;
}
@media screen and (max-width: 749px) {
  .yp-form__field {
    gap: 2.1333333333vw;
  }
}
.yp-form__field--radio {
  gap: 0.8333333333vw;
}
@media screen and (max-width: 749px) {
  .yp-form__field--radio {
    gap: 4.2666666667vw;
  }
}

.yp-form__label {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4166666667vw;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #1b204f;
}
.yp-form__label br {
  display: none;
}
.yp-form__label p {
  display: contents;
  margin: 0;
}
.yp-form__label .yp-form__label-text,
.yp-form__label .yp-form__required {
  display: inline;
  white-space: nowrap;
}
@media screen and (max-width: 749px) {
  .yp-form__label {
    gap: 2.1333333333vw;
    font-size: 4vw;
    letter-spacing: 0.12vw;
    line-height: 2;
  }
}

.yp-form__required {
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #01afc3;
}
@media screen and (max-width: 749px) {
  .yp-form__required {
    font-size: 3.2vw;
  }
}

.yp-form__input,
.yp-form__textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 1.0416666667vw 0.8333333333vw;
  border: 1px solid #a1a4c3;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #1b204f;
  transition: border-color 0.2s;
}
.yp-form__input::placeholder,
.yp-form__textarea::placeholder {
  color: #d4d8de;
}
.yp-form__input:focus,
.yp-form__textarea:focus {
  outline: none;
  border-color: #1b204f;
}
@media screen and (max-width: 749px) {
  .yp-form__input,
.yp-form__textarea {
    padding: 5.3333333333vw 4.2666666667vw;
    font-size: 4.5333333333vw;
    letter-spacing: 0.136vw;
  }
}

.yp-form__textarea {
  min-height: 17.1354166667vw;
  resize: vertical;
}
@media screen and (max-width: 749px) {
  .yp-form__textarea {
    min-height: 53.3333333333vw;
  }
}

.yp-form__radios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 749px) {
  .yp-form__radios {
    gap: 6.4vw;
  }
}
.yp-form__radios .wpcf7-form-control-wrap,
.yp-form__radios .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 749px) {
  .yp-form__radios .wpcf7-form-control-wrap,
.yp-form__radios .wpcf7-form-control.wpcf7-radio {
    gap: 6.4vw;
  }
}
.yp-form__radios .wpcf7-list-item {
  display: inline-flex;
  margin: 0;
}
.yp-form__radios .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.5208333333vw;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .yp-form__radios .wpcf7-list-item label {
    gap: 2.6666666667vw;
  }
}
.yp-form__radios input[type=radio] {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/form/icon-radio-outer.svg") center/contain no-repeat;
  cursor: pointer;
  vertical-align: middle;
}
.yp-form__radios input[type=radio]:checked {
  background-image: url("../img/form/icon-radio-inner.svg"), url("../img/form/icon-radio-outer.svg");
  background-size: 8px 8px, contain;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.yp-form__radios .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #1b204f;
}
@media screen and (max-width: 749px) {
  .yp-form__radios .wpcf7-list-item-label {
    font-size: 4vw;
    letter-spacing: 0.12vw;
  }
}

.yp-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5208333333vw;
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .yp-form__radio {
    gap: 2.6666666667vw;
  }
}

.yp-form__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yp-form__radio-mark {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("../img/form/icon-radio-outer.svg") center/contain no-repeat;
}
.yp-form__radio-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: url("../img/form/icon-radio-inner.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.2s;
}

.yp-form__radio-input:checked + .yp-form__radio-mark::after {
  opacity: 1;
}

.yp-form__radio-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #1b204f;
}
@media screen and (max-width: 749px) {
  .yp-form__radio-label {
    font-size: 4vw;
    letter-spacing: 0.12vw;
    line-height: 2;
  }
}

.yp-form__upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208333333vw;
  box-sizing: border-box;
  width: 100%;
  min-height: 4.6354166667vw;
  padding: 1.0416666667vw 0.8333333333vw;
  border-radius: 8px;
  background: #949dac;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.yp-form__upload:hover, .yp-form__upload:focus-visible {
  transform: translate3d(0, -2px, 0);
}
@media screen and (max-width: 749px) {
  .yp-form__upload {
    flex-direction: column;
    gap: 2.1333333333vw;
    min-height: 23.7333333333vw;
    padding: 5.3333333333vw 4.2666666667vw;
    text-align: center;
  }
}

.yp-form__upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yp-form__upload-icon {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
}

.yp-form__upload-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .yp-form__upload-text {
    font-size: 4vw;
    letter-spacing: 0.12vw;
    line-height: 1.6;
  }
}

.yp-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25vw;
  margin-top: 0.4166666667vw;
}
@media screen and (max-width: 749px) {
  .yp-form__actions {
    gap: 6.4vw;
    margin-top: 2.1333333333vw;
  }
}

.yp-form__privacy {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 749px) {
  .yp-form__privacy {
    gap: 3.2vw;
  }
}
.yp-form__privacy .wpcf7-form-control-wrap,
.yp-form__privacy .wpcf7-form-control,
.yp-form__privacy .wpcf7-list-item {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  width: auto;
  height: auto;
  box-shadow: none;
}
.yp-form__privacy label {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 749px) {
  .yp-form__privacy label {
    gap: 3.2vw;
  }
}
.yp-form__privacy input[type=checkbox] {
  flex: 0 0 18px;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #4a505b;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: none;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.yp-form__privacy input[type=checkbox]:checked {
  background-color: #1b204f;
  border-color: #1b204f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M4.7 9.2L1.5 6l1-1 2.2 2.2L9.5 2.4l1 1z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
}
.yp-form__privacy .wpcf7-list-item-label {
  line-height: 1.5;
}

input.yp-form__checkbox {
  flex: 0 0 18px;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #4a505b;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: none;
  cursor: pointer;
}
input.yp-form__checkbox:checked {
  background-color: #1b204f;
  border-color: #1b204f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M4.7 9.2L1.5 6l1-1 2.2 2.2L9.5 2.4l1 1z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
}

.yp-form__privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #1b204f;
}
@media screen and (max-width: 749px) {
  .yp-form__privacy-text {
    font-size: 4vw;
    letter-spacing: 0.12vw;
    line-height: 2;
  }
}

.yp-form__privacy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.yp-form__privacy-link:hover, .yp-form__privacy-link:focus-visible {
  text-decoration-thickness: 2px;
}

.yp-form__submit {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-width: 16.40625vw;
  min-height: 4.1666666667vw;
  padding: 1.4583333333vw 1.3020833333vw 1.4583333333vw 2.0833333333vw;
  overflow: hidden;
  border: 0;
  border-radius: 50px;
  background: #1b204f;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 0.95;
  cursor: pointer;
}
.yp-form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--grade, linear-gradient(128deg, #00b4c6 -67.24%, #01adc3 -56.33%, #079cbd -39.96%, #0f7fb2 -23.58%, #1b58a3 -3.57%, #1e50a1 0.07%, #264b9f 9.16%, #3f3f99 25.54%, #662b91 47.37%, #9c1085 71.02%, #a60c83 74.65%));
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.yp-form__submit:hover::before, .yp-form__submit:focus-visible::before {
  opacity: 1;
}
@media screen and (max-width: 749px) {
  .yp-form__submit {
    width: 100%;
    min-width: 0;
    min-height: 18.6666666667vw;
    padding: 6.4vw 5.3333333333vw 6.4vw 8.5333333333vw;
    font-size: 4.2666666667vw;
    letter-spacing: 0.4266666667vw;
  }
}

.yp-form__submit-label {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: left;
}

.yp-form__submit-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  line-height: 0;
}
.yp-form__submit-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/icon-arrow-contact.svg") center/contain no-repeat;
}

/* ---------- 完了画面 ---------- */
.form-thanks {
  padding: 2.0833333333vw 0 8.3333333333vw;
}
@media screen and (max-width: 749px) {
  .form-thanks {
    padding: 10.6666666667vw 0 26.6666666667vw;
  }
}

.form-thanks__inner {
  box-sizing: border-box;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.1666666667vw;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .form-thanks__inner {
    max-width: none;
    padding: 0 9.3333333333vw;
    gap: 21.3333333333vw;
  }
}

.form-thanks__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625vw;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .form-thanks__content {
    gap: 8vw;
  }
}

.form-thanks__body {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #1b204f;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
.form-thanks__body p {
  margin: 0;
}
@media screen and (max-width: 749px) {
  .form-thanks__body {
    font-size: 4vw;
    letter-spacing: 0.12vw;
    line-height: 2;
  }
}

.form-thanks__title {
  margin: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.375rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #1b204f;
  white-space: nowrap;
}
@media screen and (max-width: 749px) {
  .form-thanks__title {
    font-size: 6.4vw;
    letter-spacing: 0.32vw;
    line-height: 1.8;
    white-space: normal;
  }
}

.form-thanks__btn {
  box-sizing: border-box;
  width: 16.40625vw;
  min-width: 0;
  min-height: 4.1666666667vw;
  margin: 0;
  padding: 1.4583333333vw 1.3020833333vw 1.4583333333vw 2.0833333333vw;
  border: 0;
  background: #1b204f;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .form-thanks__btn {
    margin: 0;
    width: 16.40625vw;
    max-width: none;
    min-height: 4.1666666667vw;
    padding: 1.4583333333vw 1.3020833333vw 1.4583333333vw 2.0833333333vw;
    border: 0;
    background: #1b204f;
    color: #ffffff;
  }
}
@media screen and (max-width: 749px) {
  .form-thanks__btn {
    width: 100%;
    max-width: 81.3333333333vw;
    min-height: 18.6666666667vw;
    padding: 5.8666666667vw 5.3333333333vw 5.8666666667vw 8.5333333333vw;
    font-size: 4vw;
    letter-spacing: 0.4vw;
    background: #1b204f;
    border: 0;
  }
}

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