html,body{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  /* cursor: none; */
}
html{
  font-size: 0px;
  background-color: #fff;
}
a{
  text-decoration: none;
}

#all_wrap{
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  min-width: 1200px;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: hidden;
  /*
  background:repeating-linear-gradient(
  -45deg,
  #ffffff,
  #ffffff 7px,
  #fffbf0 0,
  #fffbf0 14px
  );
  */
  background-color: #ffffff;
}

#story{
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 500px;
  padding: 0;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-position: center top;
}

#story > .headerBG{
  position: relative;
  width: 100%;
  height: 370px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
}

#story > .storyWrap{
  display: block;
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding: 0;
}

.storyWrap > .story01{
  position: relative;
  width: 1010px;
  height: 376px;
  left: 0;
  right: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding: 0;
  text-align: center;
}
.storyWrap > .story02{
  position: relative;
  width: 835px;
  height: 379px;
  left: 0;
  right: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding: 0;
  text-align: center;
}
.storyWrap > .story03{
  position: relative;
  width: 1010px;
  height: 360px;
  left: 0;
  right: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  padding: 0;
  text-align: center;
}
.storyWrap > .story01 > div,
.storyWrap > .story02 > div,
.storyWrap > .story03 > div{
  position: absolute;
  width: 3px;
  height: calc(100% + 6px);
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  top: 0;
  left: -3px;
  overflow: hidden;
  transition-duration: 0.8s;
  transition-delay: 0.2s;
}
.storyWrap > .story01.is_active > div,
.storyWrap > .story02.is_active > div,
.storyWrap > .story03.is_active > div{
  width: calc(100%);
}
.storyWrap > .story01 > div > div,
.storyWrap > .story02 > div > div,
.storyWrap > .story03 > div > div{
  position: absolute;
  width: calc(100%);
  height: 100%;
  margin: 0;
  padding: 0;
  top: 3px;
  left: 0;
  border-right: solid 3px #2323ff88;
  box-sizing: border-box;
  background-color: transparent;
  border-image: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-image-slice: 1 1 1 1;
  animation-name: hueAnim;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  opacity: 0.5;
  filter: blur(3px);
  transition-duration: 1s;
  transition-delay: 1s;
}
.storyWrap > .story01.is_active > div > div,
.storyWrap > .story02.is_active > div > div,
.storyWrap > .story03.is_active > div > div{
  opacity: 0;
  /* filter: blur(3px); */
}
.storyWrap > .story01 > div > img,
.storyWrap > .story02 > div > img,
.storyWrap > .story03 > div > img{
  position: absolute;
  width: auto;
  height: auto;
  margin: auto;
  padding: 0;
  top: 3px;
  left: 3px;
  right: 0;
}
@-webkit-keyframes hueAnim {
  0% {
		filter: hue-rotate(0deg);
	}
	50% {
		filter: hue-rotate(0deg);
	}
	100% {
    filter: hue-rotate(360deg);
	}
}
