/* common */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');

html {
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

body,
button,
p,
span {
  position: relative;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", "맑은 고딕", dotum, "돋움", helvetica, "Apple SD Gothic Neo", sans-serif;
  letter-spacing: -0.07em;
  font-weight: 400;
}

button span, a {
  color: #ffffff;
}

body {
  direction: ltr;
  -webkit-text-size-adjust: none;
  word-break: keep-all;
  word-wrap: break-word;
}

body,
ul,
li,
button {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
}

div,
ul,
p {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0;
}

p {
  margin: 0;
}

button {
  position: relative;
  border: 0 none;
  background-color: transparent;
  cursor: pointer;
  color: rgba(60, 44, 36, 0.8);
}

button span {
  z-index: 10;
}

.hover {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
}

button:hover > .hover {
  background: rgba(0, 0, 0, 0.12);
}

/* typography */
.h1 {
  font-size: 25px;
  line-height: 25px;
}
.h2 {
  font-size: 24px;
  line-height: 28px;
}
.h3 {
  font-size: 22px;
  line-height: 22px;
}
.h4 {
  font-size: 20px;
  line-height: 24px;
}
.h4.ext_bold {
  line-height: 28px;
}
.h5 {
  font-size: 18px;
  line-height: 25px;
}
.h5.bold, .h5.ext_bold {
  line-height: 28px;
}
.caption1 {
  font-size: 17px;
  line-height: 22px;
}
.caption2 {
  font-size: 15px;
  line-height: 22px;
}
.caption3 {
  font-size: 13px;
  line-height: 15px;
}

.opacity_50 {
  opacity: 0.5;
}
.opacity_55 {
  opacity: 0.55;
}
.opacity_60 {
  opacity: 0.6;
}
.opacity_80 {
  opacity: 0.8;
}
.opacity_88 {
  opacity: 0.88;
}
.opacity_90 {
  opacity: 0.9;
}
.mid {
  font-weight: 500;
}
.semi_bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.ext_bold {
  font-weight: 900 !important;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.underline {
  text-decoration: underline;
}

.break_all {
  word-break: break-all;
}

/* color  */
body {
  background-color: #020202;
  color: #201E29;
}
.white {
  color: #ffffff;
}
.black {
  color: #000000;
}
.black2 {
  color: #201E29;
}
.purple {
  color: #54004C;
}

/* box */
.min_wrap {
  min-width: 360px;
  width: 100%;
  overflow: hidden;
}
.container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.flex_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.grow {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.only_pc {
  display: block;
}
.only_mo {
  display: none;
}

.x_center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.relative {
  position: relative;
}


/* fixed_top_button */
.fixed_top_button {
  position: fixed;
  z-index: 99;
  width: 100%;
  max-width: 482px;
  height: 100px;
  top: 8.4px;
  left: calc(50% - 252px);
  -webkit-box-shadow: 0px 4.2px 16.8px 0px #00000073;
  box-shadow: 0px 4.2px 16.8px 0px #00000073;
  cursor:pointer;
  background-color: #E876DE;
  padding: 0px 10px 0px 28px;
  border-radius: 16.8px;
  gap: 9.8px;
  justify-content: space-between;
}
.fxd_txt {
  width: 327.6px;
  height: 70px;
  margin-top: 4px;
}
.btn_black {
  padding: 14px 16.8px;
  border-radius: 11.2px;
  background-color: #201E29;
}
#go_apply_fixed .wobble {
  animation: wobble 2s ease infinite;
}
@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-8%); }
  30% { transform: translateX(8%); }
  45% { transform: translateX(-2%); }
  60% { transform: translateX(2%); }
  75% { transform: translateX(-1%); }
  100% { transform: translateX(0%); }
}

/* main */
.main {
  width: 100%;
  height: 1036px;
  position: relative;
  overflow: hidden;
  background: -webkit-linear-gradient(180deg, #010812 0%, #171A29 65.11%, #342E3A 74.93%, rgba(52, 46, 58, 0) 86.33%);
  background: -moz-linear-gradient(180deg, #010812 0%, #171A29 65.11%, #342E3A 74.93%, rgba(52, 46, 58, 0) 86.33%);
  background: -o-linear-gradient(180deg, #010812 0%, #171A29 65.11%, #342E3A 74.93%, rgba(52, 46, 58, 0) 86.33%);
  background: linear-gradient(180deg, #010812 0%, #171A29 65.11%, #342E3A 74.93%, rgba(52, 46, 58, 0) 86.33%);
}
.kv_main {
  position: relative;
  width: 504px;
  height: 1036px;
  margin: 0 auto;
  justify-content: flex-start;
}
.kv_main > img {
  position: absolute;
}
.kv_title {
  width: auto;
  height: 116.2px;
  top: 177.8px;
}
.kv_title_1 {
  left: 22.4px;
}
.kv_title_2 {
  left: 172.2px;
}
.kv_title_3 {
  left: 327.6px;
}
.bg_img {
  width: 662.2px;
  height: 616px;
  top: 477px;
  left: -81px;
}
.kv_fire_5 {
  width: 145.6px;
  height: 187.6px;
  top: 578.2px;
  left: 343.7px;
}
.kv_fire_4 {
  width: 149.8px;
  height: 147px;
  top: 480.2px;
  left: 358.75px;
}
.kv_fire_3 {
  width: 140px;
  height: 123.2px;
  top: 522.2px;
  left: 257.6px;
}
.kv_fire_2 {
  width: 156.8px;
  height: 158.2px;
  top: 480.2px;
  left: 130.55px;
}
.kv_fire_1 {
  width: 106.4px;
  height: 151.2px;
  top: 543.2px;
  left: 67.2px;
}
.kv_fire_6 {
  width: 218.4px;
  height: 144.2px;
  top: 623px;
  left: 149.45px;
}
.card {
  width: 164.8px;
  height: 261.8px;
  top: 337.4px;
  left: 169.61px;
  border-radius: 11.2px;
  box-shadow: 0px 1.4px 0px 0px #CABCAE, -11.2px 2.8px 16.8px 0px #00000040;
}
.sub_title {
  width: 260.4px;
  height: 28px;
  top: 680.4px;
  left: 120.4px;
}
.kv_name {
  width: 175px;
  height: 46.2px;
  top: 609px;
  left: 162.4px;
}
.main_title {
  width: 288.4px;
  height: 63px;
  top: 711.2px;
  left: 107.8px;
}
.kv_img_1 {
  width: 190.4px;
  height: 186.2px;
  top: 103.6px;
  left: -44.8px;
}
.split_1 {
  width: 37.8px;
  height: 40.6px;
  top: 177.8px;
  left: 327.6px;
}
.split_2 {
  width: 16.8px;
  height: 18.2px;
  top: 287px;
  left: 460.6px;
}
#go_detail {
  width: 215.6px;
  height: 56px;
  position: absolute;
  top: 781.2px;
  left: 142.8px;
  border-radius: 1398.6px;
  border: 0.7px solid #FFFFFFB2;
  backdrop-filter: blur(5.6px);
  background-color: #FFFFFF1F;
  box-shadow: 0px 5.6px 5.6px 0px #000000CC;
}
#go_detail > img {
  width: 16.8px;
  height: 16.8px;
}
.kv_desc {
  width: 100%;
  height: 166.8px;
  position: absolute;
  left: 0px;
  top: 869px;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 83.65%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 83.65%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 83.65%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 83.65%, rgba(0, 0, 0, 0) 100%);
  padding: 50.4px 0px;
}

/* event */
.eve_wrap {
  position: relative;
  width: 100%;
  max-width: 594px;
  margin: 0px auto;
  padding: 39.2px 33.6px;
  gap: 39.2px;
}
.eve_head {
  width: 100%;
}
.eve_img {
  width: 232.4px;
  height: auto;
}
.eve_title {
  width: 260.4px;
  height: auto;
}
.sec_wrap {
  align-items: flex-start;
  padding: 19.6px 25.2px;
}
.eve_cont {
  width: 100%;
  gap: 14px;
  justify-content: flex-start;
  align-items: flex-start;
}
.eve_cont > .flex_col {
  width: 100%;
  background: #FFFFFF;
  border-radius: 8.4px;
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
}
.sec_title {
  position: relative;
  justify-content: flex-start;
  width: 100%;
  height: 39.4px;
  padding: 11.2px 0px 11.2px 25.2px;
}
.sec_title > img {
  width: auto;
  height: 17px;
}

/* event1 */
#event1 .sec_title {
  background-color: #40AFF6;
}
#event1 .sec_wrap {
  justify-content: flex-start;
  align-items: flex-start;
}
/* event2 */
#event2 .sec_title {
  background-color: #E876DE;
}
#event2 .sec_wrap {
  width: 100%;
  padding: 0px;
}
#event2 .sec_wrap > .flex_col {
  width: 100%;
  padding: 19.6px 25.2px 0px;
  gap: 3px;
  justify-content: flex-start;
  align-items: flex-start;
}
.event2_wrap {
  width: 100%;
  height: 103px;
  transition: height 0.2s ease-out;
  justify-content: flex-start;
}
.event2_box_wrap {
  width: 100%;
  margin-top: 14px;
}
.event2_box_wrap > .flex_row {
  width: 100%;
  height: 0;
  background: -webkit-linear-gradient(90deg, rgba(232, 118, 222, 0) 0%, rgba(232, 118, 222, 0.41) 25%, rgba(232, 118, 222, 0.82) 50%, rgba(232, 118, 222, 0.41) 75%, rgba(232, 118, 222, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(232, 118, 222, 0) 0%, rgba(232, 118, 222, 0.41) 25%, rgba(232, 118, 222, 0.82) 50%, rgba(232, 118, 222, 0.41) 75%, rgba(232, 118, 222, 0) 100%);
  background: -o-linear-gradient(90deg, rgba(232, 118, 222, 0) 0%, rgba(232, 118, 222, 0.41) 25%, rgba(232, 118, 222, 0.82) 50%, rgba(232, 118, 222, 0.41) 75%, rgba(232, 118, 222, 0) 100%);
  background: linear-gradient(90deg, rgba(232, 118, 222, 0) 0%, rgba(232, 118, 222, 0.41) 25%, rgba(232, 118, 222, 0.82) 50%, rgba(232, 118, 222, 0.41) 75%, rgba(232, 118, 222, 0) 100%);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}
.event2_box {
  gap: 11.2px;
}
.event2_box > * {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.event2_box.active {
  transform: scaleY(1);
}
.event2_box.show > * {
  opacity: 1;
}
#go_apply {
  width: 117.8px;
  height: 50px;
  gap: 7px;
  padding: 14px 19.6px;
  border-radius: 11.2px;
  background-color: #201E29;
}
#go_apply .hover {
  border-radius: 11.2px;
}
#go_apply img.particle_1 {
  opacity: 0;
  width: 14px;
  height: 15.4px;
  position: absolute;
  left: -14.5px;
  top: -8px;
} 
#go_apply img.particle_2 {
  opacity: 0;
  width: 19.6px;
  height: 19.6px;
  position: absolute;
  right: -12.9px;
  top: 39.2px;
} 
.show .wobble {
  animation: wobble 2s ease 0.6s;
}
.show .zoom {
  animation: zoomIn 0.6s ease 0.2s forwards;
}
@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}

.gray_tag {
  display: inline-block;
  background: #201E291A;
  border-radius: 5.6px;
  padding-top: 1.4px;
  padding-right: 5.6px;
  padding-bottom: 1.4px;
  padding-left: 5.6px;
  margin-bottom: 2.8px;
}

.event3_wrap {
  align-items: flex-start;
  padding: 0px 25px;
  padding-bottom: 20px;
  gap: 8px;
}
.event3_wrap.second {
  gap: 8px;
}
.caption-txt {
  padding: 0 18px;
}

/* footer */
.footer {
  width: 100%;
  background-color: #E8E8E8;
  color: #111111;
}
.footer_wrap {
  max-width: 1000px;
  align-items: flex-start;
  padding: 36.4px 19.6px 50.4px;
  gap: 14px;
}
.footer_title {
  gap: 8.4px;
  padding-left: 11.2px;
}
.alert {
  width: 25.2px;
}
.footer ul {
  list-style: none;
}
.footer ul p {
  padding-left: 28px;
  margin-bottom: 5.6px;
}
.footer ul li {
  position: relative;
}
.footer ul li::before {
  position: absolute;
}
.footer .li_txt {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-left: 16px;
}
.footer ul li.default {
  padding-left: 10px;
}
.footer ul li.default::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #111111;
  top: 9px;
}
.footer ul li.dashed::before {
  content: "-";
}
.footer ul li.star::before {
  content: '※';
  border-radius: 0px;
  background-color: unset;
  top: 0px;
  left: 3px;
  width: auto;
  height: auto;
}
.footer .dashed_wrap {
  padding-left: 24px;
}

.no-click {
  cursor:default !important;
}