html {
  scroll-behavior: smooth;
}

.visual_wrap{
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
	overflow: hidden; 
}
.visual_wrap .page_down{
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 20;
}
.visual_wrap .page_down:hover{
  animation-name: bounce; 
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.visual_wrap .visual{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;  
  overflow: hidden;
}
.visual_wrap .swiper{
  width: 100%;
  /* height: 100vh; */
  height: 650px;
  z-index:1;
}
.visual_wrap .swiper-slide{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;  
  transition: .2s;
}
.visual_wrap .swiper-pagination{
  display: flex;
  width: auto;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);    
}
.visual_wrap .swiper-pagination-bullet{ width: 10px; height: 10px; background: #fff;;}
.visual_wrap .swiper-pagination-bullet-active{ width: 12px; height: 12px; background: transparent; border: 3px solid rgb(171, 20, 20);  transition: .2s}
.visual_wrap .swiper-button-prev, .visual_wrap .swiper-button-next{
  display: none;
}
.visual_wrap .swiper-slide .bg{
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.visual_wrap .swiper-slide .text_wrap{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 50vh;
  text-align: center;
  color: #fff;  
  word-break:keep-all; 
  word-wrap:break-word;
  transition: .5s;
  z-index: 2;
}
.visual_wrap .swiper .text_wrap h1{
	font-family: 'GmarketSansBold', 'OneMobileTitle','SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 3.0rem;
  margin-top: 3rem;
  opacity: 0;
  transition: .5s;
}
.visual_wrap .swiper .text_wrap .con{
  width: 100%;
	font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-weight: 400;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  text-align: center;
  padding: 0;
  margin-top: 3rem;
  opacity: 0;
  transition: .5s;
}
.visual_wrap .swiper .text_wrap .con strong{
  display: block;
  font-weight: 500;
  font-size: .9rem;
  color: rgba(252, 255, 0, .6);
  margin-bottom: .5rem;
}
.visual_wrap .swiper .text_wrap .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0 0 0;
  margin:3rem auto 0 auto;
  opacity: 0;
  transition: .5s;
}
.visual_wrap .swiper .text_wrap .icon>div{
  background-color:#fff;
  padding: .5rem;
  margin: 0 auto;
  border-radius: .5rem;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;
}
.visual_wrap .swiper .text_wrap .bt{
  padding-top: 2rem;
  margin-top: 3rem;
  opacity: 0;
}
.visual_wrap .swiper .text_wrap a{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size:.7rem;
  color: rgba(255, 255, 255, .6);
  border:1px solid rgba(255, 255, 255, .4);;
  border-radius: 1.5rem;
  padding: .5rem 2rem;
  transition: all .2s;
}
.visual_wrap .swiper .text_wrap a:hover{
  color: rgba(255, 255, 255, 1);
  background-color: #0c2069;
  border: 1px solid #0c2069;
}
.visual_wrap .swiper-slide .img_wrap{
  display: flex;
  justify-content: center;
  position: absolute;
  /* top: 60%; */
  bottom: -30%;
  left: 0;
  width:100%;
  z-index: 1;
  opacity: 0;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.visual_wrap .swiper-slide .img_wrap img{
  width: 80%;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.visual_wrap .swiper-slide-active .text_wrap h1{
  opacity: 1;
  margin-top: 0;
  transition-delay: .5s;
  transition-duration: 1s;
}
.visual_wrap .swiper-slide-active .text_wrap .con{
  opacity: 1;
  margin-top: 0;
  transition-delay: 1s;
  transition-duration: 1s;
}
.visual_wrap .swiper-slide-active .text_wrap .icon{
  opacity: 1;
  margin-top: 0;
  transition-delay: 1.5s;
  transition-duration: 1s;
}
.visual_wrap .swiper-slide-active .img_wrap{
  bottom: -8%;
  opacity: 1;
  transition-duration: 2s;
  transition-delay: 2s;
}
.visual_wrap .swiper-slide-active .img_wrap img{
  /* width: 80%; */
  transition-duration: 2s;
  transition-delay: 2s;
}
.visual_wrap .swiper-slide-active .text_wrap .bt{
  opacity: 1;
  margin-top: 0;
  transition-delay: 1.5s;
  transition-duration: 1s;
}
@media (max-width: 991.98px) {
  .visual_wrap .swiper{
    height: 550px;
  }
  .visual_wrap .swiper-slide .text_wrap{
    top: 18%;
  }
  .visual_wrap .swiper-slide .text_wrap .icon img{
    width: 80px;
  }
  .visual_wrap .swiper-slide-active .img_wrap{
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .visual_wrap .swiper{
    height: 400px;
  }
  .visual_wrap .swiper-slide .text_wrap{
    top: 20%;
  }
  .visual_wrap .swiper .text_wrap h1{
    font-size: 1.8rem;
  }
  .visual_wrap .swiper .text_wrap .con{
    font-size: .8rem;
    line-height:1.3;
    text-align: center;
  }
  .visual_wrap .swiper-slide .text_wrap .icon img{
    width: 60px;
  }
  .visual_wrap .swiper-slide-active .img_wrap img{
    width: 95%;
  }
  .visual_wrap .page_down{
    display: none;
  }
}
@media (max-width: 480px) {
  .visual_wrap .swiper{
    height: 300px;
  }
  .visual_wrap .swiper-slide .text_wrap{
    top: 30%;
  }
  .visual_wrap .swiper .text_wrap .icon{
    display: none;
  }
}


.prod_wrap{
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}
.prod_wrap .prod_ca{
  width: 100%;
  margin: 0;
  padding: 2rem 0;
	display: flex;
  justify-content: space-between;
	align-items: flex-start;
  gap: 2rem;
}
.prod_wrap .tt{
  width: 20%;
  margin:2rem 0 0 1rem;
  padding: 0;
}
.prod_wrap .ttR{
  width: 20%;
  margin:2rem 2rem 0 0;
  padding: 0;
  text-align: right;
}
.prod_wrap .tt h1,
.prod_wrap .ttR h1{
  display: inline-block;
  position: relative;
}
.prod_wrap .tt h1::after,
.prod_wrap .ttR h1::after{
  content: '';
  position: absolute;
  top:-10px;
  right: -20px;
  width: 15px;
  height: 15px;
  background-color: #eb5050;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.prod_wrap h1{
  font-family: 'GmarketSansLight';
  font-size: 2.4rem;
  color: #000;
}
.prod_wrap p{
  margin-top: 2rem;
  font-family: 'S-CoreDream-3Light';
  font-size: .85rem;
  color: #888888;
  word-break:keep-all; 
  word-wrap:break-word;
}
.prod_wrap .list{
  width: 70%;
  margin:0 auto;
  padding: 0;
	display: flex;
  justify-content: center;
	align-items: flex-start;
  gap: 2rem;
  text-align: center;
}
.prod_wrap .list .name{
  font-size: 1.6rem;
  font-family: 'S-CoreDream-4Regular';
  color: #000;
  padding-bottom: .2rem;
}
.prod_wrap .list .size{
  font-size: 0.8rem;
  font-family: 'S-CoreDream-4Regular';
  color: #818080;
  padding-bottom: 1rem;
}
.prod_wrap .list .price{
  font-size: 0.8rem;
  font-family: 'S-CoreDream-4Regular';
  color: #383838;
}
.prod_wrap .line{
  margin: 2rem 0;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;  
  border: 0;
}

@media (max-width: 991.98px) {
  .prod_wrap h1{
    font-size: 2.0rem;
  }
  .prod_wrap p{
    margin-top: 1.5rem;
    font-size: .8rem;
  }
  .prod_wrap .list .name{
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {    
  .prod_wrap .prod_ca{
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .prod_wrap .tt,
  .prod_wrap .ttR{
    width: 100%;
    margin:.5rem 0 0 0;
    padding: 0;
    text-align: center;
    order:1;
  }
  .prod_wrap .ttR{
    text-align: center;
  } 
  .prod_wrap h1{
    text-align: center;
    font-size: 1.3rem;
  }
  .prod_wrap p{
    /* display:none; */
    width: 100%;
    text-align: center;
    margin-top: .5rem;
    padding: 0 3rem;
    font-size: .65rem;
  }
  .prod_wrap .list{
    order: 2;
    gap:1rem;
    width: 100%;
    padding: 0 1rem;
  }
  .prod_wrap .list .name{
    font-size: 1.0rem;
    margin-top: 1rem;
  }
  .prod_wrap .list .size{
    font-size: 0.7rem;
    padding-bottom: .7rem;
  }
  .prod_wrap .line{
    margin: .5rem 0;
  }
}



.smart_wrap{
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 0;
  margin: 2rem auto 0 auto;

	display: flex;
  justify-content: center;
	align-items: stretch;
}
.smart_wrap .con{
  width: 40%;
  padding: 3rem;
  margin:0;
  background-color: #5e5f62;

	display: flex;
  flex-direction: column;
  justify-content: space-between;
	align-items: flex-start;
}
.smart_wrap h1{
  font-family: 'KOHIBaeumOTF';
  font-size: 3.0rem;
  color: #fff;
}
.smart_wrap strong{
  display: block;
  margin-top: 3rem;
  padding: 0.1rem .5rem;
  font-family: 'GmarketSansBold';
  font-size: 0.9rem;
  color: #5e5f62;
  background-color: #fff;
}
.smart_wrap p{
  margin-top: 1rem;
	font-family: 'SCoreDream', system-ui, -apple-system, "Noto Sans",  sans-serif;
	font-weight: 400;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .5);
  word-break:keep-all; 
  word-wrap:break-word;
}
.smart_wrap .img{
  width: 60%;  
  height: 520px;
  padding:0;
  margin:0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/img/main_smart.jpg');  
}
@media (max-width: 767.98px) {
  .smart_wrap{
    flex-direction:column;
  }  
  .smart_wrap .con{
    width: 100%;
    padding: 2.5rem 1rem;
  }
  .smart_wrap .img{
    width: 100%;
    height: 300px;
  }
  .smart_wrap h1{
    font-size: 2.0rem;
  }
  .smart_wrap strong{
    margin-top: 2rem;
  }
  .smart_wrap p{
    font-size: 0.8rem;
  }
}



.main_page{
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.main_page ul{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem 0;  
  padding: 1rem 0;
  margin: 0;
}
/* .main_page ul::after{
  position: absolute;
  content:'';
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  z-index: 1001;
  background: rgba(255, 255, 255, .5);
  transform: translateX(-50%);
} */
.main_page li{
  position: relative;
  list-style: none;
  padding: 0;
}
.main_page li div{
  position: absolute;
  top: 7px;
  left: -100px;
  width: 100px;
  text-align: right;
  display: none;
}
.main_page li a{
  padding: .5rem;
  font-size: .5rem;
  color: rgba(255,255,255,.4);
  -webkit-transition: .2s;
  transition: .2s;
}
.main_page li a:hover{
  /* font-size: .8rem; */
  color: rgba(252, 255, 0, .7);
}
.main_page li.active a{
  color: #fcff00;
}
.main_page li.active div{
  display: block;
}
@media (max-width: 991.98px) {
  .main_page{
    right: .5rem;
  }
  .main_page li.active div{
    display: none;
  }
}
@media (max-width: 767.98px) {
  .main_page{
    display: none;
  }
}