@charset "UTF-8";
@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% {
    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;
}
.only-pc {
  display: none;
}
@media screen and (min-width: 1100px) {
  .only-pc {
    display: inline-block !important;
  }
}

.only-mo {
  display: inline-block !important;
}
@media screen and (min-width: 1100px) {
  .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: 1100px) {
  .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: 24vw;
}
@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.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    margin-top: 10px;
  }
}
.event-wrap .mobile-obj-layer .obj-1 {
  width: 114.1333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-1 {
  height: 46.4vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-1 {
    height: 348px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  left: 43.7333333333vw;
}
@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.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-2 {
    margin-top: 10px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  width: 71.7333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-2 {
    width: 538px;
  }
}
.event-wrap .mobile-obj-layer .obj-2 {
  height: 83.7333333333vw;
}
@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: 116.2666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    margin-top: 872px;
  }
}
.event-wrap .mobile-obj-layer .obj-3 {
  width: 114.1333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-3 {
  height: 126.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-3 {
    height: 950px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  left: 71.7333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    left: 538px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  margin-top: 140.5333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    margin-top: 1054px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  width: 42.4vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-4 {
    width: 318px;
  }
}
.event-wrap .mobile-obj-layer .obj-4 {
  height: 32.2666666667vw;
}
@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: 312vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    margin-top: 2340px;
  }
}
.event-wrap .mobile-obj-layer .obj-5 {
  width: 114.1333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-5 {
  height: 126.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-5 {
    height: 950px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  right: 11.7333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    right: 88px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  margin-top: 330.4vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    margin-top: 2478px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  width: 12vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-6 {
    width: 90px;
  }
}
.event-wrap .mobile-obj-layer .obj-6 {
  height: 10.6666666667vw;
}
@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: 513.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-7 {
    margin-top: 3850px;
  }
}
.event-wrap .mobile-obj-layer .obj-7 {
  width: 114.1333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-7 {
    width: 856px;
  }
}
.event-wrap .mobile-obj-layer .obj-7 {
  height: 126.6666666667vw;
}
@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: 522.4vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-8 {
    margin-top: 3918px;
  }
}
.event-wrap .mobile-obj-layer .obj-8 {
  width: 34.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-8 {
    width: 260px;
  }
}
.event-wrap .mobile-obj-layer .obj-8 {
  height: 50.1333333333vw;
}
@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: 709.0666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-9 {
    margin-top: 5318px;
  }
}
.event-wrap .mobile-obj-layer .obj-9 {
  width: 113.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .mobile-obj-layer .obj-9 {
    width: 850px;
  }
}
.event-wrap .mobile-obj-layer .obj-9 {
  height: 69.6vw;
}
@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;
  background-size: contain;
}
.event-wrap img {
  max-width: 100%;
}
.event-wrap .logo {
  position: absolute;
  top: 6.4096vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo {
    top: 48.072px;
  }
}
.event-wrap .logo {
  left: 50%;
  margin-left: 72.6104vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo {
    margin-left: 544.578px;
  }
}
.event-wrap .logo {
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  .event-wrap .logo {
    top: 48.072px;
    margin-left: 544.578px;
  }
}
.event-wrap .logo a {
  display: block;
}
.event-wrap .logo img {
  width: 12.7230666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo img {
    width: 95.423px;
  }
}
.event-wrap .logo img {
  height: 4.3904vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo img {
    height: 32.928px;
  }
}
@media screen and (min-width: 1100px) {
  .event-wrap .logo img {
    width: 95.423px;
    height: 32.928px;
  }
}
.event-wrap .section-visual {
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (max-width: 1920px) {
  .event-wrap .section-visual {
    --visual-laptop-scale: min(1, calc(100vw / 1920px));
    height: calc(958px * 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: 958px;
  overflow: hidden;
  background: url("/assets/events/e260601/images/visual.jpg") #070E1E 50% 50% no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) and (max-width: 1920px) {
  .event-wrap .section-visual .only-desktop {
    --visual-laptop-scale: min(1, calc(100vw / 1920px));
    left: 50%;
    width: 1920px;
    margin-left: -960px;
    transform: scale(var(--visual-laptop-scale));
    transform-origin: top center;
  }
}
@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 [class*=section-event-] {
  padding: 13.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] {
    padding: 100px 40px;
  }
}
@media screen and (min-width: 1100px) {
  .event-wrap [class*=section-event-] {
    padding: 100px 0;
  }
}
.event-wrap [class*=section-event-] .inner {
  background: url("../../assets/events/e260601/images/event-cont1_mo.png") center center #ECFBFB no-repeat;
  height: 89.6vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap [class*=section-event-] .inner {
    height: 672px;
  }
}
.event-wrap [class*=section-event-] .inner {
  background-size: contain;
}
@media screen and (min-width: 1100px) {
  .event-wrap [class*=section-event-] .inner {
    background-image: url("../../assets/events/e260601/images/event-cont1.png");
    height: 759px;
  }
}
.event-wrap .section-event-1 {
  padding-bottom: 5.8666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 {
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-1 {
    padding-bottom: 72px;
  }
}
.event-wrap .section-event-1 {
  background-color: #ECFBFB;
}
.event-wrap .section-event-1 .inner {
  background: url("/assets/events/e260601/images/event-cont1_mo.png") center center no-repeat;
  height: 89.6vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .inner {
    height: 672px;
  }
}
.event-wrap .section-event-1 .inner {
  background-size: contain;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-1 .inner {
    background-image: url("/assets/events/e260601/images/event-cont1.png");
    height: 759px;
  }
}
.event-wrap .section-event-2 {
  padding-top: 0;
  background-color: #ECFBFB;
}
.event-wrap .section-event-2 .inner {
  background: url("/assets/events/e260601/images/event-cont2_mo.png") center center no-repeat;
  height: 114.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .inner {
    height: 860px;
  }
}
.event-wrap .section-event-2 .inner {
  background-size: contain;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-2 .inner {
    background-image: url("/assets/events/e260601/images/event-cont2.png");
    height: 1024px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  display: block;
  background: url("/assets/events/e260601/images/btn_apply_mo.png") center center no-repeat;
  width: 88vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    width: 660px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  height: 17.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    height: 130px;
  }
}
.event-wrap .section-event-2 .btn-wrap .btn-apply {
  background-size: contain;
  margin: 44px auto 0;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-2 .btn-wrap .btn-apply {
    width: 600px;
    height: 97px;
    margin-top: 40px;
    background-image: url("/assets/events/e260601/images/btn_apply.png");
  }
}
.event-wrap .section-event-3 {
  background-color: #FFF6FB;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-3 {
    background: url("/assets/events/e260601/images/event-cont3_bg.png") center center #FFF6FB no-repeat;
  }
}
.event-wrap .section-event-3 .inner {
  background: url("/assets/events/e260601/images/event-cont3_mo.png") center center no-repeat;
  height: 271.7333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-3 .inner {
    height: 2038px;
  }
}
.event-wrap .section-event-3 .inner {
  background-size: contain;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-3 .inner {
    background-image: url("/assets/events/e260601/images/event-cont3.png");
    height: 2594px;
  }
}
.event-wrap .section-event-4 {
  padding-top: 6.9333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-4 {
    padding-top: 52px;
  }
}
.event-wrap .section-event-4 {
  background-color: #EDF7FF;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-4 {
    background: url("/assets/events/e260601/images/event-cont4_bg.png") center center #EDF7FF no-repeat;
    padding-top: 61px;
  }
}
.event-wrap .section-event-4 .inner {
  background: url("/assets/events/e260601/images/event-cont4_mo.png") center center no-repeat;
  height: 188vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-4 .inner {
    height: 1410px;
  }
}
.event-wrap .section-event-4 .inner {
  background-size: contain;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-event-4 .inner {
    background-image: url("/assets/events/e260601/images/event-cont4.png");
    height: 1600px;
  }
}
.event-wrap .section-notice {
  background: #D2DDE6;
  padding: 10.6666666667vw 6.6666666667vw 13.3333333333vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice {
    padding: 80px 50px 100px;
  }
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-notice {
    padding: 50px 0;
  }
}
.event-wrap .section-notice .inner {
  display: flex;
  flex-direction: column;
  gap: 3.2vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .inner {
    gap: 24px;
  }
}
.event-wrap .section-notice .inner {
  text-align: left;
  margin: 0 auto;
  color: #505050;
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-notice .inner {
    gap: 12px;
    max-width: 1100px;
  }
}
.event-wrap .section-notice .title {
  color: #505050;
  font-family: "Pretendard", sans-serif;
  font-size: 4.6666666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .title {
    font-size: 35px;
  }
}
.event-wrap .section-notice .title {
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.0346666667vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .title {
    letter-spacing: -0.26px;
  }
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-notice .title {
    font-size: 26px;
    letter-spacing: -0.26px;
  }
}
.event-wrap .section-notice ol {
  list-style: disc;
  padding-left: 3.6vw;
}
@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: 1100px) {
  .event-wrap .section-notice ol {
    padding-left: 27px;
  }
}
.event-wrap .section-notice ol li {
  color: #505050;
  font-family: "Pretendard", sans-serif;
  font-size: 3.6vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice ol li {
    font-size: 27px;
  }
}
.event-wrap .section-notice ol li {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.024vw;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice ol li {
    letter-spacing: -0.18px;
  }
}
@media screen and (min-width: 1100px) {
  .event-wrap .section-notice ol li {
    font-size: 18px;
    letter-spacing: -0.18px;
  }
}
.event-wrap .section-notice ol li::marker {
  color: #505050;
  font-size: 0.7em;
}
.event-wrap .section-notice .notice-contact {
  color: #fff;
  font-size: 2.4vw;
}
@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.6vw;
}
@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: 1100px) {
  .event-wrap .section-notice .notice-contact {
    font-size: 18px;
    padding-left: 27px;
  }
}
