/* color */
/* font */
.input {
  position: relative;
}
.input input {
  border: 0.1rem solid rgb(0, 0, 0);
  border-radius: 0.4rem;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.6rem 1rem;
  width: 100%;
}
.input__container {
  display: flex;
  gap: 0.8rem;
}
.input__container > input {
  flex: 1;
}

.label {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  position: relative;
}
.label--input, .label--select {
  justify-content: flex-start;
  margin-bottom: 0.6rem;
}
.label--radio {
  justify-content: center;
  margin-bottom: 1.6rem;
}
.label > span {
  display: block;
}
.label > span:nth-child(1) {
  aspect-ratio: 1/1;
  background-color: rgb(253, 141, 9);
  width: 0.6rem;
}
.label > span:nth-child(2) {
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .label {
    gap: 0.4rem;
  }
  .label--input, .label--select {
    margin-bottom: 0.4rem;
  }
  .label--radio {
    margin-bottom: 1.4rem;
  }
  .label > span:nth-child(1) {
    width: 0.4rem;
  }
  .label > span:nth-child(2) {
    font-size: 1rem;
  }
}

.navigation {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 2.6rem;
  position: relative;
}
.navigation--next-only {
  justify-content: flex-end;
}
.navigation__item {
  align-items: center;
  background-color: rgb(253, 141, 9);
  border-radius: 0.6rem;
  box-shadow: 0 0.3rem 0 rgb(204, 113, 7);
  color: rgb(255, 255, 255);
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  height: 3.2rem;
  justify-content: space-between;
  padding: 0 1.6rem;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  width: 10.6rem;
}
.navigation__item:hover {
  box-shadow: 0 0.1rem 0 rgb(204, 113, 7);
  translate: 0 0.2rem;
}
.navigation__item.disabled {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .navigation {
    margin-top: 2.2rem;
  }
  .navigation__item {
    border-radius: 0.4rem;
    font-size: 1.2rem;
    height: 2.6rem;
    padding: 0 1.4rem;
    width: 8.6rem;
  }
}

.radio {
  position: relative;
}
.radio > p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
.radio__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.radio__list--column {
  flex-direction: column;
}
.radio__item {
  width: calc((100% - 1rem) / 2);
}
.radio__item--column {
  width: 100%;
}
.radio__item > input {
  display: none;
}
.radio__item > input:checked + label {
  background-color: rgb(253, 141, 9);
  color: rgb(255, 255, 255);
}
.radio__item > label {
  align-items: center;
  border: 0.1rem solid rgb(253, 141, 9);
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  padding: 1.4rem 0;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.radio__item > label:hover {
  background-color: rgb(253, 141, 9);
  color: rgb(255, 255, 255);
}
.radio__item > label > img {
  display: block;
  margin-bottom: 0.8rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .radio > p {
    color: rgb(255, 255, 255);
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    padding: 0.6rem 0;
    position: relative;
    z-index: 1;
  }
  .radio > p::before {
    background-color: rgb(253, 141, 9);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
  }
  .radio__list {
    gap: 0.8rem;
  }
  .radio__item {
    width: calc((100% - 0.8rem) / 2);
  }
  .radio__item--column {
    width: 100%;
  }
  .radio__item > label {
    border-radius: 0.4rem;
    font-size: 1rem;
    padding: 1.2rem 0;
  }
  .radio__item > label > img {
    margin-bottom: 0.6rem;
    height: 1.6rem;
  }
}

.select {
  position: relative;
}
.select__container {
  position: relative;
}
.select__container::after {
  aspect-ratio: 1/1;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.75L6 8.25L10.5 3.75' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
}
.select__container > select {
  appearance: none;
  border: 0.1rem solid rgb(0, 0, 0);
  border-radius: 0.4rem;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.6rem 1rem;
  width: 100%;
}

.submit > p {
  margin-bottom: 0.6rem;
  text-align: center;
}
.submit > p > a {
  color: rgb(26, 115, 232);
  text-decoration: underline;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.submit > p > a:hover {
  opacity: 0.8;
}
.submit > button {
  animation: change-scale 2s infinite linear 0.1s both;
  align-items: center;
  background-color: rgb(92, 177, 66);
  border-radius: 4rem;
  box-shadow: 0 0.3rem 0 rgb(74, 142, 53);
  color: rgb(255, 255, 255);
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: space-between;
  padding: 0.8rem 1.4rem;
  position: relative;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  width: 100%;
}
.submit > button:hover {
  box-shadow: 0 0.1rem 0 rgb(74, 142, 53);
  translate: 0 0.2rem;
}
.submit > button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.footer {
  position: relative;
}
.footer__top {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  padding: 1.2rem 0;
}
.footer__top > img {
  display: block;
  width: 1.4rem;
}
.footer__top > p {
  font-size: 0.8rem;
  line-height: 1.4;
}
.footer__bottom {
  background-color: rgb(253, 141, 9);
  padding: 1.4rem 0;
}
.footer__bottom-nav-list {
  align-items: center;
  display: flex;
  gap: 3rem;
  justify-content: center;
}
.footer__bottom-nav-item {
  color: rgb(255, 255, 255);
  font-size: 0.6rem;
  text-decoration: underline;
}
.footer__bottom-nav-item > a {
  display: block;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.footer__bottom-nav-item > a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .footer__top {
    gap: 0.6rem;
    padding: 1rem 0;
  }
  .footer__top > img {
    width: 1.2rem;
  }
  .footer__top > p {
    font-size: 0.8rem;
  }
  .footer__bottom {
    padding: 1.2rem 0;
  }
  .footer__bottom-nav-list {
    gap: 2.4rem;
  }
}

.header {
  padding: 0.8rem 1.2rem;
  position: relative;
}
.header__left {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.header__left > p {
  font-size: 0.6rem;
  line-height: 1.2;
}
.header__logo {
  display: block;
  width: 9.8rem;
}
.header__logo > img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0.6rem 1rem;
  }
  .header__left {
    gap: 0.8rem;
  }
  .header__logo {
    width: 8rem;
  }
}

.main {
  overflow: hidden;
  position: relative;
}

.hero {
  display: none;
  position: relative;
}
.hero.none {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero {
    align-items: center;
    background-image: url(../img/global-form-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    padding: 0.8rem 0;
    position: relative;
  }
  .hero > img {
    bottom: 0;
    left: 44%;
    position: absolute;
    transform: translateX(-50%);
    width: 8.5rem;
    z-index: 2;
  }
  .hero::before, .hero::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .hero::before {
    background-color: rgba(255, 130, 13, 0.4);
  }
  .hero::after {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .hero > p {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
  }
  .hero > p::after {
    background-color: rgb(253, 141, 9);
    bottom: 0;
    content: "";
    height: 0.1rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
  }
  .hero__content {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 95%;
    z-index: 2;
  }
  .hero__left > h2 {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.2rem;
  }
  .hero__left > h2 strong {
    font-size: 1rem;
    font-weight: 700;
  }
  .hero__left > h2 > span {
    position: relative;
    z-index: 1;
  }
  .hero__left > h2 > span::after {
    background-color: rgb(253, 141, 9);
    bottom: 0.2rem;
    content: "";
    height: 0.1rem;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
  }
  .hero__left > p:nth-of-type(1) {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
  .hero__left > p:nth-of-type(1) > span {
    display: inline-block;
    padding: 0.4rem 0.6rem 0.4rem 0;
    position: relative;
    z-index: 1;
  }
  .hero__left > p:nth-of-type(1) > span::after {
    background-color: rgb(253, 141, 9);
    bottom: 0;
    content: "";
    left: -100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  .hero__left > p:nth-of-type(1) > span:nth-child(1) {
    margin-bottom: 0.2rem;
  }
  .hero__left > p:nth-of-type(2) {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
  .hero__left > p:nth-of-type(3) {
    font-size: 0.6rem;
  }
  .hero__right > p {
    font-size: 0.6rem;
    line-height: 1.4;
    text-align: right;
  }
  .hero__right > ul {
    display: flex;
    gap: 0.4rem;
    margin: 0.8rem 0;
  }
  .hero__right-item {
    align-items: center;
    background-color: rgb(255, 255, 255);
    border: 0.1rem solid rgb(0, 0, 0);
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 0.3rem 0.1rem;
    position: relative;
  }
  .hero__right-item > h3 {
    font-size: 0.5rem;
    line-height: 1.2;
    text-align: center;
  }
  .hero__right-item > span {
    color: rgb(253, 141, 9);
    font-size: 1.2rem;
    left: 0;
    position: absolute;
    text-shadow: 0.1rem 0.1rem 0 rgb(0, 0, 0);
    top: 0;
    transform: translate(-50%, -50%);
  }
}

.flow {
  border-top: 0.2rem solid rgb(253, 141, 9);
  font-weight: 700;
  padding: 1rem 0;
  position: relative;
  text-align: center;
}
.flow > h1 {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  gap: 0.8rem;
  justify-content: center;
}
.flow > h1 > span.primary {
  color: rgb(253, 141, 9);
}
.flow > p {
  font-size: 1rem;
}
.flow > p > span.primary {
  color: rgb(253, 141, 9);
}
.flow > p > span.red {
  color: rgb(230, 0, 18);
}
.flow__step {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}
.flow__step > span {
  font-size: 1.2rem;
}
.flow__step-list {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.flow__step-list > li {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgb(221, 221, 221);
  border-radius: 50%;
  color: rgb(255, 255, 255);
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  position: relative;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  width: 2.5rem;
}
.flow__step-list > li:not(:nth-child(1))::before {
  background-color: rgb(221, 221, 221);
  content: "";
  height: 0.2rem;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  width: 2rem;
}
.flow__step-list > li.active {
  background-color: rgb(253, 141, 9);
}
.flow__step-list > li.active:not(:nth-child(1))::before {
  background-color: rgb(253, 141, 9);
}
@media screen and (max-width: 767px) {
  .flow {
    border-top: 0.1rem solid rgb(253, 141, 9);
    padding: 0.8rem 0;
  }
  .flow > h1 {
    font-size: 1rem;
    gap: 0.6rem;
  }
  .flow > p {
    font-size: 0.9rem;
  }
  .flow__step {
    gap: 1.6rem;
    padding: 0.8rem 0;
  }
  .flow__step > span {
    font-size: 1rem;
  }
  .flow__step-list {
    gap: 1.6rem;
  }
  .flow__step-list > li {
    font-size: 1rem;
    width: 2.1rem;
  }
  .flow__step-list > li:not(:nth-child(1))::before {
    height: 0.1rem;
    width: 1.6rem;
  }
}

.form {
  background-image: url(../img/global-form-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.4rem 0;
  position: relative;
}
.form::before {
  background-color: rgba(255, 130, 13, 0.4);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.form__container {
  margin: 0 auto;
  position: relative;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  width: 38rem;
}
.form__left, .form__right {
  background-color: rgb(255, 255, 255);
  font-weight: 700;
  position: absolute;
  top: 0;
  width: 19rem;
}
.form__left {
  overflow: hidden;
  padding: 0.6rem 0.8rem 1.8rem;
  right: calc(100% + 1rem);
}
.form__left > h2 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.form__left > h2 strong {
  font-size: 1.2rem;
  font-weight: 700;
}
.form__left > h2 > span {
  position: relative;
  z-index: 1;
}
.form__left > h2 > span::after {
  background-color: rgb(253, 141, 9);
  bottom: 0.2rem;
  content: "";
  height: 0.1rem;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
}
.form__left > img {
  bottom: 0;
  display: block;
  position: absolute;
  right: 0;
  width: 9.4rem;
}
.form__left > p:nth-of-type(1) {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.form__left > p:nth-of-type(1) > span {
  display: inline-block;
  padding: 0.6rem 0.8rem 0.6rem 0;
  position: relative;
  z-index: 1;
}
.form__left > p:nth-of-type(1) > span::after {
  background-color: rgb(253, 141, 9);
  bottom: 0;
  content: "";
  left: -100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.form__left > p:nth-of-type(1) > span:nth-child(1) {
  margin-bottom: 0.4rem;
}
.form__left > p:nth-of-type(2) {
  font-size: 0.6rem;
  margin-bottom: 0.4rem;
}
.form__left > p:nth-of-type(3) {
  font-size: 0.7rem;
}
.form__right {
  left: calc(100% + 1rem);
  padding: 1.2rem 0.8rem;
}
.form__right > h2 {
  font-size: 0.9rem;
  text-align: center;
}
.form__right > p {
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: right;
}
.form__right > ul {
  display: flex;
  gap: 0.6rem;
  margin: 1rem 0;
}
.form__right-item {
  align-items: center;
  border: 0.2rem solid rgb(0, 0, 0);
  display: flex;
  flex: 1;
  justify-content: center;
  padding: 0.4rem 0.2rem;
  position: relative;
}
.form__right-item > h3 {
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
}
.form__right-item > span {
  color: rgb(253, 141, 9);
  font-size: 1.4rem;
  left: 0;
  position: absolute;
  text-shadow: 0.1rem 0.1rem 0 rgb(0, 0, 0);
  top: 0;
  transform: translate(-50%, -50%);
}
.form__center-container {
  overflow-x: hidden;
}
.form__center {
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.form__center > form {
  align-items: flex-start;
  display: flex;
}
.form__center-item {
  background-color: rgb(255, 255, 255);
  flex: 1;
  padding: 3rem;
}
.form__center-item-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0 auto;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .form {
    padding: 0 0 2rem;
  }
  .form__container {
    width: 100%;
  }
  .form__left, .form__right {
    display: none;
  }
  .form__center-item {
    padding: 1.2rem 2.4rem 2.4rem;
  }
  .form__center-item-container {
    gap: 1.4rem;
    width: 100%;
  }
}

.modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  z-index: 100;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal__container {
  background-color: rgb(255, 255, 255);
  border: 0.2rem solid rgb(253, 141, 9);
  border-radius: 0.2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  padding: 3rem;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .modal__container {
    border: 0.1rem solid rgb(253, 141, 9);
    padding: 2.4rem;
    width: 80%;
  }
}

@keyframes change-scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
body,
html {
  color: rgb(51, 51, 51);
  font-family: "M PLUS 1", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 1279px) {
  body,
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  body,
  html {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */