* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gaegu", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  color: #2e6e9e;
}

p,
a,
span,
label,
button,
select,
li,
th,
td,
input,
textarea,
select,
text {
  font-family: "Gaegu", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  color: #2e6e9e;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  transition: color 300ms ease;
}

.container {
  max-width: 1600px;
  padding: 0 24px;
}

.height--full {
  height: auto;
  min-height: 100svh;
}

.container--center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg--gradient {
  background: #04a1c7;
  background: linear-gradient(180deg, #b5d7e8 0%, #04a1c7 100%);
}

.text--white {
  color: #ffffff;
}

.button--white-pink, .button--white-blue, .button--pink {
  width: min(80%, 600px);
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  font-size: clamp(40px, 5vw, 80px);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px #5b64a5;
  transition: color 300ms ease, background-color 300ms ease, opacity 300ms ease;
}
.button--white-pink {
  color: #ab86b6;
  background-color: #ffffff;
  border: 5px solid #5b64a5;
}
.button--white-pink:hover {
  color: #ffffff;
  background-color: #ab86b6;
}
.button--white-blue {
  color: #04a1c7;
  background-color: #d4f0f1;
  border: 5px solid #04a1c7;
  box-shadow: 0px 0px 20px 0px #d4f0f1;
}
.button--white-blue:hover {
  color: #d4f0f1;
  background-color: #04a1c7;
}
.button--pink {
  color: #ffffff;
  background-color: #dbaad7;
}
.button--pink:hover {
  color: #dbaad7;
  background-color: #ffffff;
}
.button--pink.disabled {
  pointer-events: none;
  opacity: 0.8;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .spinner-border {
  width: min(64px, 5vw);
  height: min(64px, 5vw);
  border-color: #ffffff;
  border-right-color: transparent;
}

.landing__image {
  width: 60%;
  max-height: 60svh;
  margin: 0 auto;
}
.landing__description {
  margin: 16px 0 32px;
  font-size: clamp(30px, 3.12vw, 60px);
}

@media screen and (max-width: 767px) {
  .landing__image {
    width: min(400px, 100%);
  }
  .landing__description {
    margin: min(8svh, 80px) 0 min(12svh, 120px);
  }
  .landing .container--center {
    padding-bottom: max(env(safe-area-inset-bottom), 24px);
  }
}
.start .container {
  position: relative;
}
.start__image {
  width: 70%;
  max-height: 70svh;
  margin: 0 auto;
}
.start__table {
  width: inherit;
  max-width: inherit;
  position: fixed;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  opacity: 0.5;
  pointer-events: none;
}
.start .button--white-pink {
  margin-top: 16px;
}

@media screen and (max-width: 992px) {
  .start__table {
    bottom: 0;
    opacity: 1;
  }
  .start .button--white-pink {
    margin-bottom: min(12svh, 120px);
  }
}
@media screen and (max-width: 767px) {
  .start__image {
    width: min(400px, 100%);
  }
}
.select .container {
  position: relative;
}
.select .swiper {
  width: 100%;
  height: 100%;
  max-height: 100svh;
}
.select .swiper-slide {
  height: 100svh;
  display: flex;
  justify-content: start;
  align-items: center;
}
.select .swiper-slide img {
  width: 50%;
  height: 90svh;
}
.select .swiper-pagination {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.select .swiper-pagination-bullet {
  width: clamp(20px, 2.2vw, 32px);
  height: clamp(20px, 2.2vw, 32px);
  margin: 0 !important;
  background: #ffffff;
}
.select .swiper-control {
  transition: opacity 0.2s ease;
}
.select .swiper-control.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select .swiper-control svg {
  width: clamp(32px, 3vw, 64px);
  color: #ffffff;
}
.select__control {
  z-index: 5;
  position: absolute;
  right: 10%;
  left: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.select__control .button--white-pink {
  width: 100%;
}
.select__control--button {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 992px) {
  .select .container {
    padding: 24px;
  }
  .select .swiper {
    width: 100vw;
    height: 70svh;
    max-height: 70svh;
    margin: auto -24px;
  }
  .select .swiper-slide {
    height: 70svh;
    padding: 0 24px;
  }
  .select .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  .select .swiper-pagination {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    justify-content: center;
  }
  .select__control {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }
  .select__control--button {
    width: min(80%, 600px);
    margin: 24px 0 0;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    align-items: center;
    justify-content: space-between;
  }
  .select__control .button--white-pink {
    width: min(80%, 600px);
  }
}
.test .container {
  position: relative;
  overflow: hidden;
}
.test__card {
  position: relative;
}
.test__card--wrapper {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 50%;
  min-height: calc(100svh - 48px);
  display: flex;
  align-items: center;
}
.test__card--background {
  height: auto;
}
.test__card--content {
  z-index: 5;
  position: absolute;
  top: 18%;
  bottom: 26%;
  left: 5%;
  right: 5%;
  display: flex;
  flex-direction: column;
}
.test__card--content img {
  width: 70%;
  margin: 0 auto;
}
.test__card--content h3 {
  flex: 1;
  margin: 3%;
  font-size: clamp(30px, 3.12vw, 60px);
}
.test__control {
  position: absolute;
  top: 50%;
  right: 3%;
  left: 53%;
  transform: translateY(-50%);
}
.test__radio {
  display: flex;
  justify-content: center;
  gap: min(52px, 4vw);
}
.test__radio--button {
  position: relative;
  cursor: pointer;
}
.test__radio--button input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.test__radio--button-control {
  width: clamp(36px, 6vw, 72px);
  height: clamp(36px, 6vw, 72px);
  border-radius: 50%;
  background: #fff;
  border: min(6px, 1vw) solid #2e6e9e;
  display: grid;
  place-items: center;
  box-shadow: 0px 0px min(20px, 2vw) 0px #2e6e9e;
}
.test__radio--button-control::after {
  content: "";
  width: min(28px, 4vw);
  height: min(28px, 4vw);
  border-radius: 50%;
  background: #2e6e9e;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.test__radio--button input:checked + .test__radio--button-control::after {
  transform: scale(1);
}
.test__radio--button.disagree::after {
  content: "Disagree";
}
.test__radio--button.agree::after {
  content: "Agree";
}
.test__radio--button.disagree::after, .test__radio--button.agree::after {
  position: absolute;
  left: 50%;
  top: calc(100% + min(16px, 2vw));
  transform: translateX(-50%);
  font-size: clamp(18px, 2.5vw, 36px);
  font-weight: 700;
}
.test__navigation {
  position: absolute;
  right: 4%;
  left: 4%;
  top: 400%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15%;
}
.test__navigation.start {
  justify-content: end;
}
.test__navigation--button {
  transition: opacity 0.2s ease;
}
.test__navigation--button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.test__navigation--button svg {
  width: clamp(48px, 8vw, 100px);
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .test__card {
    height: 70svh;
  }
  .test__card--wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 70svh;
    max-height: 70svh;
    justify-content: center;
  }
  .test__card--background {
    height: 70svh;
  }
  .test__control, .test__radio {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }
  .test__radio {
    margin: 16px 0 12px;
  }
  .test__radio--button.disagree::after,
  .test__radio--button.agree::after {
    color: #ffffff;
  }
  .test__navigation {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    margin-top: 24px;
  }
  .test__navigation.start {
    justify-content: flex-end;
  }
}
.result {
  overflow: hidden;
  max-height: 100svh;
}
.result .container {
  display: grid;
  grid-template-columns: 40% 55%;
  justify-content: space-between;
  align-items: stretch;
}
.result__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.result__heading h1,
.result__heading h3 {
  text-align: center;
}
.result__heading h1 {
  font-size: clamp(60px, 6.24vw, 120px);
}
.result__heading h3 {
  margin: min(8px, 1vw) 0 min(8px, 0.5vw);
  font-size: clamp(30px, 3.12vw, 60px);
}
.result__heading--score {
  margin: 0 0 min(24px, 1.5vw);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}
.result__heading--image {
  margin: 0 0 min(24px, 1.5vw);
}
.result__heading--image-badge {
  width: 50%;
  margin: 0 auto;
}
.result__heading--image-icon {
  width: 46%;
  margin: -8% auto 0;
}
.result__content {
  align-self: center;
  max-height: 100svh;
  position: relative;
}
.result__content--description {
  z-index: 5;
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
}
.result__content--description * {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: #000000;
}
.result__invalid h1 {
  font-size: clamp(40px, 4.6vw, 80px);
}

@media screen and (max-width: 992px) {
  .result .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .result .button--pink {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 5%;
  }
  .result__heading {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25vw;
  }
  .result__heading h1,
  .result__heading h3 {
    margin: 0;
    text-align: start;
  }
  .result__heading--score {
    margin: 8px 0 0;
    text-align: start;
  }
  .result__heading--image {
    width: 20%;
    margin: 0;
  }
  .result__heading--image-badge {
    width: 100%;
    margin: 0;
  }
  .result__heading--image-icon {
    width: 100%;
    margin: -12% 0 0;
  }
  .result__content {
    align-self: unset;
    height: 68svh;
    max-height: 68svh;
    margin-bottom: min(32px, 3vw);
  }
  .result__content--image {
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .result__heading {
    justify-content: space-between;
    gap: 5vw;
  }
  .result__content {
    margin: 0 -8px min(32px, 4vw);
    height: auto;
  }
  .result__content--description {
    top: 18%;
  }
  .result__content--description * {
    font-size: 3vw;
  }
}
.finish__image {
  width: 60%;
  margin: 0 auto;
  max-height: 50svh;
}
.finish__description {
  margin: 16px 0 32px;
  font-size: clamp(30px, 3.12vw, 60px);
}
.finish__navigation {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.finish__navigation a {
  margin: 0;
  padding: min(24px, 2.8vw) min(40px, 4vw);
  font-size: clamp(24px, 3.6vw, 48px);
}

@media screen and (max-width: 992px) {
  .finish__image {
    width: 80%;
  }
  .finish__navigation {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .finish__image {
    width: 100%;
  }
}/*# sourceMappingURL=app.css.map */