@charset "utf-8";
/* CSS Document */

.visual-animation{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height:100vh;
  position:absolute;
  top:0;
  left: 0;
  z-index: 2;
}
.visual-animation-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.visual-animation-logo img{
  width: 300px;
}


.visual-mask{
  display: block;
  width: 100%;
  height: 100%;
  background:#E60012;
  clip-path: ellipse(80px 0px at 50% 50vh);
  position: absolute;
  top:0;
  left: 0;
  z-index: 1;
}

.visual-image{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0;
  z-index: 2;
}
.visual-image-inner{
  padding: 0 20px;
  height: 1380px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width:768px){
  .visual-animation-logo img{
    width: 200px;
  }
  .visual-image{
    height: 850px;
    top: 40px;
  }
}
