/* [project]/src/ui/components/base/SpotlightCard/SpotlightCard.css [app-client] (css) */
.card-spotlight {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: #ffffff0d;
  background-color: #0000;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-spotlight:before {
  content: "";
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.card-spotlight:hover:before, .card-spotlight:focus-within:before {
  opacity: .6;
}

/* [project]/src/ui/components/base/Typography/ShinyTypo/ShinyTypography.css [app-client] (css) */
.shiny-text {
  display: inline-block;
}

/* [project]/src/ui/scaffolds/NoticeList/NoticeListItem.module.scss.module.css [app-client] (css) */
.NoticeListItem-module-scss-module__ciFoVq__notice_item {
  border-radius: 16px;
  display: block;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .NoticeListItem-module-scss-module__ciFoVq__notice_item {
    border-radius: 0;
  }
}

.NoticeListItem-module-scss-module__ciFoVq__spotlight_card {
  border: 1px solid var(---Neutral-Opacity-White-w-10, #ffffff1a);
  background: var(---Neutral-Opacity-White-w-05, #ffffff0d);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  height: 188px;
  padding: 20px 24px;
  transition: all .2s ease-in-out;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .NoticeListItem-module-scss-module__ciFoVq__spotlight_card {
    background: none;
    border: 0;
    border-radius: 0;
    flex-direction: row;
    align-items: center;
    height: 8.8889vw;
    padding: 0;
  }
}

.NoticeListItem-module-scss-module__ciFoVq__spotlight_card:hover {
  border: 1px solid var(--Border-accent-secondary, #43ffe2);
  background: #43ffe20d;
  border-radius: 16px;
}

@media only screen and (max-width: 767px) {
  .NoticeListItem-module-scss-module__ciFoVq__spotlight_card:hover {
    background: var(---Neutral-Opacity-White-w-05, #ffffff0d);
    border: 0;
    border-radius: 0;
  }

  .NoticeListItem-module-scss-module__ciFoVq__title {
    color: #cfd5db;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    line-height: 1;
    overflow: hidden;
    font-size: 3.8889vw !important;
  }

  .NoticeListItem-module-scss-module__ciFoVq__title .shiny-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 92%;
    display: block;
    overflow: hidden;
  }
}

.NoticeListItem-module-scss-module__ciFoVq__date {
  color: #ffffff80;
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .NoticeListItem-module-scss-module__ciFoVq__date {
    color: #adb5bd;
    font-size: 3.8889vw;
  }
}

@keyframes NoticeListItem-module-scss-module__ciFoVq__notice_list_item_new_pulse {
  0%, 100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

.NoticeListItem-module-scss-module__ciFoVq__new {
  background-color: var(--red-500);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2.4s ease-in-out infinite NoticeListItem-module-scss-module__ciFoVq__notice_list_item_new_pulse;
  position: absolute;
  top: 16px;
  left: 16px;
}

@media only screen and (max-width: 767px) {
  .NoticeListItem-module-scss-module__ciFoVq__new {
    top: 50%;
    right: 21.6667vw;
    left: initial;
    width: 2.2222vw;
    height: 2.2222vw;
    transform: translateY(-50%);
  }
}

/* [project]/src/ui/components/base/BannerTitleCarousel/styles/BannerTitleCarousel.module.scss.module.css [app-client] (css) */
.BannerTitleCarousel-module-scss-module__o10aaq__root {
  z-index: 2;
  align-items: center;
  gap: 16px;
  width: 100%;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .BannerTitleCarousel-module-scss-module__o10aaq__root {
    gap: 2.2222vw;
    padding: 0 3.3333vw;
  }
}

.BannerTitleCarousel-module-scss-module__o10aaq__navButton {
  background: var(--neutral-opacity-black-bk-60);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: #fff;
  cursor: pointer;
  border-radius: 16px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  transition: all .24s ease-in-out;
  display: flex;
  box-shadow: inset 0 -1px #ffffff26, inset 0 1px #fff6;
}

.BannerTitleCarousel-module-scss-module__o10aaq__navButton:hover:not(:disabled) {
  color: var(--brand-secondary);
}

.BannerTitleCarousel-module-scss-module__o10aaq__navButton:focus, .BannerTitleCarousel-module-scss-module__o10aaq__navButton:active {
  color: #fff;
}

.BannerTitleCarousel-module-scss-module__o10aaq__navButton:disabled {
  color: var(--neutral-opacity-white-w-20);
  cursor: not-allowed;
}

@media only screen and (max-width: 767px) {
  .BannerTitleCarousel-module-scss-module__o10aaq__navButton {
    border-radius: 3.3333vw;
    width: 11.1111vw;
    height: 11.1111vw;
  }

  .BannerTitleCarousel-module-scss-module__o10aaq__navButton svg {
    width: 6.6667vw;
    height: 6.6667vw;
  }
}

.BannerTitleCarousel-module-scss-module__o10aaq__track {
  z-index: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: var(---Neutral-Opacity-Black-bk-60, #12161999);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  flex: 1;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 56px;
  display: flex;
  position: relative;
  overflow-x: auto;
  box-shadow: inset 0 -1px #ffffff26, inset 0 1px #fff6;
}

.BannerTitleCarousel-module-scss-module__o10aaq__track::-webkit-scrollbar {
  display: none;
}

@media only screen and (max-width: 767px) {
  .BannerTitleCarousel-module-scss-module__o10aaq__track {
    border-radius: 3.3333vw;
    height: 11.1111vw;
  }
}

.BannerTitleCarousel-module-scss-module__o10aaq__groupProgressBar {
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(#0000 0%, #12161940 35%, #8632fb14 70%, #8632fb2e 100%);
  border-radius: 0 0 16px 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .BannerTitleCarousel-module-scss-module__o10aaq__groupProgressBar {
    height: 20px;
  }
}

.BannerTitleCarousel-module-scss-module__o10aaq__groupProgressFill {
  will-change: transform;
  opacity: .54;
  background: linear-gradient(90deg, #8632fb00 0%, #8632fbe6 25%, #8632fb 50%, #8632fbe6 75%, #8632fb00 100%);
  border-radius: 0 0 0 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .BannerTitleCarousel-module-scss-module__o10aaq__groupProgressFill {
    height: 4px;
  }
}

.BannerTitleCarousel-module-scss-module__o10aaq__item {
  scroll-snap-align: start;
  height: 100%;
  color: var(--neutral-300);
  white-space: nowrap;
  cursor: pointer;
  border-radius: 12px;
  flex: 1;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  transition: all .2s ease-out;
}

.BannerTitleCarousel-module-scss-module__o10aaq__item:hover {
  color: var(--neutral-white);
}

.BannerTitleCarousel-module-scss-module__o10aaq__item.BannerTitleCarousel-module-scss-module__o10aaq__active {
  color: var(--brand-secondary);
}

.BannerTitleCarousel-module-scss-module__o10aaq__item.BannerTitleCarousel-module-scss-module__o10aaq__itemGradient {
  background: linear-gradient(90deg, #8632fb 0%, #8632fb00 88.86%);
}

.BannerTitleCarousel-module-scss-module__o10aaq__item.BannerTitleCarousel-module-scss-module__o10aaq__centerGradient {
  background: linear-gradient(90deg, #8632fb00 0%, #8632fb99 50%, #8632fb00 100%);
}

.BannerTitleCarousel-module-scss-module__o10aaq__item.BannerTitleCarousel-module-scss-module__o10aaq__itemDoneLeft {
  background: linear-gradient(-90deg, #8632fb 0%, #8632fb00 88.86%) !important;
}

@media only screen and (max-width: 767px) {
  .BannerTitleCarousel-module-scss-module__o10aaq__item {
    padding: 2px 12px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }
}

/* [project]/src/ui/scaffolds/IndexTitleCarousel/IndexTitleCarousel.module.scss.module.css [app-client] (css) */
.IndexTitleCarousel-module-scss-module__Td_ODG__component {
  width: 100%;
  max-width: 744px;
  position: absolute;
  top: 27.1875vw;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 1919px) {
  .IndexTitleCarousel-module-scss-module__Td_ODG__component {
    top: 522px;
  }
}

@media only screen and (max-width: 767px) {
  .IndexTitleCarousel-module-scss-module__Td_ODG__component {
    top: 155.556vw;
  }
}

.IndexTitleCarousel-module-scss-module__Td_ODG__banner_picture {
  z-index: 1;
  width: 100%;
  display: block;
  position: relative;
  left: 0;
}

.IndexTitleCarousel-module-scss-module__Td_ODG__banner_picture picture {
  display: block;
}

.IndexTitleCarousel-module-scss-module__Td_ODG__banner_picture:before {
  content: "";
  z-index: 1;
  background: linear-gradient(#1a0f2700 0%, #1a0f27 100%);
  width: 100%;
  height: 120px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.IndexTitleCarousel-module-scss-module__Td_ODG__banner_link {
  z-index: 2;
  display: block;
  position: absolute;
  inset: 0;
}

.IndexTitleCarousel-module-scss-module__Td_ODG__banner_background {
  object-fit: cover;
  width: 100%;
  height: calc(27.9688vw + 7px);
  max-height: 723px;
  display: block;
  position: relative;
  left: 0;
}

@media only screen and (max-width: 1919px) {
  .IndexTitleCarousel-module-scss-module__Td_ODG__banner_background {
    object-fit: contain top;
    height: 544px;
    max-height: 544px;
  }
}

@media only screen and (max-width: 767px) {
  .IndexTitleCarousel-module-scss-module__Td_ODG__banner_background {
    height: auto;
    max-height: none;
  }
}

/* [project]/src/app/(main)/styles/page.module.scss.module.css [app-client] (css) */
.page-module-scss-module__vRSxla__page {
  background: linear-gradient(#1b0d29 38.39%, #121619 83.59%);
  min-height: calc(100vh - 256px);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1279px) {
  .page-module-scss-module__vRSxla__page {
    padding-top: 56px;
  }
}

@media only screen and (max-width: 767px) {
  .page-module-scss-module__vRSxla__page {
    padding-top: 28.8889vw;
  }
}

.page-module-scss-module__vRSxla__article {
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 0 94px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .page-module-scss-module__vRSxla__article {
    max-width: 100%;
    padding: 13.3333vw 6.6667vw;
  }
}

/*# sourceMappingURL=8c0b25fc5d7cde25.css.map*/