@charset "UTF-8";
.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c2a29;
  overflow: hidden; }
  .loading__anim {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    width: calc(min(92vw, 560px) * 1.2);
    height: calc(min(92vw, 560px) * 1.2);
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 2rem solid transparent;
    border-color: transparent rgba(205, 200, 200, 0.3) transparent rgba(205, 200, 200, 0.3);
    animation: animate-rotate 1.75s linear infinite; }
    .loading__anim__in {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.05);
      height: calc(min(92vw, 560px) * 1.05);
      aspect-ratio: 1/1;
      border-radius: 100%;
      border: 1px solid rgba(205, 200, 200, 0.3);
      animation: animate-rotate 2s linear infinite reverse; }
      .loading__anim__in::after {
        content: "";
        position: absolute;
        top: -0.3rem;
        left: 50%;
        width: 0.6rem;
        height: 0.6rem;
        aspect-ratio: 1/1;
        border-radius: 100%;
        background-color: #cdcdcd;
        opacity: 0.6; }
    .loading__anim__dot {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.15);
      height: calc(min(92vw, 560px) * 1.15);
      aspect-ratio: 1/1;
      stroke-dasharray: 1 9;
      animation: animate-rotate 1.5s linear infinite; }

.button {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10; }
  @media screen and (min-width: 756px) {
    .button {
      width: 380px;
      height: 100%; } }
  .button:hover .button__layers__purple_right {
    left: 10%; }
  .button:hover .button__layers__purple_bottom {
    left: 12.5%; }
  .button:hover .anim_el_left {
    left: -2.5rem; }
  .button:hover .anim_el_right {
    right: -1rem; }
  .button__layers {
    position: relative;
    width: 100%;
    height: 100%; }
    .button__layers__black {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: 100;
      display: flex;
      align-items: center; }
      .button__layers__black__bg {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%; }
        .button__layers__black__bg__text {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          height: 40%;
          z-index: 1; }
        .button__layers__black__bg__arrows {
          position: absolute;
          transform: translateY(-50%);
          top: 50%;
          right: 12%;
          height: 36%;
          z-index: 1; }
        .button__layers__black__bg__black_bg {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          width: 100%;
          aspect-ratio: 326/65; }
          .button__layers__black__bg__black_bg image:first-child {
            width: 100%;
            height: 100%; }
          .button__layers__black__bg__black_bg image:last-child {
            width: calc(100% - 8px);
            height: calc(100% - 8px); }
    .button__layers__purple_left {
      position: absolute;
      top: -5%;
      left: -7%;
      width: 105%;
      height: 110%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(2% 32%, 7% 0, 97% 0, 100% 50%, 97% 100%, 7% 100%, 0 50%, 2% 36%, 3.5% 36%, 4.1% 32%); }
      .button__layers__purple_left > img {
        position: absolute;
        bottom: 5%;
        left: 2.5rem;
        max-width: 1rem; }
    .button__layers__purple_right {
      position: absolute;
      top: 0;
      left: 5.5%;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
      transition: all 0.5s ease-in-out; }
    .button__layers .anim_el_left,
    .button__layers .anim_el_right {
      position: absolute;
      background: #2c2a29;
      clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
      transition: all 0.5s ease-in-out;
      z-index: 100; }
    .button__layers .anim_el_left {
      top: 0.8rem;
      left: -1.1rem;
      width: 1.8rem;
      height: 6px; }
    .button__layers .anim_el_right {
      bottom: 1rem;
      right: -0.5rem;
      width: 1rem;
      height: 4px; }
    .button__layers__purple_bottom {
      position: absolute;
      transform: translateX(-50%);
      bottom: -1.8rem;
      left: 50%;
      width: 25%;
      height: 0.5rem;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
      transition: all 0.5s ease-in-out; }

.anim-pulse {
  transition: opacity 2s;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes pulse {
  0%,
  100% {
    opacity: 1; }
  50% {
    opacity: 0.5; } }

.loade-path {
  animation: animate-stroke 1.5s linear infinite; }

@keyframes animate-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124; } }

.anim-rotate {
  animation: animate-rotate 1.5s linear infinite; }

@keyframes animate-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); } }

.anim-rotate-reverse {
  animation: animate-rotate-reverse 1.5s linear infinite; }

@keyframes animate-rotate-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg); } }

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c2a29;
  overflow: hidden; }
  .loading__anim {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    width: calc(min(92vw, 560px) * 1.2);
    height: calc(min(92vw, 560px) * 1.2);
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 2rem solid transparent;
    border-color: transparent rgba(205, 200, 200, 0.3) transparent rgba(205, 200, 200, 0.3);
    animation: animate-rotate 1.75s linear infinite; }
    .loading__anim__in {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.05);
      height: calc(min(92vw, 560px) * 1.05);
      aspect-ratio: 1/1;
      border-radius: 100%;
      border: 1px solid rgba(205, 200, 200, 0.3);
      animation: animate-rotate 2s linear infinite reverse; }
      .loading__anim__in::after {
        content: "";
        position: absolute;
        top: -0.3rem;
        left: 50%;
        width: 0.6rem;
        height: 0.6rem;
        aspect-ratio: 1/1;
        border-radius: 100%;
        background-color: #cdcdcd;
        opacity: 0.6; }
    .loading__anim__dot {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.15);
      height: calc(min(92vw, 560px) * 1.15);
      aspect-ratio: 1/1;
      stroke-dasharray: 1 9;
      animation: animate-rotate 1.5s linear infinite; }

.button {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10; }
  @media screen and (min-width: 756px) {
    .button {
      width: 380px;
      height: 100%; } }
  .button:hover .button__layers__purple_right {
    left: 10%; }
  .button:hover .button__layers__purple_bottom {
    left: 12.5%; }
  .button:hover .anim_el_left {
    left: -2.5rem; }
  .button:hover .anim_el_right {
    right: -1rem; }
  .button__layers {
    position: relative;
    width: 100%;
    height: 100%; }
    .button__layers__black {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: 100;
      display: flex;
      align-items: center; }
      .button__layers__black__bg {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%; }
        .button__layers__black__bg__text {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          height: 40%;
          z-index: 1; }
        .button__layers__black__bg__arrows {
          position: absolute;
          transform: translateY(-50%);
          top: 50%;
          right: 12%;
          height: 36%;
          z-index: 1; }
        .button__layers__black__bg__black_bg {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          width: 100%;
          aspect-ratio: 326/65; }
          .button__layers__black__bg__black_bg image:first-child {
            width: 100%;
            height: 100%; }
          .button__layers__black__bg__black_bg image:last-child {
            width: calc(100% - 8px);
            height: calc(100% - 8px); }
    .button__layers__purple_left {
      position: absolute;
      top: -5%;
      left: -7%;
      width: 105%;
      height: 110%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(2% 32%, 7% 0, 97% 0, 100% 50%, 97% 100%, 7% 100%, 0 50%, 2% 36%, 3.5% 36%, 4.1% 32%); }
      .button__layers__purple_left > img {
        position: absolute;
        bottom: 5%;
        left: 2.5rem;
        max-width: 1rem; }
    .button__layers__purple_right {
      position: absolute;
      top: 0;
      left: 5.5%;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
      transition: all 0.5s ease-in-out; }
    .button__layers .anim_el_left,
    .button__layers .anim_el_right {
      position: absolute;
      background: #2c2a29;
      clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
      transition: all 0.5s ease-in-out;
      z-index: 100; }
    .button__layers .anim_el_left {
      top: 0.8rem;
      left: -1.1rem;
      width: 1.8rem;
      height: 6px; }
    .button__layers .anim_el_right {
      bottom: 1rem;
      right: -0.5rem;
      width: 1rem;
      height: 4px; }
    .button__layers__purple_bottom {
      position: absolute;
      transform: translateX(-50%);
      bottom: -1.8rem;
      left: 50%;
      width: 25%;
      height: 0.5rem;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
      transition: all 0.5s ease-in-out; }

.loading {
  position: relative;
  z-index: 100;
  color: #ffffff;
  z-index: 100000;
  transition: opacity 1.5s ease-out; }
  .loading__nav {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    color: #ffffff;
    font-size: 2.8rem; }
  .loading__logo {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    width: 100%; }
    .loading__logo > img {
      width: calc(100% - 2rem);
      height: fit-content;
      max-width: calc(min(92vw, 560px));
      object-fit: contain; }
    .loading__logo__text {
      position: absolute;
      transform: translateX(-50%);
      left: 50%;
      bottom: -8rem;
      font-size: 2.4rem;
      font-weight: 900;
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

.top {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  scroll-snap-align: start;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  overflow: hidden !important;
  z-index: 1; }
  .top #topVideo {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden; }
  .top__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 129%; }
    @media screen and (min-width: 756px) {
      .top__bg {
        object-position: 115px 78%; } }
  .top__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    padding: 3rem 2rem;
    background-color: transparent; }
    @media screen and (min-width: 756px) {
      .top__header {
        width: 14rem;
        padding: 3rem 2rem;
        border-right: 1px solid #ffffff; } }
    .top__header__logo {
      width: 100%;
      margin-bottom: auto; }
    .top__header__text {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      font-size: 1.2rem;
      letter-spacing: 0.51rem;
      writing-mode: vertical-rl;
      padding-bottom: 5vh;
      white-space: nowrap; }
      @media screen and (min-width: 756px) {
        .top__header__text {
          padding-bottom: 0; } }
  .top__assets {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 45%;
    left: 50%;
    width: 70%;
    max-width: calc(min(95vw, 480px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; }
    @media screen and (min-width: 756px) and (max-width: 1279px) {
      .top__assets {
        width: unset;
        top: 35% !important;
        right: 14rem;
        transform: unset;
        left: unset;
        bottom: unset; } }
    @media screen and (min-width: 1280px) {
      .top__assets {
        width: unset;
        top: 44%;
        right: 14rem;
        transform: unset;
        left: unset;
        bottom: unset; } }
    .top__assets__button {
      position: absolute;
      transform: translateX(-50%);
      left: 50%;
      bottom: -25vh;
      cursor: pointer;
      width: 88%;
      margin-top: 10rem;
      z-index: 10; }
      @media screen and (min-width: 756px) {
        .top__assets__button {
          position: relative;
          transform: unset;
          left: unset;
          bottom: unset;
          width: 70%;
          margin-top: 0; } }
      .top__assets__button:hover .top__assets__button__layers__purple_right {
        left: 10%; }
      .top__assets__button:hover .top__assets__button__layers__purple_bottom {
        left: 12.5%; }
      .top__assets__button:hover .anim_el_left {
        left: -2.5rem; }
      .top__assets__button:hover .anim_el_right {
        right: -1rem; }
      .top__assets__button__layers {
        position: relative;
        width: 100%;
        height: 68px; }
        @media screen and (min-width: 756px) {
          .top__assets__button__layers {
            height: 8rem; } }
        .top__assets__button__layers__black {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          width: 100%;
          height: calc(100% - 1rem);
          max-height: calc(100% - 1rem);
          object-fit: contain;
          z-index: 100;
          display: flex;
          align-items: center; }
          .top__assets__button__layers__black > img {
            height: 100%;
            max-height: 100%; }
          .top__assets__button__layers__black__bg {
            position: absolute;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%; }
            .top__assets__button__layers__black__bg__text {
              position: absolute;
              transform: translate(-50%, -50%);
              top: 50%;
              left: 50%;
              width: 30%;
              height: fit-content;
              z-index: 1; }
            .top__assets__button__layers__black__bg__arrows {
              position: absolute;
              transform: translateY(-50%);
              top: 50%;
              right: 12%;
              width: 2.8rem;
              height: fit-content;
              z-index: 1; }
            .top__assets__button__layers__black__bg__black_bg {
              position: absolute;
              transform: translate(-50%, -50%);
              top: 50%;
              left: 50%;
              width: 100%;
              aspect-ratio: 326/65; }
              .top__assets__button__layers__black__bg__black_bg image:first-child {
                width: 100%;
                height: 100%; }
              .top__assets__button__layers__black__bg__black_bg image:last-child {
                width: calc(100% - 8px);
                height: calc(100% - 8px); }
        .top__assets__button__layers__purple_left {
          position: absolute;
          top: 0.2rem;
          left: -7%;
          width: 100%;
          height: calc(100% - 0.4rem);
          background-image: linear-gradient(to right, #c62eff, #7636ff);
          clip-path: polygon(2% 32%, 7% 0, 97% 0, 100% 50%, 97% 100%, 7% 100%, 0 50%, 2% 36%, 3.5% 36%, 4.1% 32%); }
          @media screen and (min-width: 756px) {
            .top__assets__button__layers__purple_left {
              top: -5%;
              width: 105%;
              height: 110%; } }
          .top__assets__button__layers__purple_left > img {
            position: absolute;
            bottom: 5%;
            left: 2.5rem;
            max-width: 1rem; }
        .top__assets__button__layers__purple_right {
          position: absolute;
          top: 0.6rem;
          left: 3%;
          width: 100%;
          height: calc(100% - 1.2rem);
          background-image: linear-gradient(to right, #c62eff, #7636ff);
          clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
          transition: all 0.5s ease-in-out; }
          @media screen and (min-width: 756px) {
            .top__assets__button__layers__purple_right {
              top: 0;
              left: 5.5%;
              height: 100%; } }
        .top__assets__button__layers .anim_el_left,
        .top__assets__button__layers .anim_el_right {
          position: absolute;
          background: #2c2a29;
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          transition: all 0.5s ease-in-out;
          z-index: 100; }
        .top__assets__button__layers .anim_el_left {
          top: 0.8rem;
          left: -1.1rem;
          width: 1.8rem;
          height: 6px; }
        .top__assets__button__layers .anim_el_right {
          bottom: 1rem;
          right: -0.5rem;
          width: 1rem;
          height: 4px; }
        .top__assets__button__layers__purple_bottom {
          position: absolute;
          transform: translateX(-50%);
          bottom: -1.8rem;
          left: 50%;
          width: 25%;
          height: 0.5rem;
          background-image: linear-gradient(to right, #c62eff, #7636ff);
          clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
          transition: all 0.5s ease-in-out; }

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c2a29;
  overflow: hidden; }
  .loading__anim {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    width: calc(min(92vw, 560px) * 1.2);
    height: calc(min(92vw, 560px) * 1.2);
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 2rem solid transparent;
    border-color: transparent rgba(205, 200, 200, 0.3) transparent rgba(205, 200, 200, 0.3);
    animation: animate-rotate 1.75s linear infinite; }
    .loading__anim__in {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.05);
      height: calc(min(92vw, 560px) * 1.05);
      aspect-ratio: 1/1;
      border-radius: 100%;
      border: 1px solid rgba(205, 200, 200, 0.3);
      animation: animate-rotate 2s linear infinite reverse; }
      .loading__anim__in::after {
        content: "";
        position: absolute;
        top: -0.3rem;
        left: 50%;
        width: 0.6rem;
        height: 0.6rem;
        aspect-ratio: 1/1;
        border-radius: 100%;
        background-color: #cdcdcd;
        opacity: 0.6; }
    .loading__anim__dot {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.15);
      height: calc(min(92vw, 560px) * 1.15);
      aspect-ratio: 1/1;
      stroke-dasharray: 1 9;
      animation: animate-rotate 1.5s linear infinite; }

.button {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10; }
  @media screen and (min-width: 756px) {
    .button {
      width: 380px;
      height: 100%; } }
  .button:hover .button__layers__purple_right {
    left: 10%; }
  .button:hover .button__layers__purple_bottom {
    left: 12.5%; }
  .button:hover .anim_el_left {
    left: -2.5rem; }
  .button:hover .anim_el_right {
    right: -1rem; }
  .button__layers {
    position: relative;
    width: 100%;
    height: 100%; }
    .button__layers__black {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: 100;
      display: flex;
      align-items: center; }
      .button__layers__black__bg {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%; }
        .button__layers__black__bg__text {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          height: 40%;
          z-index: 1; }
        .button__layers__black__bg__arrows {
          position: absolute;
          transform: translateY(-50%);
          top: 50%;
          right: 12%;
          height: 36%;
          z-index: 1; }
        .button__layers__black__bg__black_bg {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          width: 100%;
          aspect-ratio: 326/65; }
          .button__layers__black__bg__black_bg image:first-child {
            width: 100%;
            height: 100%; }
          .button__layers__black__bg__black_bg image:last-child {
            width: calc(100% - 8px);
            height: calc(100% - 8px); }
    .button__layers__purple_left {
      position: absolute;
      top: -5%;
      left: -7%;
      width: 105%;
      height: 110%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(2% 32%, 7% 0, 97% 0, 100% 50%, 97% 100%, 7% 100%, 0 50%, 2% 36%, 3.5% 36%, 4.1% 32%); }
      .button__layers__purple_left > img {
        position: absolute;
        bottom: 5%;
        left: 2.5rem;
        max-width: 1rem; }
    .button__layers__purple_right {
      position: absolute;
      top: 0;
      left: 5.5%;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
      transition: all 0.5s ease-in-out; }
    .button__layers .anim_el_left,
    .button__layers .anim_el_right {
      position: absolute;
      background: #2c2a29;
      clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
      transition: all 0.5s ease-in-out;
      z-index: 100; }
    .button__layers .anim_el_left {
      top: 0.8rem;
      left: -1.1rem;
      width: 1.8rem;
      height: 6px; }
    .button__layers .anim_el_right {
      bottom: 1rem;
      right: -0.5rem;
      width: 1rem;
      height: 4px; }
    .button__layers__purple_bottom {
      position: absolute;
      transform: translateX(-50%);
      bottom: -1.8rem;
      left: 50%;
      width: 25%;
      height: 0.5rem;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
      transition: all 0.5s ease-in-out; }

.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .menu .nav {
    position: absolute;
    top: 0;
    right: calc(-68% - (4rem));
    width: calc(100% - 4rem);
    height: 24rem;
    background-image: linear-gradient(to right, #c62eff, #7636ff);
    background-size: contain;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11% 100%, 0 86%);
    padding: 0 1rem 1rem;
    z-index: 1000;
    display: flex;
    font-family: "Audiowide";
    color: #ffffff;
    font-weight: 900;
    transition: all 0.5s ease-in-out; }
    @media screen and (min-width: 756px) {
      .menu .nav {
        right: calc(-504px + 60px);
        padding: 0 1rem 2.4rem 1rem;
        width: 504px;
        height: 350px; } }
    .menu .nav.open {
      right: 0 !important; }
    .menu .nav__bg {
      position: absolute;
      top: 0;
      right: 0;
      background-color: #000;
      width: calc(100% - 0.4rem);
      height: calc(100% - 1.2rem);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 11% 100%, 0 86%); }
    .menu .nav__left {
      display: flex;
      justify-content: center;
      width: 10%;
      height: calc(100% - 1.2rem);
      padding-top: 1.6rem;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%); }
      .menu .nav__left__spec {
        position: absolute;
        bottom: 3.6rem;
        left: -0.2rem;
        display: flex;
        flex-direction: column;
        width: calc(10% + 2rem); }
        .menu .nav__left__spec__black, .menu .nav__left__spec__purple {
          width: 100%;
          transform: rotate(37deg);
          clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
          z-index: 100; }
        .menu .nav__left__spec__black {
          height: 0.8rem;
          background: #000; }
        .menu .nav__left__spec__purple:nth-child(2) {
          height: 1.2rem;
          background-image: linear-gradient(to bottom, #7e11cb, #5a04ab); }
        .menu .nav__left__spec__purple:last-of-type {
          height: 1.4rem;
          background-image: linear-gradient(to bottom, #7921dd, #111); }
      .menu .nav__left__container {
        display: flex;
        gap: 1rem;
        writing-mode: vertical-rl;
        font-size: 1.6rem; }
        @media screen and (min-width: 756px) {
          .menu .nav__left__container {
            gap: 2rem;
            margin-top: 0;
            font-size: 2.8rem;
            height: 100%; } }
        .menu .nav__left__container i {
          font-size: 80%;
          display: inline-block;
          margin: 0 auto;
          transition: opacity 0.5s ease-in-out; }
          .menu .nav__left__container i.hidden {
            display: none;
            z-index: -100; }
    .menu .nav__right {
      flex: 1;
      height: 100%;
      padding: 2rem 0 2rem 1.2rem;
      z-index: 10; }
      @media screen and (min-width: 756px) {
        .menu .nav__right {
          padding: 2rem 0 1rem 4rem; } }
      .menu .nav__right__list {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        font-size: 1.6rem;
        font-family: 700;
        line-height: 1.4; }
        @media screen and (min-width: 756px) {
          .menu .nav__right__list {
            font-size: 2.4rem;
            line-height: 1.5; } }
        .menu .nav__right__list__item {
          cursor: pointer;
          width: fit-content;
          padding: 0 8px;
          transition: all 0.5s;
          color: rgba(205, 200, 200, 0.3); }
          .menu .nav__right__list__item:last-child {
            position: relative;
            margin-top: 2.4rem; }
            @media screen and (min-width: 756px) {
              .menu .nav__right__list__item:last-child {
                margin-top: 3rem; } }
            .menu .nav__right__list__item:last-child span {
              margin-top: 1rem;
              display: block;
              color: #ffffff;
              font-size: 1.2rem;
              font-weight: 500; }
              @media screen and (min-width: 756px) {
                .menu .nav__right__list__item:last-child span {
                  margin-bottom: -0.6rem; } }
          .menu .nav__right__list__item:hover {
            color: #ffffff;
            background-image: linear-gradient(to right, #c62eff, #7636ff); }

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c2a29;
  overflow: hidden; }
  .loading__anim {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    width: calc(min(92vw, 560px) * 1.2);
    height: calc(min(92vw, 560px) * 1.2);
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 2rem solid transparent;
    border-color: transparent rgba(205, 200, 200, 0.3) transparent rgba(205, 200, 200, 0.3);
    animation: animate-rotate 1.75s linear infinite; }
    .loading__anim__in {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.05);
      height: calc(min(92vw, 560px) * 1.05);
      aspect-ratio: 1/1;
      border-radius: 100%;
      border: 1px solid rgba(205, 200, 200, 0.3);
      animation: animate-rotate 2s linear infinite reverse; }
      .loading__anim__in::after {
        content: "";
        position: absolute;
        top: -0.3rem;
        left: 50%;
        width: 0.6rem;
        height: 0.6rem;
        aspect-ratio: 1/1;
        border-radius: 100%;
        background-color: #cdcdcd;
        opacity: 0.6; }
    .loading__anim__dot {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.15);
      height: calc(min(92vw, 560px) * 1.15);
      aspect-ratio: 1/1;
      stroke-dasharray: 1 9;
      animation: animate-rotate 1.5s linear infinite; }

.button {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10; }
  @media screen and (min-width: 756px) {
    .button {
      width: 380px;
      height: 100%; } }
  .button:hover .button__layers__purple_right {
    left: 10%; }
  .button:hover .button__layers__purple_bottom {
    left: 12.5%; }
  .button:hover .anim_el_left {
    left: -2.5rem; }
  .button:hover .anim_el_right {
    right: -1rem; }
  .button__layers {
    position: relative;
    width: 100%;
    height: 100%; }
    .button__layers__black {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: 100;
      display: flex;
      align-items: center; }
      .button__layers__black__bg {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%; }
        .button__layers__black__bg__text {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          height: 40%;
          z-index: 1; }
        .button__layers__black__bg__arrows {
          position: absolute;
          transform: translateY(-50%);
          top: 50%;
          right: 12%;
          height: 36%;
          z-index: 1; }
        .button__layers__black__bg__black_bg {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          width: 100%;
          aspect-ratio: 326/65; }
          .button__layers__black__bg__black_bg image:first-child {
            width: 100%;
            height: 100%; }
          .button__layers__black__bg__black_bg image:last-child {
            width: calc(100% - 8px);
            height: calc(100% - 8px); }
    .button__layers__purple_left {
      position: absolute;
      top: -5%;
      left: -7%;
      width: 105%;
      height: 110%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(2% 32%, 7% 0, 97% 0, 100% 50%, 97% 100%, 7% 100%, 0 50%, 2% 36%, 3.5% 36%, 4.1% 32%); }
      .button__layers__purple_left > img {
        position: absolute;
        bottom: 5%;
        left: 2.5rem;
        max-width: 1rem; }
    .button__layers__purple_right {
      position: absolute;
      top: 0;
      left: 5.5%;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
      transition: all 0.5s ease-in-out; }
    .button__layers .anim_el_left,
    .button__layers .anim_el_right {
      position: absolute;
      background: #2c2a29;
      clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
      transition: all 0.5s ease-in-out;
      z-index: 100; }
    .button__layers .anim_el_left {
      top: 0.8rem;
      left: -1.1rem;
      width: 1.8rem;
      height: 6px; }
    .button__layers .anim_el_right {
      bottom: 1rem;
      right: -0.5rem;
      width: 1rem;
      height: 4px; }
    .button__layers__purple_bottom {
      position: absolute;
      transform: translateX(-50%);
      bottom: -1.8rem;
      left: 50%;
      width: 25%;
      height: 0.5rem;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
      transition: all 0.5s ease-in-out; }

.play {
  position: relative;
  width: 100%;
  padding: 2rem 0 15rem;
  overflow: hidden; }
  @media screen and (min-width: 756px) {
    .play {
      padding: 15rem 0; } }
  @media screen and (min-width: 756px) and (max-width: 1279px) {
    .play {
      padding: 15rem 6rem; } }
  .play__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%; }
  .play__bg_left {
    position: absolute;
    top: 25%;
    left: -16rem;
    z-index: 2;
    width: 24rem;
    height: 108rem;
    display: none; }
    .play__bg_left > image {
      width: 100%;
      height: 100%; }
    @media screen and (min-width: 756px) {
      .play__bg_left {
        display: block; } }
  .play__bg_text {
    margin-top: -8rem;
    display: inline-block;
    position: absolute;
    right: 0;
    z-index: 0;
    width: calc(min(30vw, 30%));
    opacity: 0.7;
    -webkit-mask-image: linear-gradient(to left bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), linear-gradient(to right, black, rgba(0, 0, 0, 0)); }
    @media screen and (min-width: 756px) {
      .play__bg_text {
        opacity: 1;
        -webkit-mask-image: none; } }
  .play__flex {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 4rem;
    z-index: 1;
    overflow: hidden; }
    @media screen and (min-width: 756px) and (max-width: 1179px) {
      .play__flex {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 0 0 28rem !important;
        overflow: visible; } }
    @media screen and (min-width: 1180px) and (max-width: 1279px) {
      .play__flex {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 0 0 22rem !important;
        overflow: visible; } }
    @media screen and (min-width: 1024px) {
      .play__flex {
        flex-direction: row;
        align-items: flex-start;
        padding: 0 2rem 0 18rem; } }
    .play__flex__mash {
      width: 100%;
      height: fit-content;
      object-fit: contain;
      order: 1;
      z-index: 10; }
      @media screen and (min-width: 756px) and (max-width: 1279px) {
        .play__flex__mash {
          order: 2;
          width: fit-content;
          height: 46rem !important; } }
      @media screen and (min-width: 1024px) {
        .play__flex__mash {
          order: 2;
          width: fit-content;
          height: 520px; } }
    .play__flex__text {
      flex: 1;
      max-width: 52rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      order: 2;
      font-size: 2rem;
      z-index: 9; }
      @media screen and (min-width: 756px) {
        .play__flex__text {
          gap: 4rem; } }
      .play__flex__text__more_button {
        position: relative;
        order: 1;
        order: unset;
        width: 90%;
        height: 6rem;
        margin: 1rem auto 0 auto; }
        .play__flex__text__more_button .top__assets__button__layers__black__bg__text,
        .play__flex__text__more_button .top__assets__button__layers__black__bg__arrows {
          height: 2.4rem;
          object-fit: contain; }
      @media screen and (min-width: 756px) {
        .play__flex__text__more_button {
          width: unset;
          height: 8rem;
          margin: unset; }
          .play__flex__text__more_button .top__assets__button__layers__black__bg__text,
          .play__flex__text__more_button .top__assets__button__layers__black__bg__arrows {
            height: fit-content; } }
      .play__flex__text__title {
        font-size: 4.8rem; }
        @media screen and (min-width: 756px) {
          .play__flex__text__title {
            font-size: 7.2rem; } }
        .play__flex__text__title h3 {
          line-height: 1.1;
          white-space: nowrap; }
          .play__flex__text__title h3 span {
            -webkit-text-stroke: 0.8px #2c2a29;
            color: transparent;
            display: block; }
      .play__flex__text__button {
        width: fit-content;
        padding: 0.2rem 4rem;
        display: inline-block;
        border: 1px solid #2c2a29; }
        @media screen and (min-width: 756px) {
          .play__flex__text__button {
            padding: 1rem 4rem; } }
      .play__flex__text__textarea {
        font-size: 1.6rem;
        width: calc(100% - 1rem); }

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2c2a29;
  overflow: hidden; }
  .loading__anim {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    width: calc(min(92vw, 560px) * 1.2);
    height: calc(min(92vw, 560px) * 1.2);
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 2rem solid transparent;
    border-color: transparent rgba(205, 200, 200, 0.3) transparent rgba(205, 200, 200, 0.3);
    animation: animate-rotate 1.75s linear infinite; }
    .loading__anim__in {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.05);
      height: calc(min(92vw, 560px) * 1.05);
      aspect-ratio: 1/1;
      border-radius: 100%;
      border: 1px solid rgba(205, 200, 200, 0.3);
      animation: animate-rotate 2s linear infinite reverse; }
      .loading__anim__in::after {
        content: "";
        position: absolute;
        top: -0.3rem;
        left: 50%;
        width: 0.6rem;
        height: 0.6rem;
        aspect-ratio: 1/1;
        border-radius: 100%;
        background-color: #cdcdcd;
        opacity: 0.6; }
    .loading__anim__dot {
      position: absolute;
      transform: translate(-50%, -50%) rotate(0deg);
      top: 50%;
      left: 50%;
      transform-origin: 50% 50%;
      width: calc(min(92vw, 560px) * 1.15);
      height: calc(min(92vw, 560px) * 1.15);
      aspect-ratio: 1/1;
      stroke-dasharray: 1 9;
      animation: animate-rotate 1.5s linear infinite; }

.button {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10; }
  @media screen and (min-width: 756px) {
    .button {
      width: 380px;
      height: 100%; } }
  .button:hover .button__layers__purple_right {
    left: 10%; }
  .button:hover .button__layers__purple_bottom {
    left: 12.5%; }
  .button:hover .anim_el_left {
    left: -2.5rem; }
  .button:hover .anim_el_right {
    right: -1rem; }
  .button__layers {
    position: relative;
    width: 100%;
    height: 100%; }
    .button__layers__black {
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: 100;
      display: flex;
      align-items: center; }
      .button__layers__black__bg {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%; }
        .button__layers__black__bg__text {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          height: 40%;
          z-index: 1; }
        .button__layers__black__bg__arrows {
          position: absolute;
          transform: translateY(-50%);
          top: 50%;
          right: 12%;
          height: 36%;
          z-index: 1; }
        .button__layers__black__bg__black_bg {
          position: absolute;
          transform: translate(-50%, -50%);
          top: 50%;
          left: 50%;
          width: 100%;
          aspect-ratio: 326/65; }
          .button__layers__black__bg__black_bg image:first-child {
            width: 100%;
            height: 100%; }
          .button__layers__black__bg__black_bg image:last-child {
            width: calc(100% - 8px);
            height: calc(100% - 8px); }
    .button__layers__purple_left {
      position: absolute;
      top: -5%;
      left: -7%;
      width: 105%;
      height: 110%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(2% 32%, 7% 0, 97% 0, 100% 50%, 97% 100%, 7% 100%, 0 50%, 2% 36%, 3.5% 36%, 4.1% 32%); }
      .button__layers__purple_left > img {
        position: absolute;
        bottom: 5%;
        left: 2.5rem;
        max-width: 1rem; }
    .button__layers__purple_right {
      position: absolute;
      top: 0;
      left: 5.5%;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0% 50%);
      transition: all 0.5s ease-in-out; }
    .button__layers .anim_el_left,
    .button__layers .anim_el_right {
      position: absolute;
      background: #2c2a29;
      clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
      transition: all 0.5s ease-in-out;
      z-index: 100; }
    .button__layers .anim_el_left {
      top: 0.8rem;
      left: -1.1rem;
      width: 1.8rem;
      height: 6px; }
    .button__layers .anim_el_right {
      bottom: 1rem;
      right: -0.5rem;
      width: 1rem;
      height: 4px; }
    .button__layers__purple_bottom {
      position: absolute;
      transform: translateX(-50%);
      bottom: -1.8rem;
      left: 50%;
      width: 25%;
      height: 0.5rem;
      background-image: linear-gradient(to right, #c62eff, #7636ff);
      clip-path: polygon(0 0, 100% 0%, 90% 100%, 10% 100%);
      transition: all 0.5s ease-in-out; }

.get {
  position: relative;
  padding: 6rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2c2a29;
  background-image: url("/assets/get/bg.png"); }
  @media screen and (min-width: 756px) {
    .get {
      padding: 20rem 10rem;
      clip-path: polygon(60% 10%, 70% 0%, 100% 0, 100% 90%, 40% 90%, 30% 100%, 0 100%, 0 10%);
      z-index: 1; }
      .get:has(.get__contents__cards.open) {
        clip-path: polygon(60% 4%, 70% 0%, 100% 0, 100% 96%, 40% 96%, 30% 100%, 0 100%, 0 4%); } }
  .get .loading {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: -1;
    background-color: transparent; }
  .get__bg_design {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 100%;
    object-fit: contain; }
  .get__contents {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; }
    @media screen and (min-width: 756px) {
      .get__contents {
        gap: 4rem; } }
    .get__contents__title {
      position: relative;
      color: transparent;
      -webkit-text-stroke: 0.8px #ffffff;
      font-size: 4.8rem;
      font-weight: 900;
      text-align: center;
      line-height: 1;
      width: 100%; }
      @media screen and (min-width: 756px) {
        .get__contents__title {
          font-size: 8rem; } }
      .get__contents__title__white {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        top: 1.25ch;
        width: 100%;
        color: #ffffff;
        -webkit-text-stroke: none;
        white-space: nowrap;
        z-index: 10; }
    .get__contents__button {
      margin-top: 5rem;
      width: fit-content;
      padding: 0.3rem 4.4rem;
      display: inline-block;
      border: 1px solid #ffffff;
      font-size: 2rem;
      color: #ffffff; }
      @media screen and (min-width: 756px) {
        .get__contents__button {
          padding: 0.8rem 6rem; } }
    .get__contents__box {
      margin: 3.2rem 0;
      padding: 0 2rem;
      max-width: 100%;
      color: #ffffff;
      line-height: 2.1;
      text-align: center; }
      @media screen and (min-width: 756px) {
        .get__contents__box {
          padding: 0 4rem;
          max-width: 520px; } }
    .get__contents__shop {
      position: relative;
      padding: 0 2rem;
      width: 90%;
      height: 5.6rem; }
      @media screen and (min-width: 756px) {
        .get__contents__shop {
          padding: 0;
          max-width: 480px;
          height: 6.8rem; } }
      .get__contents__shop i {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        top: 9rem;
        color: #ffffff;
        font-size: 4rem; }
        @media screen and (min-width: 756px) {
          .get__contents__shop i {
            top: 12rem; } }
      .get__contents__shop::after {
        content: ""; }
    .get__contents__cards {
      position: relative;
      display: none;
      width: 100%;
      max-width: 100rem;
      height: fit-content;
      margin: 10rem auto 2rem auto; }
      .get__contents__cards::before {
        content: "";
        position: absolute;
        transform: translate(-50%, 100%);
        bottom: 0;
        left: 50%;
        width: 68%;
        height: 2.8rem;
        background-image: linear-gradient(to right, #c62eff, #7636ff);
        clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%); }
        @media screen and (min-width: 756px) {
          .get__contents__cards::before {
            width: 40%;
            height: 6rem; } }
      .get__contents__cards::after {
        content: "";
        position: absolute;
        transform: translate(-50%, 100%);
        bottom: 0;
        left: 50%;
        background: #111;
        width: calc(68% - 8px);
        height: calc(2.8rem - 8px);
        clip-path: polygon(1% 0, 99% 0%, 90% 100%, 10% 100%); }
        @media screen and (min-width: 756px) {
          .get__contents__cards::after {
            width: calc(40% - 8px);
            height: calc(6rem - 8px); } }
      .get__contents__cards.open {
        display: block; }
      .get__contents__cards__menu {
        position: absolute;
        transform: translateX(-50%);
        top: -4.8rem;
        left: 50%;
        display: flex;
        justify-content: center;
        width: 100%; }
        .get__contents__cards__menu__item {
          position: relative;
          background-image: linear-gradient(to right, #c62eff, #7636ff);
          width: 50%;
          height: 7rem;
          clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%); }
          @media screen and (min-width: 900px) {
            .get__contents__cards__menu__item {
              width: 32rem; } }
          .get__contents__cards__menu__item:first-of-type {
            margin-left: -4rem;
            order: 1; }
          .get__contents__cards__menu__item:last-of-type {
            margin-right: -4rem; }
          .get__contents__cards__menu__item.current {
            z-index: 1; }
            .get__contents__cards__menu__item.current .get__contents__cards__menu__item__text {
              color: #ffffff;
              background: transparent; }
          .get__contents__cards__menu__item__text {
            position: absolute;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            width: calc(100% - 2rem);
            height: calc(100% - 1rem);
            clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
            text-align: center;
            padding-top: 1rem;
            font-size: 1.4rem;
            font-family: "Audiowide";
            background: #2c2a29;
            color: rgba(205, 200, 200, 0.3);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.5s ease-in-out; }
            @media screen and (min-width: 756px) {
              .get__contents__cards__menu__item__text {
                font-size: 2rem;
                padding-top: 0.4rem; } }
            @media screen and (max-width: 379px) {
              .get__contents__cards__menu__item__text {
                font-size: 1.2rem; } }
            .get__contents__cards__menu__item__text:hover {
              color: #ffffff; }
      .get__contents__cards__box {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 0.8rem 0;
        background-image: linear-gradient(to right, #c62eff, #7636ff);
        clip-path: polygon(8% 0%, 92% 0%, 100% 2%, 100% 98%, 92% 100%, 8% 100%, 0% 98%, 0% 2%); }
        @media screen and (min-width: 756px) {
          .get__contents__cards__box {
            clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%); } }
        .get__contents__cards__box__contents {
          position: relative;
          transform: translateX(-50%);
          top: 0;
          left: 50%;
          width: calc(100% - 2rem);
          height: calc(100% - 4rem);
          padding: 4rem 2rem;
          background-color: #ffffff;
          background: url("/assets/cards/bg.png");
          background-size: cover;
          clip-path: polygon(8% 0%, 92% 0%, 100% 2%, 100% 98%, 92% 100%, 8% 100%, 0% 98%, 0% 2%);
          display: flex;
          flex-direction: column;
          align-items: center; }
          @media screen and (min-width: 756px) {
            .get__contents__cards__box__contents {
              padding: 4rem;
              clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%); } }
          .get__contents__cards__box__contents__title {
            position: relative;
            width: 100%;
            text-align: center;
            font-size: 2.8rem;
            white-space: nowrap;
            font-family: "Audiowide"; }
            @media screen and (min-width: 756px) {
              .get__contents__cards__box__contents__title {
                font-size: 4rem; } }
            .get__contents__cards__box__contents__title__login_logout {
              position: absolute;
              transform: translateY(-50%);
              top: -1.2rem;
              right: 1rem;
              border: 1px solid #2c2a29;
              border-radius: 6rem;
              padding: 0.5rem 1ch;
              font-size: 1rem;
              font-family: "Audiowide";
              cursor: pointer; }
              @media screen and (min-width: 756px) {
                .get__contents__cards__box__contents__title__login_logout {
                  top: 50%;
                  right: 4rem; } }
          .get__contents__cards__box__contents__buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            width: 100%; }
            @media screen and (min-width: 756px) {
              .get__contents__cards__box__contents__buttons {
                width: auto; } }
            .get__contents__cards__box__contents__buttons__viewmore {
              font-size: 1.2rem;
              padding: 0.2rem 2rem;
              width: 100%;
              text-align: center;
              color: #ffffff;
              background-image: linear-gradient(to right, #f0691b, #cb211b);
              border-radius: 10rem;
              cursor: pointer; }
              @media screen and (min-width: 756px) {
                .get__contents__cards__box__contents__buttons__viewmore {
                  width: auto;
                  padding: 0.2rem 10rem; } }
            .get__contents__cards__box__contents__buttons__creators {
              color: #2c2a29;
              font-weight: 800;
              cursor: pointer;
              display: flex;
              align-items: center; }
              @media screen and (min-width: 756px) {
                .get__contents__cards__box__contents__buttons__creators {
                  font-size: 2rem; } }
              .get__contents__cards__box__contents__buttons__creators.hidden {
                opacity: 0;
                pointer-events: none; }
              .get__contents__cards__box__contents__buttons__creators:hover > span:last-of-type {
                text-decoration: underline; }
              .get__contents__cards__box__contents__buttons__creators > span:first-of-type {
                position: relative;
                display: inline-block;
                width: 3rem;
                height: 3rem;
                aspect-ratio: 1/1;
                padding: 0 1rem;
                color: #ffffff;
                border-radius: 100%;
                margin-right: 0.4rem;
                background-image: linear-gradient(to right, #f0691b, #cb211b); }
                .get__contents__cards__box__contents__buttons__creators > span:first-of-type::after {
                  content: "<";
                  position: absolute;
                  transform: translate(-50%, -50%);
                  top: 50%;
                  left: 50%; }
                @media screen and (min-width: 756px) {
                  .get__contents__cards__box__contents__buttons__creators > span:first-of-type {
                    width: 2rem;
                    height: 2rem; } }
          .get__contents__cards__box__contents__cards_box {
            width: 100%;
            height: 100%;
            font-family: initial;
            /* -------------- 
                Card Item
              ------------ */ }
            .get__contents__cards__box__contents__cards_box #worksContainer {
              display: none; }
            .get__contents__cards__box__contents__cards_box #collectionsContainer {
              display: flex; }
            .get__contents__cards__box__contents__cards_box #worksContainer,
            .get__contents__cards__box__contents__cards_box #collectionsContainer {
              width: 100%;
              flex-direction: column;
              align-items: center;
              gap: 2rem;
              padding: 4rem;
              overflow-y: auto;
              max-height: 100%; }
              @media screen and (min-width: 756px) {
                .get__contents__cards__box__contents__cards_box #worksContainer,
                .get__contents__cards__box__contents__cards_box #collectionsContainer {
                  flex-wrap: wrap;
                  flex-direction: row;
                  align-items: flex-start;
                  justify-content: space-evenly;
                  gap: 4rem; } }
            .get__contents__cards__box__contents__cards_box.showWorks #worksContainer {
              display: flex !important; }
            .get__contents__cards__box__contents__cards_box.showWorks #collectionsContainer {
              display: none; }
            .get__contents__cards__box__contents__cards_box__card {
              position: relative;
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: center;
              transition: transform 0.4s ease-in-out; }
              .get__contents__cards__box__contents__cards_box__card:hover {
                transform: scale(1.02); }
                .get__contents__cards__box__contents__cards_box__card:hover .get__contents__cards__box__contents__cards_box__card__image__inner__main__image {
                  transform: scale(1.01); }
              .get__contents__cards__box__contents__cards_box__card.normal #nftTypeBg {
                background-image: linear-gradient(to right, #d1d1d2, #fefefe); }
              .get__contents__cards__box__contents__cards_box__card.normal #paramBox {
                background-image: linear-gradient(to right, #d1d1d2, #fefefe); }
              .get__contents__cards__box__contents__cards_box__card.silver #nftTypeBg {
                background-image: linear-gradient(to right, #000, #3d3938); }
                .get__contents__cards__box__contents__cards_box__card.silver #nftTypeBg #nftType {
                  color: #ffffff; }
              .get__contents__cards__box__contents__cards_box__card.silver #paramBox {
                background-image: linear-gradient(to right, #000, #3d3938);
                color: #ffffff; }
                .get__contents__cards__box__contents__cards_box__card.silver #paramBox #defaultPrice,
                .get__contents__cards__box__contents__cards_box__card.silver #paramBox #resellPrice {
                  color: #ffffff; }
                .get__contents__cards__box__contents__cards_box__card.silver #paramBox #cardTitle {
                  -webkit-background-clip: text !important;
                  -webkit-text-fill-color: transparent;
                  background: linear-gradient(to right, #d3d2d0, #6c6e6f, #cfcfcf, #808483); }
              .get__contents__cards__box__contents__cards_box__card.silver #nftLink {
                border-color: transparent; }
                .get__contents__cards__box__contents__cards_box__card.silver #nftLink .get__contents__cards__box__contents__cards_box__card__image__inner #nftBorder {
                  border-color: transparent;
                  background-image: linear-gradient(to right bottom, #d3d2d0, #6c6e6f, #cfcfcf, #808483); }
              .get__contents__cards__box__contents__cards_box__card.gold #nftTypeBg {
                background-image: linear-gradient(to right, #000, #3d3938); }
                .get__contents__cards__box__contents__cards_box__card.gold #nftTypeBg #nftType {
                  color: #ffffff; }
              .get__contents__cards__box__contents__cards_box__card.gold #paramBox {
                background-image: linear-gradient(to right, #000, #3d3938);
                color: #ffffff; }
                .get__contents__cards__box__contents__cards_box__card.gold #paramBox #defaultPrice,
                .get__contents__cards__box__contents__cards_box__card.gold #paramBox #resellPrice {
                  color: #ffffff; }
                .get__contents__cards__box__contents__cards_box__card.gold #paramBox #cardTitle {
                  -webkit-background-clip: text !important;
                  -webkit-text-fill-color: transparent;
                  background: linear-gradient(to right, #b09557, #c3ac75, #593a1c, #9a7340); }
              .get__contents__cards__box__contents__cards_box__card.gold #nftLink {
                border-color: transparent; }
                .get__contents__cards__box__contents__cards_box__card.gold #nftLink .get__contents__cards__box__contents__cards_box__card__image__inner #nftBorder {
                  border-color: transparent;
                  background-image: linear-gradient(to right bottom, #c3ac75, #593a1c, #b09557, #9a7340); }
              .get__contents__cards__box__contents__cards_box__card.ultra:hover::after {
                transform: translateX(100%); }
              .get__contents__cards__box__contents__cards_box__card.ultra #nftTypeBg {
                background-image: linear-gradient(to right, #5f4cbb, #c956f1, #95bdda); }
                .get__contents__cards__box__contents__cards_box__card.ultra #nftTypeBg #nftType {
                  color: #ffffff; }
              .get__contents__cards__box__contents__cards_box__card.ultra #paramBox {
                background-image: linear-gradient(114deg, #2844ea, #c956f1);
                color: #ffffff; }
                .get__contents__cards__box__contents__cards_box__card.ultra #paramBox div:has(#defaultPrice, #resellPrice) {
                  color: #ffffff; }
                .get__contents__cards__box__contents__cards_box__card.ultra #paramBox #defaultPrice,
                .get__contents__cards__box__contents__cards_box__card.ultra #paramBox #resellPrice {
                  color: #ffffff; }
              .get__contents__cards__box__contents__cards_box__card.ultra #nftLink {
                border-color: transparent; }
                .get__contents__cards__box__contents__cards_box__card.ultra #nftLink .get__contents__cards__box__contents__cards_box__card__image__inner #nftBorder {
                  border-color: transparent;
                  background-image: linear-gradient(to right bottom, #2844ea, #5f4cbb, #c956f1, #95bdda); }
              @media screen and (min-width: 756px) {
                .get__contents__cards__box__contents__cards_box__card {
                  width: 20%;
                  min-width: 20rem; } }
              .get__contents__cards__box__contents__cards_box__card__top {
                position: relative;
                width: 100%; }
                .get__contents__cards__box__contents__cards_box__card__top__type {
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  gap: 0.5ch;
                  width: 70%;
                  height: 2.4rem;
                  padding: 0 2rem;
                  font-size: 1rem;
                  letter-spacing: 0.2ch;
                  text-transform: uppercase;
                  background-image: linear-gradient(to right, #d1d1d2, #fefefe);
                  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
                  margin-left: auto;
                  margin-bottom: -6px; }
                  .get__contents__cards__box__contents__cards_box__card__top__type span {
                    color: #2c2a29;
                    font-family: "Audiowide";
                    letter-spacing: -0.4px;
                    font-size: x-small; }
                  .get__contents__cards__box__contents__cards_box__card__top__type img {
                    width: 1ch;
                    max-width: 1ch;
                    object-fit: contain; }
                .get__contents__cards__box__contents__cards_box__card__top__main {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%; }
                .get__contents__cards__box__contents__cards_box__card__top__ball {
                  position: absolute;
                  top: 2.2rem;
                  left: -0.4rem;
                  width: 18%;
                  z-index: 100; }
              .get__contents__cards__box__contents__cards_box__card__shadow {
                position: absolute;
                top: 2rem;
                left: -0.3rem;
                width: 110%;
                height: auto;
                aspect-ratio: 1/1;
                background: url("/assets/cards/shadow.png");
                background-size: contain;
                z-index: -1; }
              .get__contents__cards__box__contents__cards_box__card__image {
                position: relative;
                width: 108%;
                height: auto;
                aspect-ratio: 1/1;
                display: flex;
                align-items: center;
                justify-content: center;
                background-image: url("/assets/cards/back-black.png");
                background-size: contain;
                overflow: hidden; }
                .get__contents__cards__box__contents__cards_box__card__image:hover::before {
                  transition: translateX(100%); }
                .get__contents__cards__box__contents__cards_box__card__image__inner {
                  position: relative;
                  width: calc(100% - 0.8rem);
                  height: 95%;
                  overflow: hidden;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%); }
                  .get__contents__cards__box__contents__cards_box__card__image__inner__border {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    border: #000 solid 4px;
                    border-radius: 0.4rem;
                    background: #000; }
                    .get__contents__cards__box__contents__cards_box__card__image__inner__border::before {
                      content: "";
                      position: absolute;
                      top: -0.6rem;
                      left: -2.2rem;
                      transform: rotate(-45deg);
                      transform-origin: top right;
                      width: 30%;
                      height: 6px;
                      z-index: 10;
                      background: inherit; }
                    .get__contents__cards__box__contents__cards_box__card__image__inner__border::after {
                      content: "";
                      position: absolute;
                      bottom: 5.4rem;
                      right: -2.2rem;
                      transform: rotate(-45deg);
                      transform-origin: top right;
                      width: 100%;
                      height: 6px;
                      z-index: 10;
                      background: inherit; }
                  .get__contents__cards__box__contents__cards_box__card__image__inner__main {
                    width: calc(100% - 8px);
                    max-width: 100%;
                    height: calc(100% - 8px);
                    border-radius: 0.4rem;
                    overflow: hidden;
                    z-index: 1; }
                    .get__contents__cards__box__contents__cards_box__card__image__inner__main__image {
                      width: 100%;
                      height: 100%;
                      object-fit: cover;
                      object-position: center;
                      transition: transform 0.4s ease-in-out; }
              .get__contents__cards__box__contents__cards_box__card__param {
                display: flex;
                flex-direction: column;
                gap: 0.8rem;
                width: 100%;
                border-radius: 0.8rem;
                transform: translate(-1rem, -1rem);
                padding: 1rem 1.2rem;
                font-size: 1.2rem;
                z-index: 1; }
                .get__contents__cards__box__contents__cards_box__card__param.showParam .get__contents__cards__box__contents__cards_box__card__param__top__action_type {
                  display: flex; }
                .get__contents__cards__box__contents__cards_box__card__param.showParam .get__contents__cards__box__contents__cards_box__card__param__top__title, .get__contents__cards__box__contents__cards_box__card__param.showParam .get__contents__cards__box__contents__cards_box__card__param__top__likes {
                  display: none; }
                .get__contents__cards__box__contents__cards_box__card__param.showParam .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param {
                  display: flex; }
                .get__contents__cards__box__contents__cards_box__card__param.showParam .get__contents__cards__box__contents__cards_box__card__param__bottom__price, .get__contents__cards__box__contents__cards_box__card__param.showParam .get__contents__cards__box__contents__cards_box__card__param__bottom__resell_price {
                  display: none; }
                .get__contents__cards__box__contents__cards_box__card__param__top {
                  position: relative;
                  padding-bottom: 1rem;
                  border-bottom: 1px solid #bab9b9; }
                  .get__contents__cards__box__contents__cards_box__card__param__top__title {
                    font-size: 1.3rem;
                    font-weight: 800; }
                  .get__contents__cards__box__contents__cards_box__card__param__top__likes {
                    color: #929090;
                    font-size: 1rem;
                    position: absolute;
                    top: -0.8rem;
                    right: 1rem;
                    font-family: sans-serif; }
                    .get__contents__cards__box__contents__cards_box__card__param__top__likes i {
                      font-style: normal;
                      font-family: "Font Awesome 6 Free"; }
                  .get__contents__cards__box__contents__cards_box__card__param__top__action_type {
                    display: none;
                    align-items: center;
                    gap: 1.2ch;
                    font-size: 1.2rem;
                    font-weight: 800;
                    font-family: sans-serif; }
                    @media screen and (min-width: 756px) {
                      .get__contents__cards__box__contents__cards_box__card__param__top__action_type {
                        font-size: 1.12rem;
                        justify-content: space-between;
                        gap: 0.2ch; } }
                    .get__contents__cards__box__contents__cards_box__card__param__top__action_type__msg {
                      color: #a5a3a3;
                      white-space: nowrap;
                      font-family: "Audiowide"; }
                    .get__contents__cards__box__contents__cards_box__card__param__top__action_type__type {
                      color: #000;
                      white-space: nowrap; }
                .get__contents__cards__box__contents__cards_box__card__param__bottom {
                  display: flex;
                  flex-direction: column;
                  font-family: sans-serif; }
                  .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param {
                    display: none;
                    background-color: #000;
                    flex-direction: column;
                    gap: 0.4rem;
                    margin-top: -0.95rem;
                    padding: 0.6rem 0.4rem;
                    border-radius: 0.2rem;
                    color: #ffffff;
                    font-family: sans-serif;
                    z-index: 1; }
                    .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item {
                      flex: 1;
                      width: 100%;
                      display: flex;
                      align-items: center;
                      gap: 0.4rem;
                      font-size: 1rem;
                      line-height: 1.25; }
                      .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item > p {
                        width: 30%;
                        margin-right: 0.4rem;
                        white-space: nowrap; }
                      .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage {
                        position: relative;
                        flex: 1;
                        width: calc(70% - (1.2ch + 1.2rem));
                        height: 1.6ch;
                        background-color: #ffffff;
                        border: 2px solid #ffffff;
                        border-radius: 2rem; }
                        .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage,
                        .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage,
                        .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage {
                          position: absolute;
                          transform: translateY(-50%);
                          top: 50%;
                          left: 0;
                          height: 100%;
                          background-image: linear-gradient(to right, #c62eff, #7636ff);
                          z-index: 10;
                          border-radius: 2rem; }
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage.level_1,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage.level_1,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage.level_1 {
                            width: calc((1 / 6) * 100%); }
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage.level_2,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage.level_2,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage.level_2 {
                            width: calc((2 / 6) * 100%); }
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage.level_3,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage.level_3,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage.level_3 {
                            width: calc((3 / 6) * 100%); }
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage.level_4,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage.level_4,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage.level_4 {
                            width: calc((4 / 6) * 100%); }
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage.level_5,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage.level_5,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage.level_5 {
                            width: calc((5 / 6) * 100%); }
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #powerGage.level_6,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #durationGage.level_6,
                          .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__gage #idletimeGage.level_6 {
                            width: calc((6 / 6) * 100%); }
                      .get__contents__cards__box__contents__cards_box__card__param__bottom__action_param__item__num {
                        font-size: 110%;
                        font-weight: 900;
                        width: 1.2ch;
                        text-align: center; }
                  .get__contents__cards__box__contents__cards_box__card__param__bottom__price {
                    font-size: 1.2rem;
                    color: #929090; }
                    .get__contents__cards__box__contents__cards_box__card__param__bottom__price > span {
                      color: #2c2a29;
                      font-size: 1.4rem;
                      font-weight: 800; }
                      .get__contents__cards__box__contents__cards_box__card__param__bottom__price > span::before {
                        content: "("; }
                      .get__contents__cards__box__contents__cards_box__card__param__bottom__price > span::after {
                        content: "）"; }
                  .get__contents__cards__box__contents__cards_box__card__param__bottom__resell_price {
                    font-size: 1.2rem;
                    color: #929090; }
                    .get__contents__cards__box__contents__cards_box__card__param__bottom__resell_price > span {
                      color: #2c2a29;
                      font-size: 1.4rem;
                      font-weight: 800; }
                  .get__contents__cards__box__contents__cards_box__card__param__bottom__param {
                    display: none;
                    padding: 0 2rem;
                    margin-top: 1.2rem;
                    border-radius: 2rem;
                    text-align: center;
                    color: #a5a3a3;
                    background: #bebdbd;
                    cursor: default;
                    pointer-events: none; }
                    .get__contents__cards__box__contents__cards_box__card__param__bottom__param.owned {
                      display: block; }
                    .get__contents__cards__box__contents__cards_box__card__param__bottom__param.available {
                      color: #ffffff;
                      background: #000;
                      cursor: pointer;
                      pointer-events: all; }

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 12rem;
  padding: 0 1rem;
  background: transparent; }
  @media screen and (min-width: 756px) {
    .footer {
      flex-direction: row;
      justify-content: space-between;
      height: 20rem;
      padding: 6rem 1rem 0 1rem; } }
  .footer__copyright {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 1rem;
    font-size: 1rem; }
    @media screen and (min-width: 756px) {
      .footer__copyright {
        transform: unset;
        left: unset;
        right: 1rem; } }
  .footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .footer__bg__gray {
      position: absolute;
      left: 0;
      bottom: 2rem;
      object-fit: contain;
      z-index: -1; }
      @media screen and (min-width: 756px) {
        .footer__bg__gray {
          bottom: -6rem;
          left: -10rem; } }
    .footer__bg__pur {
      position: absolute;
      top: 1rem;
      left: -33%;
      width: 60%; }
      @media screen and (min-width: 756px) {
        .footer__bg__pur {
          top: -5rem;
          left: 37%;
          width: 33%; } }
  .footer__logo {
    width: 33%;
    margin-bottom: 3rem; }
    @media screen and (min-width: 756px) {
      .footer__logo {
        width: calc(min(20rem, 50%));
        height: 80%;
        margin-bottom: auto; } }
  .footer__menu {
    display: none;
    align-items: center;
    gap: 2rem;
    font-family: "Audiowide";
    z-index: 10; }
    @media screen and (min-width: 756px) {
      .footer__menu {
        display: flex; } }
    .footer__menu a,
    .footer__menu div {
      display: inline-block;
      cursor: pointer; }
    .footer__menu a:hover {
      text-decoration: underline; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none; }

html {
  margin: 0;
  padding: 0;
  line-height: 1.75;
  color: #111;
  width: 100%;
  font-size: 0.65rem;
  overflow: auto; }

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-size: 1.6rem;
  font-family: "Audiowide";
  background-color: #fff; }

img {
  max-width: 100%; }

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

.opacity-0 {
  opacity: 0; }

.opacity-100 {
  opacity: 1; }

.none {
  display: none !important; }

.block {
  display: block; }

.pc {
  display: none; }

@media screen and (min-width: 756px) {
  .sp {
    display: none; }
  .pc {
    display: block; } }

.container {
  width: 100%;
  height: 100%;
  scroll-snap-type: y mandatory;
  overflow: auto; }
  .container > .wrapper {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    overflow-y: hidden; }
