@charset "UTF-8";

p.stroke{
 color: rgba(255,255,255,1.0);
 font-size: 50px;
 line-height: 1;
}

p.stroke span {
 color: transparent;
 animation: blur 5s both ease-in-out;
 -webkit-animation: blur 5s both ease-in-out;
 margin-left: -10px;
}

p.stroke span:nth-child(1) {
 animation-delay: 0.1s;
 -webkit-animation-delay: 0.1s;
 color: rgba(255,255,255,1.0);
}
p.stroke span:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  color: rgba(255,255,255,1.0);
}
p.stroke span:nth-child(3) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
   color: rgba(255,255,255,1.0);
}
p.stroke span:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
    color: rgba(255,255,255,1.0);
}
p.stroke span:nth-child(5) {
 animation-delay: 1.5s;
 -webkit-animation-delay: 1.5s;
 font-size: 130px;
 vertical-align: sub;
   color: rgba(255,255,255,1.0);
}
p.stroke span:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
    color: rgba(255,255,255,1.0);
}
p.stroke span:nth-child(7) {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
    color: rgba(255,255,255,1.0);
}

@keyframes blur {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #fff;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #fff;
  }
  80% {
    text-shadow: 0 0 0px #fff;
  }
  85% {
    opacity: 1;
  }
  95% {
    text-shadow: 0 0 90px #fff;
  }
  100% {
    text-shadow: 0 0 100px #fff;
    opacity: 1;
  }
}

@-webkit-keyframes blur {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  5% {
    text-shadow: 0 0 90px #fff;
  }
  15% {
    opacity: 1;
  }
  20% {
    text-shadow: 0 0 0px #fff;
  }
  80% {
    text-shadow: 0 0 0px #fff;
  }
  85% {
    opacity: 1;
  }
  95% {
    text-shadow: 0 0 90px #fff;
  }
  100% {
    text-shadow: 0 0 100px #fff;
    opacity: 1;
  }
}



.fade-in{ 
  opacity:0;
  animation-name:slide01;
  animation-duration:4s; 
  animation-fill-mode: forwards;
}
@keyframes slide01 {
0% {
 opacity: 0.1;
 transform: translateX(-50px);
}
50%{
  opacity: 1;
  transform: translateX(0);
}
100% {
opacity:1;
transform: translateX(0);
} 
}

.fade-in2{
	opacity:0;
	animation-name:slide02;
	animation-duration:5s; 
	animation-fill-mode: forwards;
}
@keyframes slide02 {
0% {
 opacity: 0.1;
 transform: translateX(-50px);
}
50%{
	opacity: 1;
	transform: translateX(0);
}
100% {
	opacity:1;
	transform: translateX(0);
} 
}

.fade-in3{
	opacity:0;
	animation-name:slide03;
	animation-duration:7s; 
	animation-fill-mode: forwards;
}
@keyframes slide03 {
0% {
 opacity: 0.1;
 transform: translateX(-50px);
}
50%{
	opacity: 1;
	transform: translateX(0);
}
100% {
	opacity:1;
	transform: translateX(0);
} 
}

.fadeUp {
  animation-name: fadeUpAnime;/*アニメーションの定義名*/
  animation-duration:1s;/*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
  opacity:0;
}

/*アニメーションの開始から終了までを指定する*/
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(20px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.change-time05{
  animation-duration: 0.5s;
}

.change-time1{
  animation-duration: 1s;
}

.change-time15{
  animation-duration: 1.5s;
}

.change-time2{
 animation-duration: 2s;
}

.change-time25{
animation-duration: 2.5s;
}

@media screen and (max-width: 1000px) {
  .points{
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 20px;
  }
}

.link-color a{
  color: black;
  text-decoration: underline;
}


.fade-in{ 
  opacity:0;
  animation-name:slide01;
  animation-delay: 1s;
  animation-duration:1s; 
  animation-fill-mode: ease-in-out;
}
@keyframes slide01 {
0% {
 opacity:0;
}
100% {
 opacity:1;
} 
}

.fade-in2{
  opacity:0;
  animation-name:slide02;
  animation-delay: 1s;
  animation-duration:1s; 
  animation-fill-mode: ease-out;
}
@keyframes slide02 {
0% {
 opacity: 0;
}
100% {
	opacity:1;
} 
}

.fade-in3{
  opacity:0;
  animation-name:slide03;
  animation-delay: 1s;
  animation-duration:1s; 
  animation-fill-mode: ease-out;
}
@keyframes slide03 {
0% {
 opacity: 0;
}
100% {
	opacity:1;
} 
}

.scrolldown2 {
  position: absolute;
  bottom:0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.scrolldown2 span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 25px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 30px;
  background: #eee;
}

@media screen and (max-width: 960px) {
.scrolldown2,
.scrolldown2:before,
.scrolldown2:after{
  background:rgba(0,0,0,0.7);
}
.scrolldown2 span{
  color: rgba(0,0,0,0.7);
}
}