@font-face {
  font-family: "Cera Pro";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-300.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-400.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-700.woff2") format("woff2");
}
@font-face {
  font-family: "Cera Pro";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/cera-pro-900.woff2") format("woff2");
}
@font-face {
  font-family: "Bitter";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/bitter-900.woff2") format("woff2");
}
@keyframes show-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide-opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes running-line1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes running-line2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  font-size: max(1px, 0.3125vw);
}
@media (min-width: 375px) {
  html {
    font-size: 0.2666666667vw;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 0.0520833333vw;
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Cera Pro", sans-serif;
  font-size: 16rem;
  line-height: 22rem;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  color: #000000;
  overflow-wrap: break-word;
  background-color: #ffffff;
}

main {
  flex-grow: 1;
  flex-shrink: 0;
}

picture {
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
}
button:not([disabled]) {
  cursor: pointer;
}

[hidden] {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

.backside {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.overlay {
  scrollbar-width: none;
}
.overlay::-webkit-scrollbar {
  display: none;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
  flex-direction: column;
  padding: 10rem;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.4);
}
.overlay.show {
  display: flex;
}

.scroll-lock {
  overflow: hidden;
}

/* stylelint-disable property-no-deprecated */
.visually-hidden:not(:focus, :active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden,
input[type=file].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}

.b-loader {
  --loader-radius: 32px;
  --loader-width: 3px;
  --loader-speed: 1.2s;
  --loader-color: #e80024;
  position: fixed;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.b-loader__el {
  position: relative;
  width: calc(var(--loader-radius) * 2 + var(--loader-width) * 2);
  height: calc(var(--loader-radius) * 2 + var(--loader-width) * 2);
  border-color: var(--loader-color) transparent transparent transparent;
  animation: loader-rotate var(--loader-speed) linear infinite;
}
.b-loader__el span {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  background: radial-gradient(farthest-side, var(--loader-color) 98%, transparent) right 15% top 14%, radial-gradient(farthest-side, var(--loader-color) 98%, transparent) left 15% top 14%;
  background-repeat: no-repeat;
  background-size: var(--loader-width) var(--loader-width);
  background-origin: border-box;
  border: solid var(--loader-width) transparent;
  border-color: var(--loader-color) transparent transparent transparent;
  border-radius: 50%;
  animation: loader-rotate var(--loader-speed) cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.b-loader__el span:first-child {
  animation-delay: calc(-3 * var(--loader-speed) / 8);
}
.b-loader__el span:nth-child(2) {
  animation-delay: calc(-2 * var(--loader-speed) / 8);
}
.b-loader__el span:nth-child(3) {
  animation-delay: calc(-1 * var(--loader-speed) / 8);
}

@keyframes loader-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.b-logo {
  display: block;
  flex-shrink: 0;
  width: 102rem;
}
.b-logo img {
  width: 100%;
}
@media (min-width: 375px) {
  .b-logo {
    width: 140rem;
  }
}
@media (min-width: 1024px) {
  .b-logo {
    width: 387rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .b-logo {
    width: 328rem;
  }
}

.b-photo-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .b-photo-desktop {
    position: fixed;
    top: -245rem;
    right: -94rem;
    display: block;
    width: 985rem;
    height: 1477rem;
    border: 22rem solid #d4004b;
    transform: rotate(3deg) translate(560rem, 300rem);
    opacity: 0;
    animation-name: photo-desktop;
    animation-duration: 0.75s;
    animation-timing-function: linear;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .b-photo-desktop img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@keyframes photo-desktop {
  0% {
    transform: rotate(3deg) translate(60rem, 30rem);
    opacity: 0;
  }
  100% {
    transform: rotate(7.44deg) translate(0, 0);
    opacity: 1;
  }
}
.btn-common {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Cera Pro", sans-serif;
  font-size: 21rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  border: 0;
  border-radius: 50rem;
}
.btn-common::before {
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: transform;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-radius: 50rem;
  transform: translate(3rem, 4rem);
}
.btn-common span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 15rem 20rem 14rem 20rem;
  background-color: #d4004b;
  border-radius: 50rem;
}
.btn-common [disabled] {
  opacity: 0.5;
}
.btn-common:not([disabled]):hover::before, .btn-common:not([disabled]):focus-visible::before {
  transform: translate(0, 0);
}
@media (min-width: 375px) {
  .btn-common {
    font-size: 26rem;
  }
  .btn-common::before {
    border-radius: 68rem;
    transform: translate(5rem, 6rem);
  }
  .btn-common span {
    padding: 21rem 26rem;
    border-radius: 68rem;
  }
}
@media (min-width: 1024px) {
  .btn-common {
    font-size: 50rem;
  }
  .btn-common::before {
    border-radius: 120rem;
    transform: translate(8rem, 10rem);
  }
  .btn-common span {
    padding: 35rem 40rem;
    border-radius: 120rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .btn-common {
    font-size: 42rem;
  }
  .btn-common span {
    padding: 29rem 34rem;
    border-radius: 100rem;
  }
}

.c-bet {
  position: relative;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
  width: 262rem;
  padding: 17rem 0 18rem 0;
  color: #ffffff;
  background-color: #d4004b;
  border-radius: 16rem;
}
@media (min-width: 375px) {
  .c-bet {
    gap: 14rem;
    width: 337rem;
    padding: 22rem 0 23rem 0;
    border-radius: 21rem;
  }
}
@media (min-width: 1024px) {
  .c-bet {
    flex-direction: row;
    gap: 38rem;
    width: 1026rem;
    padding: 44rem 30rem 51rem 30rem;
    border-radius: 40rem;
  }
}

.c-bet__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .c-bet__info {
    gap: 0;
  }
}

.c-bet__value {
  font-size: 44rem;
  line-height: 45rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}
.c-bet__value span {
  font-size: 48rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .c-bet__value {
    font-size: 57rem;
    line-height: 58rem;
  }
  .c-bet__value span {
    font-size: 64rem;
  }
}
@media (min-width: 1024px) {
  .c-bet__value {
    font-size: 102rem;
    line-height: 103rem;
  }
  .c-bet__value span {
    font-size: 115rem;
  }
}

.c-bet__text {
  font-size: 12rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .c-bet__text {
    font-size: 15rem;
    letter-spacing: 0;
  }
}
@media (min-width: 1024px) {
  .c-bet__text {
    font-size: 27rem;
  }
}

.c-bet__btn {
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  position: relative;
  display: block;
  width: max-width;
  max-width: 100%;
  margin: 0;
  padding: 12rem 21rem 11rem 21rem;
  font-family: "Cera Pro", sans-serif;
  font-size: 15rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  border: 0;
  border-radius: 38rem;
}
.c-bet__btn:hover, .c-bet__btn:focus-visible {
  color: #000000;
  background-color: #ffffff;
}
@media (min-width: 375px) {
  .c-bet__btn {
    padding: 15rem 28rem 14rem 28rem;
    font-size: 20rem;
    border-radius: 49rem;
  }
}
@media (min-width: 1024px) {
  .c-bet__btn {
    padding: 23rem 45rem 24rem 45rem;
    font-size: 33rem;
    border-radius: 80rem;
  }
}

.c-bet__note {
  position: absolute;
  bottom: 1rem;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .c-bet__note {
    font-size: 7rem;
    line-height: 8rem;
  }
}
@media (min-width: 1024px) {
  .c-bet__note {
    bottom: 10rem;
    left: 35rem;
    display: block;
    font-size: 12rem;
    text-align: left;
  }
}

.f-checkbox {
  position: relative;
  width: 100%;
  height: 100%;
}
.f-checkbox input {
  top: 22rem;
  left: 11rem;
}
.f-checkbox input:checked + .f-checkbox__label .f-checkbox__icon::after {
  opacity: 1;
}
@media (min-width: 375px) {
  .f-checkbox input {
    top: 26rem;
    left: 13rem;
  }
}
@media (min-width: 1024px) {
  .f-checkbox input {
    top: 40rem;
    left: 17rem;
  }
}

.f-checkbox__label {
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: color;
  display: flex;
  align-items: center;
  gap: 11rem;
  width: 100%;
  height: 100%;
  color: #000000;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.f-checkbox__label:hover, .f-checkbox__label:focus-visible {
  color: #e80024;
}
@media (min-width: 375px) {
  .f-checkbox__label {
    gap: 13rem;
  }
}
@media (min-width: 1024px) {
  .f-checkbox__label {
    flex-direction: row;
    gap: 16rem;
  }
}

.f-checkbox__icon {
  position: relative;
  flex-shrink: 0;
  width: 22rem;
  height: 22rem;
  background-color: #ffffff;
  border: 1rem solid currentcolor;
  border-radius: 3rem;
}
.f-checkbox__icon::after {
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: opacity;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12rem;
  height: 12rem;
  background-color: currentcolor;
  border-radius: 3rem;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (min-width: 375px) {
  .f-checkbox__icon {
    width: 26rem;
    height: 26rem;
    border-radius: 4rem;
  }
  .f-checkbox__icon::after {
    width: 14rem;
    height: 14rem;
    border-radius: 4rem;
  }
}
@media (min-width: 1024px) {
  .f-checkbox__icon {
    width: 34rem;
    height: 34rem;
    border-radius: 5rem;
  }
  .f-checkbox__icon::after {
    width: 18rem;
    height: 18rem;
  }
}

.f-checkbox__text {
  font-size: 9rem;
  line-height: 11rem;
  font-weight: 300;
  text-align: left;
  color: #000000;
}
.f-checkbox__text a,
.f-checkbox__text button {
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: color;
  position: relative;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  background-color: transparent;
  border: 0;
}
.f-checkbox__text a:hover, .f-checkbox__text a:focus-visible,
.f-checkbox__text button:hover,
.f-checkbox__text button:focus-visible {
  color: #e80024;
}
@media (min-width: 375px) {
  .f-checkbox__text {
    font-size: 10rem;
    line-height: 13rem;
  }
}
@media (min-width: 1024px) {
  .f-checkbox__text {
    font-size: 18rem;
    line-height: 23rem;
  }
}

.f-error {
  max-width: 220rem;
  font-size: 12rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: #e80024;
}
.f-error:empty {
  display: none;
}
@media (min-width: 375px) {
  .f-error {
    font-size: 14rem;
  }
}
@media (min-width: 1024px) {
  .f-error {
    max-width: none;
    font-size: 18rem;
  }
}

.f-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.f-field__label {
  display: block;
  margin: 0 0 0 11rem;
  padding: 0;
  font-family: "Cera Pro", sans-serif;
  font-size: 12rem;
  line-height: 15rem;
  font-weight: 300;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 375px) {
  .f-field__label {
    margin-left: 13rem;
    font-size: 14rem;
    line-height: 18rem;
  }
}
@media (min-width: 1024px) {
  .f-field__label {
    margin-left: 16rem;
    font-size: 18rem;
    line-height: 23rem;
  }
}

.f-field__input {
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-property: border-color;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 16rem 11rem;
  font-family: "Cera Pro", sans-serif;
  font-size: 12rem;
  line-height: 15rem;
  font-weight: 300;
  text-align: left;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1rem solid #363636;
  border-radius: 6rem;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.f-field__input::-moz-placeholder {
  font: inherit;
  color: rgba(54, 54, 54, 0.5);
}
.f-field__input::placeholder {
  font: inherit;
  color: rgba(54, 54, 54, 0.5);
}
.f-field__input:hover, .f-field__input:focus-visible {
  border-color: #000000;
}
@media (min-width: 375px) {
  .f-field__input {
    padding: 19rem 13rem;
    font-size: 14rem;
    line-height: 18rem;
    border-radius: 12rem;
  }
}
@media (min-width: 1024px) {
  .f-field__input {
    padding: 24rem 15rem;
    font-size: 18rem;
    line-height: 23rem;
    border-radius: 15rem;
  }
}

.p-main {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #a2a2a2 100%);
}
@media (min-width: 1024px) {
  .p-main {
    background-image: linear-gradient(107deg, #ffffff 9%, #a2a2a2 98%);
  }
}

.p-main__wrp {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  opacity: 0;
  transition: 0.5s opacity ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.p-main__wrp.show {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: auto;
}
.p-main__wrp.show .p-main__bg-logo {
  transform: translate(0, 0);
}

.p-main__bg-logo {
  position: absolute;
  top: 108rem;
  left: -100rem;
  width: 736rem;
  transform: translate(30rem, 15rem);
  transition: 1s transform linear;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-main__bg-logo img {
  width: 100%;
}
@media (min-width: 375px) {
  .p-main__bg-logo {
    top: 133rem;
    left: -148rem;
    width: 958rem;
  }
}
@media (min-width: 1024px) {
  .p-main__bg-logo {
    top: 62rem;
    left: -297rem;
    width: 2041rem;
    transform: translate(20rem, 20rem);
  }
}

.p-main__frontside {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  opacity: 0;
  animation-name: show-opacity;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 1.3s;
  animation-fill-mode: forwards;
}

.s-done {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  padding: 12rem 7rem 20rem 7rem;
  overflow: hidden;
}
@media (min-width: 375px) {
  .s-done {
    padding-top: 21rem;
  }
}
@media (min-width: 1024px) {
  .s-done {
    padding: 62rem 30rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-done {
    padding: 30rem 85rem;
  }
}

.s-done__title {
  margin: 49rem 0 0 0;
  font-family: "Bitter", sans-serif;
  font-size: 46rem;
  line-height: 46rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .s-done__title {
    margin-top: 71rem;
    font-size: 52rem;
  }
}
@media (min-width: 1024px) {
  .s-done__title {
    margin-top: 37rem;
    font-size: 135rem;
    line-height: 135rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-done__title {
    margin-top: 30rem;
    font-size: 114rem;
    line-height: 114rem;
  }
}

.s-done__text {
  margin: 2rem 0 0 0;
  font-size: 16rem;
  line-height: 17rem;
  font-weight: 700;
  text-align: center;
  color: #d4004b;
}
@media (min-width: 375px) {
  .s-done__text {
    margin-top: 8rem;
    font-size: 19rem;
  }
}
@media (min-width: 1024px) {
  .s-done__text {
    width: 100%;
    max-width: 900rem;
    margin-top: 14rem;
    font-size: 48rem;
    line-height: 49rem;
  }
}

.s-done__card {
  margin-top: 62rem;
}
@media (min-width: 375px) {
  .s-done__card {
    margin-top: 60rem;
  }
}
@media (min-width: 1024px) {
  .s-done__card {
    margin-top: 54rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-done__card {
    margin-top: 45rem;
  }
}

.s-done__illu {
  position: absolute;
}
.s-done__illu img {
  width: 100%;
}
.s-done__illu.rack1 {
  top: 325rem;
  left: -75rem;
  width: 90rem;
  transform: scale(1, -1) rotate(135deg);
}
.s-done__illu.rack2 {
  top: 196rem;
  right: -6rem;
  width: 53rem;
  transform: scale(1, -1) rotate(-137deg);
}
.s-done__illu.ball1 {
  top: 246rem;
  left: 15rem;
  width: 38rem;
  transform: rotate(89deg);
}
.s-done__illu.ball2 {
  top: 395rem;
  right: 6rem;
  width: 63rem;
  transform: rotate(-104deg);
}
@media (min-width: 375px) {
  .s-done__illu.rack1 {
    top: 428rem;
    left: -124rem;
    width: 139rem;
    transform: scale(1, -1) rotate(156deg);
  }
  .s-done__illu.rack2 {
    display: none;
  }
  .s-done__illu.ball1 {
    display: none;
  }
  .s-done__illu.ball2 {
    top: 508rem;
    right: -30rem;
    width: 88rem;
    transform: rotate(-146deg);
  }
}
@media (min-width: 1024px) {
  .s-done__illu.rack1 {
    top: 498rem;
    left: 278rem;
    width: 148rem;
    transform: scale(1, 1) rotate(42deg);
  }
  .s-done__illu.rack2 {
    top: 555rem;
    right: 311rem;
    display: block;
    width: 146rem;
    transform: scale(1, -1) rotate(-139deg);
  }
  .s-done__illu.ball1 {
    top: 891rem;
    left: 391rem;
    display: block;
    width: 90rem;
    transform: rotate(35deg);
  }
  .s-done__illu.ball2 {
    top: 515rem;
    right: 281rem;
    width: 140rem;
    transform: rotate(146deg);
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-done__illu.rack1 {
    top: 358rem;
    left: 278rem;
  }
  .s-done__illu.rack2 {
    top: 455rem;
    right: 311rem;
  }
  .s-done__illu.ball1 {
    top: 780rem;
    left: 391rem;
  }
  .s-done__illu.ball2 {
    top: 380rem;
    right: 281rem;
  }
}

.s-reg {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  padding: 12rem 15rem 20rem 15rem;
  overflow: hidden;
}
@media (min-width: 375px) {
  .s-reg {
    padding: 21rem 16rem 20rem 16rem;
  }
}
@media (min-width: 1024px) {
  .s-reg {
    align-items: flex-start;
    padding: 62rem 85rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-reg {
    padding: 30rem 85rem;
  }
}

.s-reg__illu {
  position: absolute;
}
.s-reg__illu img {
  width: 100%;
}
.s-reg__illu.rack {
  top: 448rem;
  left: -76rem;
  width: 101rem;
  transform: scale(1, -1) rotate(156deg);
}
.s-reg__illu.ball {
  top: 501rem;
  right: -17rem;
  width: 51rem;
  transform: rotate(-146deg);
}
@media (min-width: 375px) {
  .s-reg__illu.rack {
    top: 550rem;
    left: -96rem;
    width: 139rem;
  }
  .s-reg__illu.ball {
    top: 710rem;
    right: 2rem;
    width: 48rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__illu {
    display: none;
  }
}

.s-reg__title {
  margin: 8rem 0 0 0;
  font-family: "Bitter", sans-serif;
  font-size: 41rem;
  line-height: 41rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.s-reg__title span {
  font-size: 45rem;
}
@media (min-width: 375px) {
  .s-reg__title {
    font-size: 56rem;
    line-height: 56rem;
  }
  .s-reg__title span {
    font-size: 62rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__title {
    width: 100%;
    max-width: 900rem;
    margin-top: 48rem;
    font-size: 80rem;
    line-height: 80rem;
    text-align: left;
  }
  .s-reg__title span {
    font-size: 80rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-reg__title {
    margin-top: 40rem;
    font-size: 68rem;
  }
  .s-reg__title span {
    font-size: 68rem;
  }
}

.s-reg__text {
  margin: 0;
  font-size: 14rem;
  line-height: 15rem;
  font-weight: 700;
  text-align: center;
  color: #d4004b;
}
@media (min-width: 375px) {
  .s-reg__text {
    font-size: 19rem;
    line-height: 20rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__text {
    width: 100%;
    max-width: 900rem;
    font-size: 45rem;
    line-height: 1;
    text-align: left;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-reg__text {
    font-size: 38rem;
  }
}

.s-reg__form {
  display: block;
  width: 100%;
  max-width: 667rem;
  margin: 16rem 0 0 0;
  padding: 0;
}
@media (min-width: 375px) {
  .s-reg__form {
    margin-top: 36rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__form {
    margin-top: 15rem;
  }
}

.s-reg__fieldset {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 375px) {
  .s-reg__fieldset {
    gap: 5rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__fieldset {
    gap: 6rem;
  }
}

.s-reg__agree {
  margin-top: 27rem;
  padding: 0 11rem;
}
@media (min-width: 375px) {
  .s-reg__agree {
    max-width: 300rem;
    margin-top: 32rem;
    padding-left: 13rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__agree {
    max-width: 520rem;
    margin-top: 35rem;
    padding-left: 16rem;
  }
}

.s-reg__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16rem;
  margin-top: 21rem;
}
@media (min-width: 375px) {
  .s-reg__controls {
    margin-top: 30rem;
  }
}
@media (min-width: 1024px) {
  .s-reg__controls {
    gap: 22rem;
    margin-top: 47rem;
  }
}

.s-reg__error {
  max-width: 220rem;
}
@media (min-width: 1024px) {
  .s-reg__error {
    max-width: none;
  }
}

.s-welcome {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  padding: 12rem 10rem 20rem 10rem;
  overflow: hidden;
}
@media (min-width: 375px) {
  .s-welcome {
    padding: 21rem 10rem 20rem 10rem;
  }
}
@media (min-width: 1024px) {
  .s-welcome {
    align-items: flex-start;
    padding: 62rem 85rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-welcome {
    padding: 30rem 85rem;
  }
}

.s-welcome__title {
  margin: 8rem 0 0 0;
  font-family: "Bitter", sans-serif;
  font-size: 41rem;
  line-height: 41rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.s-welcome__title span {
  font-size: 45rem;
}
@media (min-width: 375px) {
  .s-welcome__title {
    font-size: 56rem;
    line-height: 56rem;
  }
  .s-welcome__title span {
    font-size: 62rem;
  }
}
@media (min-width: 1024px) {
  .s-welcome__title {
    width: 100%;
    max-width: 850rem;
    margin-top: 82rem;
    font-size: 147rem;
    line-height: 147rem;
    text-align: left;
  }
  .s-welcome__title span {
    font-size: 147rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-welcome__title {
    font-size: 124rem;
    line-height: 124rem;
  }
  .s-welcome__title span {
    font-size: 124rem;
  }
}

.s-welcome__text {
  margin: 0;
  font-size: 14rem;
  line-height: 15rem;
  font-weight: 700;
  text-align: center;
  color: #d4004b;
}
@media (min-width: 375px) {
  .s-welcome__text {
    font-size: 19rem;
    line-height: 20rem;
  }
}
@media (min-width: 1024px) {
  .s-welcome__text {
    width: 100%;
    max-width: 720rem;
    font-size: 75rem;
    line-height: 1;
    text-align: left;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-welcome__text {
    font-size: 63rem;
  }
}

.s-welcome__photo {
  width: 225rem;
  height: 305rem;
  margin-top: 18rem;
  border: 4rem solid #d4004b;
  transform: rotate(7.44deg);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.s-welcome__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 375px) {
  .s-welcome__photo {
    width: 247rem;
    height: 336rem;
    margin-top: 24rem;
    border-width: 5rem;
  }
}
@media (min-width: 1024px) {
  .s-welcome__photo {
    display: none;
  }
}

.s-welcome__illu {
  position: absolute;
}
.s-welcome__illu img {
  width: 100%;
}
.s-welcome__illu.rack {
  top: 214rem;
  left: -48rem;
  width: 101rem;
  transform: scale(1, -1) rotate(156deg);
}
.s-welcome__illu.ball {
  top: 425rem;
  right: 1rem;
  width: 35rem;
  transform: rotate(-146.5deg);
}
@media (min-width: 375px) {
  .s-welcome__illu.rack {
    top: 250rem;
    left: -90rem;
    width: 139rem;
  }
  .s-welcome__illu.ball {
    top: 530rem;
    right: 20rem;
    width: 47rem;
  }
}
@media (min-width: 1024px) {
  .s-welcome__illu {
    display: none;
  }
}

.s-welcome__control {
  width: 100%;
  max-width: 245rem;
  margin-top: 6rem;
}
@media (min-width: 375px) {
  .s-welcome__control {
    max-width: 336rem;
  }
}
@media (min-width: 1024px) {
  .s-welcome__control {
    max-width: 590rem;
    margin-top: 82rem;
  }
}
@media (aspect-ratio >= 1.85/1) {
  .s-welcome__control {
    max-width: 500rem;
    margin-top: 70rem;
  }
}
/*# sourceMappingURL=style.css.map */
