.mv {
  position: relative;
}

.mv .bg-box {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.mv .bg-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 5s;
}

.mv .txt-box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  padding-bottom: 100px;
}
.mv .txt-box .bot-txt-box{
  overflow: hidden;
}

.mv .textSlideRight{
  display: inline-block;
  transform: translateX(-100%);
  transition: opacity 1.5s, transform 1.5s;
  opacity: 0;
}
.mv .swiper-slide-active .textSlideRight{
  transform: translateX(0);
  opacity: 1;
}
.mv .textSlideRight.delay01{transition-delay: .3s;}
.mv .textSlideRight.delay02{transition-delay: .6s;}
.mv .swiper-slide-active .bg-box img{
  transform: scale(1);
}
.mv .txt-box .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.mv .scroll-down{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.mv .scroll-down .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}


.mv .scroll-track {
  position: relative;
  width: 1px;
  height: 116px;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.mv .scroll-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 45px;
  background-color: rgba(255, 255, 255, 1);
  animation: scrollDown 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-45px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(116px);
    opacity: 0;
  }
}

@media all and (max-width:1024px){
  .mv .txt-box{
    padding-bottom: 80px;
  }
  .mv .scroll-track{
    height: 100px;
  }
}
@media all and (max-width:768px){
  .mv .txt-box{
    padding-bottom: 60px;
  }
  .mv .scroll-track{
    height: 80px;
  }
  .mv .scroll-bar{
    height: 35px;
  }


  @keyframes scrollDown {
  0% {
    transform: translateY(-35px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(80px);
    opacity: 0;
  }
}
}

.main-con02{
  display: flex;
  align-items: center;
  gap: 140px;
}
.main-con02 .lt-cont{
  width: calc(29% - 75px);
}
.main-con02 .rt-cont{
  width: calc(71% - 65px);
}
.main-con02 .card-flex{
  width: 100%;
  display: flex;
  gap: 5px;
}
.main-con02 .card-flex .card-box{
  position: relative;
  transform: translateY(-25px);
  width: calc(25% - 3.75px);
}
.main-con02 .card-flex .card-box:nth-child(2n){
  transform: translateY(25px);
}

.main-con02 .card-flex .card-box.ani{
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.main-con02 .card-flex .card-box.ani.in-view{
  transform: translateY(-25px);
  opacity: 1;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}
.main-con02 .card-flex .card-box:nth-child(2n).ani.in-view{
  transform: translateY(25px);
}

.main-con02 .card-flex .card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-con02 .card-flex .txt-box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}
.main-con02 .card-flex .txt-box:before{
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #00478B 0%, rgba(0, 71, 139, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index:-1;
  opacity: 0;
  transition: opacity 1s;
}
.main-con02 .card-box:hover .txt-box:before{
  opacity: 1;
}
.main-con02 .card-box:hover .txt-box .txt{
  opacity: .9;
  transform: translateY(0);
}
.main-con02 .card-box:hover .c-plus{
  opacity: 1;
}
.main-con02 .card-flex .c-plus{
  width: 22px;
  min-width: 22px;
  height: 22px;
  display: block;
  position: relative;
  transition: opacity 1s;
}
.main-con02 .card-flex .c-plus i{
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  transition: transform .5s;
}
.main-con02 .card-box:hover .c-plus i:nth-child(2){
  transform: translate(-50%,-50%) rotate(90deg);
}
.main-con02 .card-flex .c-txt{
  width: calc(100% - 60px);
}
.main-con02 .card-flex .c-txt .txt{
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(10px);
}
.main-con02 .card-flex .c-txt .op-80{
  opacity: .8;
}

.main-con02 .card-flex .c-plus{
  opacity: 0;
}
.tit-big-box{
  letter-spacing: -0.04em;
}
.view-more-box{
  display: flex;
  align-items: center;
  gap: 5px;
}
.view-more-box.center{
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.view-more-box .ico .filter01{
  filter: drop-shadow(3px 3px 8px rgba(102, 170, 221, 0.3));
}
.view-more-box .ico .filter02{
  filter: drop-shadow(3px 3px 8px rgba(0, 71, 139, 0.4));
}

@media all and (max-width:1400px){
  .main-con02{
    gap: 50px;
  }
  .main-con02 .lt-cont{
    width: calc(29% - 25px);
  }
  .main-con02 .rt-cont{
    width: calc(71% - 25px);
  }
  .main-con02 .card-flex .txt-box{
    padding: 15px;
  }
  .main-con02 .card-flex .c-txt{
    width: calc(100% - 22px);
  }
}
@media all and (max-width:1024px){
  .main-con02{
    gap: 30px;
    flex-wrap: wrap;
  }
  .main-con02 .lt-cont,
  .main-con02 .rt-cont{
    width: 100%;
  }
  .main-con02 .card-flex .card-box{
    transform: translateY(0);
  }
}

@media all and (max-width:768px){
  .main-con02 .card-box .txt-box:before{
    opacity: 1;
  }
  .main-con02 .card-box .txt-box .txt{
    opacity: .9;
    transform: translateY(0);
  }
  .main-con02 .card-box .c-plus{
    opacity: 1;
  }
  .main-con02 .card-box .c-plus i:nth-child(2){
    transform: translate(-50%,-50%) rotate(90deg);
  }
  .main-con02 .card-flex .c-plus{
    min-width: 15px;
    width: 15px;
    height: 15px;
  }
  .main-con02 .card-flex .c-txt{
    width: calc(100% - 20px);
  }
}

@media all and (max-width:650px){
  
  .main-con02 .card-flex{
    flex-wrap: wrap;
  }
  .main-con02 .card-flex .card-box{
    width: calc(50% - 2.5px);
  }
  .main-con02 .card-flex .txt-box{
    padding: 25px 15px;
  }
}

.main-con03{position: relative;}
.main-con03 .big-img-box{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: calc(100% - 70px);
}
.main-con03 .big-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0% 100% 0% 0%);
  transition: clip-path 2s;
}
.main-con03 .big-img-box.in-view img{
  clip-path: inset(0% 0% 0% 0%);
}

.main-con03 .cont-bg {
  position: relative;
  background: linear-gradient(90deg, #00478B 17%, #66AADD 100%);
}
.main-con03 .left-tit{
  max-width: 605px;
  position: relative;
  z-index: 2;
}

.main-con03 .right-txt{
  max-width: 540px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 2;
  letter-spacing: -0.04em;
}
.main-con03 .cont-bg:before{
  width: 467px;
  background: url(/asset/img/main/con02-bg.png)no-repeat center center /cover;
  position: absolute;
  left: 90px;
  bottom: -40px;
  content: '';
  pointer-events: none;
  aspect-ratio: 1/0.702;
}

@media all and (max-width:1024px){
  .main-con03 .left-tit{
    max-width: none;
  }
  .main-con03 .right-txt{
    margin-top: 50px;
    margin-left: 0;
    width: 100%;
    max-width: none;
  }
  .main-con03 .cont-bg:before{
    width: 250px;
    right: 50px;
    left: auto;
  }
  .main-con03 .big-img-box{
    height: 300px;
  }
}

@media all and (max-width:768px){
  .main-con03 .big-img-box{
    height: 180px;
    width: calc(100% - 20px);
  }
  .main-con03 .cont-bg:before{
    width: 200px;
    right: 10px;
    bottom: -10px;
  }
  .main-con03 .right-txt{
    margin-top: 30px;
  }
}

.main-con04 .view-more-box{
  padding: 18px 20px;
  box-shadow: 3px 3px 8px 0px rgba(102, 170, 221, 0.3);
  background-color: #fff;
  border: 1px solid #EBF3F9;
}

.main-con04 .swiper-pagination{
  position: unset;
  width: calc(100% - 92px);
  background-color: #F2F2F2;
  opacity: 1;
  height: 3px;
}
.main-con04 .swiper-pagination-progressbar-fill{
  background-color: #00478B;
}
.main-con04 .slide-bot{
  display: flex;
  align-items: center;
  gap: 15px;
}
.main-con04 .swpier-btn-box{
  display: flex;
  gap: 5px;
}
.main-con04 .swpier-btn-box .swiper-btn{
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid #00478B;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.main-con04 .swpier-btn-box .swiper-btn.prev-btn{background-image: url(/asset/img/main/slide-arw01.svg);}
.main-con04 .swpier-btn-box .swiper-btn.next-btn{background-image: url(/asset/img/main/slide-arw02.svg);}

.main-con04 .common-img-box .img-box{
  aspect-ratio: 1/1.279;
  overflow: hidden;
}
.main-con04 .common-img-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.main-con04 .common-img-box:hover .img-box img{
  transform: scale(1.1);
}

@media all and (max-width:1024px){
  .main-con04 .view-more-box{
    padding: 13px 15px;
  }
}



#popup {
	position: relative;
}

.popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
}

@keyframes popup-fade {
	0% { opacity: 0;
	-webkit-transform: translateY(25px);
	-ms-transform: translateY(25px);
	transform: translateY(25px); }
	100% { opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0); }
}
.popup-layer__body {
	background: #fff;
}

.popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
}

.popup-layer__foot {
	background: #424242;
}

.popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
}

.popup-layer__foot li {
	width:50%;
	padding:10px;
}

.popup-layer__foot li:first-child {
	padding-right:0;
}

.popup-layer__foot li:last-child {
	text-align: right;
}

.popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

	.popup-layer {
		width:calc(100% - 10px);
	}

	.popup-layer img {
		max-width: none;
		width:100%;
		height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
}
