@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);
  }
}
@font-face {
  font-family: "paperlogy";
  src: url("../../font/Paperlogy-4Regular.woff2") format("woff2"), url("../../font/Paperlogy-4Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "paperlogy";
  src: url("../../font/Paperlogy-5Medium.woff2") format("woff2"), url("../../font/Paperlogy-5Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "paperlogy";
  src: url("../../font/Paperlogy-6SemiBold.woff2") format("woff2"), url("../../font/Paperlogy-6SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "paperlogy";
  src: url("../../font/Paperlogy-7Bold.woff2") format("woff2"), url("../../font/Paperlogy-7Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@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;
}
header.header {
  display: none;
}

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

.floating {
  display: none;
}

.blind {
  overflow: hidden;
  position: absolute;
  left: -1000000px;
  text-indent: -1000000px;
  margin: -1px;
  width: 1px;
  height: 1px;
}

.event-wrap {
  overflow-x: hidden;
}
.event-wrap * {
  font-family: "paperlogy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.event-wrap .inner {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .event-wrap .inner {
    max-width: 1112px;
  }
}
.event-wrap img {
  max-width: 100%;
}
.event-wrap .logo {
  position: absolute;
  top: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .logo {
    top: 30px;
  }
}
.event-wrap .logo {
  right: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .logo {
    right: 30px;
  }
}
.event-wrap .logo {
  z-index: 1;
}
.event-wrap .logo img {
  width: 12.3697916667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .logo img {
    width: 95px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo {
    top: 18.073px;
    right: auto;
    left: 50%;
    margin-left: 454.578px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .logo {
    top: 1.411953125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .logo {
    top: 18.073px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .logo {
    margin-left: 35.51390625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .logo {
    margin-left: 454.578px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .logo img {
    width: 95.422px;
    height: 32.928px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .logo img {
    width: 7.45484375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .logo img {
    width: 95.422px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .logo img {
    height: 2.5725vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .logo img {
    height: 32.928px;
  }
}
.event-wrap .section-visual {
  background: url("/assets/events/e260713/images/visual_mo.jpg") no-repeat center top/100% auto;
  aspect-ratio: 856/3750;
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: hidden;
}
.event-wrap .section-visual img {
  width: 100%;
  object-fit: cover;
  vertical-align: top;
}
.event-wrap .section-visual .only-desktop {
  display: none;
}
.event-wrap .section-visual .btn-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6.1197916667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap {
    bottom: 47px;
  }
}
.event-wrap .section-visual .btn-wrap a {
  display: inline-flex;
  align-items: center;
  background: url("/assets/events/e260713/images/btn_apply_mo.png") no-repeat center center/contain;
  width: 84.6354166667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap a {
    width: 650px;
  }
}
.event-wrap .section-visual .btn-wrap a {
  height: 18.2291666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap a {
    height: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual {
    background: none;
    aspect-ratio: auto;
  }
  .event-wrap .section-visual .only-desktop {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100vw;
    height: 592.4479166667vw;
    overflow: hidden;
    background: url("/assets/events/e260713/images/visual.jpg") no-repeat center top/100% 100%;
    padding: 14.3229166667vw 0 12.3697916667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop {
    height: 4550px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop {
    height: 355.46875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop {
    height: 4550px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop {
    padding: 110px 0 95px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop {
    padding-top: 8.59375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop {
    padding-top: 110px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop {
    padding-bottom: 7.421875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop {
    padding-bottom: 95px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani {
    position: absolute;
    left: 50%;
  }
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    top: 102.6041666667vw;
    margin-left: 104.1666666667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    top: 788px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    top: 61.5625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    top: 788px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    margin-left: 800px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    margin-left: 62.5vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 {
    margin-left: 800px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj1::before {
    content: "";
    position: absolute;
    top: 91px;
    left: 100px;
    z-index: 1;
    display: block;
    width: 8.4635416667vw;
    height: 11.1979166667vw;
    background: url("/assets/events/e260713/images/event_obj1_1.png") transparent no-repeat 0 0;
    background-size: 100% auto;
    mix-blend-mode: screen;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj1::before {
    width: 65px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj1::before {
    height: 86px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj1 img, .event-wrap .section-visual .only-desktop .ani.obj1::before {
    animation: flipInY 1s ease-out 0.3s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    top: 278.7760416667vw;
    margin-left: -168.2291666667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    top: 2141px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    top: 167.265625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    top: 2141px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    margin-left: -1292px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    margin-left: -100.9375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj2 {
    margin-left: -1292px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj2::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 354px;
    z-index: 1;
    display: block;
    width: 13.1510416667vw;
    height: 8.8541666667vw;
    background: url("/assets/events/e260713/images/event_obj4_1.png") transparent no-repeat 0 0;
    background-size: 100% auto;
    mix-blend-mode: screen;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj2::before {
    width: 101px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj2::before {
    height: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    top: 48.9583333333vw;
    margin-left: -191.796875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    top: 376px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    top: 29.375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    top: 376px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    margin-left: -1473px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    margin-left: -115.078125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 {
    margin-left: -1473px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj3::before {
    content: "";
    position: absolute;
    top: 110px;
    left: 500px;
    z-index: 1;
    display: block;
    width: 6.640625vw;
    height: 10.546875vw;
    background: url("/assets/events/e260713/images/event_obj3_1.png") transparent no-repeat 0 0;
    background-size: 100% auto;
    mix-blend-mode: screen;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj3::before {
    width: 51px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj3::before {
    height: 81px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj3 img, .event-wrap .section-visual .only-desktop .ani.obj3::before {
    animation: flipInY 1s ease-out 0.4s backwards;
  }
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    bottom: 160.4166666667vw;
    margin-left: -126.3020833333vw;
    animation: flipInX 1s ease-out 0.5s backwards;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    bottom: 1232px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    bottom: 96.25vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    bottom: 1232px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    margin-left: -970px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    margin-left: -75.78125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj4 {
    margin-left: -970px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    bottom: 13.0208333333vw;
    margin-left: 82.8125vw;
    animation: flipInY 1s ease-out 0.6s backwards;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    bottom: 100px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    bottom: 7.8125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    bottom: 100px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    margin-left: 636px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    margin-left: 49.6875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj5 {
    margin-left: 636px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    top: 7.8125vw;
    margin-left: -104.8177083333vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    top: 60px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    top: 4.6875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    top: 60px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    margin-left: -805px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    margin-left: -62.890625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj6 {
    margin-left: -805px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    top: 30.2083333333vw;
    margin-left: 108.8541666667vw;
    animation: float-smooth 5s ease-in-out infinite 0.2s;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    top: 232px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    top: 18.125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    top: 232px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    margin-left: 836px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    margin-left: 65.3125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj7 {
    margin-left: 836px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    top: 248.5677083333vw;
    margin-left: 91.1458333333vw;
    animation: float-smooth 5s ease-in-out infinite 0.5s;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    top: 1909px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    top: 149.140625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    top: 1909px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    margin-left: 700px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    margin-left: 54.6875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj8 {
    margin-left: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    bottom: 247.3958333333vw;
    margin-left: 107.5520833333vw;
    animation: float-gentle 5s ease-in-out infinite;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    bottom: 1900px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    bottom: 148.4375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    bottom: 1900px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    margin-left: 826px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    margin-left: 64.53125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj9 {
    margin-left: 826px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    top: 149.7395833333vw;
    margin-left: -129.1666666667vw;
    animation: bounceInUp 2s ease-in-out;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    top: 1150px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    top: 89.84375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    top: 1150px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    margin-left: -992px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    margin-left: -77.5vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj10 {
    margin-left: -992px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    bottom: 133.8541666667vw;
    margin-left: 124.4791666667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    bottom: 1028px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    bottom: 80.3125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    bottom: 1028px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    margin-left: 956px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    margin-left: 74.6875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 {
    margin-left: 956px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj11::before {
    content: "";
    position: absolute;
    top: 78px;
    left: 70px;
    z-index: 1;
    display: block;
    width: 8.4635416667vw;
    height: 11.1979166667vw;
    background: url("/assets/events/e260713/images/event_obj1_1.png") transparent no-repeat 0 0;
    background-size: 100% auto;
    mix-blend-mode: screen;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11::before {
    width: 65px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11::before {
    height: 86px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 img, .event-wrap .section-visual .only-desktop .ani.obj11::before {
    animation: bounceInUp 2s ease-in-out;
  }
  .event-wrap .section-visual .only-desktop .ani.obj11 img {
    width: auto;
    width: 75.9114583333vw;
    max-width: none;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 img {
    width: 583px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 img {
    width: 45.546875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.obj11 img {
    width: 583px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    margin-left: -87.6302083333vw;
    width: 167.3177083333vw;
    top: 14.3229166667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    margin-left: -673px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    margin-left: -52.578125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    margin-left: -673px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    width: 1285px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    width: 100.390625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    width: 1285px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    top: 110px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    top: 8.59375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title {
    top: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    bottom: 106px;
    left: 50%;
    margin-left: -189px;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    animation: fade-in-up 0.5s ease-out 0.5s backwards;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    gap: 0.78125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    bottom: 8.28125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    bottom: 106px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    margin-left: -14.765625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    margin-left: -189px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    font-size: 2.1875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    display: inline-block;
    padding: 3px 21px 3px 22px;
    border-radius: 90px;
    border: 2px solid #A7E6FF;
    font-weight: 400;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-top: 0.234375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-top: 3px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-right: 1.640625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-right: 21px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-bottom: 0.234375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-bottom: 3px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-left: 1.71875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    padding-left: 22px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    border-radius: 7.03125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .ani.title .text .border-text {
    border-radius: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .only-desktop .inner {
    max-width: none;
    width: 147.3958333333vw;
    margin: 107.9427083333vw auto 0;
    display: flex;
    flex-direction: column;
    gap: 4.6875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .inner {
    width: 1132px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .inner {
    width: 88.4375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .inner {
    width: 1132px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .inner {
    margin: 829px auto 0;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .inner {
    margin-top: 64.765625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .inner {
    margin-top: 829px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .inner {
    gap: 36px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .only-desktop .inner {
    gap: 2.8125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .only-desktop .inner {
    gap: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .btn-wrap {
    bottom: 9.765625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap {
    bottom: 75px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap {
    bottom: 5.859375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .btn-wrap {
    bottom: 75px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-visual .btn-wrap a {
    background: url("/assets/events/e260713/images/btn_apply.png") no-repeat center center/contain;
    width: 67.3177083333vw;
    height: 15.3645833333vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap a {
    width: 517px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap a {
    width: 40.390625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .btn-wrap a {
    width: 517px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap a {
    height: 118px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-visual .btn-wrap a {
    height: 9.21875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-visual .btn-wrap a {
    height: 118px;
  }
}
.event-wrap .section-event-1 {
  background: url("/assets/events/e260713/images/event_img1_mo.jpg") no-repeat center top/100% auto;
  aspect-ratio: 854/2472;
  width: 100%;
  height: auto;
  position: relative;
}
.event-wrap .section-event-1 .only-desktop {
  display: none;
}
.event-wrap .section-event-1 .btn-wrap {
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  display: flex;
  top: 105.46875vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    top: 810px;
  }
}
.event-wrap .section-event-1 .btn-wrap {
  padding: 1.3921875vw 4.1763020833vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    padding: 10.692px 32.074px;
  }
}
.event-wrap .section-event-1 .btn-wrap {
  justify-content: center;
  align-items: center;
  gap: 1.3921875vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    gap: 10.692px;
  }
}
.event-wrap .section-event-1 .btn-wrap {
  border-radius: 13.9213541667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    border-radius: 106.916px;
  }
}
.event-wrap .section-event-1 .btn-wrap {
  background: #586174;
}
.event-wrap .section-event-1 .btn-wrap:last-child {
  background-color: #4AB304;
  top: 215.8854166667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap:last-child {
    top: 1658px;
  }
}
.event-wrap .section-event-1 .btn-wrap a {
  color: #FFF;
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-size: 3.125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    font-size: 24px;
  }
}
.event-wrap .section-event-1 .btn-wrap a {
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 {
    background: none;
    aspect-ratio: auto;
  }
  .event-wrap .section-event-1 .only-desktop {
    display: block;
    background: url("/assets/events/e260713/images/bg_event2.jpg") no-repeat center center/cover;
    padding: 13.8020833333vw 0 10.546875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop {
    padding: 106px 0 81px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop {
    padding-top: 8.28125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .only-desktop {
    padding-top: 106px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop {
    padding-bottom: 6.328125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .only-desktop {
    padding-bottom: 81px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    max-width: none;
    width: 147.3958333333vw;
    display: flex;
    gap: 8.203125vw;
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    width: 1132px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    width: 88.4375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    width: 1132px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    gap: 63px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    gap: 4.921875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .only-desktop .inner {
    gap: 63px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .only-desktop .item {
    position: relative;
  }
  .event-wrap .section-event-1 .btn-wrap {
    top: 127.6041666667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    top: 980px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap {
    top: 76.5625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap {
    top: 980px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .btn-wrap:last-child {
    top: 280.3385416667vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap:last-child {
    top: 2153px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap:last-child {
    top: 168.203125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap:last-child {
    top: 2153px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-event-1 .btn-wrap a {
    display: flex;
    overflow: visible;
    text-indent: 0;
    height: 5.9895833333vw;
    width: 22.3958333333vw;
    padding: 1.3020833333vw 3.90625vw;
    justify-content: center;
    align-items: center;
    gap: 1.3020833333vw;
    border-radius: 13.0208333333vw;
    color: #FFF;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 2.6041666667vw;
    font-weight: 500;
    letter-spacing: -0.1165364583vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    height: 46px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    height: 3.59375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    height: 46px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    width: 172px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    width: 13.4375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    width: 172px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-top: 0.78125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-right: 2.34375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-bottom: 0.78125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-left: 2.34375vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    gap: 0.78125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    border-radius: 100px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    border-radius: 7.8125vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    border-radius: 100px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    letter-spacing: -0.895px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-event-1 .btn-wrap a {
    letter-spacing: -0.069921875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .event-wrap .section-event-1 .btn-wrap a {
    letter-spacing: -0.895px;
  }
}
.event-wrap .section-notice {
  font-family: "Pretendard", sans-serif;
  background: #20406a;
  padding: 3.6458333333vw 3.90625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice {
    padding: 28px 30px;
  }
}
.event-wrap .section-notice .inner {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.event-wrap .section-notice .title {
  font-family: "Pretendard", sans-serif;
  color: #fff;
  font-size: 3.125vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice .title {
    font-size: 24px;
  }
}
.event-wrap .section-notice .title {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.6041666667vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice .title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .title {
    font-size: 24px;
  }
}
.event-wrap .section-notice ul {
  list-style: disc;
  padding-left: 3.515625vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice ul {
    padding-left: 27px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice ul {
    padding-left: 27px;
  }
}
.event-wrap .section-notice ul li {
  font-family: "Pretendard", sans-serif;
  color: #fff;
  font-size: 2.34375vw;
}
@media screen and (min-width: 768px) {
  .event-wrap .section-notice ul li {
    font-size: 18px;
  }
}
.event-wrap .section-notice ul li {
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice ul li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice {
    padding: 7.8125vw 0vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-notice {
    padding: 60px 0px;
  }
}
@media screen and (min-width: 1024px) {
  .event-wrap .section-notice .inner {
    width: 143.2291666667vw;
    margin: 0 auto;
    padding: 0;
    padding-left: 17.1875vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-notice .inner {
    width: 1100px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 768px) {
  .event-wrap .section-notice .inner {
    padding-left: 132px;
  }
}
