
/*-------------------------------------八雲べに*/
#yakumo .background-grad {
  position: relative;
  overflow: hidden;
}

/* 背景パターンのベース */
#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,rgba(118, 76, 143, 1) 0%, rgba(90, 46, 115, 1) 30%, rgba(188, 138, 219, 1) 50%, rgba(194, 229, 217, 1) 60%, rgba(188, 138, 219, 1) 70%, rgba(90, 46, 115, 1) 100%);
  z-index: 0; /* 後ろに置く */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

/* ひし形 */
#background div {
  border: 1px solid rgba(255,255,255,.1);
  width: 10em;
  height: 10em;
  transform: rotate(45deg);
  margin: 2em;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%);
}

/* 本文（背景の上に来るように） */
#yakumo .background-grad > *:not(#background) {
  position: relative;
  z-index: 1;
}

.yakumo-top-text,
.yakumo-profile,
.yakumo-tag,
.yakumo-movie {
  border: 5px solid;
  border-image: linear-gradient(135deg, #85cab3, #fff9e6, #85cab3) 1;
  background: linear-gradient(135deg, #85cab3 40%, #fff9e6, #85cab3 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

#yakumo .yakumo-text-background,
#yakumo .yakumo-text-background2 {
  background: linear-gradient(135deg, #000, #333333, #000);
  width: 30vw;
  border: 2px solid #000;
}

#yakumo .yakumo-movie-background {
  background: linear-gradient(135deg, #000, #333333, #000);
  width: 90vw;
  margin: 0 auto;
}

#yakumo .top-text,
#yakumo .basic-profile,
#yakumo .basic-tag,
#yakumo .basic-movie {
  animation: none;
  opacity: 1;
}

.yakumo-text-background2,
.yakumo-movie-background {
  opacity: 0;
}

.yakumo-text-background,
.yakumo-text-background2.animation-start.is-animated,
.yakumo-movie-background.animation-start.is-animated {
  animation: appearance 2s ease 0s 1 forwards;
}

@media screen and (max-width: 1025px) {
  #yakumo .yakumo-text-background,
  #yakumo .yakumo-text-background2 {
    width: 40%;
  }
}

@media screen and (max-width: 769px) {
  #yakumo .yakumo-text-background {
    width: 50%;
  }
}

@media screen and (max-width: 426px) {
  #yakumo .yakumo-text-background,
  #yakumo .yakumo-text-background2 {
    width: 90%;
  }
}