@charset "UTF-8";

#conte01,
#conte03{
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

#stroke01{
	position: absolute;
	top: 30%;
	width: 110%;
	z-index: -1;
}
#stroke02{
  position: absolute;
  top: 5%;
  z-index: -1;
}

.full-width-svg {
  width: 120%;
  height: auto;
  display: block;
}
.stroke-path {
  fill: none;
  stroke:#8fc31f;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  stroke-miterlimit: 10;
  stroke-width: 5px;
}

.stroke-path02 {
  fill: none;
  stroke:#8fc31f;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  stroke-miterlimit: 10;
  stroke-width: 10px;
}

.animate-stroke {
  animation: stroke-written 5s ease forwards;
}

@keyframes stroke-written {
  to {
    stroke-dashoffset: 0;
  }
}


.r-to-l{
	animation: scroll-left 18s linear infinite;
}
@keyframes scroll-left {
  0% {
  	top: 40%;
    left: 100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
    top: 10%;
  }
  100% {
  	opacity: 0;
  	top: -40%;
    left: -100%;
  }
}


.r-to-l-slow{
	animation: r-to-l-slow 30s linear infinite;
}
@keyframes r-to-l-slow {
  0% {
    left: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
  	opacity: 0;
    left: -100%;
  }
}


.r-to-l-slow02{
	animation: r-to-l-slow02 34s linear infinite;
}
@keyframes r-to-l-slow02 {
  0% {
    left: 100%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
  	opacity: 0;
    left: 30%;
  }
}

/*********/
@keyframes bounceArch {
  0% {
  	opacity: 0;
  }
  15% {
    transform: translate(120px, -30px); /* 高いアーチ */
    opacity: 0;
  }
  45% {
    transform: translate(-0px, 100px); /* 着地（1バウンド目）*/
    opacity: 1;
  }
  80% {
    transform: translate(-45px, 10px); /* 小さく跳ね返る */
  }
  85% {
    transform: translate(-57px, 20px); /* 再着地 */
    opacity: 1;
  }
  90% {
    transform: translate(-60px, 40px); /* 滑りながら終了位置へ */
    opacity: 0;
  }
  100% {
    transform: translate(120px, -30px); /* 高いアーチ */
    opacity: 0;
  }
}
.bounce-mountain {
  animation: bounceArch 2.5s ease-in-out infinite;
}


@keyframes kumo02 {
  0% {
    right: 20%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
  	opacity: 0;
    right: 40%;
  }
}

@keyframes bird02 {
  0% {
  	top: 30%;
    left: 100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
  	top: -30%;
  	opacity: 0;
    left: 50%;
  }
}

.img.leaf{
  overflow: hidden;
}

.leaf img {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 0.8s ease;
}

.leaf.on img {
  opacity: 1;
  transform: translate(0, 0);
  animation: grow 1s ease-in-out forwards;
}

.leaf.on img:nth-child(2) {
  animation-delay: 0.3s;
}

.leaf.on img:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes grow {
  from {
    transform: translate(0, 100px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0px);
    opacity: 1;
  }
}




@media screen and (max-width: 767px) {

  #stroke01{
    top: 72%;
  }




}









