/*-------------------------------------千燈ゆうひ*/

#sendo {
  position: relative;
  overflow: hidden;
}

.sendo-top img {
  z-index: 10;
}

#sendo .cloud1,
#sendo .cloud12,
#sendo .cloud2,
#sendo .cloud22 {
  background-position-x: 0;
  backface-visibility: hidden; /* 描画チラつき対策 */
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

#sendo .cloud1{
  background: url(../images/sendo/cloud1.png) repeat-y center center / contain;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -2;
  animation: sendo-cloud 120s linear 0s infinite;
}

#sendo .cloud12{
  background: url(../images/sendo/cloud1.png) repeat-y center center / contain;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -2;
  animation: sendo-cloud 120s linear 60s infinite;
  opacity: 0;
  visibility: visible;
}

#sendo .cloud2{
  background: url(../images/sendo/cloud2.png) repeat-y center center / contain;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -2;
  animation: sendo-cloud 100s linear 0s infinite;
  opacity: 0;
}

#sendo .cloud22{
  background: url(../images/sendo/cloud2.png) repeat-y center center / contain;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -2;
  animation: sendo-cloud 100s linear 50s infinite;
  opacity: 0;
  visibility: visible;
}

.sendo-sunset {
  background: linear-gradient(180deg,rgba(89, 89, 235, 0.7) 0%, rgba(107, 87, 171, 0.7) 10%, rgba(196, 43, 51, 0.7) 36%, rgba(234, 85, 6, 0.7) 100%),url(../images/sendo/densen1.png) no-repeat top left / contain;
}


.sendo-top-text,
.sendo-profile,
.sendo-tag,
.sendo-movie  {
  background: linear-gradient(rgba(255, 122, 48, 0.7), rgba(255, 158, 48, 0.7));
  color: #f5f5f5;
  position: relative;
  box-shadow: 6px 6px 10px 0px rgba(117, 72, 21, 0.7);
}

.sendo-top-text::before,
.sendo-profile::before,
.sendo-tag::before,
.sendo-movie::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(255, 48, 4, 0.7), rgba(255, 122, 48, 0.7));
  transform: translateY(-100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.sendo-top-text::after,
.sendo-profile::after,
.sendo-tag::after,
.sendo-movie::after {
  position: absolute;
  content: "";
  width: 8rem;
  height: 8rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%) rotate(30deg);
  background: url(../images/sendo/sendo_pin.png) no-repeat center center / contain;
  opacity: 0.5;
}

.sendo-wrapper {
  position: relative;
}

.sendo-wrapper::before {
  content: "";
  position: absolute;
  background: url(../images/sendo/densen2.png) no-repeat center center / cover;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: -1;
}

.sendo-movie {
  margin-top: 20rem;
}


@media screen and (max-width: 1025px) {
  #sendo .basic-top {
    align-items: end;
  }
}

@media screen and (max-width: 769px) {
  .sendo-top-text::after,
  .sendo-profile::after,
  .sendo-tag::after,
  .sendo-movie::after {
    width: 5rem;
    height: 5rem;
  }
}

@media screen and (max-width: 426px) {
  #sendo .basic-top {
    align-items: center;
  }

  .sendo-tag {
    margin-top: 8rem;
  }

  .sendo-top-text::before,
  .sendo-profile::before,
  .sendo-tag::before,
  .sendo-movie::before {
    clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
  }

  .sendo-top-text::after,
  .sendo-profile::after,
  .sendo-tag::after,
  .sendo-movie::after {
    transform: translate(-50%, -50%) rotate(30deg);
  }

}

@-webkit-keyframes sendo-cloud {
  0% {
    transform: translateX(100%); opacity: 1;
  }
  100% {
    transform: translateX(-100%); opacity: 1;
  }
}
@keyframes sendo-cloud {
  0% {
    transform: translateX(100%); opacity: 1;
  }
  100% {
    transform: translateX(-100%); opacity: 1;
  }
}