/*-------------------------------------藍沢エマ*/
.aizawa-top {
  background: url(../images/aizawa/SidiBouSaid_origin.jpg) center top / cover no-repeat;
  position: relative;
}

.aizawa-top::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none; /* マウス操作に干渉しない */
  z-index: 1;
}

.aizawa-top img {
  z-index: 10;
}

.aizawa-top-text {
  border-radius: 2rem;
  z-index: 10;
}

.aizawa-profile {
  position: relative;
  background: rgba(255, 255, 255, 0);
}


.aizawa-tag {
  background: rgba(255, 255, 255, 0);
}

.aizawa-wrapper,
.aizawa-wrapper2 {
  position: relative;
}

.aizawa-movie {
  background: rgba(255, 255, 255, 0);
}

.aizawa-wave-wrapper {
  position: absolute;
  width: 100vw;
  height: 100%;
}

.aizawa-wave-wrap {
  position: relative;
}


.aizawa-wave-box {
  width: 30vw;
  height: 10vw;
  border: solid thin #b4f1f9;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  left: -10vw;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.aizawa-wave-box2 {
  width: 30vw;
  height: 10vw;
  border: solid thin #b4f1f9;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 10vw;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.aizawa-wave-box3 {
  width: 30vw;
  height: 10vw;
  border: solid thin #b4f1f9;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  left: 30vw;
  top: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.aizawa-wave-box.layer-1 {
  animation: aizawa-wave 6s infinite;
}

.aizawa-wave-box.layer-2 {
  animation: aizawa-wave2 6s infinite;
}

.aizawa-wave-box.layer-3 {
  animation: aizawa-wave3 6s infinite;
}

.aizawa-wave-box.layer-4 {
  animation: aizawa-wave4 6s infinite;
}

.aizawa-wave-box2.layer-1 {
  animation: aizawa-wave 6s infinite 1.5s;
}

.aizawa-wave-box2.layer-2 {
  animation: aizawa-wave2 6s infinite 1.5s;
}

.aizawa-wave-box2.layer-3 {
  animation: aizawa-wave3 6s infinite 1.5s;
}

.aizawa-wave-box2.layer-4 {
  animation: aizawa-wave4 6s infinite 1.5s;
}

.aizawa-wave-box3.layer-1 {
  animation: aizawa-wave 6s infinite 5s;
}

.aizawa-wave-box3.layer-2 {
  animation: aizawa-wave2 6s infinite 5s;
}

.aizawa-wave-box3.layer-3 {
  animation: aizawa-wave3 6s infinite 5s;
}

.aizawa-wave-box3.layer-4 {
  animation: aizawa-wave4 6s infinite 5s;
}



@keyframes aizawa-wave {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(100%, 100%);
    opacity: 0;
  }
}

@keyframes aizawa-wave2 {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(90%, 90%);
    opacity: 0;
  }
}

@keyframes aizawa-wave3 {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(75%, 75%);
    opacity: 0;
  }
}

@keyframes aizawa-wave4 {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(50%, 50%);
    opacity: 0;
  }
}

@-webkit-keyframes aizawa-wave {
  0% {
    -webkit-transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(100%, 100%);
    opacity: 0;
  }
}

@-webkit-keyframes aizawa-wave2 {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(90%, 90%);
    opacity: 0;
  }
}

@-webkit-keyframes aizawa-wave3 {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(75%, 75%);
    opacity: 0;
  }
}

@-webkit-keyframes aizawa-wave4 {
  0% {
    transform: scale(0, 0);
    box-shadow: 0 0 100px inset #b4f1f9;
    opacity: 1;
  }

  100% {
    transform: scale(50%, 50%);
    opacity: 0;
  }
}