#main {
  overflow: hidden;
}

.mv .swiper-slide {
  position: relative;
  overflow: hidden;
}

.mv .mv-img {
  overflow: hidden;
  height: 100vh;
}

.mv .mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 4s ease-in-out;
}

.mv .mv-airtxt {
  padding-top: 90px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv .mv-airtxt .container {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.mv .swiper-slide .mv-uptxt {
  overflow: hidden;
}

.mv .swiper-slide .mv-uptxt span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s .3s ease-in-out, opacity 1s .3s ease-in-out;
}

.mv .swiper-slide-active .mv-uptxt span {
  transform: translateY(0);
  opacity: 1;
}

.mv .swiper-slide .mv-uptxt span.delay-01 {
  transition-delay: .8s;
}

.mv .swiper-slide-active .mv-img img {
  transform: scale(1);
}


@media all and (max-width:1024px) {
  .mv .mv-airtxt {
    padding-top: 80px;
  }
}

@media all and (max-width:768px) {
  .mv .mv-airtxt {
    padding-top: 50px;
  }
}

.main-tag-slide {
  border-bottom: 1px solid #D80C24;
  padding: 10px 0;
  overflow: hidden;
  pointer-events: none;
}

.main-tag-slide .swiper-container {
  overflow: unset;
}

.main-tag-slide .swiper-wrapper {
  transition-timing-function: linear;
}

.main-tag-slide .txt {
  text-transform: uppercase;
}

@media all and (max-width:768px) {
  .main-tag-slide {
    padding: 7px 0;
  }
}

.main-tit .main-tit-bf {
  position: relative;
}

.main-tit .main-tit-bf:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D80C24;
  vertical-align: top;
}

.ripple-motion {
  width: 782px;
  height: 782px;
  position: relative;
  opacity: .35;
  pointer-events: none;
}

.ripple-motion .ripple {
  position: absolute;
  content: "";
  display: block;
  border-style: solid;
  border-width: 20px;
  border-color: #E5596A;
  border-radius: 50%;
  width: 782px;
  height: 782px;
  animation: ripple infinite ease-out 3s;
  opacity: 0;
}

.ripple-motion .ripple02 {
  animation-delay: 0.4s;
}

.ripple-motion .ripple03 {
  animation-delay: 0.8s;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scalex(0) scaley(0);
  }

  to {
    opacity: 0;
    transform: scalex(1) scaley(1);
  }
}


.con01 {
  position: relative;
}

.con01 .ripple-motion {
  position: absolute;
  right: -205px;
  bottom: -125px;
}


.con01_slide .con01-img {
  aspect-ratio: 1/1.267;
}

.con01_slide .con01-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 커스텀 커서 기본 스타일 */
.mouse-air {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  /* 중심점 유지 + 초기 크기 0 */
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  /* 크기와 투명도 변화를 부드럽게 */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0.3s ease;
  user-select: none;
}

/* 활성화 상태 (is-active 클래스가 붙었을 때) */
.mouse-air.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* 실제 원 모양과 배경 스타일 */
.mouse-drag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 140px;
  /* 원하시는 크기로 조절 */
  height: 140px;
  border-radius: 50%;
  border: 1px solid #D80C24;
  /* 원래 코드의 red 계열 유지 */

  /* 배경 블러 효과 추가 */
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* 사파리 호환성 */

  overflow: hidden;
}

/* 특정 섹션에 마우스가 올라갔을 때만 커서 숨기기 */
.modrag-section {
  cursor: none;
  /* 기본 커서 숨김 */
}

.modrag-section .a-href {
  cursor: none;
}

@media all and (max-width:1024px) {
  .mouse-air.is-active {
    display: none;
  }

  .modrag-section {
    cursor: auto;
  }

  .con01_slide .con01-href,
  .con03_slide .con03-href {
    cursor: pointer;
  }

}

.con03_slide .con03-img {
  aspect-ratio: 1/1.834;
}

.con03_slide .con03-img .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.con03 {
  position: relative;
}

.con03 .ripple-motion {
  position: absolute;
  left: -225px;
  top: -355px;
}

@media all and (max-width:1200px) {

  .ripple-motion,
  .ripple-motion .ripple {
    width: 450px;
    height: 450px;
  }

  .ripple-motion .ripple {
    border-width: 15px;
  }

  .con01 .ripple-motion {
    right: -105px;
    bottom: -75px;
  }

  .con03 .ripple-motion {
    left: -125px;
    top: -155px;
  }
}

@media all and (max-width:768px) {

  .ripple-motion,
  .ripple-motion .ripple {
    width: 320px;
    height: 320px;
  }

  .ripple-motion .ripple {
    border-width: 11px;
  }

  .con01 .ripple-motion {
    right: -76px;
    bottom: -75px;
  }

  .con03 .ripple-motion {
    left: -100px;
    top: -70px;
  }
}

@media all and (max-width:576px) {

  .ripple-motion,
  .ripple-motion .ripple {
    width: 250px;
    height: 250px;
  }

  .ripple-motion .ripple {
    border-width: 8px;
  }

  .con01 .ripple-motion {
    right: -60px;
    bottom: -40px;
  }

  .con03 .ripple-motion {
    left: -70px;
    top: -20px;
  }
}

.main-notice-wrap {
  border-top: 1px solid #c8c8c8;
}

.main-notice-wrap .a-href {
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 30px;
  border-bottom: 1px solid #c8c8c8;
}

.main-notice-wrap .a-href:before,
.main-notice-wrap .a-href:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c8c8c8;
  opacity: 0;
}

.main-notice-wrap .a-href:before {
  top: 0;
}

.main-notice-wrap .a-href:after {
  bottom: 0;
}

.main-notice-wrap .a-href.on:before,
.main-notice-wrap .a-href.on:after {
  background-color: #D80C24;
  opacity: 1;
  z-index: 1;
}

.main-notice-wrap .a-href .num {
  min-width: 30px;
}

.main-notice-wrap .a-href .date {
  min-width: 95px;
}

.main-notice-wrap .a-href .tit-box {
  width: calc(100% - 125px);
  position: relative;
}

.main-notice-wrap .a-href .tit {
  padding: 0 30px;
  max-width: 100%;
}

/* .main-notice-wrap .a-href .tit-box:after{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(/asset/img/main/ico-redarw.png)no-repeat center center;
  content: '';
  display: inline-block;
  position: absolute;
} */
.main-notice-wrap .a-href.on .tit {
  padding-right: 28vw;
  color: #D80C24;
}

.main-notice-wrap .a-href .img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 26vw;
  width: 500px;
  aspect-ratio: 1/0.562;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}

.main-notice-wrap .a-href.on .img {
  opacity: 1;
  visibility: visible;
}

.main-notice-wrap .a-href .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width:1200px) {
  .main-notice-wrap .a-href {
    padding: 25px 20px;
  }
}

@media all and (max-width:1024px) {
  .main-notice-wrap .a-href .tit {
    padding: 0 15px;
  }
}

@media all and (max-width:768px) {
  .main-notice-wrap .a-href {
    padding: 30px 15px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    padding-right: 35vw;
  }

  .main-notice-wrap .a-href .tit-box {
    width: 100%;
    order: 1;
    padding: 0;
    position: unset;
  }

  .main-notice-wrap .a-href .tit {
    padding: 0;
  }

  .main-notice-wrap .a-href.on .tit {
    padding-right: 0;
  }

  .main-notice-wrap .a-href .num {
    order: 2;
    min-width: auto;
  }

  .main-notice-wrap .a-href .date {
    order: 2;
    min-width: auto;
  }

  .main-notice-wrap .a-href .img {
    opacity: 1;
    visibility: visible;
    max-width: 33vw;
    top: 50%;
    transform: translateY(-50%);
  }
}

.main-href-wrap {
  display: flex;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.main-href-wrap .box {
  width: 33.333%;
  padding: 60px 0;
}

.main-href-wrap .box+.box .cent-box {
  border-left: 1px solid rgba(0, 0, 0, .15);
}

.main-href-wrap .btn-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border: 1px solid #111;
  border-radius: 50%;
}

.main-href-wrap .btn-box .btn:hover {
  background-color: #D80C24;
  border-color: #D80C24;
}

.main-href-wrap .btn-box .btn:hover i {
  animation: hrefArw 1s forwards;
}

.main-href-wrap .btn-box .btn:hover img {
  filter: brightness(0) invert(1);
}



@keyframes hrefArw {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  45% {
    transform: translate(30px, -30px);
    opacity: 0;
  }

  50% {
    transform: translate(-30px, 30px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@media all and (max-width:1024px) {
  .main-href-wrap .box {
    padding: 40px 0;
  }

  .main-href-wrap .btn-box .btn {
    width: 60px;
    height: 60px;
  }
}

@media all and (max-width:576px) {
  .main-href-wrap {
    flex-wrap: wrap;
  }

  .main-href-wrap .box {
    width: 100%;
    padding: 0;
  }

  .main-href-wrap .box .cent-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
  }

  .main-href-wrap .box+.box .cent-box {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, .15);
  }

  .main-href-wrap .box .btn-box {
    margin-top: 0;
  }

  .main-href-wrap .box .txt-box {
    text-align: left;
  }

  .main-href-wrap .btn-box .btn {
    width: 38px;
    height: 38px;
  }

  .main-href-wrap .btn-box .btn img {
    max-height: 15px;
  }


  @keyframes hrefArw {
    0% {
      transform: translate(0, 0);
      opacity: 1;
    }

    45% {
      transform: translate(15px, -15px);
      opacity: 0;
    }

    50% {
      transform: translate(-15px, 15px);
      opacity: 0;
    }

    100% {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
}

