@charset "UTF-8";
/* 키프레임 */
@keyframes shake-left {
  0% {
    rotate: -1deg;
  }
  100% {
    rotate: 3deg;
  }
}
@keyframes shake-left-point {
  0% {
    rotate: -1deg;
  }
  100% {
    rotate: 1deg;
  }
}
@keyframes shake-right-point {
  0% {
    rotate: 1deg;
  }
  100% {
    rotate: -1deg;
  }
}
@keyframes shake-left-s {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: -10deg;
  }
  50% {
    rotate: 5deg;
  }
  75% {
    rotate: -10deg;
  }
  100% {
    rotate: 0deg;
  }
}
@keyframes shake-right {
  0% {
    rotate: 1deg;
  }
  100% {
    rotate: -3deg;
  }
}
@keyframes swing-left {
  0% {
    transform: translateX(-0.5rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes swing-top {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ani-flicker {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 믹스인 */
.banner_wrap a img {
  width: 100%;
}

main {
  transition: all 500ms ease-in-out;
  background: #5838E6;
  width: 100%;
  height: 46rem;
  display: block;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .m_inner {
  width: calc(100% - min(6rem, 6vw));
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  height: 34rem;
  transition: all 500ms;
}
main .m_inner .mySwiper {
  width: 100%;
  height: 100%;
}
main .m_inner .swiper-slide {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  width: 100%;
  height: 100%;
}
main .m_inner .swiper-slide img {
  scale: 1.05;
}
main .m_inner .swiper-slide p, main .m_inner .swiper-slide h1, main .m_inner .swiper-slide span {
  transform: translateY(-3rem);
}
main .m_inner .swiper-slide p {
  transition-delay: 0ms;
}
main .m_inner .swiper-slide h1 {
  transition-delay: 100ms;
}
main .m_inner .swiper-slide span {
  transition-delay: 300ms;
}
main .m_inner .swiper-slide * {
  opacity: 0;
  transition: opacity 1000ms, scale 6000ms, transform 800ms;
}
main .m_inner .swiper-slide-active * {
  opacity: 1;
}
main .m_inner .swiper-slide-active img {
  scale: 1;
}
main .m_inner .swiper-slide-active p, main .m_inner .swiper-slide-active h1, main .m_inner .swiper-slide-active span {
  transform: translateY(0);
}
main .m_inner .m_thumb {
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 60rem;
  aspect-ratio: 1.8/1;
  overflow: hidden;
  border-radius: 0.4rem;
  transition: all 500ms;
}
main .m_inner .m_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .m_inner .m_copy {
  box-sizing: border-box;
  padding-top: 2rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: fit-content;
}
main .m_inner .m_copy p {
  font-size: max(2rem, 1.37vw);
  font-weight: 300;
  color: #ffffff;
  rotate: 0.04deg;
}
main .m_inner .m_copy p b {
  font-weight: 600;
}
main .m_inner .m_copy h1 {
  font-size: min(6rem, 10vw);
  font-family: "WavvePADO", sans-serif;
  color: #BDF03E;
  display: inline-flex;
  align-items: flex-end;
  line-height: 1.1;
  margin: 1.4rem 0 2rem;
}
main .m_inner .m_copy span {
  color: #ffffff;
  font-size: max(1.8rem, 1.05vw);
  font-weight: 300;
}
main .m_inner .m_copy {
  margin-left: 65rem;
}
main .m_inner .m_copy p, main .m_inner .m_copy h1, main .m_inner .m_copy span {
  word-break: keep-all;
  text-wrap: balance;
}
main .m_inner .m_util {
  position: absolute;
  left: 65rem;
  bottom: 2rem;
  z-index: 9;
  display: flex;
  align-items: center;
}
main .m_inner .m_util .m_btn {
  height: 4.2rem;
  max-width: 16rem;
  width: 100%;
  flex-shrink: 0;
  gap: 2rem;
  color: #ffffff;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(59.7991071429, 26.2276785714, 208.7723214286);
  transition: background 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
main .m_inner .m_util .m_btn:hover {
  background: rgb(53.3102678571, 23.3816964286, 186.1183035714);
}
main .m_inner .m_util .slideInfo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}
main .m_inner .m_util .stateSet {
  color: #ffffff;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
main .m_inner .m_util .stateSet button {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.3rem;
}
main .m_inner .m_util .stateSet .set-pause {
  padding-right: 0.2rem;
}
main .m_inner .m_util .slideBtn,
main .m_inner .m_util .slideData dl {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
}
main .m_inner .m_util .slideBtn button {
  width: 3rem;
}
main .m_inner .m_util .slideData dl dt {
  color: #BDF03E;
  font-weight: 600;
}

/* 콘텐츠 레이아웃 영역 */
article.contents section {
  position: relative;
}
article.contents section:nth-child(odd) {
  background: rgba(88, 56, 230, 0.04);
}
article.contents .lec_head {
  position: relative;
  margin-bottom: min(3rem, 3vw);
}
article.contents .sec_inner {
  width: calc(100% - min(6rem, 6vw));
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding: min(6rem, 8vw) 0;
}
article.contents .sec_half {
  display: flex;
  gap: 3rem;
}
article.contents .sec_half > div {
  width: 100%;
}
article.contents .sec_tit {
  position: relative;
}
article.contents .sec_tit:has(.swiperBtns, .moreBtn) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article.contents .sec_tit em {
  font-size: 1.4rem;
  background: #5838E6;
  color: #ffffff;
  font-weight: 300;
  padding: 0.6rem 1.2rem;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.03rem;
  border-radius: 10rem;
  margin-bottom: 1rem;
}
article.contents .sec_tit h2 {
  position: relative;
  font-size: min(4.6rem, 7vw);
  font-family: "WavvePADO", sans-serif;
  color: #333333;
  line-height: 1.2;
  width: fit-content;
  text-wrap: balance;
  word-break: keep-all;
}
article.contents .sec_tit h2 span {
  color: #5838E6;
}
article.contents .sec_tit p {
  margin-top: 1rem;
  font-size: 2rem;
  color: #777777;
  font-weight: 300;
  text-wrap: balance;
  word-break: keep-all;
}
article.contents .sec_tit .moreBtn {
  padding-bottom: 4rem;
}
article.contents .sec_tit .ico-best {
  display: inline-block;
  background: url(../img/main/ico-best.png) no-repeat 0 0/contain;
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: calc(100% + 1rem);
  top: -0.4rem;
}

/* 탭 영역 */
.contents .tabBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0;
  margin-bottom: 4rem;
}
.contents .tabBtn li {
  text-align: center;
  line-height: 1;
  font-size: 1.6rem;
  color: #999999;
  background: #ffffff;
  line-height: 0.875;
  letter-spacing: -0.64px;
  padding: 1.4rem 2rem;
  border-radius: 10rem;
}
.contents .tabBtn li.on {
  color: #ffffff;
  background: #5838E6;
}
.contents .tabBtn li.on:hover {
  background: rgb(59.7991071429, 26.2276785714, 208.7723214286);
}
.contents .tabBtn li:is(:hover, :focus-within) {
  color: #ffffff;
  background: #5838E6;
}
.contents .tabBtn + .tab_wrap > div {
  transition: opacity 300ms ease-in;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.contents .tabBtn + .tab_wrap > div.on {
  opacity: 1;
  transition: opacity 300ms ease-in;
  height: auto;
}

/* 뉴스영역 */
.notice_area {
  background: #f8f8f8;
}

.news_area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 2rem;
}
.news_area .news_item {
  padding: 3rem;
  min-height: 23rem;
  position: relative;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 0 0 0.1rem #eeeeee;
  display: flex;
  flex-direction: column;
}
.news_area .news_item em {
  font-size: 1.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 0.1rem solid #5838E6;
  color: #5838E6;
  display: block;
  width: fit-content;
  line-height: 1;
  background: #ffffff;
  margin-bottom: 1.7rem;
}
.news_area .news_item dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  align-self: stretch;
  font-weight: 500;
  color: #777777;
  margin-bottom: 0.6rem;
}
.news_area .news_item dl dd {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  align-self: stretch;
  font-weight: 400;
  color: #999999;
  letter-spacing: -0.28px;
}
.news_area .news_item span {
  color: #A3A3A3;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.42px;
  margin-top: auto;
}
.news_area .news_item > a {
  transition: all 200ms;
  width: 3.4rem;
  height: 3.4rem;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13' fill='none'%3E%3Cpath d='M1.85547 0.293076C1.46494 -0.097448 0.831931 -0.097448 0.441406 0.293076C0.0509195 0.683604 0.0508947 1.31663 0.441406 1.70714L4.91992 6.18565L0.441406 10.6642C0.0509195 11.0547 0.0508947 11.6877 0.441406 12.0782C0.831921 12.4687 1.46495 12.4687 1.85547 12.0782L7.04102 6.89269L7.10938 6.81749C7.22953 6.67019 7.30168 6.49619 7.3252 6.31749L7.33301 6.23351V6.1378C7.33148 6.10615 7.32874 6.07449 7.32422 6.04308C7.2993 5.86809 7.22717 5.69823 7.10938 5.55382L7.04102 5.47862L1.85547 0.293076Z' fill='%23555'/%3E%3C/svg%3E") no-repeat 55% 50%;
  border-radius: 100px;
  border: 1px solid #eee;
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}
.news_area .news_item > a:hover {
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13' fill='none'%3E%3Cpath d='M1.85547 0.293076C1.46494 -0.097448 0.831931 -0.097448 0.441406 0.293076C0.0509195 0.683604 0.0508947 1.31663 0.441406 1.70714L4.91992 6.18565L0.441406 10.6642C0.0509195 11.0547 0.0508947 11.6877 0.441406 12.0782C0.831921 12.4687 1.46495 12.4687 1.85547 12.0782L7.04102 6.89269L7.10938 6.81749C7.22953 6.67019 7.30168 6.49619 7.3252 6.31749L7.33301 6.23351V6.1378C7.33148 6.10615 7.32874 6.07449 7.32422 6.04308C7.2993 5.86809 7.22717 5.69823 7.10938 5.55382L7.04102 5.47862L1.85547 0.293076Z' fill='%235838e6'/%3E%3C/svg%3E") no-repeat 55% 50%;
  border-color: #5838E6;
}
.news_area .news_item:hover {
  box-shadow: 0 0 0 0.1rem #5838E6;
}
.news_area .news_item:hover > a {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13' fill='none'%3E%3Cpath d='M1.85547 0.293076C1.46494 -0.097448 0.831931 -0.097448 0.441406 0.293076C0.0509195 0.683604 0.0508947 1.31663 0.441406 1.70714L4.91992 6.18565L0.441406 10.6642C0.0509195 11.0547 0.0508947 11.6877 0.441406 12.0782C0.831921 12.4687 1.46495 12.4687 1.85547 12.0782L7.04102 6.89269L7.10938 6.81749C7.22953 6.67019 7.30168 6.49619 7.3252 6.31749L7.33301 6.23351V6.1378C7.33148 6.10615 7.32874 6.07449 7.32422 6.04308C7.2993 5.86809 7.22717 5.69823 7.10938 5.55382L7.04102 5.47862L1.85547 0.293076Z' fill='%235838E6'/%3E%3C/svg%3E") no-repeat 55% 50%;
  border-color: #5838E6;
}
@media screen and (max-width: 1400px) {
  .news_area {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* 반응형 */
/* 1200px */
@media screen and (max-width: 1200px) {
  .lecture-item .swiperBtns {
    bottom: unset;
    top: 0;
  }
  article.contents .lec_head {
    padding-top: 3rem;
  }
  main .m_inner {
    height: 28rem;
  }
  main .m_inner .m_thumb {
    max-width: 50rem;
  }
  main .m_inner .m_copy {
    margin-left: 53rem;
  }
  main .m_inner .m_util {
    left: 53rem;
  }
}
/* 1024px */
@media screen and (max-width: 1024px) {
  .banner_wrap a {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/1;
  }
  .banner_wrap a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  main {
    height: auto;
  }
  main .m_inner {
    height: 100%;
    box-sizing: border-box;
    padding: 3vw 0;
  }
  main .m_inner .swiper-slide {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  main .m_inner .m_thumb {
    max-width: unset;
    position: unset;
  }
  main .m_inner .m_copy {
    margin-left: 0;
    width: 100%;
  }
  main .m_inner .m_copy h1 {
    justify-content: center;
  }
  main .m_inner .m_util {
    position: unset;
    justify-content: center;
    margin: 2rem 0 10vw;
  }
}
/* 860px */
@media screen and (max-width: 960px) {
  .news_area .news_item:nth-of-type(n+3) {
    display: none;
  }
}
@media screen and (max-width: 535px) {
  article.contents .sec_half {
    flex-direction: column;
  }
  main .m_inner .m_util {
    flex-direction: column;
    gap: 3vw;
  }
  .news_area {
    grid-template-columns: repeat(1, 1fr);
  }
  .news_area .news_item:nth-of-type(n+2) {
    display: none;
  }
}