@charset "UTF-8";
@import "../css/style.css";
@keyframes float-smooth {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }
  50% {
    transform: translate(-5px, -25px) rotate(-1deg);
  }
  75% {
    transform: translate(-15px, -10px) rotate(1deg);
  }
}
@keyframes float-gentle {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-12px, -20px) rotate(-2deg);
  }
  66% {
    transform: translate(8px, -15px) rotate(1deg);
  }
}
@keyframes bounce-character {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
  75% {
    transform: translateY(-6px) scale(1.01);
  }
}
@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}
@keyframes pulse-scale-delayed {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }
}
@keyframes product-highlight {
  0%, 100% {
    transform: translateY(0) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  25% {
    transform: translateY(-15px) rotateY(3deg) rotateX(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-25px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }
  75% {
    transform: translateY(-15px) rotateY(-3deg) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
}
@keyframes product-emphasis {
  0%, 100% {
    transform: scale(1) translateZ(0);
  }
  50% {
    transform: scale(1.05) translateZ(10px);
  }
}
@keyframes rotate-gentle {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0) scaleY(1.1);
    transform: translate3d(0, -20px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0) scaleY(1);
    transform: translate3d(0, -10px, 0) scaleY(1);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1);
    transform: translate3d(0, -4px, 0) scaleY(1);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes rocket-launch-action {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  5%, 15%, 25%, 35% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(-15px 15px 25px rgba(255, 120, 0, 0.4));
    opacity: 1;
  }
  10%, 20%, 30%, 40% {
    transform: translate(-1.5px, 1.5px) rotate(0.1deg);
    filter: drop-shadow(-15px 15px 25px rgba(255, 120, 0, 0.2));
    opacity: 1;
  }
  70% {
    transform: translate(400px, -150px) rotate(15deg);
    filter: drop-shadow(-15px 15px 20px rgba(255, 120, 0, 0.6));
    opacity: 1;
  }
  90% {
    transform: translate(800px, -250px) rotate(20deg);
    opacity: 0;
    filter: blur(1px);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
}
@font-face {
  font-family: "Pretendard";
  src: url("../../font/Pretendard-Regular.woff2") format("woff2"), url("../../font/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("../../font/Pretendard-Bold.woff2") format("woff2"), url("../../font/Pretendard-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GmarketSans";
  src: url("../../font/GmarketSansLight.woff2") format("woff2"), url("../../font/GmarketSansLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GmarketSans";
  src: url("../../font/GmarketSansMedium.woff2") format("woff2"), url("../../font/GmarketSansMedium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GmarketSans";
  src: url("../../font/GmarketSansBold.woff2") format("woff2"), url("../../font/GmarketSansBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.only-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .only-pc {
    display: inline-block !important;
  }
}

.only-mo {
  display: inline-block !important;
}
@media screen and (min-width: 1280px) {
  .only-mo {
    display: none !important;
  }
}

.highlight-p {
  color: #AF86FE;
}

.highlight-b {
  color: #27FDF8;
}

.highlight-pb {
  color: #BFC7FF;
}

.highlight-w {
  color: #fff;
}

header.header {
  display: none;
}

#ly-content {
  padding-top: 0 !important;
}

.floating {
  display: none;
}

.blind {
  position: absolute;
  top: -9999px;
  text-indent: -100%;
  font-size: 0;
  line-height: 0;
}

.event-wrap {
  position: relative;
  overflow: hidden;
}
.event-wrap * {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
}
.event-wrap .event-contwarp {
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .mobile-obj-layer {
    display: none;
  }
}
.event-wrap .mobile-obj-layer [class*=obj-] {
  position: absolute;
  top: 0;
}
.event-wrap .mobile-obj-layer .obj-1 {
  left: 21.0280373832vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    left: 180px;
  }
}
.event-wrap .mobile-obj-layer .obj-1 {
  margin-top: 1.1682242991vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    margin-top: 10px;
  }
}
.event-wrap .mobile-obj-layer .obj-1 {
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-1 {
  height: 40.6542056075vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    height: 348px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  left: 38.3177570093vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-2 {
    left: 328px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  margin-top: 1.1682242991vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-2 {
    margin-top: 10px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  width: 62.8504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-2 {
    width: 538px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  height: 73.3644859813vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-2 {
    height: 628px;
  }
}
.event-wrap .mobile-obj-layer .obj-3 {
  left: 0vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    left: 0px;
  }
}
.event-wrap .mobile-obj-layer .obj-3 {
  margin-top: 101.8691588785vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    margin-top: 872px;
  }
}
.event-wrap .mobile-obj-layer .obj-3 {
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-3 {
  height: 110.9813084112vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    height: 950px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  left: 62.8504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    left: 538px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  margin-top: 123.1308411215vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    margin-top: 1054px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  width: 37.1495327103vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    width: 318px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  height: 28.2710280374vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    height: 242px;
  }
}
.event-wrap .mobile-obj-layer .obj-5 {
  right: 0vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    right: 0px;
  }
}
.event-wrap .mobile-obj-layer .obj-5 {
  margin-top: 273.3644859813vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    margin-top: 2340px;
  }
}
.event-wrap .mobile-obj-layer .obj-5 {
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-5 {
  height: 110.9813084112vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    height: 950px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  right: 10.2803738318vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    right: 88px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  margin-top: 289.4859813084vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    margin-top: 2478px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  width: 10.5140186916vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    width: 90px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  height: 9.3457943925vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    height: 80px;
  }
}
.event-wrap .mobile-obj-layer .obj-7 {
  left: 0vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-7 {
    left: 0px;
  }
}
.event-wrap .mobile-obj-layer .obj-7 {
  margin-top: 449.7663551402vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-7 {
    margin-top: 3850px;
  }
}
.event-wrap .mobile-obj-layer .obj-7 {
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-7 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-7 {
  height: 110.9813084112vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-7 {
    height: 950px;
  }
}
.event-wrap .mobile-obj-layer .obj-8 {
  right: 0;
  margin-top: 457.7102803738vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-8 {
    margin-top: 3918px;
  }
}
.event-wrap .mobile-obj-layer .obj-8 {
  width: 30.3738317757vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-8 {
    width: 260px;
  }
}
.event-wrap .mobile-obj-layer .obj-8 {
  height: 43.9252336449vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-8 {
    height: 376px;
  }
}
.event-wrap .mobile-obj-layer .obj-9 {
  left: 0;
  margin-top: 621.261682243vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-9 {
    margin-top: 5318px;
  }
}
.event-wrap .mobile-obj-layer .obj-9 {
  width: 99.2990654206vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-9 {
    width: 850px;
  }
}
.event-wrap .mobile-obj-layer .obj-9 {
  height: 60.9813084112vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-9 {
    height: 522px;
  }
}
@media screen and (max-width: 1023px) {
  .event-wrap > .section-visual,
  .event-wrap > .section-intro,
  .event-wrap > .section-event-1,
  .event-wrap > .section-event-2,
  .event-wrap > .section-event-3,
  .event-wrap > .section-notice {
    position: relative;
    z-index: 1;
  }
}
.event-wrap .scroll-fade-section {
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  will-change: transform, opacity;
}
.event-wrap .scroll-fade-section.is-visible {
  animation: fade-in-up 0.7s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .event-wrap .scroll-fade-section {
    opacity: 1;
    transform: none !important;
    animation: none !important;
  }
}
.event-wrap .inner {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .event-wrap .inner {
    max-width: 1280px;
  }
}
.event-wrap img {
  max-width: 100%;
}
.event-wrap .logo {
  position: absolute;
  top: 5.6158878505vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo {
    top: 48.072px;
  }
}
.event-wrap .logo {
  left: 50%;
  margin-left: 63.6189252336vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo {
    margin-left: 544.578px;
  }
}
.event-wrap .logo {
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .event-wrap .logo {
    top: 48.072px;
    margin-left: 544.578px;
  }
}
.event-wrap .logo a {
  display: block;
}
.event-wrap .logo img {
  width: 11.147546729vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo img {
    width: 95.423px;
  }
}
.event-wrap .logo img {
  height: 3.846728972vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo img {
    height: 32.928px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .logo img {
    width: 95.423px;
    height: 32.928px;
  }
}
.event-wrap [class*=section-event-], .event-wrap .section-intro {
  background-color: #070E1E;
  padding: 0 3.2710280374vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-], .event-wrap .section-intro {
    padding: 0 28px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-], .event-wrap .section-intro {
    padding: 0;
  }
}
.event-wrap [class*=section-event-] .inner .title, .event-wrap .section-intro .inner .title {
  position: relative;
}
.event-wrap [class*=section-event-] .inner .title .text, .event-wrap .section-intro .inner .title .text {
  font-family: "GmarketSans", sans-serif;
  font-size: 6.5420560748vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .text, .event-wrap .section-intro .inner .title .text {
    font-size: 56px;
  }
}
.event-wrap [class*=section-event-] .inner .title .text, .event-wrap .section-intro .inner .title .text {
  font-weight: 700;
  line-height: 180%;
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .inner .title .text, .event-wrap .section-intro .inner .title .text {
    font-size: 62px;
  }
}
.event-wrap [class*=section-event-] .inner .title .text .highlight-w, .event-wrap .section-intro .inner .title .text .highlight-w {
  font-family: "GmarketSans", sans-serif;
  font-weight: 700;
}
.event-wrap [class*=section-event-] .inner .title .planet, .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .planet, .event-wrap .section-intro .inner .title .star {
  position: absolute;
  top: -6.5420560748vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .planet, .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .planet, .event-wrap .section-intro .inner .title .star {
    top: -56px;
  }
}
.event-wrap [class*=section-event-] .inner .title .planet, .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .planet, .event-wrap .section-intro .inner .title .star {
  left: 50%;
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .inner .title .planet, .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .planet, .event-wrap .section-intro .inner .title .star {
    top: -53px;
  }
}
.event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
  width: 10.7476635514vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
    width: 92px;
  }
}
.event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
  height: 8.6448598131vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
    height: 74px;
  }
}
.event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
  margin-left: -46.7289719626vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
    margin-left: -400px;
  }
}
.event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
  filter: drop-shadow(12px 12px 54px rgba(0, 0, 0, 0.65));
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .inner .title .planet, .event-wrap .section-intro .inner .title .planet {
    margin-left: -498px;
    width: 128px;
    height: 102px;
  }
}
.event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
  width: 6.7757009346vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
    width: 58px;
  }
}
.event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
  height: 5.6074766355vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
    height: 48px;
  }
}
.event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
  margin-left: -33.6448598131vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
    margin-left: -288px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .inner .title .star, .event-wrap .section-intro .inner .title .star {
    width: 78px;
    height: 65px;
    margin-left: -357px;
  }
}
.event-wrap [class*=section-event-] .inner .title .star img, .event-wrap .section-intro .inner .title .star img {
  aspect-ratio: 78/65;
}
.event-wrap [class*=section-event-] .cont-list, .event-wrap .section-intro .cont-list {
  display: flex;
  flex-direction: column;
  gap: 4.9065420561vw 0;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list, .event-wrap .section-intro .cont-list {
    gap: 42px 0;
  }
}
.event-wrap [class*=section-event-] .cont-list, .event-wrap .section-intro .cont-list {
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .cont-list, .event-wrap .section-intro .cont-list {
    gap: 50px 0;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 3.2710280374vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
    font-size: 28px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
  line-height: 150%;
  padding: 4.4392523364vw 0 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
    padding: 38px 0 36px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
  gap: 0 0.3504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
    gap: 0 3px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
  border-radius: 2.3364485981vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
    border-radius: 20px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
  border: 2px solid #AF86FE;
  border-width: 0.2336448598vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
    border-width: 2px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
  box-shadow: 0 0 20px rgba(174, 134, 255, 0.4);
  background: rgba(12, 17, 35, 0.9);
  backdrop-filter: blur(12px);
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item, .event-wrap .section-intro .cont-list .cont-item {
    font-size: 32px;
    line-height: 180%;
    padding: 28px 0 27px;
    gap: 0 3px;
    border-radius: 20px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item p, .event-wrap .section-intro .cont-list .cont-item p {
  font-size: 3.2710280374vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item p, .event-wrap .section-intro .cont-list .cont-item p {
    font-size: 28px;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item p, .event-wrap .section-intro .cont-list .cont-item p {
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item p, .event-wrap .section-intro .cont-list .cont-item p {
    font-size: 32px;
    line-height: 180%;
  }
}
.event-wrap [class*=section-event-] .cont-list .cont-item strong, .event-wrap .section-intro .cont-list .cont-item strong {
  font-family: "GmarketSans", sans-serif;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 4.6728971963vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item strong, .event-wrap .section-intro .cont-list .cont-item strong {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap [class*=section-event-] .cont-list .cont-item strong, .event-wrap .section-intro .cont-list .cont-item strong {
    font-size: 30px;
  }
}
.event-wrap .section-visual {
  overflow: hidden;
  background-color:#070E1E;
}
@media screen and (min-width: 1024px) and (max-width: 1700px) {
  .event-wrap .section-visual {
    --visual-laptop-scale: min(1, calc(100vw / 1700px));
    height: calc(1148px * var(--visual-laptop-scale));
  }
}
.event-wrap .section-visual img {
  width: 100%;
  object-fit: cover;
  vertical-align: top;
}
.event-wrap .section-visual .only-desktop {
  position: relative;
  display: none;
  width: 100%;
  height: 1148px;
  overflow: hidden;
  background: url("/assets/events/e260327/images/visual.jpg") #070E1E 50% 50% no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) and (max-width: 1700px) {
  .event-wrap .section-visual .only-desktop {
    --visual-laptop-scale: min(1, calc(100vw / 1700px));
    left: 50%;
    width: 1700px;
    margin-left: -850px;
    transform: scale(var(--visual-laptop-scale));
    transform-origin: top center;
  }
}
.event-wrap .section-visual .only-desktop .ani {
  position: absolute;
  left: 50%;
}
.event-wrap .section-visual .only-desktop .ani.title-1 {
  top: 198px;
  margin-left: -232px;
  animation: fade-in-up 0.5s ease-out 0.1s backwards;
}
.event-wrap .section-visual .only-desktop .ani.title-2 {
  top: 222px;
  margin-left: -311.5px;
  animation: fade-in-up 0.5s ease-out 0.3s backwards;
}
.event-wrap .section-visual .only-desktop .ani[class*=text] {
  top: 187px;
  margin-left: -140px;
  color: #FFF;
  font-family: "GmarketSans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  animation: fade-in-up 0.5s ease-out 0.1s backwards;
}
.event-wrap .section-visual .only-desktop .ani.text1 .highlight-b {
  font-weight: 700;
}
.event-wrap .section-visual .only-desktop .ani.text2 {
  top: 399px;
  margin-left: -215px;
  letter-spacing: 16px;
}
.event-wrap .section-visual .only-desktop .ani[class*=sub-text] {
  top: 238px;
  margin-left: -497px;
  display: inline-flex;
  transform: rotate(-18.546deg);
  padding: 5px 31px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 180%;
  border-radius: 40px;
  border: 1px solid #27FDF8;
  background: rgba(8, 15, 33, 0.7);
  animation: none;
}
.event-wrap .section-visual .only-desktop .ani.sub-text2 {
  transform: rotate(-12.518deg);
  padding: 5px 25px;
  top: 458px;
  margin-left: 131px;
  border-color: #AF86FE;
}
.event-wrap .section-visual .only-desktop .ani[class*=arrow] {
  top: 267px;
  margin-left: -301px;
}
.event-wrap .section-visual .only-desktop .ani.arrow2 {
  top: 380px;
  margin-left: 280px;
}
.event-wrap .section-visual .only-desktop .ani.book {
  top: 50%;
  margin-top: -258px;
  margin-left: -785px;
  animation: fade-in-up 0.5s ease-out 0.8s backwards;
}
.event-wrap .section-visual .only-desktop .ani.booklight {
  top: 313px;
  margin-left: -806px;
  background: url("/assets/events/e260327/images/visual_obj_booklight.png") center center no-repeat;
  width: 158px;
  height: 158px;
  mix-blend-mode: screen;
  z-index: 2;
  animation: fade-in-up 0.5s ease-out 0.8s backwards;
}
.event-wrap .section-visual .only-desktop .ani.profile {
  top: 224px;
  margin-left: 411px;
  width: 378px;
  height: 568px;
  aspect-ratio: 189/284;
  filter: drop-shadow(10px 14px 64px rgb(0, 0, 0));
  animation: fade-in-up 0.5s ease-out 0.8s backwards;
}
.event-wrap .section-visual .only-desktop .ani.profile img {
  aspect-ratio: 378/568;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap {
  top: 702px;
  left: 50%;
  margin-left: -367px;
  width: 734px;
  text-align: left;
  color: #fff;
  animation: fade-in-up 0.5s ease-out 1.2s backwards;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .sub-title {
  font-family: "GmarketSans", sans-serif;
  color: #FFF;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 75.6px */
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .sub-title strong, .event-wrap .section-visual .only-desktop .ani.text-wrap .sub-title .highlight-b {
  font-family: "GmarketSans", sans-serif;
  font-weight: 700;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .sub-desc {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 57.6px */
  margin-left: 44px;
  margin-top: 3px;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .info-list {
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 23px;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .label {
  width: 140px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "GmarketSans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #27FDF8;
  border-radius: 40px;
  border: 1px solid #27FDF8;
  background: rgba(7, 13, 28, 0.8);
  box-shadow: 0 0 15px rgba(39, 253, 248, 0.4);
  text-align: center;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .value {
  font-size: 28px;
  line-height: 1.5;
  padding-top: 4px;
  font-weight: 400;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .value strong {
  font-weight: 700;
}
.event-wrap .section-visual .only-desktop .ani.text-wrap .value .addr, .event-wrap .section-visual .only-desktop .ani.text-wrap .value .time {
  display: block;
  font-size: 28px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}
.event-wrap .section-visual .only-desktop .ani.introduce {
  backdrop-filter: blur(12px);
  top: 726px;
  left: 50%;
  margin-left: 404px;
  display: inline-flex;
  width: 419px;
  height: 219px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: rgba(12, 26, 80, 0.9);
  border: 2px solid #ae86ff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(174, 134, 255, 0.4);
  color: #fff;
  animation: fade-in-up 0.5s ease-out 0.8s backwards;
}
.event-wrap .section-visual .only-desktop .ani.introduce .intro-name {
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
}
.event-wrap .section-visual .only-desktop .ani.introduce .intro-name strong {
  font-family: "GmarketSans", sans-serif;
  font-weight: 700;
}
.event-wrap .section-visual .only-desktop .ani.introduce .intro-list {
  text-align: left;
  display: inline-block;
}
.event-wrap .section-visual .only-desktop .ani.introduce .intro-list li {
  position: relative;
  font-size: 20px;
  padding-left: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}
.event-wrap .section-visual .only-desktop .ani.introduce .intro-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.event-wrap .section-visual .only-desktop .ani.introduce .intro-list li + li {
  margin-top: 5px;
}
.event-wrap .section-visual .only-desktop .ani.motion1 {
  top: 158px;
  margin-left: -921px;
  z-index: 2;
  animation: rocket-launch-action 4s linear infinite;
}
.event-wrap .section-visual .only-desktop .ani.motion2 {
  top: 90px;
  margin-left: 300px;
  width: 195px;
  height: 157px;
  filter: drop-shadow(14px 14px 64px rgba(0, 0, 0, 0.85));
  animation: bounce-character 5s ease-in-out infinite 0.2s;
}
.event-wrap .section-visual .only-desktop .ani.motion2 img {
  aspect-ratio: 195/157;
}
.event-wrap .section-visual .only-desktop .ani.motion3 {
  top: 422px;
  margin-left: -347px;
  width: 39px;
  height: 69px;
  aspect-ratio: 39/69;
  filter: drop-shadow(14px 14px 64px rgba(0, 0, 0, 0.85));
  animation: bounce-character 3.5s ease-in-out infinite 0.4s;
}
.event-wrap .section-visual .only-desktop .ani.linght1 {
  top: 34px;
  margin-left: -655px;
}
.event-wrap .section-visual .only-desktop .ani.linght2 {
  top: 675px;
  margin-left: 865px;
}
.event-wrap .section-visual .only-desktop .ani.linght3 {
  top: 896px;
  margin-left: -664px;
}
.event-wrap .section-visual .only-desktop .ani.linght4 {
  top: 859px;
  margin-left: -642px;
}
.event-wrap .section-visual .only-desktop .ani.linght5 {
  top: 169px;
  margin-left: 876px;
}
.event-wrap .section-visual .only-desktop .ani.planet1 {
  top: 228px;
  margin-left: -993px;
  width: 299px;
  height: 244px;
}
.event-wrap .section-visual .only-desktop .ani.planet1 img {
  aspect-ratio: 299/224;
}
.event-wrap .section-visual .only-desktop .ani.planet2 {
  top: 0;
  margin-left: 382px;
}
.event-wrap .section-visual .only-desktop .ani.planet3 {
  top: 80px;
  margin-left: 1028px;
  width: 136px;
  height: 80px;
  aspect-ratio: 17/10;
}
.event-wrap .section-visual .only-desktop .ani.planet4 {
  bottom: -21px;
  margin-left: -1133px;
  width: 527px;
  height: 310px;
  aspect-ratio: 17/10;
}
.event-wrap .section-visual .only-desktop .ani.planet5 {
  top: 788px;
  margin-left: 916px;
  width: 177px;
  height: 144px;
  aspect-ratio: 59/48;
}
.event-wrap .section-visual .only-desktop .ani.bubble1 {
  top: 509px;
  margin-left: -126px;
}
.event-wrap .section-visual .only-desktop .ani.bubble2 {
  top: 141px;
  margin-left: 263px;
}
.event-wrap .section-visual .only-desktop .ani.bubble3 {
  top: 124px;
  margin-left: -587px;
}
.event-wrap .section-visual .only-desktop .ani.bubble4 {
  top: 357px;
  margin-left: 879px;
}
.event-wrap .section-visual .only-desktop .ani.star1 {
  top: 271px;
  margin-left: 315px;
}
.event-wrap .section-visual .only-desktop .ani.star2 {
  top: 145px;
  margin-left: -230px;
}
.event-wrap .section-visual .only-desktop .ani.stars1 {
  top: 77px;
  margin-left: -1196px;
}
.event-wrap .section-visual .only-desktop .ani.stars2 {
  top: 76px;
  margin-left: 93px;
}
.event-wrap .section-visual .only-desktop .ani.stars3 {
  top: 625px;
  margin-left: -1272px;
}
.event-wrap .section-visual .only-desktop .ani.stars4 {
  top: 697px;
  margin-left: 382px;
}
.event-wrap .section-visual .only-desktop .ani.stars5 {
  top: 760px;
  margin-left: -145px;
}
.event-wrap .section-visual .only-desktop .ani.stars6 {
  top: 666px;
  margin-left: -779px;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop {
    display: block;
  }
}
.event-wrap .section-visual .only-max-tablet {
  display: block;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-max-tablet {
    display: none;
  }
}
.event-wrap .section-intro {
  padding-top: 23.8317757009vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro {
    padding-top: 204px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro {
    background: url("/assets/events/e260327/images/event-intro-bg.png") center center #070E1E no-repeat;
    padding-top: 198px;
    height: 1187px;
  }
}
.event-wrap .section-intro .inner .title {
  margin-bottom: 4.4392523364vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .inner .title {
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .inner .title {
    margin-bottom: 16px;
    animation: fade-in-up 0.7s ease-out 1.2s backwards;
  }
}
.event-wrap .section-intro .cont-list {
  margin-bottom: 15.6542056075vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .cont-list {
    margin-bottom: 134px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .cont-list {
    margin-bottom: 128px;
    animation: fade-in-up 0.7s ease-out 1.7s backwards;
  }
}
.event-wrap .section-intro .cont-list .cont-item p {
  font-family: "GmarketSans", sans-serif;
}
.event-wrap .section-intro .cont-list .cont-item::before {
  content: "";
  display: inline-flex;
  background: url("/assets/events/e260327/images/intro_bullet.png") center -3px no-repeat;
  width: 4.7897196262vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .cont-list .cont-item::before {
    width: 41px;
  }
}
.event-wrap .section-intro .cont-list .cont-item::before {
  height: 5.2570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .cont-list .cont-item::before {
    height: 45px;
  }
}
.event-wrap .section-intro .cont-list .cont-item::before {
  background-size: contain;
  color: #AF86FE;
  display: inline-flex;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .cont-list .cont-item::before {
    background-position-y: -6px;
    width: 60px;
    height: 64px;
  }
}
.event-wrap .section-intro .bottom-text {
  color: #FFF;
  text-align: center;
  font-family: "GmarketSans", sans-serif;
  font-size: 4.6728971963vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .bottom-text {
    font-size: 40px;
  }
}
.event-wrap .section-intro .bottom-text {
  line-height: 180%;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .bottom-text {
    font-size: 48px;
    animation: fade-in-up 0.7s ease-out 2s backwards;
  }
}
.event-wrap .section-intro .bottom-text strong, .event-wrap .section-intro .bottom-text span {
  font-family: "GmarketSans", sans-serif;
  font-size: 4.6728971963vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .bottom-text strong, .event-wrap .section-intro .bottom-text span {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .bottom-text strong, .event-wrap .section-intro .bottom-text span {
    font-size: 48px;
  }
}
.event-wrap .section-intro .bottom-text strong {
  display: inline-block;
  font-weight: 700;
}
.event-wrap .section-intro .bottom-text span {
  display: block;
}
.event-wrap .section-intro .bottom-text::before {
  content: "";
  display: block;
  position: absolute;
  top: -12.8504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .bottom-text::before {
    top: -110px;
  }
}
.event-wrap .section-intro .bottom-text::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 59.3457943925vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .bottom-text::before {
    width: 508px;
  }
}
.event-wrap .section-intro .bottom-text::before {
  height: 11.7990654206vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-intro .bottom-text::before {
    height: 101px;
  }
}
.event-wrap .section-intro .bottom-text::before {
  background: url("/assets/events/e260327/images/intro_obj.png") #070E1E center center no-repeat;
  background-blend-mode: screen;
  mix-blend-mode: screen;
  background-size: contain;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-intro .bottom-text::before {
    top: -80px;
    left: 50%;
    width: 524px;
    height: 117px;
  }
}
.event-wrap .section-event-1 {
  padding-top: 27.5700934579vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 {
    padding-top: 236px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 {
    background: url("/assets/events/e260327/images/event-1-bg.png") center center #070E1E no-repeat;
    padding-top: 62px;
    height: 1066px;
  }
}
.event-wrap .section-event-1 {
  background-size: cover;
}
.event-wrap .section-event-1 .inner .title {
  margin-bottom: 3.9719626168vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .inner .title {
    margin-bottom: 34px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .inner .title {
    margin-bottom: 16px;
    animation: fade-in-up 0.7s ease-out 1.2s backwards;
  }
}
.event-wrap .section-event-1 .inner .title .planet {
  margin-left: -28.5046728972vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .inner .title .planet {
    margin-left: -244px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .inner .title .planet {
    margin-left: -310px;
  }
}
.event-wrap .section-event-1 .inner .title .star {
  margin-left: -16.3551401869vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .inner .title .star {
    margin-left: -140px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .inner .title .star {
    margin-left: -167px;
  }
}
.event-wrap .section-event-1 .inner .title .text {
  font-size: 6.5420560748vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .inner .title .text {
    font-size: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .inner .title .text {
    font-size: 62px;
  }
}
.event-wrap .section-event-1 .cont-list {
  gap: 5.1401869159vw 0;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list {
    gap: 44px 0;
  }
}
.event-wrap .section-event-1 .cont-list {
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list {
    gap: 50px 0;
    animation: fade-in-up 0.7s ease-out 1.7s backwards;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item {
  justify-content: flex-start;
  padding: 0;
  position: relative;
  color: #fff;
  font-size: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item {
    font-size: 36px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item {
  line-height: 130%;
  border-color: #27FDF8;
  box-shadow: 0 0 20px rgba(39, 253, 248, 0.4);
  background-color: rgba(7, 14, 30, 0.9);
  backdrop-filter: blur(17px);
  text-align: center;
  height: 77.8037383178vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item {
    height: 666px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item {
    font-size: 32px;
    line-height: 180%;
    height: 449px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item span {
  display: block;
  padding-left: 4.9065420561vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item span {
    padding-left: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item span {
    display: inline-block;
    padding: 0;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left {
  padding: 15.8878504673vw 2.3364485981vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left {
    padding: 136px 20px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left {
  width: 24.7663551402vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left {
    width: 212px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left {
  height: 100%;
  background-color: rgba(39, 253, 248, 0.1);
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left {
    padding: 95px 65px 95px 67px;
    width: 363px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left span {
  padding-left: 0;
}
.event-wrap .section-event-1 .cont-list .cont-item .left strong {
  line-height: 130%;
  margin-bottom: 0.3504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left strong {
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left strong {
    margin-bottom: 0;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left p {
  font-size: 2.8037383178vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p {
    font-size: 24px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left p {
  line-height: 130%;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p {
    font-size: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p.step {
    font-size: 28px;
    letter-spacing: -0.1px;
    font-weight: 700;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
  content: "";
  display: block;
  background-color: #AEFFFD;
  width: 16.3551401869vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
    width: 140px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
  height: 0.2336448598vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
    height: 2px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
  margin: 7.9439252336vw auto;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
    margin: 68px auto;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .left p.step::before {
    width: 98px;
    margin: 33px auto 25px;
    height: 2px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right {
  height: 100%;
  width: 92.9906542056vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right {
    width: 796px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right {
  border-radius: 0 2.3364485981vw 2.3364485981vw 0;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right {
    border-radius: 0 20px 20px 0;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right {
  padding: 11.4485981308vw 0.9345794393vw 11.214953271vw 2.8037383178vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right {
    padding: 98px 8px 96px 24px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right {
  color: #FFF;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right {
    width: 916px;
    padding: 73px 82px 73px 163px;
    border-radius: 0 20px 20px 0;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right ul {
  display: flex;
  gap: 4.9065420561vw 0;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right ul {
    gap: 42px 0;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right ul {
  flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right ul {
    gap: 11px 0;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li, .event-wrap .section-event-1 .cont-list .cont-item .right strong {
  font-size: 3.5046728972vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li, .event-wrap .section-event-1 .cont-list .cont-item .right strong {
    font-size: 30px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li, .event-wrap .section-event-1 .cont-list .cont-item .right strong {
  line-height: 160%;
  letter-spacing: -0.3504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li, .event-wrap .section-event-1 .cont-list .cont-item .right strong {
    letter-spacing: -3px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li, .event-wrap .section-event-1 .cont-list .cont-item .right strong {
    font-size: 28px;
    letter-spacing: normal;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li {
  display: flex;
  align-items: baseline;
  gap: 0 2.1028037383vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li {
    gap: 0 18px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li {
    gap: 0 21px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li p {
  text-align: left;
  letter-spacing: -0.0011682243vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li p {
    letter-spacing: -0.01px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li p {
  font-weight: 400;
  font-size: 3.738317757vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li p {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li p {
    letter-spacing: -0.05px;
    font-size: 2.8037383178vw;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li p {
    font-size: 24px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li::before {
  content: "";
  display: inline-flex;
  background: url("/assets/events/e260327/images/event1_beaker.png") center center no-repeat;
  width: 2.5700934579vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li::before {
    width: 22px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li::before {
  height: 3.5046728972vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li::before {
    height: 30px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item .right li::before {
  transform: translateY(4px);
  background-size: contain;
  color: #AF86FE;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item .right li::before {
    width: 22px;
    height: 30px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child {
  height: 35.9813084112vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child {
    height: 308px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child {
    height: 250px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child .left {
  padding: 5.3738317757vw 3.0373831776vw 5.1401869159vw 3.2710280374vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .left {
    padding: 46px 26px 44px 28px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .left {
    padding: 35px 83px 34px 84px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child .left p.step::before {
  margin: 3.2710280374vw auto 3.0373831776vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .left p.step::before {
    margin: 28px auto 26px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .left p.step::before {
    margin: 24px auto 26px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child .right {
  padding: 11.9158878505vw 0 12.3831775701vw 7.476635514vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .right {
    padding: 102px 0 106px 64px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .right {
    padding: 80px 0 81px 163px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child .right li:before {
  background-image: url("/assets/events/e260327/images/event1_balloon.png");
  width: 3.9719626168vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .right li:before {
    width: 34px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child .right li:before {
  height: 5.2570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .right li:before {
    height: 45px;
  }
}
.event-wrap .section-event-1 .cont-list .cont-item:last-child .right li:before {
  transform: translateY(5px);
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-1 .cont-list .cont-item:last-child .right li:before {
    width: 33px;
    height: 44px;
    transform: translateY(14px);
  }
}
.event-wrap .section-event-2 {
  padding-top: 23.1308411215vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 {
    padding-top: 198px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 {
    background: url("/assets/events/e260327/images/event-2-bg.png") center center #070E1E no-repeat;
    padding-top: 66px;
    height: 1363px;
  }
}
.event-wrap .section-event-2 {
  background-size: cover;
}
.event-wrap .section-event-2 .inner .title {
  margin-bottom: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .inner .title {
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .inner .title {
    margin-bottom: 10px;
    animation: fade-in-up 0.7s ease-out 1.2s backwards;
  }
}
.event-wrap .section-event-2 .inner .title .planet {
  margin-left: -19.1588785047vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .inner .title .planet {
    margin-left: -164px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .inner .title .planet {
    margin-left: -248px;
  }
}
.event-wrap .section-event-2 .inner .title .star {
  margin-left: -7.2429906542vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .inner .title .star {
    margin-left: -62px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .inner .title .star {
    margin-left: -105px;
  }
}
.event-wrap .section-event-2 .cont-list {
  border: 2px solid #AF86FE;
  border-width: 0.2336448598vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list {
    border-width: 2px;
  }
}
.event-wrap .section-event-2 .cont-list {
  box-shadow: 0 0 20px rgba(174, 134, 255, 0.4);
  background: rgba(12, 17, 35, 0.9);
  backdrop-filter: blur(17px);
  border-radius: 2.3364485981vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list {
    border-radius: 20px;
  }
}
.event-wrap .section-event-2 .cont-list {
  padding: 7.2429906542vw 9.1121495327vw 5.8411214953vw 2.3364485981vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list {
    padding: 62px 78px 50px 20px;
  }
}
.event-wrap .section-event-2 .cont-list {
  gap: 3.5046728972vw 0;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list {
    gap: 30px 0;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list {
    border-radius: 20px;
    padding: 87px 0 95px 239px;
    gap: 30px 0;
    animation: fade-in-up 0.7s ease-out 1.7s backwards;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item {
  padding: 0;
  gap: 0 2.5700934579vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item {
    gap: 0 22px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item {
  align-items: baseline;
  border: none;
  box-shadow: none;
  justify-content: flex-start;
  filter: none;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item {
    gap: 0 34px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left {
  width: 23.8317757009vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left {
    width: 204px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left {
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left {
    width: 244px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left .tit {
  background: rgba(175, 134, 254, 0.2);
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0.7009345794vw 0 0.4672897196vw 0;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left .tit {
    padding: 6px 0 4px 0;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left .tit {
  border-radius: 4.6728971963vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left .tit {
    border-radius: 40px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left .tit {
  height: 8.6448598131vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left .tit {
    height: 74px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left .tit {
  line-height: 180%;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left .tit {
    border-radius: 40px;
    padding: 7px 0;
    height: 64px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left .tit strong {
  font-size: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left .tit strong {
    font-size: 36px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .left .tit strong {
  line-height: normal;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item .left .tit strong {
    font-size: 28px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .right {
  flex-shrink: 0;
  width: 58.4112149533vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .right {
    width: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item .right {
    width: 445px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .right strong, .event-wrap .section-event-2 .cont-list .cont-item .right p {
  font-size: 3.738317757vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .right strong, .event-wrap .section-event-2 .cont-list .cont-item .right p {
    font-size: 32px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .right strong, .event-wrap .section-event-2 .cont-list .cont-item .right p {
  letter-spacing: -0.1495327103vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item .right strong, .event-wrap .section-event-2 .cont-list .cont-item .right p {
    letter-spacing: -1.28px;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item .right strong, .event-wrap .section-event-2 .cont-list .cont-item .right p {
  line-height: 130%;
  font-family: "Pretendard", sans-serif;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item .right strong, .event-wrap .section-event-2 .cont-list .cont-item .right p {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: normal;
  }
}
.event-wrap .section-event-2 .cont-list .cont-item:last-child .right strong {
  display: block;
  width: auto;
  margin-right: 1.1682242991vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .cont-list .cont-item:last-child .right strong {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .cont-list .cont-item:last-child .right strong {
    display: inline-block;
    margin-right: 10px;
  }
}
.event-wrap .section-event-2 .btn-wrap {
  position: relative;
  width: 100%;
  height: 48.5981308411vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap {
    height: 416px;
  }
}
.event-wrap .section-event-2 .btn-wrap {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .btn-wrap {
    height: 515px;
    margin: -86px auto 0;
    animation: fade-in-up 0.7s ease-out 2.2s backwards;
  }
}
.event-wrap .section-event-2 .btn-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 79.9065420561vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap::before {
    width: 684px;
  }
}
.event-wrap .section-event-2 .btn-wrap::before {
  height: 17.7570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap::before {
    height: 152px;
  }
}
.event-wrap .section-event-2 .btn-wrap::before {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap::before {
    border-radius: 220px;
  }
}
.event-wrap .section-event-2 .btn-wrap::before {
  background: #93B5FF;
  filter: blur(4.6vw);
  z-index: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .btn-wrap::before {
    left: 232px;
    top: 162px;
    width: 808px;
    height: 172px;
    border-radius: 110px;
    transform: none;
    filter: blur(77px);
  }
}
.event-wrap .section-event-2 .btn-wrap::after {
  content: "";
  position: absolute;
  left: 50.2%;
  top: 49.5%;
  transform: translate(-50%, -50%);
  width: 81.0747663551vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap::after {
    width: 694px;
  }
}
.event-wrap .section-event-2 .btn-wrap::after {
  height: 19.2757009346vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap::after {
    height: 165px;
  }
}
.event-wrap .section-event-2 .btn-wrap::after {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap::after {
    border-radius: 220px;
  }
}
.event-wrap .section-event-2 .btn-wrap::after {
  background: #8E9DFF;
  filter: blur(0.2vw);
  opacity: 0.4;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .btn-wrap::after {
    left: 232px;
    top: 151px;
    width: 818px;
    height: 183px;
    border-radius: 110px;
    transform: none;
    filter: blur(2px);
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 79.9065420561vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    width: 684px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  height: 17.7570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    height: 152px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    border-radius: 220px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  font-size: 6.5420560748vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    font-size: 56px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  color: #0B1347;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #5A57FF 0%, #7A8DFF 100%);
  border: 4px solid #9BC4FF;
  border-width: 0.4672897196vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    border-width: 4px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  color: #0B1347;
  font-family: "GmarketSans", sans-serif;
  font-weight: 700;
  line-height: 150%;
  z-index: 2;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    left: 232px;
    top: 162px;
    width: 808px;
    height: 172px;
    border-radius: 110px;
    font-size: 62px;
    transform: none;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 5px solid #9BC4FF;
  border-width: 0.5841121495vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply::before {
    border-width: 5px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply::before {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply::before {
    border-radius: 220px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply::before {
  filter: blur(4vw);
  pointer-events: none;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply::before {
    filter: blur(7px);
    border-radius: 110px;
  }
}
.event-wrap .section-event-2 .btn-wrap .highlight-pb {
  position: absolute;
  bottom: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .highlight-pb {
    bottom: 36px;
  }
}
.event-wrap .section-event-2 .btn-wrap .highlight-pb {
  font-size: 2.8037383178vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .highlight-pb {
    font-size: 24px;
  }
}
.event-wrap .section-event-2 .btn-wrap .highlight-pb {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-2 .btn-wrap .highlight-pb {
    bottom: 88px;
    font-size: 22px;
    line-height: 160%;
  }
}
.event-wrap .section-event-3 {
  padding-top: 22.1962616822vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 {
    padding-top: 190px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 {
    background: url("/assets/events/e260327/images/event-3-bg.png") center center #070E1E no-repeat;
    padding: 133px 0 0;
    height: 1346px;
  }
}
.event-wrap .section-event-3 .inner .title {
  margin-bottom: 5.8411214953vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .inner .title {
    margin-bottom: 54px;
    animation: fade-in-up 0.7s ease-out 1.2s backwards;
  }
}
.event-wrap .section-event-3 .inner .title .planet {
  margin-left: -46.4953271028vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title .planet {
    margin-left: -398px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .inner .title .planet {
    margin-left: -530px;
  }
}
.event-wrap .section-event-3 .inner .title .star {
  margin-left: -34.5794392523vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title .star {
    margin-left: -296px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .inner .title .star {
    margin-left: -387px;
  }
}
.event-wrap .section-event-3 .inner .title .text {
  color: #fff;
  display: inline-flex;
  align-items: normal;
  font-size: 6.5420560748vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title .text {
    font-size: 56px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .inner .title .text {
    font-size: 62px;
    line-height: 180%;
  }
}
.event-wrap .section-event-3 .inner .title .text img {
  width: 8.6448598131vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title .text img {
    width: 74px;
  }
}
.event-wrap .section-event-3 .inner .title .text img {
  height: 8.8785046729vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title .text img {
    height: 76px;
  }
}
.event-wrap .section-event-3 .inner .title .text img {
  margin-left: 2.1028037383vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner .title .text img {
    margin-left: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .inner .title .text img {
    width: 89px;
    height: 92px;
    margin-left: 21px;
  }
}
.event-wrap .section-event-3 .cont-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.1028037383vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list {
    gap: 18px;
  }
}
.event-wrap .section-event-3 .cont-list {
  border-radius: 2.3364485981vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list {
    border-radius: 20px;
  }
}
.event-wrap .section-event-3 .cont-list {
  padding: 7.0093457944vw 0vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list {
    padding: 60px 0px;
  }
}
.event-wrap .section-event-3 .cont-list {
  border: 2px solid #0394D7;
  border-width: 0.2336448598vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list {
    border-width: 2px;
  }
}
.event-wrap .section-event-3 .cont-list {
  background: rgba(7, 14, 30, 0.9);
  box-shadow: 0 0 20px rgba(3, 148, 215, 0.4);
  backdrop-filter: blur(17px);
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list {
    gap: 0 17px;
    border-radius: 20px;
    padding: 93px 38px 104px;
    animation: fade-in-up 0.7s ease-out 1.7s backwards;
    flex-wrap: nowrap;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 42.7570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item {
    width: 366px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item {
  height: 53.738317757vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item {
    height: 460px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item {
  border-radius: 2.3364485981vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item {
    border-radius: 20px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item {
  padding: 5.1401869159vw 2.5700934579vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item {
    padding: 44px 22px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item {
  border: none;
  box-shadow: none;
  background: rgba(3, 148, 215, 0.2);
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item {
    width: 288px;
    height: 372px;
    border-radius: 20px;
    padding: 36px 22px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .sub-title {
  color: #fff;
  font-family: "GmarketSans", sans-serif;
  font-size: 3.738317757vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .sub-title {
    font-size: 32px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .sub-title {
  line-height: 180%;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .sub-title {
    font-size: 24px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .main-title {
  color: #fff;
  font-family: "GmarketSans", sans-serif;
  font-size: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title {
    font-size: 36px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .main-title {
  line-height: 180%;
  font-weight: 700;
  margin-top: -2.1028037383vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title {
    margin-top: -18px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title {
    font-size: 24px;
    margin-top: -11px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .main-title strong {
  display: inline;
  font-family: "GmarketSans", sans-serif;
  color: #00B0E1;
  font-weight: 700;
  font-size: 8.4112149533vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title strong {
    font-size: 72px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .main-title strong {
  line-height: 180%;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title strong {
    font-size: 58px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .main-title span {
  font-family: "GmarketSans", sans-serif;
  font-weight: 700;
  font-size: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title span {
    font-size: 36px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .main-title span {
  line-height: 180%;
  display: inline-block;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .main-title span {
    font-size: 24px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item span {
  display: block;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item span {
    display: inline-block;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .desc {
  color: #9BCDEE;
  font-family: "Pretendard", sans-serif;
  font-size: 3.738317757vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .desc {
    font-size: 32px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .desc {
  line-height: 130%;
  margin-top: -1.6355140187vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .desc {
    margin-top: -14px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .desc {
    font-size: 18px;
    margin-top: -13px;
    line-height: 180%;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj {
  position: absolute;
}
.event-wrap .section-event-3 .cont-list .cont-item .obj img {
  display: block;
  width: 100%;
  height: 100%;
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
  left: 22.6635514019vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
    left: 194px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
  top: 32.3598130841vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
    top: 277px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
  width: 17.2897196262vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
    width: 148px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
  height: 18.9252336449vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
    height: 162px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-1 {
    left: 140px;
    top: 210px;
    width: 130px;
    height: 143px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
  left: 26.6355140187vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
    left: 228px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
  top: 35.046728972vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
    top: 300px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
  width: 12.6168224299vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
    width: 108px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
  height: 12.1495327103vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
    height: 104px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-2 {
    left: 152px;
    top: 251px;
    width: 106px;
    height: 102px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
  left: 12.8504672897vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
    left: 110px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
  top: 27.5700934579vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
    top: 236px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
  width: 23.2476635514vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
    width: 199px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
  height: 21.4953271028vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
    height: 184px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-3 {
    left: 68px;
    top: 170px;
    width: 199px;
    height: 184px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
  left: 17.7570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
    left: 152px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
  top: 33.1775700935vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
    top: 284px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
  width: 20.7943925234vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
    width: 178px;
  }
}
.event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
  height: 18.2242990654vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
    height: 156px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .cont-list .cont-item .obj.obj-4 {
    left: 69px;
    top: 225px;
    width: 150px;
    height: 131px;
  }
}
.event-wrap .section-event-3 .btn-wrap {
  position: relative;
  width: 100%;
  height: 48.5981308411vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap {
    height: 416px;
  }
}
.event-wrap .section-event-3 .btn-wrap {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .btn-wrap {
    height: 515px;
    margin: -69px auto 0;
    animation: fade-in-up 0.7s ease-out 2.2s backwards;
  }
}
.event-wrap .section-event-3 .btn-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 79.9065420561vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap::before {
    width: 684px;
  }
}
.event-wrap .section-event-3 .btn-wrap::before {
  height: 17.7570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap::before {
    height: 152px;
  }
}
.event-wrap .section-event-3 .btn-wrap::before {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap::before {
    border-radius: 220px;
  }
}
.event-wrap .section-event-3 .btn-wrap::before {
  background: #6ABAFF;
  filter: blur(4.6vw);
  z-index: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .btn-wrap::before {
    left: 231px;
    top: 164px;
    width: 808px;
    height: 182px;
    border-radius: 110px;
    transform: none;
  }
}
.event-wrap .section-event-3 .btn-wrap::after {
  content: "";
  position: absolute;
  left: 50.2%;
  top: 49.5%;
  transform: translate(-50%, -50%);
  width: 81.0747663551vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap::after {
    width: 694px;
  }
}
.event-wrap .section-event-3 .btn-wrap::after {
  height: 19.2757009346vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap::after {
    height: 165px;
  }
}
.event-wrap .section-event-3 .btn-wrap::after {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap::after {
    border-radius: 220px;
  }
}
.event-wrap .section-event-3 .btn-wrap::after {
  background: #6ABAFF;
  filter: blur(0.2vw);
  opacity: 0.4;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .btn-wrap::after {
    left: 231px;
    top: 152px;
    width: 818px;
    height: 194px;
    border-radius: 110px;
    transform: none;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 79.9065420561vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply {
    width: 684px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply {
  height: 17.7570093458vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply {
    height: 152px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply {
    border-radius: 220px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply {
  font-size: 6.5420560748vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply {
    font-size: 56px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #57C7FF 0%, #7AC3FF 100%);
  border: 4px solid #AEEBFF;
  border-width: 0.4672897196vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply {
    border-width: 4px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply {
  color: #0B1347;
  font-family: "GmarketSans", sans-serif;
  font-weight: 700;
  line-height: 150%;
  z-index: 2;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply {
    left: 231px;
    top: 164px;
    width: 808px;
    height: 182px;
    border-radius: 110px;
    font-size: 62px;
    transform: none;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 5px solid rgb(174, 235, 255);
  border-width: 0.5841121495vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply::before {
    border-width: 5px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply::before {
  border-radius: 25.7009345794vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply::before {
    border-radius: 220px;
  }
}
.event-wrap .section-event-3 .btn-wrap .btn-apply::before {
  filter: blur(4vw);
  pointer-events: none;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-event-3 .btn-wrap .btn-apply::before {
    filter: blur(7px);
    border-radius: 110px;
  }
}
.event-wrap .section-notice {
  background: #2C3447;
  padding: 16.3551401869vw 2.8037383178vw 14.7196261682vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice {
    padding: 140px 24px 126px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-notice {
    padding: 80px 0;
  }
}
.event-wrap .section-notice .inner {
  text-align: left;
  max-width: 1280px;
  margin: 0 auto;
}
.event-wrap .section-notice .title {
  color: #fff;
  font-weight: 700;
  font-size: 4.2056074766vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .title {
    font-size: 36px;
  }
}
.event-wrap .section-notice .title {
  line-height: 150%;
  margin-bottom: 2.8037383178vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .title {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-notice .title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.event-wrap .section-notice .title.only-mo {
  font-family: "GmarketSans", sans-serif;
}
.event-wrap .section-notice ol {
  list-style: decimal;
  padding-left: 3.1542056075vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice ol {
    padding-left: 27px;
  }
}
.event-wrap .section-notice ol {
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-notice ol {
    padding-left: 27px;
  }
}
.event-wrap .section-notice ol li {
  color: #fff;
  font-size: 3.2710280374vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice ol li {
    font-size: 28px;
  }
}
.event-wrap .section-notice ol li {
  line-height: 180%;
  letter-spacing: -0.84px;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-notice ol li {
    font-size: 18px;
    line-height: 160%;
    letter-spacing: -0.84px;
  }
}
.event-wrap .section-notice ol li::marker {
  color: #fff;
}
.event-wrap .section-notice .notice-contact {
  color: #fff;
  font-size: 2.1028037383vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .notice-contact {
    font-size: 18px;
  }
}
.event-wrap .section-notice .notice-contact {
  line-height: 160%;
  padding-left: 3.1542056075vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .notice-contact {
    padding-left: 27px;
  }
}
.event-wrap .section-notice .notice-contact {
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .event-wrap .section-notice .notice-contact {
    font-size: 18px;
    padding-left: 27px;
  }
}
