html,
body {
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a:hover {
  text-decoration: none;
}
a {
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-decoration: none;
}
:focus {
  outline: none;
}
img {
  max-width: 100%;
}
ul {
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
} /*======================= Page Layout =======================*/
.list-flex {
  display: flex;
  flex-wrap: wrap;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.flex-center {
  justify-content: center;
}
.flex-between{
  justify-content: space-between;
}
.flex-middle {
  align-items: center;
}
.text-center {
 text-align: center;
}
.bg-section{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.texture1{
  width: 360px;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
  max-width: 20%;
}
.texture2{
  width: 360px;
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: 1;
   max-width: 20%;
}
.firevideo {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  position: fixed;
  z-index: 100;
  pointer-events: none;
}
.fp-watermark{
    display: none !important;
}
.fv .fv-bg{
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.index-item{
  z-index: 5;
  position: relative;
}
.fv .fv-logo{
  width: 243px;
  left: 30px;
  top:50px;
}
.index5{
  z-index: 10;
}
.fv .menu-social{
  gap: 10px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
}
.fv .menu-social a{
  position: relative;
}
.fv .menu-social a:hover:after{
  opacity: 1;
}
.fv .menu-social a:after{
  transition: all 0.3s ease-in-out;
  background: url(../images/frame1/icon_active.webp) no-repeat top center/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  content: "";
  opacity: 0;
}
.fv .menu-social img{
  width: 101px;
  height: 100px;
}
.fv .fv-bottom{
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
}
.video-play{
  width: 199px;
  height: 212px;
  background: url(../images/frame1/icon_play.webp) no-repeat top center/100% auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.video-play a{
  width: 100%;
  height: 100%;
  display: block;
}
.video-play:hover{
  background-image: url(../images/frame1/icon_play_active.webp)
}
.fv .download{
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}
.frame2{
  background-image: url(../images/frame2/bg_frame2.webp)
}
.btn{
  gap: 30px;
  justify-content: center;
}
.btn img{
  height: 70px;
}
#fullpage{
  z-index: 2;
}
.bg-page{
      position: fixed;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.frame3{
  background-image: url(../images/frame3/bg_frame3.webp)
}
.frame3-nav .active{
  display: none;
}
.item-active .active{
  display: block;
}
.item-active .normal{
  display: none;
}
.frame3-content{
  padding: 0 100px;
  margin: 50px 0 100px;
  flex-wrap: nowrap;
}
.frame3-nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}
.item-nav{
  position: relative;
  height: 76px;
}
.item-nav:before{
  width: 14px;
  height: 40px;
  background: url(../images/frame3/arrow.webp) no-repeat center center/100% auto;
  content: "";
  position: absolute;
  top: -53px;
  left: 30px;
}
.item-nav:first-child:before{
  display: none;
}
.item-nav img{
  height: 76px;
}
.frame3-for{
  width: 794px;
  max-width: 75%;
}
.story-item .featured{
  margin-bottom: 10px;
}
.story-item{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.story-item.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}
.tagline{
  height: 198px;
  margin: 0 auto;
  display: block;
}
.story-item .featured{
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(100%);
    transition:
        opacity 1s ease-in-out,
        transform 1s ease-in-out; 
}
.story-item.active .featured{
    opacity: 1;
    transform: translateX(0);
}
.story-item .description{
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s  ease-in-out 0.5s, opacity 0.5s  ease-in-out 0.5s;
}

.story-item.active .description {
    opacity: 1;
    transform: translateX(0);
    max-width: 87%;
    margin: 20px auto 0;
    display: block;
}
.frame4-content{
  padding: 200px 100px 0;
  min-height: calc(100vh - 350px);
}
.frame4-content .description{
  display: inline-block;
    margin-right: 50px;
    vertical-align: middle;
}
.frame4-content .video-play{
      display: inline-block;
    vertical-align: middle;
}
.frame4{
  background-image: url(../images/frame4/bg_frame4.webp)
}
.frame5-content{
  flex-wrap: nowrap;
  margin-bottom: -2%;
  align-items: flex-start;
  max-height: 694px;
  margin-top: 3%;
  justify-content: center;
}
.figure-left{
  width: 34%;
  height: 780px;
  position: relative;
  max-width: 680px;
}
.figure-right{
  width: 34%;
  height: 570px;
  position: relative;
  max-width: 680px;
}
.figure-icon{
  width: 32%;
  max-width: 620px;
}
.figure-item{
  opacity: 0;
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
}
.figure-right .figure-item{
  transform: translateX(50%);
}
.figure-left .figure-item{
  transform: translateX(-50%);
}
.figure-item img{
  
height: 100%;
  
width: auto;
}
.figure-item.active{
      opacity: 1;
    transform: translateX(0);
}
.figure-item .video-play{
  width: 120px;
  height: 120px;
  bottom: 50%;
  position: absolute;
  right: 15%;
}
.figure-right .figure-item .video-play{
  left: 15%;
  right: auto;
  bottom: 45%;
}
.figure-icon .vs{
  width: 100%;
}
.icon-item{
  width: 135px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 148px;
   background: transparent;
}
.icon-item::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/frame5/img_active.webp") no-repeat center/100% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.icon-item:hover::before, .icon-item.active::before{
  opacity: 1;
}
.icon-item img{
  width: 110px;
  height: 118px;
}
.icon-dark{
  top: 0;
  right: 17%;
}
.icon-thunder{
  top: 24%;
  right: 0;
}
.icon-metal{
  top: 53%;
  right: 2%;
}
.icon-light{
  bottom: 0;
  right: 17%;
}
.icon-fire{
 bottom: 0;
 left: 17%;
}
.icon-win{
  top: 53%;
  left: 2%;
}
.icon-earth{
   top: 24%;
   left: 0;
}
.icon-water{
   top: 0;
   left: 17%;
}
.frame6-logo{
  height: 181px;
  margin-top: -2%;
}
.frame6-function{
  gap: 30px;
}
.frame6-btn {
  width: 354px;
  gap: 6px;
}
.frame6-btn img{
  display: block;
}
.frame6-btn .btn-small{
  width: calc(50% - 3px);
}
.frame6-box .description{
  height: 127px;
  margin: 30px 0;
}
body{
  overflow: hidden;
}
.animatedFadeInTop{
  opacity: 0;
  animation-name: slideTop;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.animatedFadeIn{
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.delay1{
  animation-delay: 0.3s;
}
.delay2{
  animation-delay: 0.6s;
}
.delay3{
  animation-delay: 0.9s;
}
.animatedFadeLeft{
  opacity: 0;
  animation-name: slideLeft;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.animatedFadeRight{
  opacity: 0;
  animation-name: slideRight;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideTop {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fadeIn{
  opacity: 0;
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
}
.fadeInTop {
  opacity: 0;
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  transform: translateY(50%);
}
.fadeInTop.delay1{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
}
.fadeInTop.delay2{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
}
.fadeInTop.delay3{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.6s;
}
.fadeInTop.delay4{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.8s;
}
.fadeInTop.delay5{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 1s;
}
.fadeInLeft{
  opacity: 0;
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  transform: translateX(-50%);
}
.fadeInLeft.delay1{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
}
.fadeInLeft.delay2{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
}
.fadeInLeft.delay3{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.6s;
}
.fadeInRight{
  opacity: 0;
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1);
  transform: translateX(50%);
}
.fadeInRight.delay1{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
}
.fadeInRight.delay2{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
}
.fadeInRight.delay3{
  transition: all 1s cubic-bezier(0, 0.55, 0.45, 1) 0.6s;
}
.fp-section.active .fadeInLeft, .fp-section.active  .fadeInRight{
  opacity: 1;
  transform: translateX(0);
}
.fp-section.active .fadeInTop{
  opacity: 1;
  transform: translateY(0);
}
.fp-section.active .fadeIn{
  opacity: 1;
}
.fv .download a:hover, .btn a:hover, .frame6-btn a:hover{
   filter: brightness(120%);
}
.frame4-box{
  padding-bottom: 100px;
}
.frame2-box .list1{
  margin-bottom: -40px;
}
.on-mb{
  display: none !important;
}
.frame2-box .list img{
  max-width: 33.33%;
}
.fv-bottom .maintext{
      mix-blend-mode: screen;
}
.popup-video{
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
}
.video-bg{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.video-close{
  width: 40px;
  height: 40px;
  font-size: 0;
  display: block;
  z-index: 1000;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 0;
  position: fixed;
  right: calc(50vw - 634px);
  top: 6vh;
}
.video-close:before{
      content: "";
    margin: -1px 0 0 -20px;
    width: 40px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    transform: rotate(45deg);
    transition: false;
}
.video-close:after{
      content: "";
    margin: -1px 0 0 -20px;
    width: 40px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    transform: rotate(-45deg);
    transition: false;
}
.video-content{
      max-width: 100%;
    height: 100%;
    width: 1280px;
    margin: 0 auto;
    max-height: 85vh;
    padding: 50px 10px;
}
.video-content iframe{
      width: 100%;
    height: 100%;
}
.popup-video{
  display: none;
}
.swiper-slide {
    width: 700px;
}
.swiper-slide img {
    filter: grayscale(100%) brightness(1.4);
}
.swiper-slide.swiper-slide-active img {
    filter: none;
}
.swiper-button-next{
  background: url(../images/frame3/arrow_right.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: -11px;
  width: 120px;
  height: 100px;
  transform: translateY(-20px);
}
.swiper-button-prev{
  position: absolute;
  top: 50%;
  left: -9px;
  width: 120px;
  height: 100px;
  background: url(../images/frame3/arrow_left.webp) no-repeat center center/contain;
  transform: translateY(-20px);
}
.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}
.video-play iframe{
  display: none;
}
.music{
  opacity: 0;
  visibility: hidden;
}
#bgm{
  display: none;
}