body{
    background-color: #e7ecef !important;
}
#footer{
    background: #e2e2e2;
}

.index #index-video::before{
  content: none !important;
}

.index #index-video{
  margin-top: 0 !important;
}

#index-video .video_box img{
  width: 100%;
}



.snow {
  z-index: 100;
  /*雪の色*/
  color: #fff;
  /*雪の大きさ*/
  font-size: 10px;
  /*初期位置*/
  position: fixed;
  top: -5%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
  5vw   -100px 2px,
  10vw  -400px 3px,
  20vw  -500px 4px,
  30vw  -580px 1px,
  39vw  -250px 2px,
  42vw  -340px 5px,
  56vw  -150px 2px,
  63vw  -100px 0,
  78vw  -220px 4px,
  86vw  -320px 9px,
  94vw  -170px 7px;
  /*雪アニメーション1*/
  animation: roll 5s linear infinite;
}
  /*2つめの雪アニメーション*/
.snow2nd{
  text-shadow:
  1vw   -30px 15px,
  7vw  -500px 8px,
  18vw  -200px -12px,
  28vw  -380px 13px,
  34vw  -150px 12px,
  38vw  -140px -14px,
  50vw  -250px 11px,
  55vw  -150px -13px,
  75vw  -280px 16px,
  83vw  -120px 0,
  89vw  -70px -12px;
  animation: anim 5s linear infinite;
  animation-delay: 2s;
  z-index: 10;
}

.snow3ed{
  /*雪を適当な幅で降らせる*/
  text-shadow:
  3vw   -130px 5px,
  13vw  -165px 4px,
  25vw  -560px 1px,
  35vw  -510px 6px,
  45vw  -200px 4px,
  58vw  -100px 1px,
  65vw  -115px 3px,
  80vw  -450px 2px,
  90vw  -354px 5px,
  98vw  -218px 8px;
  /*雪アニメーション2*/
  animation: roll2 4s linear infinite;
}

@keyframes roll {
    0% {transform:rotate(0deg);}
   90% {opacity:1;}
   100% {transform:rotate(20deg); top:100%; opacity:0;}
}
@keyframes roll2 {
  10% {transform:rotate(0deg);}
 60% {opacity:1;}
 100% {transform:rotate(30deg); top:100%; opacity:0;}
}
@keyframes anim {
  100% {color:transparent; top:150%;}
}
/* 雪をJSにした場合 */

#particles-js{ 
  position:fixed;/*描画固定*/
  z-index:1;/*描画を一番下に*/
  width: 100%;
  height: 100%;
  top:0;
  /*background-color:#070A31;背景色*/
}




/* サンタの動き */

/* #index_lead h2{
    padding-bottom: 0;
} */

#contents{
    position: relative;
}

.wrap.santa_wrap{
  position: relative;
  margin:0 auto;
}

.fadein_item{
    opacity:0;
}
.index #lead .wrap{
  position: relative;
}

.slide-in-bottom {
    display: block;
    position: absolute;
  right: calc(50% - 530px);
    top: -147px;
	-webkit-animation: slide-in-bottom 2s cubic-bezier(0.680, -0.350, 0.265, 1.550) both;
	        animation: slide-in-bottom 2s cubic-bezier(0.680, -0.350, 0.265, 1.550) both;
    z-index: 1;
}
@media (max-width: 1340px) {
  .wrap.santa_wrap{
    padding-top: 40px;
  }
  .slide-in-bottom {
    /* max-width: 381px;
    min-width: 119px;
    width: 25%; */
    right: 10%;
    top:-60px;
  }
}
@media (max-width: 768px) {
  .wrap.santa_wrap{
    padding-top: 70px;
  }
  .slide-in-bottom {
    right: 8%;
    top: 5px;
    z-index: 1;
    width: 120px;
    height: auto;
  }
}


/* ==========================
  押せるオーラ
========================== */
.wrapperImg{
  position: relative;
  display: block;
}
.wrapperImg:before, .wrapperImg:after {
  content: "";
  position: absolute;
  z-index: -10;
  height: 120px;
  width: 130px;
  top: calc(50% - 70px);
  left: calc(50% - 65px);
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.5);
  transform: translate3d(0,0,0);
}
.wrapperImg:before {
  animation: anime 5s ease-out infinite;
}
.wrapperImg:after {
 animation: anime 5s ease-out 1s infinite;
}


@keyframes anime{
0%{transform:scale(.90); opacity:1}
90%{opacity:.1}to{transform:scale(1.2,1.5); opacity:0}
}

/* ----------------------------------------------
 * Generated by Animista on 2023-11-24 18:34:23
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(200px);
              transform: translateY(200px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(200px);
              transform: translateY(200px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  