@import url(https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
/*
.l-wrapper {
	background: none;
	&::before,
	&::after {
		background: none;
	}
}
*/
.l-header {
  background-color: #fff;
}

.l-footer__copyright {
  background-color: #fff;
}
.l-footer__copyright span {
  color: #666;
}

.p-progress-bar-2 {
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 80%;
}
.p-progress-bar-2::before, .p-progress-bar-2::after {
  bottom: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
}
.p-progress-bar-2::before {
  content: "0%";
  left: 0;
  transform: translate(-50%, -0.6666666667em);
}
.p-progress-bar-2::after {
  content: "100%";
  right: 0;
  transform: translate(50%, -0.6666666667em);
}
.p-progress-bar-2__inner {
  background-color: #ECECEC;
  border-radius: 100vh;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-progress-bar-2__off {
  border-radius: 100vh;
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.p-progress-bar-2__off > span {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.p-progress-bar-2__off > span::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.p-progress-bar-2__off > span:first-child {
  border-radius: 100vh 0 0 100vh;
}
.p-progress-bar-2__off > span:last-child {
  border-radius: 0 100vh 100vh 0;
}
.p-progress-bar-2__off > span:last-child::after {
  display: none;
}
.p-progress-bar-2__off > span.-on {
  cursor: pointer;
}
.p-progress-bar-2__on {
  background-color: #38B8D2;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 0;
  z-index: 1;
}

.c-validate-flag {
  background-color: #DDE8EE;
  border-radius: 100vh;
  flex-shrink: 0;
  height: 24px;
  margin-right: 8px;
  position: relative;
  width: 24px;
}
.c-validate-flag::after {
  background: url(../images/ico-check-gry.svg) 0% 0% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 16px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.-valid-pass .c-validate-flag {
  animation: valid-pass 0.3s forwards;
}
.-valid-pass .c-validate-flag::after {
  background-image: url(../images/ico-check-wht.svg);
}
@keyframes valid-pass {
  0% {
    background-color: #DDE8EE;
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    background-color: #27D48D;
    transform: scale(1);
  }
}

.c-validate-error {
  background-color: #FFE8E8;
  border-radius: 10px;
  bottom: 100%;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.2);
  color: #DC2329;
  font-size: 1rem;
  left: 16px;
  line-height: 1.5em;
  padding: 16px;
  position: absolute;
  transform: translate(0%, 8px);
  width: calc(100% - 32px);
  z-index: 1;
}
.c-validate-error::before {
  background: rgba(0, 0, 0, 0.2);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  content: "";
  display: block;
  height: 9px;
  left: 24px;
  position: absolute;
  top: 100%;
  width: 13px;
}
.c-validate-error::after {
  background: #FFE8E8;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  content: "";
  display: block;
  height: 8px;
  left: 24px;
  position: absolute;
  top: 100%;
  width: 12px;
}
.c-validate-error__btn-close {
  cursor: pointer;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  z-index: 1;
}
.c-validate-error__btn-close::before, .c-validate-error__btn-close::after {
  background: #000;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 50%;
}
.c-validate-error__btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-validate-error__btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-validate-error__btn-close:hover {
  opacity: 0.5;
}

.p-entry {
  padding-bottom: 80px;
  padding-top: 80px;
}

.p-form {
  overflow: hidden;
  padding-bottom: 80px;
  padding-top: 80px;
}
.p-form__note {
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 2.5em;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}
.p-form__note.-caution {
  color: #B62126;
}
.p-form__sections {
  align-items: flex-start;
  display: flex;
  flex-wrap: nowrap;
  left: 0;
  margin-top: 40px;
  position: relative;
  top: 0;
  width: 100%;
}
.p-form__sections__sec {
  flex-shrink: 0;
  width: 100%;
}
.p-form__user-name {
  align-items: center;
  display: flex;
}
.p-form__user-name__col {
  margin-right: 24px;
  width: 50%;
}
.p-form__user-name__col:last-child {
  margin-right: 0;
}
.p-form__birth {
  align-items: center;
  display: flex;
}
.p-form__birth__col {
  margin-right: 24px;
}
.p-form__birth__col:nth-of-type(1) {
  width: 80px;
}
.p-form__birth__col:nth-of-type(2) {
  width: 60px;
}
.p-form__birth__col:nth-of-type(3) {
  width: 60px;
}
.p-form__birth > span {
  margin-left: -8px;
  margin-right: 16px;
}
.p-form__birth > span:last-of-type {
  margin-right: 0;
}
.p-form__gender {
  align-items: center;
  display: flex;
  padding-bottom: 12px;
  padding-top: 12px;
}
.p-form__gender__col {
  margin-right: 24px;
}
.p-form__gender__col:last-child {
  margin-right: 0;
}
.p-form__gender__col input {
  margin-right: 16px;
}
.p-form__postal-code {
  align-items: center;
  display: flex;
}
.p-form__postal-code__col {
  margin-right: 24px;
  width: 100px;
}
.p-form__postal-code__col:last-child {
  margin-right: 0;
}
.p-form__postal-code > span {
  margin-left: -8px;
  margin-right: 16px;
}
.p-form__auto-input {
  line-height: 48px;
}
.p-form .c-btns {
  padding-top: 80px;
}
.p-form .c-btns .c-btn-03 {
  max-width: 200px;
}
.p-form .c-btns .c-btn-02 {
  max-width: 400px;
}
.p-form .c-btns + .c-btn-save {
  display: none;
}
.p-form__btn-search-company {
  cursor: pointer;
  height: 48px !important;
  margin-left: 16px;
  width: 160px;
}
.p-form__btn-edit {
  cursor: pointer;
  max-width: 280px;
  width: 100%;
}

html[lang=en] .p-form .c-btns > * {
  font-size: 1rem;
}
html[lang=en] .p-form .c-btns > *.-small {
  font-size: 0.75rem;
}

html[lang=pt] .p-form .c-btns > * {
  font-size: 0.875rem;
}
html[lang=pt] .p-form .c-btns > *.-small {
  font-size: 0.65625rem;
}

html[lang=vi] .p-form .c-btns > * {
  font-size: 1.125rem;
}
html[lang=vi] .p-form .c-btns > *.-small {
  font-size: 0.84375rem;
}

html[lang=my] .p-form .c-btns > * {
  font-size: 1rem;
}
html[lang=my] .p-form .c-btns > *.-small {
  font-size: 0.75rem;
}

.-is-confirm .p-form__sections {
  flex-direction: column;
}
.-is-confirm .p-form__sections__sec {
  margin-bottom: 40px;
}
.-is-confirm dd {
  padding-bottom: 0.75em;
  padding-top: 0.75em;
  line-height: 1.5em;
}
.-is-confirm .c-btns {
  padding-top: 40px;
}

.p-form-required-icon,
.p-form-any-icon {
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  margin-left: auto;
  padding: 0.5em 0.6666666667em;
  white-space: nowrap;
}

.p-form-required-icon {
  background-color: #DC2329;
}

.p-form-any-icon {
  background-color: #5B90BE;
}

.p-form-company-name {
  align-items: center;
  display: flex;
}

.p-entry-complete {
  padding-bottom: 80px;
  padding-top: 80px;
}
.p-entry-complete__title {
  color: #222C64;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.p-entry-complete__message {
  margin-top: 40px;
  text-align: center;
}
.p-entry-complete__message p {
  font-size: 1rem;
  line-height: 2;
}

.p-message-has-strage {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
.p-message-has-strage .c-btns {
  margin-top: 24px;
}
.p-message-has-strage .c-btns > * {
  cursor: pointer;
  width: 200px;
}

html[lang=my] .p-message-has-strage .c-btns > * {
  font-size: 0.875rem;
}

.p-message-save {
  color: #8CACBC;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-modal-search-company {
  width: 400px;
}
.p-modal-search-company__form {
  align-items: center;
  display: flex;
}
.p-modal-search-company__form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #B6CBD6;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.p-modal-search-company__form input::-webkit-input-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-modal-search-company__form input:-moz-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-modal-search-company__form input::-moz-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-modal-search-company__form input:-ms-input-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-modal-search-company__form button {
  background-color: #8CACBC;
  border-radius: 0 4px 4px 0;
  color: #fff;
  font-size: 1rem;
  height: 48px;
  width: 80px;
}
.p-modal-search-company .p-modal-search-company-results__item {
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 1em;
}
.p-modal-search-company .p-modal-search-company-results__item span {
  font-size: 0.75rem;
  font-weight: 400;
}
.p-modal-search-company .p-modal-search-company-results__not-found {
  font-size: 1rem;
  line-height: 1.5;
  padding: 1em;
  text-align: center;
}

.p-form-successfully {
  padding-bottom: 200px;
  padding-top: 200px;
  text-align: center;
}
.p-form-successfully__hd {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2em;
}
.p-form-successfully p {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1em;
  line-height: 2em;
}
.p-form-successfully__txt-01 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1em;
  line-height: 2em;
}
.p-form-successfully__txt-02 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 3em;
  line-height: 2em;
}
.p-form-successfully__btns {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.p-form-successfully__btns .c-btn-02 {
  width: 240px;
}
.p-form-successfully__btns .c-btn-03 {
  margin-right: 16px;
  width: 200px;
}

.p-form-item {
  background-color: #F9FAFB;
  position: relative;
}
.p-form-item:nth-of-type(2n) {
  background-color: #fff;
}
.p-form-item dl {
  align-items: flex-start;
  display: flex;
  font-size: 1rem;
  padding: 24px;
  position: relative;
}
.p-form-item dl dt {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  padding-bottom: 0.75em;
  padding-top: 0.75em;
  line-height: 1.5em;
  font-weight: 700;
  width: 240px;
}
.p-form-item dl dd {
  font-size: 1rem;
  line-height: 1.4666666667em;
  padding-left: 16px;
  width: 100%;
}
.p-form-item dl dd input[type=text], .p-form-item dl dd input[type=number] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #B6CBD6;
  border-radius: 4px;
  font-size: 1rem;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.p-form-item dl dd input[type=text]::-webkit-input-placeholder, .p-form-item dl dd input[type=number]::-webkit-input-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-form-item dl dd input[type=text]:-moz-placeholder, .p-form-item dl dd input[type=number]:-moz-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-form-item dl dd input[type=text]::-moz-placeholder, .p-form-item dl dd input[type=number]::-moz-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-form-item dl dd input[type=text]:-ms-input-placeholder, .p-form-item dl dd input[type=number]:-ms-input-placeholder {
  color: #707070;
  font-size: 0.875rem;
}
.p-form-item dl dd input[type=radio] {
  height: 24px;
  width: 24px;
}
.p-form-item dl dd select {
  background-color: #fff;
  border: 1px solid #B6CBD6;
  border-radius: 4px;
  font-size: 1rem;
  height: 48px;
  padding-left: 8px;
  width: 100%;
}
.p-form-item dl dd select::-webkit-input-placeholder {
  color: #707070;
}
.p-form-item dl dd select:-moz-placeholder {
  color: #707070;
}
.p-form-item dl dd select::-moz-placeholder {
  color: #707070;
}
.p-form-item dl dd select:-ms-input-placeholder {
  color: #707070;
}
.p-form-item dl dd textarea {
  background-color: #fff;
  border: 1px solid #B6CBD6;
  border-radius: 4px;
  font-size: 1rem;
  height: 240px;
  padding: 13px 20px;
  width: 100%;
}
.p-form-item dl dd textarea::-webkit-input-placeholder {
  color: #707070;
}
.p-form-item dl dd textarea:-moz-placeholder {
  color: #707070;
}
.p-form-item dl dd textarea::-moz-placeholder {
  color: #707070;
}
.p-form-item dl dd textarea:-ms-input-placeholder {
  color: #707070;
}
.p-form-item dl dd p {
  line-height: 1.5;
}
.p-form-item dl dd * + p {
  margin-top: 0.5em;
}
.p-form-item.--consent {
  padding: 24px;
  font-size: 1rem;
  line-height: 1.4666666667em;
  width: 100%;
}
.p-form-item.--consent dl {
  flex-direction: column;
  padding: 0;
}
.p-form-item.--consent dl dt {
  width: 100%;
}
.p-form-item.--consent dl dd {
  padding-left: 0;
  width: 100%;
}
.p-form-item.--consent p {
  line-height: 2;
}
.p-form-item.--consent * + p {
  margin-top: 1em;
}
.p-form-item.--consent .c-check-list .p-form-required-icon,
.p-form-item.--consent .c-check-list .p-form-any-icon {
  margin-right: 16px;
}

.c-label-took {
  align-items: center;
  background-color: #27D48D;
  border-radius: 100vh;
  color: #fff;
  display: flex;
  font-size: 0.6875rem;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  left: 6px;
  letter-spacing: normal;
  line-height: 1;
  position: absolute;
  top: 50%;
  text-align: center;
  transform: translate(0%, -50%);
  width: 48px;
}

@media screen and (max-width: 1432px) { /**/ /**/ /**/
  .p-entry {
    padding-bottom: vw(80, 1432);
    padding-top: vw(80, 1432);
  }
  .p-form {
    padding-bottom: vw(80, 1432);
    padding-top: vw(80, 1432);
  }
  .p-entry-complete {
    padding-bottom: vw(80, 1432);
    padding-top: vw(80, 1432);
  } }

@media screen and (max-width: 1132px) { /**/ }

@media screen and (max-width: 1032px) { /**/ }

@media screen and (max-width: 1000px) { /**/ }

@media screen and (max-width: 932px) { /**/ }

@media screen and (max-width: 767px) { /**/
  .l-body .l-container.-is-input, .l-body .l-container.-is-confirm {
    padding-left: 0;
    padding-right: 0;
  }
  .c-validate-error {
    border-radius: 2.6666666667vw;
    font-size: 4.2666666667vw;
    left: 4.2666666667vw;
    padding: 4.2666666667vw;
    transform: translate(0%, 2.1333333333vw);
    width: calc(100% - 8.5333333333vw);
  }
  .c-validate-error::before {
    height: 2.4vw;
    left: 6.4vw;
    width: 3.4666666667vw;
  }
  .c-validate-error::after {
    height: 2.1333333333vw;
    left: 6.4vw;
    width: 3.2vw;
  }
  .c-validate-error__btn-close {
    height: 8.5333333333vw;
    width: 8.5333333333vw;
  }
  .p-entry {
    padding-bottom: vw(40, 375);
    padding-top: vw(40, 375);
  }
  .p-form {
    padding-bottom: vw(40, 375);
    padding-top: vw(40, 375);
  }
  .p-form__note {
    font-size: 3.7333333333vw;
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
  .p-form__sections {
    margin-top: 10.6666666667vw;
  }
  .p-form__user-name {
    flex-direction: column;
  }
  .p-form__user-name__col {
    margin-bottom: 4.2666666667vw;
    margin-right: 0;
    width: 100%;
  }
  .p-form__user-name__col:last-child {
    margin-bottom: 0;
  }
  .p-form__birth__col {
    margin-right: 1.6vw;
  }
  .p-form__birth__col:nth-of-type(1) {
    width: 21.3333333333vw;
  }
  .p-form__birth__col:nth-of-type(2) {
    width: 16vw;
  }
  .p-form__birth__col:nth-of-type(3) {
    width: 16vw;
  }
  .p-form__birth > span {
    margin-left: 0;
    margin-right: 1.6vw;
  }
  .p-form__gender {
    padding-bottom: 3.2vw;
    padding-top: 3.2vw;
  }
  .p-form__gender__col {
    margin-right: 6.4vw;
  }
  .p-form__gender__col input {
    margin-right: 4.2666666667vw;
  }
  .p-form__postal-code__col {
    margin-right: 6.4vw;
    width: 26.6666666667vw;
  }
  .p-form__postal-code > span {
    margin-left: -2.1333333333vw;
    margin-right: 4.2666666667vw;
  }
  .p-form__auto-input {
    line-height: 12.8vw;
  }
  .p-form .c-btns {
    padding-left: 6.4vw;
    padding-right: 6.4vw;
    padding-top: 10.6666666667vw;
  }
  .p-form .c-btns .c-btn-03 {
    flex-shrink: 0;
    max-width: none;
    width: 34.6666666667vw;
  }
  .p-form .c-btns .c-btn-02 {
    max-width: none;
  }
  .p-form .c-btns .c-btn-save {
    display: none;
  }
  .p-form .c-btns > * {
    font-size: 4.2666666667vw;
  }
  .p-form .c-btns + .c-btn-save {
    display: flex;
    font-size: 4.2666666667vw;
    margin-top: 4.2666666667vw;
    margin-left: 6.4vw;
    margin-right: 6.4vw;
    width: auto;
  }
  .p-form__btn-search-company {
    font-size: 4.2666666667vw;
    height: 12.8vw !important;
    margin-left: 4.2666666667vw;
    width: 42.6666666667vw;
  }
  .p-form__btn-edit {
    font-size: 4.2666666667vw;
    max-width: 74.6666666667vw;
  }
  html[lang=en] .p-form .c-btns > * {
    font-size: 3.2vw;
  }
  html[lang=pt] .p-form .c-btns > * {
    font-size: 2.8vw;
  }
  html[lang=vi] .p-form .c-btns > * {
    font-size: 3.6vw;
  }
  html[lang=my] .p-form .c-btns > * {
    font-size: 3.2vw;
  }
  .-is-confirm .p-form__sections__sec {
    margin-bottom: 10.6666666667vw;
  }
  .-is-confirm .c-btns {
    padding-top: 10.6666666667vw;
  }
  .p-form-required-icon,
  .p-form-any-icon {
    font-size: 3.2vw;
  }
  .p-form-company-name {
    align-items: flex-start;
    flex-direction: column;
  }
  .p-entry-complete {
    padding-bottom: vw(40, 375);
    padding-top: vw(40, 375);
  }
  .p-entry-complete__title {
    font-size: 6.4vw;
  }
  .p-entry-complete__message {
    margin-top: 10.6666666667vw;
  }
  .p-entry-complete__message p {
    font-size: 4.2666666667vw;
  }
  .p-message-has-strage {
    font-size: 3.7333333333vw;
  }
  .p-message-has-strage .c-btns {
    margin-top: 4.2666666667vw;
  }
  .p-message-has-strage .c-btns > * {
    font-size: 3.7333333333vw;
    height: 12.8vw;
    width: 100%;
  }
  html[lang=my] .p-message-has-strage .c-btns > * {
    font-size: 2.9333333333vw;
  }
  .p-message-save {
    font-size: 5.3333333333vw;
  }
  .p-modal-search-company {
    width: 100%;
  }
  .p-modal-search-company__form input {
    font-size: 4.2666666667vw;
    height: 12.8vw;
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
  .p-modal-search-company__form input::-webkit-input-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-modal-search-company__form input:-moz-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-modal-search-company__form input::-moz-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-modal-search-company__form input:-ms-input-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-modal-search-company .p-modal-search-company-results__item {
    font-size: 3.7333333333vw;
  }
  .p-modal-search-company .p-modal-search-company-results__item span {
    font-size: 3.2vw;
  }
  .p-modal-search-company .p-modal-search-company-results__not-found {
    font-size: 3.7333333333vw;
  }
  .p-form-successfully {
    padding-bottom: 26.6666666667vw;
    padding-top: 26.6666666667vw;
  }
  .p-form-successfully__hd {
    font-size: 6.4vw;
  }
  .p-form-successfully p {
    font-size: 3.7333333333vw;
  }
  .p-form-successfully__txt-01 {
    font-size: 3.7333333333vw;
  }
  .p-form-successfully__txt-02 {
    font-size: 3.7333333333vw;
  }
  .p-form-successfully__btns {
    flex-direction: column-reverse;
    margin-top: 6.4vw;
  }
  .p-form-successfully__btns .c-btn-02 {
    width: 64vw;
  }
  .p-form-successfully__btns .c-btn-03 {
    margin-right: 0;
    margin-top: 6.4vw;
    width: 40vw;
  }
  .p-form-item dl {
    flex-direction: column;
    font-size: 4.2666666667vw;
    padding: 6.4vw;
  }
  .p-form-item dl dt {
    padding-bottom: 0;
    padding-top: 0;
    width: 100%;
  }
  .p-form-item dl dd {
    font-size: 4.2666666667vw;
    padding-left: 0;
    padding-top: 4.2666666667vw;
  }
  .p-form-item dl dd input[type=text], .p-form-item dl dd input[type=number] {
    font-size: 4.2666666667vw;
    height: 12.8vw;
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
  .p-form-item dl dd input[type=text]::-webkit-input-placeholder, .p-form-item dl dd input[type=number]::-webkit-input-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-form-item dl dd input[type=text]:-moz-placeholder, .p-form-item dl dd input[type=number]:-moz-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-form-item dl dd input[type=text]::-moz-placeholder, .p-form-item dl dd input[type=number]::-moz-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-form-item dl dd input[type=text]:-ms-input-placeholder, .p-form-item dl dd input[type=number]:-ms-input-placeholder {
    font-size: 3.7333333333vw;
  }
  .p-form-item dl dd input[type=radio] {
    height: 6.4vw;
    width: 6.4vw;
  }
  .p-form-item dl dd select {
    font-size: 4.2666666667vw;
    height: 12.8vw;
    padding-left: 2.1333333333vw;
  }
  .p-form-item dl dd textarea {
    font-size: 4.2666666667vw;
    height: 64vw;
    padding: 3.4666666667vw 5.3333333333vw;
  }
  .p-form-item.--consent {
    font-size: 4.2666666667vw;
    padding-top: 4.2666666667vw;
  }
  .p-form-item.--consent .c-check-list .p-form-required-icon,
  .p-form-item.--consent .c-check-list .p-form-any-icon {
    margin-right: 4.2666666667vw;
  } }
/*# sourceMappingURL=../map/form.css.map */
