@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("../fonts/nokian/NokianTyresSans-Light.woff2") format("woff2"), url("../fonts/nokian/NokianTyresSans-Light.woff") format("woff");
  font-family: "Nokian";
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/nokian/NokianTyresSans-Regular.woff2") format("woff2"), url("../fonts/nokian/NokianTyresSans-Regular.woff") format("woff");
  font-family: "Nokian";
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/nokian/NokianTyresSans-Medium.woff2") format("woff2"), url("../fonts/nokian/NokianTyresSans-Medium.woff") format("woff");
  font-family: "Nokian";
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/nokian/NokianTyresSans-Bold.woff2") format("woff2"), url("../fonts/nokian/NokianTyresSans-Bold.woff") format("woff");
  font-family: "Nokian";
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }
  .swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
        touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px; }

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999; }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Nokian", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #fff;
  -webkit-tap-highlight-color: transparent; }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

p {
  margin: 0; }

a,
button {
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }

a {
  text-decoration: none;
  color: currentColor; }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

fieldset {
  margin: 0;
  border: 0;
  padding: 0; }

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh; }

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

/* stylelint-enable */
.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

@media (max-width: 1023px) {
  .for-desktop {
    display: none !important; } }

@media (min-width: 1024px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 1023px) {
  .for-tablet {
    display: none !important; } }

@media (min-width: 1024px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 1024px) {
  .for-devices {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.container {
  margin: 0 auto;
  padding: 0 3.86473vmin;
  width: 100%; }
  @media (min-width: 1024px) {
    .container {
      padding: 0;
      max-width: 83.33333vw; } }
  @media (min-width: 1800px) {
    .container {
      max-width: 1500px; } }

.header {
  position: absolute;
  left: 0;
  z-index: 55;
  width: 100%; }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 1024px) {
      .header .container {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 11.5942vmin; }
    @media (min-width: 1024px) {
      .header__left {
        margin-top: 1.72222vw; } }
    @media (min-width: 1800px) {
      .header__left {
        margin-top: 31px; } }
  .header__mk img {
    width: 23.6715vmin; }
    @media (min-width: 1024px) {
      .header__mk img {
        width: 5.5vw; } }
    @media (min-width: 1800px) {
      .header__mk img {
        width: 99px; } }
  @media (min-width: 1024px) {
    .header__mk a:hover {
      opacity: 0.75; } }
  .header__label {
    margin: 0 3.86473vmin 0 2.89855vmin;
    font-weight: 700;
    font-size: 3.86473vmin; }
    @media (min-width: 1024px) {
      .header__label {
        margin: 0 0.55556vw;
        font-weight: 400;
        font-size: 0.77778vw; } }
    @media (min-width: 1800px) {
      .header__label {
        margin: 0 10px;
        font-size: 14px; } }
  .header__logo img {
    width: 27.05314vmin; }
    @media (min-width: 1024px) {
      .header__logo img {
        width: 7.5vw; } }
    @media (min-width: 1800px) {
      .header__logo img {
        width: 135px; } }
  @media (min-width: 1024px) {
    .header__logo a:hover {
      opacity: 0.75; } }
  .header__share {
    position: relative; }
    .header__share__toggle {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      outline: none;
      border: none;
      border-radius: 50%;
      padding: 0 0.96618vmin 0 0;
      width: 15.70048vmin;
      height: 15.70048vmin;
      background: #2b33a3; }
      .header__share__toggle::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 100%;
        margin-bottom: 1.20773vmin;
        width: 3.38164vmin;
        height: 1.93237vmin;
        background: url("../images/header-social-arrow.svg") 50% 50% no-repeat;
        background-size: contain;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) rotate(180deg);
            -ms-transform: translateX(-50%) rotate(180deg);
                transform: translateX(-50%) rotate(180deg);
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        pointer-events: none; }
        @media (min-width: 1024px) {
          .header__share__toggle::before {
            top: 100%;
            bottom: auto;
            margin: 0.16667vw 0 0;
            width: 0.55556vw;
            height: 0.27778vw;
            -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                    transform: translateX(-50%); } }
        @media (min-width: 1800px) {
          .header__share__toggle::before {
            margin-top: 3px;
            width: 10px;
            height: 5px; } }
      .header__share__toggle svg {
        width: 9.66184vmin;
        height: 9.66184vmin; }
        @media (min-width: 1024px) {
          .header__share__toggle svg {
            width: 1.55556vw;
            height: 1.55556vw; } }
        @media (min-width: 1800px) {
          .header__share__toggle svg {
            width: 28px;
            height: 28px; } }
      @media (min-width: 1024px) {
        .header__share__toggle {
          border-radius: 0;
          padding: 0;
          width: 2.22222vw;
          height: 2.22222vw; }
          .header__share__toggle:hover {
            background: #515adf; } }
      @media (min-width: 1800px) {
        .header__share__toggle {
          width: 40px;
          height: 40px; } }
    .header__share__list {
      position: absolute;
      left: 0;
      bottom: 100%;
      margin-bottom: 5.55556vmin;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .header__share__list li + li {
        margin-top: 2.41546vmin; }
        @media (min-width: 1024px) {
          .header__share__list li + li {
            margin-top: 0.33333vw; } }
        @media (min-width: 1800px) {
          .header__share__list li + li {
            margin-top: 6px; } }
      .header__share__list li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 15.70048vmin;
        height: 15.70048vmin;
        -webkit-box-shadow: 0 0 17.8744vmin #101444;
                box-shadow: 0 0 17.8744vmin #101444;
        color: #f5f5f5;
        background: #2b33a3; }
        .header__share__list li a svg {
          display: block;
          width: 9.17874vmin;
          height: 9.17874vmin;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          @media (min-width: 1024px) {
            .header__share__list li a svg {
              width: 1.22222vw;
              height: 1.22222vw; } }
          @media (min-width: 1800px) {
            .header__share__list li a svg {
              width: 22px;
              height: 22px; } }
        @media (min-width: 1024px) {
          .header__share__list li a {
            width: 2.22222vw;
            height: 2.22222vw;
            -webkit-box-shadow: none;
                    box-shadow: none; }
            .header__share__list li a:hover {
              opacity: 0.75; } }
        @media (min-width: 1800px) {
          .header__share__list li a {
            width: 40px;
            height: 40px; } }
      @media (min-width: 1024px) {
        .header__share__list {
          top: 100%;
          bottom: auto;
          margin: 0.61111vw 0 0; } }
      @media (min-width: 1800px) {
        .header__share__list {
          margin-top: 11px; } }
    .header__share.is-show .header__share__toggle {
      background: #515adf; }
      .header__share.is-show .header__share__toggle::before {
        opacity: 1;
        visibility: visible; }
    .header__share.is-show .header__share__list {
      opacity: 1;
      visibility: visible; }
    @media (max-width: 1023px) {
      .header__share {
        position: fixed;
        right: 7.97101vmin;
        bottom: 7.97101vmin;
        z-index: 25; } }
    @media (min-width: 1024px) {
      .header__share {
        margin-top: 2.61111vw; } }
    @media (min-width: 1800px) {
      .header__share {
        margin-top: 47px; } }
  .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    margin: 46px 0 0;
    padding: 0; }
    .header__socials li + li {
      margin-left: 16px; }
      @media (min-width: 1024px) {
        .header__socials li + li {
          margin-left: 0.88889vw; } }
      @media (min-width: 1800px) {
        .header__socials li + li {
          margin-left: 16px; } }
    .header__socials li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border: 1px solid currentColor;
      border-radius: 5px;
      width: 38px;
      height: 38px;
      color: #3d2d60; }
      .header__socials li a svg {
        display: block;
        width: 20px;
        height: 21px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        @media (min-width: 1024px) {
          .header__socials li a svg {
            width: 1.11111vw;
            height: 1.16667vw; } }
        @media (min-width: 1800px) {
          .header__socials li a svg {
            width: 20px;
            height: 21px; } }
      @media (min-width: 1024px) {
        .header__socials li a {
          border-radius: 0.27778vw;
          width: 2.11111vw;
          height: 2.11111vw; }
          .header__socials li a:hover {
            background: currentColor; }
            .header__socials li a:hover svg {
              color: #fff; } }
      @media (min-width: 1800px) {
        .header__socials li a {
          border-radius: 5px;
          width: 38px;
          height: 38px; } }
    @media (min-width: 1024px) {
      .header__socials {
        margin: 2.55556vw 0 0; } }
    @media (min-width: 1800px) {
      .header__socials {
        margin: 46px 0 0; } }

.footer {
  text-align: center;
  background: #1b1e49; }
  .footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 5.7971vmin 0; }
    .footer__socials li + li {
      margin-left: 1.93237vmin; }
      @media (min-width: 1024px) {
        .footer__socials li + li {
          margin-left: 0.88889vw; } }
      @media (min-width: 1800px) {
        .footer__socials li + li {
          margin-left: 16px; } }
    .footer__socials li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 11.5942vmin;
      height: 11.5942vmin;
      color: #f5f5f5;
      background: #2b33a3; }
      .footer__socials li a svg {
        display: block;
        width: 6.76329vmin;
        height: 6.76329vmin;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        @media (min-width: 1024px) {
          .footer__socials li a svg {
            width: 1.22222vw;
            height: 1.22222vw; } }
        @media (min-width: 1800px) {
          .footer__socials li a svg {
            width: 22px;
            height: 22px; } }
      @media (min-width: 1024px) {
        .footer__socials li a {
          width: 2.22222vw;
          height: 2.22222vw; }
          .footer__socials li a:hover {
            opacity: 0.75; } }
      @media (min-width: 1800px) {
        .footer__socials li a {
          width: 40px;
          height: 40px; } }
    @media (min-width: 1024px) {
      .footer__socials {
        padding: 1.66667vw 0; } }
    @media (min-width: 1800px) {
      .footer__socials {
        padding: 30px 0; } }
  .footer__copy {
    border-top: 2px solid #10133a;
    padding: 3.1401vmin 0 10.62802vmin;
    font-weight: 700;
    font-size: 3.86473vmin;
    line-height: 4.83092vmin;
    text-align: center;
    color: #858dff; }
    @media (min-width: 1024px) {
      .footer__copy {
        padding: 1.55556vw 0;
        font-size: 0.66667vw;
        line-height: 0.94444vw;
        color: #fff; } }
    @media (min-width: 1800px) {
      .footer__copy {
        padding: 28px 0;
        font-size: 12px;
        line-height: 17px; } }

.home {
  position: relative;
  padding-bottom: 21.73913vmin; }
  .home__intro {
    position: relative;
    z-index: 5;
    padding: 27.29469vmin 0 8.9372vmin;
    text-align: center; }
    .home__intro__bg {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      background: 50% 15% no-repeat;
      background-size: auto 163.76812vmin; }
      .home__intro__bg::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 27.05314vmin;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 100%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%); }
        @media (min-width: 1024px) {
          .home__intro__bg::before {
            height: 19.66667vw; } }
        @media (min-width: 1800px) {
          .home__intro__bg::before {
            height: 354px; } }
      @media (min-width: 1024px) {
        .home__intro__bg {
          background-size: cover; } }
    @media (min-width: 1024px) {
      .home__intro__container {
        margin: 0 auto;
        max-width: 41.11111vw; } }
    @media (min-width: 1800px) {
      .home__intro__container {
        max-width: 740px; } }
    .home__intro__title {
      margin: 0 0 6.28019vmin;
      font-weight: 700;
      font-size: 8.21256vmin;
      line-height: 10.14493vmin; }
      @media (min-width: 1024px) {
        .home__intro__title {
          margin: 0 0 2.05556vw;
          font-size: 3.55556vw;
          line-height: 1.17; } }
      @media (min-width: 1800px) {
        .home__intro__title {
          margin: 0 0 37px;
          font-size: 64px; } }
    .home__intro__text {
      margin-bottom: 9.90338vmin;
      font-weight: 700;
      font-size: 4.34783vmin;
      line-height: 5.31401vmin; }
      @media (min-width: 1024px) {
        .home__intro__text {
          margin-bottom: 2.72222vw;
          font-size: 1vw;
          line-height: 1.22; } }
      @media (min-width: 1800px) {
        .home__intro__text {
          margin-bottom: 49px;
          font-size: 18px; } }
    .home__intro__button {
      text-align: center; }
      .home__intro__button a {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        padding: 5.07246vmin 3.86473vmin;
        width: 74.39614vmin;
        -webkit-box-shadow: 0 0.96618vmin 0.96618vmin rgba(28, 42, 169, 0.25);
                box-shadow: 0 0.96618vmin 0.96618vmin rgba(28, 42, 169, 0.25);
        font-weight: 700;
        font-size: 5.31401vmin;
        line-height: 10.62802vmin;
        text-align: center;
        text-decoration: none;
        color: #fff;
        background: -o-linear-gradient(180.48deg, #2633ab -5.45%, #4b3776 101.6%);
        background: linear-gradient(269.52deg, #2633ab -5.45%, #4b3776 101.6%); }
        .home__intro__button a::before {
          content: "";
          position: absolute;
          left: 1.44928vmin;
          right: 1.44928vmin;
          top: 1.20773vmin;
          bottom: 1.44928vmin;
          border: solid 0.72464vmin #fff; }
        @media (min-width: 1024px) {
          .home__intro__button a {
            padding: 0.5vw 0.88889vw;
            width: 11.88889vw;
            -webkit-box-shadow: none;
                    box-shadow: none;
            font-size: 1vw;
            line-height: 2.2;
            background: #2b33a3; }
            .home__intro__button a::before {
              display: none; }
            .home__intro__button a:hover {
              opacity: 0.75; } }
        @media (min-width: 1800px) {
          .home__intro__button a {
            padding: 9px 16px;
            width: 214px;
            font-size: 18px; } }
    .home__intro__arrow {
      margin-top: 49px;
      text-align: center; }
      .home__intro__arrow a {
        display: inline-block;
        vertical-align: middle; }
        .home__intro__arrow a svg {
          display: block;
          width: 40px;
          height: 40px; }
          @media (min-width: 1024px) {
            .home__intro__arrow a svg {
              width: 2.22222vw;
              height: 2.22222vw; } }
          @media (min-width: 1800px) {
            .home__intro__arrow a svg {
              width: 40px;
              height: 40px; } }
      @media (min-width: 1024px) {
        .home__intro__arrow {
          margin-top: 2.72222vw; } }
      @media (min-width: 1800px) {
        .home__intro__arrow {
          margin-top: 49px; } }
    @media (min-width: 1024px) {
      .home__intro {
        margin-bottom: 2.72222vw;
        padding: 13.33333vw 0 5.72222vw;
        min-height: 45.27778vw; } }
    @media (min-width: 1800px) {
      .home__intro {
        margin-bottom: 49px;
        padding: 240px 0 103px;
        min-height: 815px; } }
  .home__route {
    margin-bottom: 96px; }
    .home__route__close {
      position: absolute;
      right: 3.86473vmin;
      top: 3.86473vmin;
      z-index: 25;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      outline: none;
      border: none;
      padding: 0;
      width: 13.28502vmin;
      height: 13.28502vmin;
      background: #2c37d2; }
      .home__route__close::before, .home__route__close::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -0.48309vmin 0 0 -3.62319vmin;
        width: 7.24638vmin;
        height: 1.20773vmin;
        background: #fff; }
      .home__route__close::before {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .home__route__close::after {
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
      @media (min-width: 1024px) {
        .home__route__close {
          display: none; } }
    .home__route__container {
      position: relative;
      z-index: 5;
      overflow: hidden;
      height: var(--vh); }
      @media (min-width: 1024px) {
        .home__route__container {
          height: 39.66667vw; } }
      @media (min-width: 1800px) {
        .home__route__container {
          height: 714px; } }
    .home__route__bg {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      background: 50% 50% no-repeat;
      background-size: cover; }
    .home__route__content {
      padding: 16.18357vmin 0; }
      @media (min-width: 1024px) {
        .home__route__content {
          padding: 8.33333vw 0; } }
      @media (min-width: 1800px) {
        .home__route__content {
          padding: 150px 0; } }
    .home__route__title {
      margin: 0 0 11.35266vmin;
      font-weight: 700;
      font-size: 8.21256vmin;
      line-height: 10.14493vmin;
      text-align: center;
      color: #3d2d60; }
      @media (min-width: 1024px) {
        .home__route__title {
          margin: 0 0 5.16667vw;
          font-size: 2.66667vw;
          line-height: 3.66667vw; } }
      @media (min-width: 1800px) {
        .home__route__title {
          margin: 0 0 93px;
          font-size: 48px;
          line-height: 66px; } }
    .home__route__list {
      text-align: center; }
      .home__route__list__col + .home__route__list__col {
        margin-top: 4.83092vmin; }
        @media (min-width: 1024px) {
          .home__route__list__col + .home__route__list__col {
            margin-top: 2.27778vw; } }
        @media (min-width: 1800px) {
          .home__route__list__col + .home__route__list__col {
            margin-top: 41px; } }
    .home__route__item {
      position: relative;
      z-index: 5;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      vertical-align: middle;
      outline: none;
      border: none;
      padding: 5.07246vmin;
      width: 74.39614vmin;
      height: 20.77295vmin;
      -webkit-box-shadow: 0 0.96618vmin 0.96618vmin rgba(28, 42, 169, 0.25);
              box-shadow: 0 0.96618vmin 0.96618vmin rgba(28, 42, 169, 0.25);
      text-align: center;
      color: #fff;
      background: -o-linear-gradient(180.48deg, #2633ab -5.45%, #4b3776 101.6%);
      background: linear-gradient(269.52deg, #2633ab -5.45%, #4b3776 101.6%); }
      .home__route__item::before {
        content: "";
        position: absolute;
        left: 1.44928vmin;
        right: 1.44928vmin;
        top: 1.20773vmin;
        bottom: 1.20773vmin;
        z-index: -1;
        border: solid 0.72464vmin #fff;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        @media (min-width: 1024px) {
          .home__route__item::before {
            left: 0.55556vw;
            right: 0.55556vw;
            top: 0.55556vw;
            bottom: 0.55556vw;
            border-width: 0.16667vw; } }
        @media (min-width: 1800px) {
          .home__route__item::before {
            left: 10px;
            right: 10px;
            top: 10px;
            bottom: 10px;
            border-width: 3px; } }
      .home__route__item__title {
        font-weight: 700;
        font-size: 5.07246vmin;
        line-height: 10.62802vmin; }
        @media (min-width: 1024px) {
          .home__route__item__title {
            font-size: 1.33333vw;
            line-height: 1.83333vw; } }
        @media (min-width: 1800px) {
          .home__route__item__title {
            font-size: 24px;
            line-height: 33px; } }
      .home__route__item.is-disabled {
        opacity: 0.5;
        pointer-events: none; }
      .home__route__item--2 {
        -webkit-box-shadow: 0 4px 4px rgba(79, 17, 180, 0.25);
                box-shadow: 0 4px 4px rgba(79, 17, 180, 0.25);
        background: -o-linear-gradient(180.48deg, #3d2d60 -5.45%, #7337ab 101.6%);
        background: linear-gradient(269.52deg, #3d2d60 -5.45%, #7337ab 101.6%); }
      @media (min-width: 1024px) {
        .home__route__item {
          padding: 1.38889vw;
          width: 22.77778vw;
          height: 5.27778vw;
          -webkit-box-shadow: 0 0.22222vw 0.22222vw rgba(28, 42, 169, 0.25);
                  box-shadow: 0 0.22222vw 0.22222vw rgba(28, 42, 169, 0.25); }
          .home__route__item:hover {
            opacity: 0.75; }
          .home__route__item--2 {
            -webkit-box-shadow: 0 0.22222vw 0.22222vw rgba(79, 17, 180, 0.25);
                    box-shadow: 0 0.22222vw 0.22222vw rgba(79, 17, 180, 0.25); } }
      @media (min-width: 1800px) {
        .home__route__item {
          padding: 25px;
          width: 410px;
          height: 95px;
          -webkit-box-shadow: 0 4px 4px rgba(28, 42, 169, 0.25);
                  box-shadow: 0 4px 4px rgba(28, 42, 169, 0.25); }
          .home__route__item--2 {
            -webkit-box-shadow: 0 4px 4px rgba(79, 17, 180, 0.25);
                    box-shadow: 0 4px 4px rgba(79, 17, 180, 0.25); } }
    .home__route__arrow {
      margin-top: 58px;
      text-align: center; }
      .home__route__arrow a {
        display: inline-block;
        vertical-align: middle; }
        .home__route__arrow a svg {
          display: block;
          width: 40px;
          height: 40px; }
          @media (min-width: 1024px) {
            .home__route__arrow a svg {
              width: 2.22222vw;
              height: 2.22222vw; } }
          @media (min-width: 1800px) {
            .home__route__arrow a svg {
              width: 40px;
              height: 40px; } }
      @media (min-width: 1024px) {
        .home__route__arrow {
          margin-top: 3.22222vw; } }
      @media (min-width: 1800px) {
        .home__route__arrow {
          margin-top: 58px; } }
    .home__route__game {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 15;
      border: none;
      width: 100%;
      height: 100%;
      background: #fff;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .is-show-game .home__route__game {
        opacity: 1;
        visibility: visible; }
    .home__route__vertical {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 35;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 100%;
      height: 100%;
      text-align: center;
      background: -webkit-gradient(linear, left top, left bottom, from(#ccd8fb), color-stop(20.66%, #edf3f9), color-stop(41.5%, #f7fbf4), color-stop(60.25%, #faf9e9), color-stop(81.08%, #fcf2d6), to(#fbf0d3));
      background: -o-linear-gradient(top, #ccd8fb 0%, #edf3f9 20.66%, #f7fbf4 41.5%, #faf9e9 60.25%, #fcf2d6 81.08%, #fbf0d3 100%);
      background: linear-gradient(180deg, #ccd8fb 0%, #edf3f9 20.66%, #f7fbf4 41.5%, #faf9e9 60.25%, #fcf2d6 81.08%, #fbf0d3 100%); }
      .home__route__vertical__image {
        margin-bottom: 7.72947vmin; }
        .home__route__vertical__image img {
          width: 58.69565vmin; }
      .home__route__vertical__text {
        font-weight: 700;
        font-size: 6.28019vmin;
        line-height: 8.69565vmin;
        text-transform: uppercase;
        color: #3d2d60; }
      .is-show-game .home__route__vertical {
        display: none; }
      @media (min-width: 1024px) {
        .home__route__vertical {
          display: none; } }
      @media screen and (orientation: landscape) {
        .home__route__vertical {
          display: none; } }
    .home__route .game {
      height: 100%; }
      @media (min-width: 1024px) {
        .home__route .game__preview__content {
          padding: 4.44444vw 0 0; } }
      @media (min-width: 1800px) {
        .home__route .game__preview__content {
          padding: 80px 0 0; } }
      .home__route .game__preview__image {
        margin-bottom: 2.77778vw; }
        .home__route .game__preview__image img {
          width: 12.66667vw; }
          @media (min-width: 1800px) {
            .home__route .game__preview__image img {
              width: 228px; } }
        @media (min-width: 1800px) {
          .home__route .game__preview__image {
            margin-bottom: 50px; } }
      @media (min-width: 1024px) {
        .home__route .game__preview__text {
          margin: 0 auto 1.55556vw;
          max-width: 22.22222vw;
          font-size: 1vw;
          line-height: 1.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__preview__text {
          margin: 0 auto 28px;
          max-width: 400px;
          font-size: 18px;
          line-height: 22px; } }
      @media (min-width: 1024px) {
        .home__route .game__preview__space {
          margin: 0 0 0.83333vw;
          font-size: 1vw;
          line-height: 1.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__preview__space {
          margin: 0 0 15px;
          font-size: 18px;
          line-height: 22px; } }
      @media (min-width: 1024px) {
        .home__route .game__preview__red {
          margin-bottom: 2.77778vw;
          font-size: 1vw;
          line-height: 1.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__preview__red {
          margin-bottom: 50px;
          font-size: 18px;
          line-height: 22px; } }
      @media (min-width: 1024px) {
        .home__route .game__preview__start button {
          padding: 0.5vw 0.88889vw;
          width: 11.88889vw;
          font-size: 1vw; } }
      @media (min-width: 1800px) {
        .home__route .game__preview__start button {
          padding: 9px 16px;
          width: 214px;
          font-size: 18px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__jump {
          left: 0.88889vw;
          width: 4.66667vw;
          height: 4.66667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__jump {
          left: 16px;
          width: 84px;
          height: 84px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__bg img {
          height: 39.66667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__bg img {
          height: 714px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__person__wheel__collision {
          width: 7.22222vw;
          height: 7.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__person__wheel__collision {
          width: 130px;
          height: 130px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__person__wheel__rotate {
          width: 10.27778vw;
          height: 10.27778vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__person__wheel__rotate {
          width: 185px;
          height: 185px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__person {
          left: 11.55556vw;
          bottom: 2.33333vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__person {
          left: 208px;
          bottom: 42px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__pillar {
          left: 2.55556vw; }
          .home__route .game__canvas__pillar img {
            width: 21.16667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__pillar {
          left: 46px; }
          .home__route .game__canvas__pillar img {
            width: 381px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__sign {
          left: 204.05556vw;
          bottom: 3.72222vw; }
          .home__route .game__canvas__sign img {
            width: 4.77778vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__sign {
          left: 3673px;
          bottom: 67px; }
          .home__route .game__canvas__sign img {
            width: 86px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__sign-2 {
          left: 689.66667vw;
          bottom: 2.83333vw; }
          .home__route .game__canvas__sign-2 img {
            width: 4.77778vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__sign-2 {
          left: 12414px;
          bottom: 51px; }
          .home__route .game__canvas__sign-2 img {
            width: 86px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__cat {
          left: 431.22222vw;
          bottom: 3.66667vw; }
          .home__route .game__canvas__cat img {
            width: 13.55556vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__cat {
          left: 7762px;
          bottom: 66px; }
          .home__route .game__canvas__cat img {
            width: 244px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item__collision {
          width: 7.22222vw;
          height: 7.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item__collision {
          width: 130px;
          height: 130px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item__start {
          height: 5.55556vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item__start {
          height: 100px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item__end {
          height: 5.55556vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item__end {
          height: 100px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item__arrow {
          bottom: 13.88889vw;
          width: 5.16667vw;
          height: 7.05556vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item__arrow {
          bottom: 250px;
          width: 93px;
          height: 127px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--1 {
          left: 54.83333vw;
          bottom: 1vw; }
          .home__route .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
            width: 8.88889vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--1 img {
            width: 14.77778vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--1 {
          left: 987px;
          bottom: 18px; }
          .home__route .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
            width: 160px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--1 img {
            width: 266px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--2 {
          left: 122.77778vw;
          bottom: 0.16667vw; }
          .home__route .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
            width: 6.11111vw;
            height: 6.66667vw; }
          .home__route .game__canvas__enemies__item--2 img {
            width: 17.61111vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--2 {
          left: 2210px;
          bottom: 3px; }
          .home__route .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
            width: 110px;
            height: 120px; }
          .home__route .game__canvas__enemies__item--2 img {
            width: 317px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--3 {
          left: 225.11111vw;
          bottom: 0.44444vw; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
            left: 5.55556vw;
            width: 7.22222vw;
            height: 4.16667vw; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
            left: -36.11111vw;
            width: 13.88889vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
            left: -5vw; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
            left: 44.44444vw; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
            left: -18.33333vw; }
          .home__route .game__canvas__enemies__item--3 img {
            width: 30.94444vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--3 {
          left: 4052px;
          bottom: 8px; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
            left: 100px;
            width: 130px;
            height: 75px; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
            left: -36.11111vw;
            width: 250px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
            left: -90px; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
            left: 800px; }
          .home__route .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
            left: -330px; }
          .home__route .game__canvas__enemies__item--3 img {
            width: 557px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--4 {
          left: 288vw;
          bottom: 0.94444vw; }
          .home__route .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
            width: 10vw;
            height: 5vw; }
          .home__route .game__canvas__enemies__item--4 img {
            width: 19vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--4 {
          left: 5184px;
          bottom: 17px; }
          .home__route .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
            width: 180px;
            height: 90px; }
          .home__route .game__canvas__enemies__item--4 img {
            width: 342px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--5 {
          left: 340vw;
          bottom: 0.27778vw; }
          .home__route .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
            width: 6.11111vw;
            height: 6.11111vw; }
          .home__route .game__canvas__enemies__item--5 img {
            width: 16.16667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--5 {
          left: 6120px;
          bottom: 5px; }
          .home__route .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
            width: 110px;
            height: 110px; }
          .home__route .game__canvas__enemies__item--5 img {
            width: 291px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--6 {
          left: 388.66667vw;
          bottom: 0.55556vw; }
          .home__route .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
            width: 7.77778vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--6 img {
            width: 19.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--6 {
          left: 6996px;
          bottom: 10px; }
          .home__route .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
            width: 140px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--6 img {
            width: 346px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--7 {
          left: 453.55556vw; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
            left: 11.11111vw;
            width: 7.22222vw;
            height: 4.16667vw; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
            left: -30vw;
            bottom: 0;
            width: 13.88889vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
            left: -1.11111vw; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
            left: 47.22222vw; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
            left: -13.88889vw; }
          .home__route .game__canvas__enemies__item--7 img {
            width: 37.16667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--7 {
          left: 8164px; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
            left: 200px;
            width: 130px;
            height: 75px; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
            left: -540px;
            width: 250px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
            left: -20px; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
            left: 850px; }
          .home__route .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
            left: -250px; }
          .home__route .game__canvas__enemies__item--7 img {
            width: 669px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--8 {
          left: 542.77778vw;
          bottom: 0.27778vw; }
          .home__route .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
            width: 8.88889vw;
            height: 5vw; }
          .home__route .game__canvas__enemies__item--8 img {
            width: 21.5vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--8 {
          left: 9770px;
          bottom: 5px; }
          .home__route .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
            width: 160px;
            height: 90px; }
          .home__route .game__canvas__enemies__item--8 img {
            width: 387px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--9 {
          left: 590.94444vw;
          bottom: 0.27778vw; }
          .home__route .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
            width: 7.22222vw;
            height: 6.11111vw; }
          .home__route .game__canvas__enemies__item--9 img {
            width: 14.72222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--9 {
          left: 10637px;
          bottom: 5px; }
          .home__route .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
            width: 130px;
            height: 110px; }
          .home__route .game__canvas__enemies__item--9 img {
            width: 265px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--10 {
          left: 629.11111vw;
          bottom: 1.22222vw; }
          .home__route .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
            width: 6.11111vw;
            height: 6.11111vw; }
          .home__route .game__canvas__enemies__item--10 img {
            width: 18.5vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--10 {
          left: 11324px;
          bottom: 22px; }
          .home__route .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
            width: 110px;
            height: 110px; }
          .home__route .game__canvas__enemies__item--10 img {
            width: 333px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--11 {
          left: 716.27778vw; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
            left: 6.66667vw;
            width: 7.22222vw;
            height: 4.16667vw; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
            left: -41.11111vw;
            width: 13.88889vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
            left: -9.44444vw; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
            left: 40vw; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
            left: -24.44444vw; }
          .home__route .game__canvas__enemies__item--11 img {
            width: 35.94444vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--11 {
          left: 12893px; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
            left: 120px;
            width: 130px;
            height: 75px; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
            left: -740px;
            width: 250px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
            left: -170px; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
            left: 720px; }
          .home__route .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
            left: -440px; }
          .home__route .game__canvas__enemies__item--11 img {
            width: 647px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--12 {
          left: 781.88889vw;
          bottom: 0.38889vw; }
          .home__route .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
            width: 8.88889vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--12 img {
            width: 19.72222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--12 {
          left: 14074px;
          bottom: 7px; }
          .home__route .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
            width: 160px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--12 img {
            width: 355px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--13 {
          left: 835.27778vw;
          bottom: 1.22222vw; }
          .home__route .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
            width: 6.11111vw;
            height: 6.11111vw; }
          .home__route .game__canvas__enemies__item--13 img {
            width: 18.5vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--13 {
          left: 15035px;
          bottom: 22px; }
          .home__route .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
            width: 110px;
            height: 110px; }
          .home__route .game__canvas__enemies__item--13 img {
            width: 333px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--14 {
          left: 875.77778vw;
          bottom: 0.38889vw; }
          .home__route .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
            width: 7.22222vw;
            height: 4.44444vw; }
          .home__route .game__canvas__enemies__item--14 img {
            width: 15.38889vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--14 {
          left: 15764px;
          bottom: 7px; }
          .home__route .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
            width: 130px;
            height: 80px; }
          .home__route .game__canvas__enemies__item--14 img {
            width: 277px; } }
      @media (min-width: 1024px) {
        .home__route .game__canvas__enemies__item--15 {
          left: 928.33333vw; }
          .home__route .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
            width: 7.22222vw;
            height: 5.55556vw; }
          .home__route .game__canvas__enemies__item--15 img {
            width: 32.33333vw; } }
      @media (min-width: 1800px) {
        .home__route .game__canvas__enemies__item--15 {
          left: 16710px; }
          .home__route .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
            width: 130px;
            height: 100px; }
          .home__route .game__canvas__enemies__item--15 img {
            width: 582px; } }
      @media (min-width: 1024px) {
        .home__route .game__timer__item--1 {
          margin: -9.44444vw 0 0 -10.5vw; }
          .home__route .game__timer__item--1 img {
            width: 21vw; } }
      @media (min-width: 1800px) {
        .home__route .game__timer__item--1 {
          margin: -170px 0 0 -189px; }
          .home__route .game__timer__item--1 img {
            width: 378px; } }
      @media (min-width: 1024px) {
        .home__route .game__timer__item--2 {
          margin: -9.44444vw 0 0 -10.88889vw; }
          .home__route .game__timer__item--2 img {
            width: 21.83333vw; } }
      @media (min-width: 1800px) {
        .home__route .game__timer__item--2 {
          margin: -170px 0 0 -196px; }
          .home__route .game__timer__item--2 img {
            width: 393px; } }
      @media (min-width: 1024px) {
        .home__route .game__timer__item--3 {
          margin: -9.33333vw 0 0 -10.88889vw; }
          .home__route .game__timer__item--3 img {
            width: 21.83333vw; } }
      @media (min-width: 1800px) {
        .home__route .game__timer__item--3 {
          margin: -168px 0 0 -196px; }
          .home__route .game__timer__item--3 img {
            width: 393px; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__content {
          padding: 6.66667vw 0 0; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__content {
          padding: 120px 0 0; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__title {
          margin-bottom: 1.38889vw;
          font-size: 2.66667vw;
          line-height: 3.33333vw; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__title {
          margin-bottom: 25px;
          font-size: 48px;
          line-height: 60px; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__image img {
          width: 14.66667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__image img {
          width: 264px; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__image {
          margin-bottom: 1.38889vw; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__image {
          margin-bottom: 25px; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__text {
          margin: 0 0 2.11111vw;
          font-size: 1.22222vw;
          line-height: 1.5vw; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__text {
          margin: 0 0 38px;
          font-size: 22px;
          line-height: 27px; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__buttons a + a,
        .home__route .game__loss__buttons a + button,
        .home__route .game__loss__buttons button + a,
        .home__route .game__loss__buttons button + button {
          margin-left: 1.66667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__buttons a + a,
        .home__route .game__loss__buttons a + button,
        .home__route .game__loss__buttons button + a,
        .home__route .game__loss__buttons button + button {
          margin-left: 30px; } }
      @media (min-width: 1024px) {
        .home__route .game__loss__buttons a,
        .home__route .game__loss__buttons button {
          padding: 0.5vw 0.88889vw;
          width: 17vw;
          font-size: 1vw; } }
      @media (min-width: 1800px) {
        .home__route .game__loss__buttons a,
        .home__route .game__loss__buttons button {
          padding: 9px 16px;
          width: 306px;
          font-size: 18px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__content {
          padding: 5vw 0 0; } }
      @media (min-width: 1800px) {
        .home__route .game__win__content {
          padding: 90px 0 0; } }
      @media (min-width: 1024px) {
        .home__route .game__win__title {
          margin-bottom: 3.22222vw;
          font-size: 2.66667vw;
          line-height: 3.33333vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__title {
          margin-bottom: 58px;
          font-size: 48px;
          line-height: 60px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__text {
          margin: 0 auto 2.61111vw;
          max-width: 38.33333vw;
          font-size: 1.22222vw;
          line-height: 1.5vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__text {
          margin: 0 auto 47px;
          max-width: 690px;
          font-size: 22px;
          line-height: 27px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__banner::before {
          left: 0.83333vw;
          right: 0.83333vw;
          top: 0.72222vw;
          bottom: 0.72222vw;
          border-width: 0.22222vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__banner::before {
          left: 15px;
          right: 15px;
          top: 13px;
          bottom: 13px;
          border-width: 4px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__banner__text {
          font-size: 2vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__banner__text {
          font-size: 36px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__banner {
          margin: 0 auto 2.77778vw;
          padding: 2.05556vw;
          width: 44.44444vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__banner {
          margin: 0 auto 50px;
          padding: 37px;
          width: 800px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__buttons a + a,
        .home__route .game__win__buttons a + button,
        .home__route .game__win__buttons button + a,
        .home__route .game__win__buttons button + button {
          margin-left: 1.66667vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__buttons a + a,
        .home__route .game__win__buttons a + button,
        .home__route .game__win__buttons button + a,
        .home__route .game__win__buttons button + button {
          margin-left: 30px; } }
      @media (min-width: 1024px) {
        .home__route .game__win__buttons a,
        .home__route .game__win__buttons button {
          padding: 0.5vw 0.88889vw;
          width: 17vw;
          font-size: 1vw; } }
      @media (min-width: 1800px) {
        .home__route .game__win__buttons a,
        .home__route .game__win__buttons button {
          padding: 9px 16px;
          width: 306px;
          font-size: 18px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--1 {
        left: 50.27778vw;
        bottom: 0.61111vw; }
        .home__route .game--city .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
          width: 6.66667vw;
          height: 4.44444vw; }
        .home__route .game--city .game__canvas__enemies__item--1 img {
          width: 18.77778vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--1 {
        left: 905px;
        bottom: 11px; }
        .home__route .game--city .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
          width: 120px;
          height: 80px; }
        .home__route .game--city .game__canvas__enemies__item--1 img {
          width: 338px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--2 {
        left: 119.16667vw;
        bottom: 1.77778vw; }
        .home__route .game--city .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
          width: 6.11111vw;
          height: 6.66667vw; }
        .home__route .game--city .game__canvas__enemies__item--2 img {
          width: 22.83333vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--2 {
        left: 2145px;
        bottom: 32px; }
        .home__route .game--city .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
          width: 110px;
          height: 120px; }
        .home__route .game--city .game__canvas__enemies__item--2 img {
          width: 411px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--3 {
        left: 223.72222vw;
        bottom: 0.38889vw; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
          left: 7.77778vw;
          width: 27.77778vw;
          height: 4.16667vw; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
          left: -33.33333vw;
          width: 13.88889vw;
          height: 5.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
          left: -2.22222vw; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
          left: 47.22222vw; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
          left: -16.66667vw; }
        .home__route .game--city .game__canvas__enemies__item--3 img {
          width: 32.38889vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--3 {
        left: 4027px;
        bottom: 7px; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
          left: 140px;
          width: 500px;
          height: 75px; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
          left: -600px;
          width: 250px;
          height: 100px; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
          left: -40px; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
          left: 850px; }
        .home__route .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
          left: -300px; }
        .home__route .game--city .game__canvas__enemies__item--3 img {
          width: 583px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--4 {
        left: 282.83333vw;
        bottom: 1.22222vw; }
        .home__route .game--city .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
          width: 10vw;
          height: 5vw; }
        .home__route .game--city .game__canvas__enemies__item--4 img {
          width: 21.5vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--4 {
        left: 5091px;
        bottom: 22px; }
        .home__route .game--city .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
          width: 180px;
          height: 90px; }
        .home__route .game--city .game__canvas__enemies__item--4 img {
          width: 387px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--5 {
        left: 343.55556vw;
        bottom: 0.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
          width: 7.22222vw;
          height: 7.22222vw; }
        .home__route .game--city .game__canvas__enemies__item--5 img {
          width: 11.77778vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--5 {
        left: 6184px;
        bottom: 10px; }
        .home__route .game--city .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
          width: 130px;
          height: 130px; }
        .home__route .game--city .game__canvas__enemies__item--5 img {
          width: 212px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--6 {
        left: 387.66667vw;
        bottom: 0.5vw; }
        .home__route .game--city .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
          width: 7.77778vw;
          height: 5.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--6 img {
          width: 21.22222vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--6 {
        left: 6978px;
        bottom: 9px; }
        .home__route .game--city .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
          width: 140px;
          height: 100px; }
        .home__route .game--city .game__canvas__enemies__item--6 img {
          width: 382px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--7 {
        left: 474.77778vw;
        bottom: 2.11111vw; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
          left: 11.11111vw;
          width: 18.33333vw;
          height: 4.16667vw; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
          left: -53.33333vw;
          width: 13.88889vw;
          height: 5.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
          left: -18.33333vw; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
          left: 30.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
          left: -35.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--7 img {
          width: 22.88889vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--7 {
        left: 8546px;
        bottom: 38px; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
          left: 200px;
          width: 330px;
          height: 75px; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
          left: -960px;
          width: 250px;
          height: 100px; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
          left: -330px; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
          left: 550px; }
        .home__route .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
          left: -640px; }
        .home__route .game--city .game__canvas__enemies__item--7 img {
          width: 412px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--8 {
        left: 550.05556vw;
        bottom: 1.66667vw; }
        .home__route .game--city .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
          width: 7.77778vw;
          height: 5vw; }
        .home__route .game--city .game__canvas__enemies__item--8 img {
          width: 10.77778vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--8 {
        left: 9901px;
        bottom: 30px; }
        .home__route .game--city .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
          width: 140px;
          height: 90px; }
        .home__route .game--city .game__canvas__enemies__item--8 img {
          width: 194px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--9 {
        left: 586vw;
        bottom: 1.11111vw; }
        .home__route .game--city .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
          width: 7.77778vw;
          height: 5vw; }
        .home__route .game--city .game__canvas__enemies__item--9 img {
          width: 21.5vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--9 {
        left: 10548px;
        bottom: 20px; }
        .home__route .game--city .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
          width: 140px;
          height: 90px; }
        .home__route .game--city .game__canvas__enemies__item--9 img {
          width: 387px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--10 {
        left: 628.83333vw;
        bottom: 0.5vw; }
        .home__route .game--city .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
          width: 7.77778vw;
          height: 5vw; }
        .home__route .game--city .game__canvas__enemies__item--10 img {
          width: 19.44444vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--10 {
        left: 11319px;
        bottom: 9px; }
        .home__route .game--city .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
          width: 140px;
          height: 90px; }
        .home__route .game--city .game__canvas__enemies__item--10 img {
          width: 350px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--11 {
        left: 716.27778vw; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
          left: 28.88889vw;
          width: 26.66667vw;
          height: 4.16667vw; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
          left: -41.11111vw;
          width: 13.88889vw;
          height: 5.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
          left: -9.44444vw; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
          left: 45.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
          left: -23.88889vw; }
        .home__route .game--city .game__canvas__enemies__item--11 img {
          width: 50.66667vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--11 {
        left: 12893px; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
          left: 520px;
          width: 480px;
          height: 75px; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
          left: -740px;
          width: 250px;
          height: 100px; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
          left: -170px; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
          left: 820px; }
        .home__route .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
          left: -430px; }
        .home__route .game--city .game__canvas__enemies__item--11 img {
          width: 912px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--12 {
        left: 774.55556vw;
        bottom: 1.66667vw; }
        .home__route .game--city .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
          width: 7.77778vw;
          height: 5.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--12 img {
          width: 22.83333vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--12 {
        left: 13942px;
        bottom: 30px; }
        .home__route .game--city .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
          width: 140px;
          height: 100px; }
        .home__route .game--city .game__canvas__enemies__item--12 img {
          width: 411px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--13 {
        left: 839.77778vw;
        bottom: 1.77778vw; }
        .home__route .game--city .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
          width: 7.22222vw;
          height: 7.22222vw; }
        .home__route .game--city .game__canvas__enemies__item--13 img {
          width: 11.77778vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--13 {
        left: 15116px;
        bottom: 32px; }
        .home__route .game--city .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
          width: 130px;
          height: 130px; }
        .home__route .game--city .game__canvas__enemies__item--13 img {
          width: 212px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--14 {
        left: 885.72222vw;
        bottom: 0.5vw; }
        .home__route .game--city .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
          width: 7.22222vw;
          height: 4.44444vw; }
        .home__route .game--city .game__canvas__enemies__item--14 img {
          width: 19.05556vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--14 {
        left: 15943px;
        bottom: 9px; }
        .home__route .game--city .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
          width: 130px;
          height: 80px; }
        .home__route .game--city .game__canvas__enemies__item--14 img {
          width: 343px; } }
    @media (min-width: 1024px) {
      .home__route .game--city .game__canvas__enemies__item--15 {
        left: 926.77778vw;
        bottom: 0.88889vw; }
        .home__route .game--city .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
          width: 7.22222vw;
          height: 5.55556vw; }
        .home__route .game--city .game__canvas__enemies__item--15 img {
          width: 21.44444vw; } }
    @media (min-width: 1800px) {
      .home__route .game--city .game__canvas__enemies__item--15 {
        left: 16682px;
        bottom: 16px; }
        .home__route .game--city .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
          width: 130px;
          height: 100px; }
        .home__route .game--city .game__canvas__enemies__item--15 img {
          width: 386px; } }
    @media (max-width: 1023px) {
      .home__route {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 100;
        width: 100%;
        height: var(--vh);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        .home__route .container {
          padding: 0; }
        .is-show-route .home__route {
          opacity: 1;
          visibility: visible; } }
    @media (min-width: 1024px) {
      .home__route {
        margin-bottom: 5.33333vw; } }
    @media (min-width: 1800px) {
      .home__route {
        margin-bottom: 96px; } }
  .home__list {
    padding: 7.48792vmin 0 11.83575vmin;
    background: #1b1e49; }
    .home__list__item__image {
      margin: 8.21256vmin -3.86473vmin 12.80193vmin -8.69565vmin; }
      .home__list__item__image img {
        width: 100%; }
        @media (min-width: 1024px) {
          .home__list__item__image img {
            width: 36.11111vw; } }
        @media (min-width: 1800px) {
          .home__list__item__image img {
            width: 650px; } }
      @media (min-width: 1024px) {
        .home__list__item__image {
          -ms-flex-negative: 0;
              flex-shrink: 0;
          margin: 0 4vw 0 0; } }
      @media (min-width: 1800px) {
        .home__list__item__image {
          margin-right: 72px; } }
    .home__list__item__content {
      padding: 0 0 0 4.83092vmin;
      width: 100%; }
      @media (min-width: 1024px) {
        .home__list__item__content {
          padding: 1.88889vw 0 0; } }
      @media (min-width: 1800px) {
        .home__list__item__content {
          padding-top: 34px; } }
    .home__list__item__title {
      margin: 0 0 2.41546vmin;
      font-weight: 700;
      font-size: 6.28019vmin;
      line-height: 7.72947vmin; }
      @media (min-width: 1024px) {
        .home__list__item__title {
          margin: 0 0 0.66667vw;
          font-size: 2.22222vw;
          line-height: 3.05556vw; } }
      @media (min-width: 1800px) {
        .home__list__item__title {
          margin: 0 0 12px;
          font-size: 40px;
          line-height: 55px; } }
    .home__list__item__description {
      margin: 0 0 7.48792vmin;
      font-weight: 700;
      font-size: 7.00483vmin;
      line-height: 8.9372vmin;
      color: #858dff; }
      @media (min-width: 1024px) {
        .home__list__item__description {
          margin-bottom: 2.22222vw;
          font-size: 3.22222vw;
          line-height: 1.09; } }
      @media (min-width: 1800px) {
        .home__list__item__description {
          margin-bottom: 40px;
          font-size: 58px; } }
    .home__list__item__text {
      margin-bottom: 6.03865vmin;
      padding-right: 4.83092vmin;
      font-weight: 700;
      font-size: 3.86473vmin;
      line-height: 4.83092vmin; }
      @media (min-width: 1024px) {
        .home__list__item__text {
          margin-bottom: 1.38889vw;
          padding-right: 0;
          font-size: 0.94444vw;
          line-height: 1.27778vw; } }
      @media (min-width: 1800px) {
        .home__list__item__text {
          margin-bottom: 25px;
          font-size: 17px;
          line-height: 23px; } }
    .home__list__item__list {
      font-weight: 500;
      font-size: 4.34783vmin;
      line-height: 5.31401vmin; }
      .home__list__item__list li {
        position: relative;
        padding: 1.93237vmin 0 1.93237vmin 9.66184vmin; }
        .home__list__item__list li::before {
          content: "";
          position: absolute;
          left: 0;
          top: 50%;
          width: 6.76329vmin;
          height: 7.24638vmin;
          background: url("../images/snowflake-mobile.svg") 50% 50% no-repeat;
          background-size: contain;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%); }
          @media (min-width: 1024px) {
            .home__list__item__list li::before {
              top: 0.22222vw;
              width: 1.66667vw;
              height: 1.66667vw;
              -webkit-transform: none;
                  -ms-transform: none;
                      transform: none; } }
          @media (min-width: 1800px) {
            .home__list__item__list li::before {
              top: 4px;
              width: 30px;
              height: 30px; } }
        .home__list__item__list li + li {
          margin-top: 7px; }
          @media (min-width: 1024px) {
            .home__list__item__list li + li {
              margin-top: 0.38889vw; } }
          @media (min-width: 1800px) {
            .home__list__item__list li + li {
              margin-top: 7px; } }
        @media (min-width: 1024px) {
          .home__list__item__list li {
            padding: 0 0 0 2.55556vw; } }
        @media (min-width: 1800px) {
          .home__list__item__list li {
            padding-left: 46px; } }
      @media (min-width: 1024px) {
        .home__list__item__list {
          font-weight: 700;
          font-size: 1vw;
          line-height: 2.2; } }
      @media (min-width: 1800px) {
        .home__list__item__list {
          font-size: 18px; } }
    .home__list__item__button {
      text-align: center; }
      .home__list__item__button a {
        display: inline-block;
        vertical-align: middle;
        padding: 2.17391vmin 3.86473vmin;
        width: 51.69082vmin;
        font-weight: 700;
        font-size: 4.34783vmin;
        line-height: 2.2;
        text-align: center;
        color: #fff;
        background: #2c37d2; }
        @media (min-width: 1024px) {
          .home__list__item__button a {
            padding: 0.5vw 0.88889vw;
            width: 11.88889vw;
            font-size: 1vw; }
            .home__list__item__button a:hover {
              opacity: 0.75; } }
        @media (min-width: 1800px) {
          .home__list__item__button a {
            padding: 9px 16px;
            width: 214px;
            font-size: 18px; } }
      @media (min-width: 1024px) {
        .home__list__item__button {
          margin-top: 3.44444vw;
          text-align: left; } }
      @media (min-width: 1800px) {
        .home__list__item__button {
          margin-top: 62px; } }
    @media (min-width: 1024px) {
      .home__list__item:nth-child(2) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; }
        .home__list__item:nth-child(2) .home__list__item__content {
          padding-bottom: 69px; } }
    @media (min-width: 1024px) and (min-width: 1024px) {
      .home__list__item:nth-child(2) .home__list__item__content {
        padding-bottom: 3.83333vw; } }
    @media (min-width: 1024px) and (min-width: 1800px) {
      .home__list__item:nth-child(2) .home__list__item__content {
        padding-bottom: 69px; } }
    @media (min-width: 1024px) {
        .home__list__item:nth-child(2) .home__list__item__image {
          margin: 0 0 0 100px; } }
    @media (min-width: 1024px) and (min-width: 1024px) {
      .home__list__item:nth-child(2) .home__list__item__image {
        margin: 0 0 0 5.55556vw; } }
    @media (min-width: 1024px) and (min-width: 1800px) {
      .home__list__item:nth-child(2) .home__list__item__image {
        margin: 0 0 0 100px; } }
    .home__list__item + .home__list__item {
      margin-top: 11.83575vmin;
      border-top: 2px solid #10133a;
      padding-top: 7.48792vmin; }
      @media (min-width: 1024px) {
        .home__list__item + .home__list__item {
          margin-top: 3.88889vw;
          padding-top: 0.77778vw; } }
      @media (min-width: 1800px) {
        .home__list__item + .home__list__item {
          margin-top: 70px;
          padding-top: 14px; } }
    @media (min-width: 1024px) {
      .home__list__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    @media (min-width: 1024px) {
      .home__list {
        padding: 0; } }
  .home__banner {
    position: relative;
    z-index: 5;
    display: block;
    margin-bottom: 4.10628vmin;
    padding: 8.69565vmin 0; }
    .home__banner::before {
      content: "";
      position: absolute;
      left: 3.86473vmin;
      right: 3.86473vmin;
      top: 3.86473vmin;
      bottom: 3.86473vmin;
      z-index: -1;
      border: solid 0.72464vmin #fff; }
      @media (min-width: 1024px) {
        .home__banner::before {
          display: none; } }
    .home__banner__bg {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      background: 50% 50% no-repeat;
      background-size: cover; }
    .home__banner__text {
      font-weight: 700;
      font-size: 8.69565vmin;
      line-height: 10.62802vmin;
      text-align: center; }
      @media (min-width: 1024px) {
        .home__banner__text {
          font-size: 2vw;
          line-height: 1.22; } }
      @media (min-width: 1800px) {
        .home__banner__text {
          font-size: 36px; } }
    @media (min-width: 1024px) {
      .home__banner {
        margin-bottom: 2.38889vw;
        padding: 2.77778vw 0; }
        .home__banner:hover {
          opacity: 0.75; } }
    @media (min-width: 1800px) {
      .home__banner {
        margin-bottom: 43px;
        padding: 50px 0; } }
  .home__grid__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -21px; }
    @media (min-width: 1024px) {
      .home__grid__row {
        margin: 0 -1.16667vw; } }
    @media (min-width: 1800px) {
      .home__grid__row {
        margin: 0 -21px; } }
  .home__grid .swiper {
    margin: 0 -3.86473vmin;
    padding: 0 3.86473vmin; }
    @media (min-width: 1800px) {
      .home__grid .swiper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -1.16667vw;
        padding: 0;
        width: auto; } }
    @media (min-width: 1800px) {
      .home__grid .swiper {
        margin: 0 -21px; } }
  .home__grid .swiper-slide {
    width: 80.19324vmin;
    height: auto; }
    @media (min-width: 1024px) {
      .home__grid .swiper-slide {
        padding: 0 1.16667vw;
        width: 33.33334%;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; } }
    @media (min-width: 1800px) {
      .home__grid .swiper-slide {
        padding: 0 21px; } }
  .home__grid__col {
    padding: 0 21px;
    width: 33.33334%; }
    @media (min-width: 1024px) {
      .home__grid__col {
        padding: 0 1.16667vw; } }
    @media (min-width: 1800px) {
      .home__grid__col {
        padding: 0 21px; } }
  .home__grid__item {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4.34783vmin;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #1b1e49; }
    .home__grid__item__image {
      position: absolute;
      right: 21.01449vmin;
      bottom: 18.11594vmin;
      z-index: -1; }
      .home__grid__item__image img {
        width: 42.27053vmin; }
        @media (min-width: 1024px) {
          .home__grid__item__image img {
            width: 13.88889vw; } }
        @media (min-width: 1800px) {
          .home__grid__item__image img {
            width: 250px; } }
      @media (min-width: 1024px) {
        .home__grid__item__image {
          right: 0;
          bottom: 0; } }
    .home__grid__item__title {
      margin: 0 0 2.89855vmin;
      font-weight: 700;
      font-size: 6.28019vmin;
      line-height: 7.72947vmin; }
      @media (min-width: 1024px) {
        .home__grid__item__title {
          margin: 0 0 1.05556vw;
          font-size: 1.44444vw;
          line-height: 2vw; } }
      @media (min-width: 1800px) {
        .home__grid__item__title {
          margin: 0 0 19px;
          font-size: 26px;
          line-height: 36px; } }
    .home__grid__item__text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 40.82126vmin;
      min-height: 48.30918vmin;
      font-weight: 700;
      font-size: 4.10628vmin;
      line-height: 5.07246vmin; }
      @media (min-width: 1024px) {
        .home__grid__item__text {
          display: block;
          margin-bottom: 3.83333vw;
          min-height: 11.55556vw;
          max-width: 22.55556vw;
          font-size: 0.94444vw;
          line-height: 1.16667vw; } }
      @media (min-width: 1800px) {
        .home__grid__item__text {
          margin-bottom: 69px;
          min-height: 208px;
          max-width: 406px;
          font-size: 17px;
          line-height: 21px; } }
    .home__grid__item__button {
      margin-top: auto;
      text-align: center; }
      .home__grid__item__button a {
        display: inline-block;
        vertical-align: middle;
        padding: 2.17391vmin 3.86473vmin;
        width: 51.69082vmin;
        font-weight: 700;
        font-size: 4.34783vmin;
        line-height: 2.2;
        text-align: center;
        color: #fff;
        background: #2c37d2; }
        @media (min-width: 1024px) {
          .home__grid__item__button a {
            padding: 0.5vw 0.88889vw;
            width: 11.88889vw;
            font-size: 1vw; }
            .home__grid__item__button a:hover {
              opacity: 0.75; } }
        @media (min-width: 1800px) {
          .home__grid__item__button a {
            padding: 9px 16px;
            width: 214px;
            font-size: 18px; } }
      @media (min-width: 1024px) {
        .home__grid__item__button {
          text-align: left; } }
    @media (min-width: 1024px) {
      .home__grid__item {
        padding: 1.44444vw 1.66667vw 1.94444vw; } }
    @media (min-width: 1800px) {
      .home__grid__item {
        padding: 26px 30px 35px; } }
  .home__grid__text {
    margin-top: 14.97585vmin;
    font-weight: 700;
    font-size: 4.34783vmin;
    line-height: 5.31401vmin;
    text-align: center; }
    @media (min-width: 1024px) {
      .home__grid__text {
        margin: 2.38889vw auto 0;
        max-width: 41.66667vw;
        font-size: 1.11111vw;
        line-height: 1.38889vw; } }
    @media (min-width: 1800px) {
      .home__grid__text {
        margin: 43px auto 0;
        max-width: 750px;
        font-size: 20px;
        line-height: 25px; } }
  .home__bottom-image {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 78.98551vmin;
    background: 50% 50% no-repeat;
    background-size: cover; }
    @media (min-width: 1024px) {
      .home__bottom-image {
        height: 32.66667vw; } }
    @media (min-width: 1800px) {
      .home__bottom-image {
        height: 588px; } }
  @media (min-width: 1024px) {
    .home {
      padding-bottom: 18.83333vw; } }
  @media (min-width: 1800px) {
    .home {
      padding-bottom: 339px; } }

.game__vertical {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 95;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#ccd8fb), color-stop(20.66%, #edf3f9), color-stop(41.5%, #f7fbf4), color-stop(60.25%, #faf9e9), color-stop(81.08%, #fcf2d6), to(#fbf0d3));
  background: -o-linear-gradient(top, #ccd8fb 0%, #edf3f9 20.66%, #f7fbf4 41.5%, #faf9e9 60.25%, #fcf2d6 81.08%, #fbf0d3 100%);
  background: linear-gradient(180deg, #ccd8fb 0%, #edf3f9 20.66%, #f7fbf4 41.5%, #faf9e9 60.25%, #fcf2d6 81.08%, #fbf0d3 100%); }
  .game__vertical__image {
    margin-bottom: 7.72947vmin; }
    .game__vertical__image img {
      width: 58.69565vmin; }
  .game__vertical__text {
    font-weight: 700;
    font-size: 6.28019vmin;
    line-height: 8.69565vmin;
    text-transform: uppercase;
    color: #3d2d60; }
  @media (min-width: 1024px) {
    .game__vertical {
      display: none; } }
  @media screen and (orientation: landscape) {
    .game__vertical {
      display: none; } }

.game__preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: var(--vh);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .game__preview__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff 50% 50% no-repeat;
    background-size: cover; }
  .game__preview__content {
    padding: 7.24638vmin 0 0;
    text-align: center;
    color: #000; }
    @media (min-width: 1024px) {
      .game__preview__content {
        padding: 11.20448vh 0 0; } }
  .game__preview__image {
    margin-bottom: 7.0028vh; }
    .game__preview__image img {
      width: 31.93277vh; }
    @media (max-width: 1023px) {
      .game__preview__image {
        display: none; } }
  .game__preview__arrow {
    margin-bottom: 0.72464vmin; }
    .game__preview__arrow img {
      width: 9.66184vmin; }
    @media (min-width: 1024px) {
      .game__preview__arrow {
        display: none; } }
  .game__preview__text {
    margin: 0 auto 3.62319vmin;
    max-width: 164.25121vmin;
    font-weight: 700;
    font-size: 6.28019vmin;
    line-height: 7.72947vmin;
    color: #3d2d60; }
    @media (min-width: 1024px) {
      .game__preview__text {
        margin: 0 auto 3.92157vh;
        max-width: 56.02241vh;
        font-weight: 400;
        font-size: 2.52101vh;
        line-height: 3.08123vh;
        color: #000; } }
  .game__preview__space {
    margin: 0 auto 4.83092vmin;
    max-width: 101.44928vmin;
    font-size: 4.34783vmin;
    line-height: 5.31401vmin;
    color: #3d2d60; }
    @media (min-width: 1024px) {
      .game__preview__space {
        margin: 0 0 2.10084vh;
        max-width: none;
        font-weight: 700;
        font-size: 2.52101vh;
        line-height: 3.08123vh; } }
  .game__preview__red {
    margin-bottom: 4.58937vmin;
    font-weight: 500;
    font-size: 4.34783vmin;
    line-height: 5.31401vmin;
    color: #e6012a; }
    @media (min-width: 1024px) {
      .game__preview__red {
        margin-bottom: 7.0028vh;
        font-size: 2.52101vh;
        line-height: 3.08123vh; } }
  .game__preview__start button {
    display: inline-block;
    vertical-align: middle;
    outline: none;
    border: none;
    padding: 2.657vmin 7.97101vmin;
    width: 59.90338vmin;
    font-weight: 700;
    font-size: 4.34783vmin;
    line-height: 10.62802vmin;
    text-align: center;
    color: #fff;
    background: #2c37d2; }
    @media (min-width: 1024px) {
      .game__preview__start button {
        padding: 1.2605vh 2.2409vh;
        width: 29.97199vh;
        font-size: 2.52101vh;
        line-height: 2.2;
        background: #2b33a3; }
        .game__preview__start button:hover {
          opacity: 0.75; } }
  .is-preview .game__preview {
    display: block; }
  .is-preview-visible .game__preview {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 1024px) {
    .game__preview {
      height: 100%; } }

.game__canvas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  -o-transition: filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s; }
  .game__canvas__jump {
    position: absolute;
    left: 3.86473vmin;
    top: 50%;
    z-index: 15;
    outline: none;
    border: none;
    padding: 0;
    width: 20.28986vmin;
    height: 20.28986vmin;
    background: none;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .game__canvas__jump svg {
      display: block;
      width: 100%;
      height: 100%; }
    .game__canvas__jump.is-disabled {
      opacity: 0.5;
      pointer-events: none; }
    .is-device-desktop .game__canvas__jump {
      display: none; }
    @media (min-width: 1024px) {
      .game__canvas__jump {
        left: 2.2409vh;
        width: 11.76471vh;
        height: 11.76471vh; } }
  .game__canvas__wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    will-change: transform; }
  .game__canvas__bg {
    font-size: 0;
    white-space: nowrap;
    pointer-events: none; }
    .game__canvas__bg__item {
      display: inline-block;
      vertical-align: middle; }
    .game__canvas__bg img {
      height: var(--vh); }
      @media (min-width: 1024px) {
        .game__canvas__bg img {
          height: 100vh; } }
  .game__canvas__person {
    position: absolute;
    left: calc(208 / 714 * var(--vh));
    bottom: calc(42 / 714 * var(--vh));
    will-change: transform; }
    .game__canvas__person__wheel {
      position: relative;
      will-change: transform; }
      .game__canvas__person__wheel__collision {
        position: absolute;
        left: 50%;
        top: 50%;
        width: calc(130 / 714 * var(--vh));
        height: calc(130 / 714 * var(--vh));
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        .is-show-collision .game__canvas__person__wheel__collision {
          background: rgba(255, 0, 0, 0.5); }
        @media (min-width: 1024px) {
          .game__canvas__person__wheel__collision {
            width: 18.20728vh;
            height: 18.20728vh; } }
      .game__canvas__person__wheel__rotate {
        width: calc(185 / 714 * var(--vh));
        height: calc(185 / 714 * var(--vh));
        background: url("../images/game/wheel.png") 50% 50% no-repeat;
        background-size: contain;
        will-change: transform; }
        @media (min-width: 1024px) {
          .game__canvas__person__wheel__rotate {
            width: 25.91036vh;
            height: 25.91036vh; } }
    .game__canvas__person__shadow {
      position: absolute;
      left: 50%;
      bottom: 0;
      z-index: -1;
      width: 21.28852vh;
      height: 3.64146vh;
      background: url("../images/game/shadow.png") 50% 50% no-repeat;
      background-size: contain;
      -webkit-transform: translate(-50%, 50%);
          -ms-transform: translate(-50%, 50%);
              transform: translate(-50%, 50%); }
    @media (min-width: 1024px) {
      .game__canvas__person {
        left: 29.13165vh;
        bottom: 5.88235vh; } }
  .game__canvas__pillar {
    position: absolute;
    left: calc(46 / 714 * var(--vh));
    bottom: 0;
    pointer-events: none; }
    .game__canvas__pillar img {
      width: calc(381 / 714 * var(--vh)); }
    @media (min-width: 1024px) {
      .game__canvas__pillar {
        left: 6.44258vh; }
        .game__canvas__pillar img {
          width: 53.36134vh; } }
  .game__canvas__sign {
    position: absolute;
    left: calc(3673 / 714 * var(--vh));
    bottom: calc(67 / 714 * var(--vh));
    pointer-events: none; }
    .game__canvas__sign img {
      width: calc(86 / 714 * var(--vh)); }
    @media (min-width: 1024px) {
      .game__canvas__sign {
        left: 514.42577vh;
        bottom: 9.38375vh; }
        .game__canvas__sign img {
          width: 12.04482vh; } }
  .game__canvas__sign-2 {
    position: absolute;
    left: calc(12414 / 714 * var(--vh));
    bottom: calc(51 / 714 * var(--vh));
    pointer-events: none; }
    .game__canvas__sign-2 img {
      width: calc(86 / 714 * var(--vh)); }
    @media (min-width: 1024px) {
      .game__canvas__sign-2 {
        left: 1738.65546vh;
        bottom: 7.14286vh; }
        .game__canvas__sign-2 img {
          width: 12.04482vh; } }
  .game__canvas__cat {
    position: absolute;
    left: calc(7762 / 714 * var(--vh));
    bottom: calc(66 / 714 * var(--vh));
    pointer-events: none; }
    .game__canvas__cat img {
      width: calc(244 / 714 * var(--vh)); }
    @media (min-width: 1024px) {
      .game__canvas__cat {
        left: 1087.11485vh;
        bottom: 9.2437vh; }
        .game__canvas__cat img {
          width: 34.17367vh; } }
  .game__canvas__enemies__item {
    position: absolute; }
    .game__canvas__enemies__item__collision {
      position: absolute;
      left: 50%;
      bottom: 0;
      width: calc(130 / 714 * var(--vh));
      height: calc(130 / 714 * var(--vh));
      opacity: 0.5;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item__collision {
          width: 18.20728vh;
          height: 18.20728vh; } }
    .game__canvas__enemies__item__action {
      position: absolute;
      opacity: 0.5; }
    .game__canvas__enemies__item__start {
      position: absolute;
      width: 1px;
      height: calc(100 / 714 * var(--vh));
      opacity: 0.5; }
      .is-show-collision .game__canvas__enemies__item__start {
        background: #f00; }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item__start {
          height: 14.0056vh; } }
    .game__canvas__enemies__item__end {
      position: absolute;
      width: 1px;
      height: calc(100 / 714 * var(--vh));
      opacity: 0.5; }
      .is-show-collision .game__canvas__enemies__item__end {
        background: #f00; }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item__end {
          height: 14.0056vh; } }
    .game__canvas__enemies__item__arrow {
      position: absolute;
      left: 50%;
      bottom: calc(250 / 714 * var(--vh));
      width: calc(93 / 714 * var(--vh));
      height: calc(127 / 714 * var(--vh));
      fill: #f00;
      opacity: 0.5;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
      .is-passed .game__canvas__enemies__item__arrow {
        fill: #0765ed; }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item__arrow {
          bottom: 35.01401vh;
          width: 13.02521vh;
          height: 17.78711vh; } }
    .game__canvas__enemies__item--1 {
      left: calc(987 / 714 * var(--vh));
      bottom: calc(18 / 714 * var(--vh)); }
      .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
        width: calc(160 / 714 * var(--vh));
        height: calc(100 / 714 * var(--vh)); }
      .game__canvas__enemies__item--1 img {
        width: calc(266 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--1 {
          left: 138.23529vh;
          bottom: 2.52101vh; }
          .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
            width: 22.40896vh;
            height: 14.0056vh; }
          .game__canvas__enemies__item--1 img {
            width: 37.2549vh; } }
    .game__canvas__enemies__item--2 {
      left: calc(2210 / 714 * var(--vh));
      bottom: calc(3 / 714 * var(--vh)); }
      .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
        width: calc(110 / 714 * var(--vh));
        height: calc(120 / 714 * var(--vh));
        -webkit-transform: translateX(-32%);
            -ms-transform: translateX(-32%);
                transform: translateX(-32%); }
      .game__canvas__enemies__item--2 img {
        width: calc(317 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--2 {
          left: 309.52381vh;
          bottom: 0.42017vh; }
          .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
            width: 15.40616vh;
            height: 16.80672vh; }
          .game__canvas__enemies__item--2 img {
            width: 44.39776vh; } }
    .game__canvas__enemies__item--3 {
      left: calc(4052 / 714 * var(--vh));
      bottom: calc(8 / 714 * var(--vh));
      z-index: 15; }
      .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
        left: calc(100 / 714 * var(--vh));
        width: calc(130 / 714 * var(--vh));
        height: calc(75 / 714 * var(--vh)); }
      .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
        left: calc(-650 / 714 * var(--vh));
        bottom: 0;
        width: calc(250 / 714 * var(--vh)); }
      .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
        left: calc(-90 / 714 * var(--vh));
        bottom: 0; }
      .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
        left: calc(800 / 714 * var(--vh));
        bottom: 0; }
      .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
        left: calc(-330 / 714 * var(--vh)); }
      .game__canvas__enemies__item--3 img {
        width: calc(557 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--3 {
          left: 567.507vh;
          bottom: 1.12045vh; }
          .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
            left: 14.0056vh;
            width: 18.20728vh;
            height: 10.5042vh; }
          .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
            left: -91.03641vh;
            width: 35.01401vh; }
          .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
            left: -12.60504vh; }
          .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
            left: 112.04482vh; }
          .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
            left: -46.21849vh; }
          .game__canvas__enemies__item--3 img {
            width: 78.0112vh; } }
    .game__canvas__enemies__item--4 {
      left: calc(5184 / 714 * var(--vh));
      bottom: calc(17 / 714 * var(--vh)); }
      .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
        width: calc(180 / 714 * var(--vh));
        height: calc(90 / 714 * var(--vh)); }
      .game__canvas__enemies__item--4 img {
        width: calc(342 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--4 {
          left: 726.05042vh;
          bottom: 2.38095vh; }
          .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
            width: 25.21008vh;
            height: 12.60504vh; }
          .game__canvas__enemies__item--4 img {
            width: 47.89916vh; } }
    .game__canvas__enemies__item--5 {
      left: calc(6120 / 714 * var(--vh));
      bottom: calc(5 / 714 * var(--vh)); }
      .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
        width: calc(110 / 714 * var(--vh));
        height: calc(110 / 714 * var(--vh)); }
      .game__canvas__enemies__item--5 img {
        width: calc(291 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--5 {
          left: 857.14286vh;
          bottom: 0.70028vh; }
          .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
            width: 15.40616vh;
            height: 15.40616vh; }
          .game__canvas__enemies__item--5 img {
            width: 40.7563vh; } }
    .game__canvas__enemies__item--6 {
      left: calc(6996 / 714 * var(--vh));
      bottom: calc(10 / 714 * var(--vh)); }
      .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
        width: calc(140 / 714 * var(--vh));
        height: calc(100 / 714 * var(--vh)); }
      .game__canvas__enemies__item--6 img {
        width: calc(346 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--6 {
          left: 979.83193vh;
          bottom: 1.40056vh; }
          .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
            width: 19.60784vh;
            height: 14.0056vh; }
          .game__canvas__enemies__item--6 img {
            width: 48.45938vh; } }
    .game__canvas__enemies__item--7 {
      left: calc(8164 / 714 * var(--vh));
      bottom: 0;
      z-index: 15; }
      .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
        left: calc(200 / 714 * var(--vh));
        width: calc(130 / 714 * var(--vh));
        height: calc(75 / 714 * var(--vh)); }
      .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
        left: calc(-540 / 714 * var(--vh));
        bottom: 0;
        width: calc(250 / 714 * var(--vh)); }
      .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
        left: calc(-20 / 714 * var(--vh));
        bottom: 0; }
      .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
        left: calc(850 / 714 * var(--vh));
        bottom: 0; }
      .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
        left: calc(-250 / 714 * var(--vh)); }
      .game__canvas__enemies__item--7 img {
        width: calc(669 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--7 {
          left: 1143.41737vh; }
          .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
            left: 28.0112vh;
            width: 18.20728vh;
            height: 10.5042vh; }
          .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
            left: -75.63025vh;
            bottom: 0;
            width: 35.01401vh; }
          .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
            left: -2.80112vh; }
          .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
            left: 119.04762vh; }
          .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
            left: -35.01401vh; }
          .game__canvas__enemies__item--7 img {
            width: 93.69748vh; } }
    .game__canvas__enemies__item--8 {
      left: calc(9770 / 714 * var(--vh));
      bottom: calc(5 / 714 * var(--vh)); }
      .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
        width: calc(160 / 714 * var(--vh));
        height: calc(90 / 714 * var(--vh)); }
      .game__canvas__enemies__item--8 img {
        width: calc(387 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--8 {
          left: 1368.34734vh;
          bottom: 0.70028vh; }
          .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
            width: 22.40896vh;
            height: 12.60504vh; }
          .game__canvas__enemies__item--8 img {
            width: 54.20168vh; } }
    .game__canvas__enemies__item--9 {
      left: calc(10637 / 714 * var(--vh));
      bottom: calc(5 / 714 * var(--vh)); }
      .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
        width: calc(130 / 714 * var(--vh));
        height: calc(110 / 714 * var(--vh)); }
      .game__canvas__enemies__item--9 img {
        width: calc(265 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--9 {
          left: 1489.77591vh;
          bottom: 0.70028vh; }
          .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
            width: 18.20728vh;
            height: 15.40616vh; }
          .game__canvas__enemies__item--9 img {
            width: 37.11485vh; } }
    .game__canvas__enemies__item--10 {
      left: calc(11324 / 714 * var(--vh));
      bottom: calc(22 / 714 * var(--vh)); }
      .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
        width: calc(110 / 714 * var(--vh));
        height: calc(110 / 714 * var(--vh));
        -webkit-transform: translateX(-45%);
            -ms-transform: translateX(-45%);
                transform: translateX(-45%); }
      .game__canvas__enemies__item--10 img {
        width: calc(333 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--10 {
          left: 1585.9944vh;
          bottom: 3.08123vh; }
          .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
            width: 15.40616vh;
            height: 15.40616vh; }
          .game__canvas__enemies__item--10 img {
            width: 46.63866vh; } }
    .game__canvas__enemies__item--11 {
      left: calc(12893 / 714 * var(--vh));
      bottom: 0;
      z-index: 15; }
      .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
        left: calc(120 / 714 * var(--vh));
        width: calc(130 / 714 * var(--vh));
        height: calc(75 / 714 * var(--vh)); }
      .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
        left: calc(-740 / 714 * var(--vh));
        bottom: 0;
        width: calc(250 / 714 * var(--vh)); }
      .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
        left: calc(-170 / 714 * var(--vh));
        bottom: 0; }
      .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
        left: calc(720 / 714 * var(--vh));
        bottom: 0; }
      .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
        left: calc(-440 / 714 * var(--vh)); }
      .game__canvas__enemies__item--11 img {
        width: calc(647 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--11 {
          left: 1805.7423vh; }
          .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
            left: 16.80672vh;
            width: 18.20728vh;
            height: 10.5042vh; }
          .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
            left: -103.64146vh;
            width: 35.01401vh; }
          .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
            left: -23.80952vh; }
          .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
            left: 100.84034vh; }
          .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
            left: -61.62465vh; }
          .game__canvas__enemies__item--11 img {
            width: 90.61625vh; } }
    .game__canvas__enemies__item--12 {
      left: calc(14074 / 714 * var(--vh));
      bottom: calc(7 / 714 * var(--vh)); }
      .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
        width: calc(160 / 714 * var(--vh));
        height: calc(100 / 714 * var(--vh)); }
      .game__canvas__enemies__item--12 img {
        width: calc(355 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--12 {
          left: 1971.14846vh;
          bottom: 0.98039vh; }
          .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
            width: 22.40896vh;
            height: 14.0056vh; }
          .game__canvas__enemies__item--12 img {
            width: 49.71989vh; } }
    .game__canvas__enemies__item--13 {
      left: calc(15035 / 714 * var(--vh));
      bottom: calc(22 / 714 * var(--vh)); }
      .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
        width: calc(110 / 714 * var(--vh));
        height: calc(110 / 714 * var(--vh));
        -webkit-transform: translateX(-43%);
            -ms-transform: translateX(-43%);
                transform: translateX(-43%); }
      .game__canvas__enemies__item--13 img {
        width: calc(333 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--13 {
          left: 2105.7423vh;
          bottom: 3.08123vh; }
          .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
            width: 15.40616vh;
            height: 15.40616vh; }
          .game__canvas__enemies__item--13 img {
            width: 46.63866vh; } }
    .game__canvas__enemies__item--14 {
      left: calc(15764 / 714 * var(--vh));
      bottom: calc(7 / 714 * var(--vh)); }
      .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
        width: calc(130 / 714 * var(--vh));
        height: calc(80 / 714 * var(--vh));
        -webkit-transform: translateX(-30%);
            -ms-transform: translateX(-30%);
                transform: translateX(-30%); }
      .game__canvas__enemies__item--14 img {
        width: calc(277 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--14 {
          left: 2207.84314vh;
          bottom: 0.98039vh; }
          .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
            width: 18.20728vh;
            height: 11.20448vh; }
          .game__canvas__enemies__item--14 img {
            width: 38.79552vh; } }
    .game__canvas__enemies__item--15 {
      left: calc(16710 / 714 * var(--vh));
      bottom: 0; }
      .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
        width: calc(130 / 714 * var(--vh));
        height: calc(100 / 714 * var(--vh)); }
      .game__canvas__enemies__item--15 img {
        width: calc(582 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__canvas__enemies__item--15 {
          left: 2340.33613vh; }
          .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
            width: 18.20728vh;
            height: 14.0056vh; }
          .game__canvas__enemies__item--15 img {
            width: 81.51261vh; } }
  .is-timer .game__canvas {
    -webkit-filter: blur(4px);
            filter: blur(4px); }

.game__info {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 55;
  display: none;
  padding: 1.40056vh;
  font-size: 1.40056vh;
  color: #000;
  background: rgba(255, 255, 255, 0.8); }
  .game__info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .game__info li + li {
      margin-top: 0.70028vh; }
    .game__info li span:first-child {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 16.80672vh; }
    .game__info li span:last-child {
      min-width: 4.20168vh; }
  .is-show-info .game__info {
    display: block; }

.game__timer {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
  display: none;
  width: 100%;
  height: 100%; }
  .game__timer__item {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0; }
    .game__timer__item.is-active {
      opacity: 1;
      -webkit-animation: timer 1.5s backwards;
              animation: timer 1.5s backwards; }
      @media (min-width: 1024px) {
        .game__timer__item.is-active {
          -webkit-animation: timer 1.5s forwards;
                  animation: timer 1.5s forwards; } }
    .game__timer__item--1 {
      margin: calc(-170 / 714 * var(--vh)) 0 0 calc(-189 / 714 * var(--vh)); }
      .game__timer__item--1 img {
        width: calc(378 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__timer__item--1 {
          margin: -23.80952vh 0 0 -26.47059vh; }
          .game__timer__item--1 img {
            width: 52.94118vh; } }
    .game__timer__item--2 {
      margin: calc(-170 / 714 * var(--vh)) 0 0 calc(-196 / 714 * var(--vh)); }
      .game__timer__item--2 img {
        width: calc(393 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__timer__item--2 {
          margin: -23.80952vh 0 0 -27.45098vh; }
          .game__timer__item--2 img {
            width: 55.04202vh; } }
    .game__timer__item--3 {
      margin: calc(-168 / 714 * var(--vh)) 0 0 calc(-196 / 714 * var(--vh)); }
      .game__timer__item--3 img {
        width: calc(393 / 714 * var(--vh)); }
      @media (min-width: 1024px) {
        .game__timer__item--3 {
          margin: -23.52941vh 0 0 -27.45098vh; }
          .game__timer__item--3 img {
            width: 55.04202vh; } }
  .is-timer .game__timer {
    display: block; }

.game__loss {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .game__loss__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff 50% 50% no-repeat;
    background-size: cover; }
  .game__loss__content {
    padding: 2.41546vmin 0 0;
    text-align: center;
    color: #000; }
    @media (min-width: 1024px) {
      .game__loss__content {
        padding: 16.80672vh 0 0; } }
  .game__loss__title {
    margin-bottom: 1.93237vmin;
    font-weight: 700;
    font-size: 8.21256vmin;
    line-height: 10.14493vmin;
    color: #3d2d60; }
    @media (min-width: 1024px) {
      .game__loss__title {
        margin-bottom: 3.5014vh;
        font-size: 6.72269vh;
        line-height: 8.40336vh; } }
  .game__loss__image {
    margin-bottom: 1.44928vmin; }
    .game__loss__image img {
      width: 42.27053vmin; }
      @media (min-width: 1024px) {
        .game__loss__image img {
          width: 36.97479vh; } }
    @media (min-width: 1024px) {
      .game__loss__image {
        margin-bottom: 3.5014vh; } }
  .game__loss__text {
    margin: 0 auto 4.83092vmin;
    max-width: 101.44928vmin;
    font-size: 5.31401vmin;
    line-height: 6.52174vmin; }
    @media (min-width: 1024px) {
      .game__loss__text {
        margin: 0 0 5.32213vh;
        max-width: none;
        font-size: 3.08123vh;
        line-height: 3.78151vh; } }
  .game__loss__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .game__loss__buttons a,
    .game__loss__buttons button {
      display: inline-block;
      vertical-align: middle;
      outline: none;
      border: none;
      padding: 2.657vmin 5.07246vmin;
      width: 73.18841vmin;
      font-weight: 700;
      font-size: 4.34783vmin;
      line-height: 10.62802vmin;
      text-align: center;
      color: #fff;
      background: #2c37d2; }
      .game__loss__buttons a + a,
      .game__loss__buttons a + button,
      .game__loss__buttons button + a,
      .game__loss__buttons button + button {
        margin-left: 7.00483vmin; }
        @media (min-width: 1024px) {
          .game__loss__buttons a + a,
          .game__loss__buttons a + button,
          .game__loss__buttons button + a,
          .game__loss__buttons button + button {
            margin-left: 4.20168vh; } }
      .game__loss__buttons a.is-disabled,
      .game__loss__buttons button.is-disabled {
        opacity: 0.5;
        pointer-events: none; }
      @media (min-width: 1024px) {
        .game__loss__buttons a,
        .game__loss__buttons button {
          padding: 1.2605vh 2.2409vh;
          width: 42.85714vh;
          font-size: 2.52101vh;
          line-height: 2.2;
          background: #2b33a3; }
          .game__loss__buttons a:hover,
          .game__loss__buttons button:hover {
            opacity: 0.75; } }
  .is-loss .game__loss {
    display: block; }
  .is-loss-visible .game__loss {
    opacity: 1;
    visibility: visible; }

.game__win {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .game__win__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff 50% 50% no-repeat;
    background-size: cover; }
  .game__win__content {
    padding: 3.62319vmin 0 0;
    text-align: center;
    color: #000; }
    @media (min-width: 1024px) {
      .game__win__content {
        padding: 12.60504vh 0 0; } }
  .game__win__title {
    margin-bottom: 2.41546vmin;
    font-weight: 700;
    font-size: 8.21256vmin;
    line-height: 10.14493vmin;
    color: #3d2d60; }
    @media (min-width: 1024px) {
      .game__win__title {
        margin-bottom: 8.12325vh;
        font-size: 6.72269vh;
        line-height: 8.40336vh; } }
  .game__win__text {
    margin: 0 auto 3.86473vmin;
    max-width: 140.09662vmin;
    font-weight: 700;
    font-size: 4.34783vmin;
    line-height: 5.31401vmin;
    color: #3d2d60; }
    @media (min-width: 1024px) {
      .game__win__text {
        margin: 0 auto 6.58263vh;
        max-width: 96.63866vh;
        font-size: 3.08123vh;
        line-height: 3.78151vh; } }
  .game__win__banner {
    position: relative;
    z-index: 5;
    display: block;
    margin: 0 auto 3.86473vmin;
    padding: 7.00483vmin;
    width: 139.37198vmin;
    color: #fff; }
    .game__win__banner::before {
      content: "";
      position: absolute;
      left: 2.17391vmin;
      right: 2.17391vmin;
      top: 2.17391vmin;
      bottom: 2.17391vmin;
      border: solid 0.96618vmin #fff; }
      @media (min-width: 1024px) {
        .game__win__banner::before {
          left: 2.10084vh;
          right: 2.10084vh;
          top: 1.82073vh;
          bottom: 1.82073vh;
          border-width: 0.56022vh; } }
    .game__win__banner__bg {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      background: 50% 50% no-repeat;
      background-size: cover; }
    .game__win__banner__text {
      font-weight: 700;
      font-size: 8.21256vmin;
      line-height: 10.62802vmin;
      text-align: center; }
      @media (min-width: 1024px) {
        .game__win__banner__text {
          font-size: 5.04202vh;
          line-height: 1.22; } }
    @media (min-width: 1024px) {
      .game__win__banner {
        margin: 0 auto 7.0028vh;
        padding: 5.18207vh;
        width: 112.04482vh; }
        .game__win__banner:hover {
          opacity: 0.75; } }
  .game__win__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .game__win__buttons a,
    .game__win__buttons button {
      display: inline-block;
      vertical-align: middle;
      outline: none;
      border: none;
      padding: 2.657vmin 5.07246vmin;
      width: 73.18841vmin;
      font-weight: 700;
      font-size: 4.34783vmin;
      line-height: 10.62802vmin;
      text-align: center;
      color: #fff;
      background: #2c37d2; }
      .game__win__buttons a + a,
      .game__win__buttons a + button,
      .game__win__buttons button + a,
      .game__win__buttons button + button {
        margin-left: 7.00483vmin; }
        @media (min-width: 1024px) {
          .game__win__buttons a + a,
          .game__win__buttons a + button,
          .game__win__buttons button + a,
          .game__win__buttons button + button {
            margin-left: 4.20168vh; } }
      .game__win__buttons a.is-disabled,
      .game__win__buttons button.is-disabled {
        opacity: 0.5;
        pointer-events: none; }
      @media (min-width: 1024px) {
        .game__win__buttons a,
        .game__win__buttons button {
          padding: 1.2605vh 2.2409vh;
          width: 42.85714vh;
          font-size: 2.52101vh;
          line-height: 2.2;
          background: #2b33a3; }
          .game__win__buttons a:hover,
          .game__win__buttons button:hover {
            opacity: 0.75; } }
  .is-win .game__win {
    display: block; }
  .is-win-visible .game__win {
    opacity: 1;
    visibility: visible; }

.game__share {
  position: absolute;
  left: 3.86473vmin;
  top: 3.86473vmin;
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .game__share__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    outline: none;
    border: none;
    padding: 0;
    width: 13.28502vmin;
    height: 13.28502vmin;
    background: #2c37d2; }
    .game__share__toggle::before {
      content: "";
      position: absolute;
      left: 100%;
      top: 50%;
      margin-left: 0.96618vmin;
      width: 3.38164vmin;
      height: 1.93237vmin;
      background: url("../images/header-social-arrow.svg") 50% 50% no-repeat;
      background-size: contain;
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateY(-50%) rotate(-90deg);
          -ms-transform: translateY(-50%) rotate(-90deg);
              transform: translateY(-50%) rotate(-90deg);
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s;
      pointer-events: none; }
    .game__share__toggle svg {
      width: 7.72947vmin;
      height: 7.72947vmin; }
  .game__share__list {
    position: absolute;
    left: 100%;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 5.55556vmin;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .game__share__list li + li {
      margin-left: 2.41546vmin; }
    .game__share__list li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 13.28502vmin;
      height: 13.28502vmin;
      color: #f5f5f5;
      background: #2c37d2; }
      .game__share__list li a svg {
        display: block;
        width: 7.72947vmin;
        height: 7.72947vmin;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
  .game__share.is-show .game__share__toggle {
    background: #515adf; }
    .game__share.is-show .game__share__toggle::before {
      opacity: 1;
      visibility: visible; }
  .game__share.is-show .game__share__list {
    opacity: 1;
    visibility: visible; }
  .is-win .game__share,
  .is-loss .game__share {
    display: block; }
  .is-win-visible .game__share,
  .is-loss-visible .game__share {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 1024px) {
    .game__share {
      display: none !important; } }

.game__close {
  position: absolute;
  right: 3.86473vmin;
  top: 3.86473vmin;
  z-index: 55;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  border: none;
  padding: 0;
  width: 13.28502vmin;
  height: 13.28502vmin;
  background: #2c37d2; }
  .game__close::before, .game__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -0.48309vmin 0 0 -3.62319vmin;
    width: 7.24638vmin;
    height: 1.20773vmin;
    background: #fff; }
  .game__close::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .game__close::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  @media (min-width: 1024px) {
    .game__close {
      display: none; } }

.game--city .game__canvas__enemies__item--1 {
  left: calc(905 / 714 * var(--vh));
  bottom: calc(11 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
    width: calc(120 / 714 * var(--vh));
    height: calc(80 / 714 * var(--vh));
    -webkit-transform: translateX(-80%);
        -ms-transform: translateX(-80%);
            transform: translateX(-80%); }
  .game--city .game__canvas__enemies__item--1 img {
    width: calc(338 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--1 {
      left: 126.7507vh;
      bottom: 1.54062vh; }
      .game--city .game__canvas__enemies__item--1 .game__canvas__enemies__item__collision {
        width: 16.80672vh;
        height: 11.20448vh; }
      .game--city .game__canvas__enemies__item--1 img {
        width: 47.33894vh; } }

.game--city .game__canvas__enemies__item--2 {
  left: calc(2145 / 714 * var(--vh));
  bottom: calc(32 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
    width: calc(110 / 714 * var(--vh));
    height: calc(120 / 714 * var(--vh));
    -webkit-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
            transform: translateX(-60%); }
  .game--city .game__canvas__enemies__item--2 img {
    width: calc(411 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--2 {
      left: 300.42017vh;
      bottom: 4.48179vh; }
      .game--city .game__canvas__enemies__item--2 .game__canvas__enemies__item__collision {
        width: 15.40616vh;
        height: 16.80672vh; }
      .game--city .game__canvas__enemies__item--2 img {
        width: 57.56303vh; } }

.game--city .game__canvas__enemies__item--3 {
  left: calc(4027 / 714 * var(--vh));
  bottom: calc(7 / 714 * var(--vh));
  z-index: 15; }
  .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
    left: calc(140 / 714 * var(--vh));
    width: calc(500 / 714 * var(--vh));
    height: calc(75 / 714 * var(--vh));
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
    left: calc(-600 / 714 * var(--vh));
    bottom: 0;
    width: calc(250 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
    left: calc(-40 / 714 * var(--vh));
    bottom: 0; }
  .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
    left: calc(850 / 714 * var(--vh));
    bottom: 0; }
  .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
    left: calc(-300 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--3 img {
    width: calc(583 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--3 {
      left: 564.0056vh;
      bottom: 0.98039vh; }
      .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__collision {
        left: 19.60784vh;
        width: 70.02801vh;
        height: 10.5042vh; }
      .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__action {
        left: -84.03361vh;
        width: 35.01401vh; }
      .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__start {
        left: -5.60224vh; }
      .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__end {
        left: 119.04762vh; }
      .game--city .game__canvas__enemies__item--3 .game__canvas__enemies__item__arrow {
        left: -42.01681vh; }
      .game--city .game__canvas__enemies__item--3 img {
        width: 81.65266vh; } }

.game--city .game__canvas__enemies__item--4 {
  left: calc(5091 / 714 * var(--vh));
  bottom: calc(22 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
    width: calc(180 / 714 * var(--vh));
    height: calc(90 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--4 img {
    width: calc(387 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--4 {
      left: 713.02521vh;
      bottom: 3.08123vh; }
      .game--city .game__canvas__enemies__item--4 .game__canvas__enemies__item__collision {
        width: 25.21008vh;
        height: 12.60504vh; }
      .game--city .game__canvas__enemies__item--4 img {
        width: 54.20168vh; } }

.game--city .game__canvas__enemies__item--5 {
  left: calc(6184 / 714 * var(--vh));
  bottom: calc(10 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
    width: calc(130 / 714 * var(--vh));
    height: calc(130 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--5 img {
    width: calc(212 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--5 {
      left: 866.10644vh;
      bottom: 1.40056vh; }
      .game--city .game__canvas__enemies__item--5 .game__canvas__enemies__item__collision {
        width: 18.20728vh;
        height: 18.20728vh; }
      .game--city .game__canvas__enemies__item--5 img {
        width: 29.69188vh; } }

.game--city .game__canvas__enemies__item--6 {
  left: calc(6978 / 714 * var(--vh));
  bottom: calc(9 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
    width: calc(140 / 714 * var(--vh));
    height: calc(100 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--6 img {
    width: calc(382 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--6 {
      left: 977.31092vh;
      bottom: 1.2605vh; }
      .game--city .game__canvas__enemies__item--6 .game__canvas__enemies__item__collision {
        width: 19.60784vh;
        height: 14.0056vh; }
      .game--city .game__canvas__enemies__item--6 img {
        width: 53.5014vh; } }

.game--city .game__canvas__enemies__item--7 {
  left: calc(8546 / 714 * var(--vh));
  bottom: calc(38 / 714 * var(--vh));
  z-index: 15; }
  .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
    left: calc(200 / 714 * var(--vh));
    width: calc(330 / 714 * var(--vh));
    height: calc(75 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
    left: calc(-960 / 714 * var(--vh));
    bottom: 0;
    width: calc(250 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
    left: calc(-330 / 714 * var(--vh));
    bottom: 0; }
  .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
    left: calc(550 / 714 * var(--vh));
    bottom: 0; }
  .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
    left: calc(-640 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--7 img {
    width: calc(412 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--7 {
      left: 1196.91877vh;
      bottom: 5.32213vh; }
      .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__collision {
        left: 28.0112vh;
        width: 46.21849vh;
        height: 10.5042vh; }
      .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__action {
        left: -134.45378vh;
        width: 35.01401vh; }
      .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__start {
        left: -46.21849vh; }
      .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__end {
        left: 77.03081vh; }
      .game--city .game__canvas__enemies__item--7 .game__canvas__enemies__item__arrow {
        left: -89.63585vh; }
      .game--city .game__canvas__enemies__item--7 img {
        width: 57.70308vh; } }

.game--city .game__canvas__enemies__item--8 {
  left: calc(9901 / 714 * var(--vh));
  bottom: calc(30 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
    width: calc(140 / 714 * var(--vh));
    height: calc(90 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--8 img {
    width: calc(194 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--8 {
      left: 1386.69468vh;
      bottom: 4.20168vh; }
      .game--city .game__canvas__enemies__item--8 .game__canvas__enemies__item__collision {
        width: 19.60784vh;
        height: 12.60504vh; }
      .game--city .game__canvas__enemies__item--8 img {
        width: 27.17087vh; } }

.game--city .game__canvas__enemies__item--9 {
  left: calc(10548 / 714 * var(--vh));
  bottom: calc(20 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
    width: calc(140 / 714 * var(--vh));
    height: calc(90 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--9 img {
    width: calc(387 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--9 {
      left: 1477.31092vh;
      bottom: 2.80112vh; }
      .game--city .game__canvas__enemies__item--9 .game__canvas__enemies__item__collision {
        width: 19.60784vh;
        height: 12.60504vh; }
      .game--city .game__canvas__enemies__item--9 img {
        width: 54.20168vh; } }

.game--city .game__canvas__enemies__item--10 {
  left: calc(11319 / 714 * var(--vh));
  bottom: calc(9 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
    width: calc(140 / 714 * var(--vh));
    height: calc(90 / 714 * var(--vh));
    -webkit-transform: translateX(-45%);
        -ms-transform: translateX(-45%);
            transform: translateX(-45%); }
  .game--city .game__canvas__enemies__item--10 img {
    width: calc(350 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--10 {
      left: 1585.29412vh;
      bottom: 1.2605vh; }
      .game--city .game__canvas__enemies__item--10 .game__canvas__enemies__item__collision {
        width: 19.60784vh;
        height: 12.60504vh; }
      .game--city .game__canvas__enemies__item--10 img {
        width: 49.01961vh; } }

.game--city .game__canvas__enemies__item--11 {
  left: calc(12893 / 714 * var(--vh));
  bottom: 0;
  z-index: 15; }
  .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
    left: calc(520 / 714 * var(--vh));
    width: calc(480 / 714 * var(--vh));
    height: calc(75 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
    left: calc(-740 / 714 * var(--vh));
    bottom: 0;
    width: calc(250 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
    left: calc(-170 / 714 * var(--vh));
    bottom: 0; }
  .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
    left: calc(820 / 714 * var(--vh));
    bottom: 0; }
  .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
    left: calc(-430 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--11 img {
    width: calc(912 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--11 {
      left: 1805.7423vh; }
      .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__collision {
        left: 72.82913vh;
        width: 67.22689vh;
        height: 10.5042vh; }
      .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__action {
        left: -103.64146vh;
        width: 35.01401vh; }
      .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__start {
        left: -23.80952vh; }
      .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__end {
        left: 114.84594vh; }
      .game--city .game__canvas__enemies__item--11 .game__canvas__enemies__item__arrow {
        left: -60.22409vh; }
      .game--city .game__canvas__enemies__item--11 img {
        width: 127.73109vh; } }

.game--city .game__canvas__enemies__item--12 {
  left: calc(13942 / 714 * var(--vh));
  bottom: calc(30 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
    width: calc(140 / 714 * var(--vh));
    height: calc(100 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--12 img {
    width: calc(411 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--12 {
      left: 1952.66106vh;
      bottom: 4.20168vh; }
      .game--city .game__canvas__enemies__item--12 .game__canvas__enemies__item__collision {
        width: 19.60784vh;
        height: 14.0056vh; }
      .game--city .game__canvas__enemies__item--12 img {
        width: 57.56303vh; } }

.game--city .game__canvas__enemies__item--13 {
  left: calc(15116 / 714 * var(--vh));
  bottom: calc(32 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
    width: calc(130 / 714 * var(--vh));
    height: calc(130 / 714 * var(--vh));
    -webkit-transform: translateX(-43%);
        -ms-transform: translateX(-43%);
            transform: translateX(-43%); }
  .game--city .game__canvas__enemies__item--13 img {
    width: calc(212 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--13 {
      left: 2117.08683vh;
      bottom: 4.48179vh; }
      .game--city .game__canvas__enemies__item--13 .game__canvas__enemies__item__collision {
        width: 18.20728vh;
        height: 18.20728vh; }
      .game--city .game__canvas__enemies__item--13 img {
        width: 29.69188vh; } }

.game--city .game__canvas__enemies__item--14 {
  left: calc(15943 / 714 * var(--vh));
  bottom: calc(9 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
    width: calc(130 / 714 * var(--vh));
    height: calc(80 / 714 * var(--vh));
    -webkit-transform: translateX(-30%);
        -ms-transform: translateX(-30%);
            transform: translateX(-30%); }
  .game--city .game__canvas__enemies__item--14 img {
    width: calc(343 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--14 {
      left: 2232.91317vh;
      bottom: 1.2605vh; }
      .game--city .game__canvas__enemies__item--14 .game__canvas__enemies__item__collision {
        width: 18.20728vh;
        height: 11.20448vh; }
      .game--city .game__canvas__enemies__item--14 img {
        width: 48.03922vh; } }

.game--city .game__canvas__enemies__item--15 {
  left: calc(16682 / 714 * var(--vh));
  bottom: calc(16 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
    width: calc(130 / 714 * var(--vh));
    height: calc(100 / 714 * var(--vh)); }
  .game--city .game__canvas__enemies__item--15 img {
    width: calc(386 / 714 * var(--vh)); }
  @media (min-width: 1024px) {
    .game--city .game__canvas__enemies__item--15 {
      left: 2336.41457vh;
      bottom: 2.2409vh; }
      .game--city .game__canvas__enemies__item--15 .game__canvas__enemies__item__collision {
        width: 18.20728vh;
        height: 14.0056vh; }
      .game--city .game__canvas__enemies__item--15 img {
        width: 54.06162vh; } }

@-webkit-keyframes wheel {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes wheel {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes timer {
  0% {
    opacity: 1;
    -webkit-transform: rotate(-90deg) scale(0);
            transform: rotate(-90deg) scale(0); }
  50% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  75% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(1.5);
            transform: rotate(0deg) scale(1.5); } }

@keyframes timer {
  0% {
    opacity: 1;
    -webkit-transform: rotate(-90deg) scale(0);
            transform: rotate(-90deg) scale(0); }
  50% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  75% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(1.5);
            transform: rotate(0deg) scale(1.5); } }

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