@charset "utf-8";

.infobtns_btn:hover {
  transition: all .6s;
  opacity: 0.4;
}

/* ------------------------------ underline ------------------------------ */

.underline {
  position: relative;
  z-index: 1;
}
.underline:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 15px;
  background: -webkit-repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
  z-index: -1;
  transition: all 0.8s;
}
.underline.isActive:after {
  width: 100%;
}

/* ------------------------------ spread ------------------------------ */

  .btn_animation {
    margin: 0 auto;
    max-width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 20px;
    -webkit-animation: btnwrapanime 11s infinite;
    animation: btnwrapanime 1.5s infinite;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 188, 0, 1);
    box-shadow: 0 0 0 0 rgba(0, 188, 0, 1); }
  @-webkit-keyframes btnwrapanime {
    70% {
      -webkit-box-shadow: 0 0 0 50px rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 50px rgba(233, 30, 99, 0); }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); } }
  @keyframes btnwrapanime {
    70% {
      -webkit-box-shadow: 0 0 0 50px rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 50px rgba(233, 30, 99, 0); }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); } }
    @media (max-width: 750px) {
      @-webkit-keyframes btnwrapanime {
        70% {
          -webkit-box-shadow: 0 0 0 25px rgba(233, 30, 99, 0);
          box-shadow: 0 0 0 25px rgba(233, 30, 99, 0); }
        100% {
          -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
          box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); } }
      @keyframes btnwrapanime {
        70% {
          -webkit-box-shadow: 0 0 0 25px rgba(233, 30, 99, 0);
          box-shadow: 0 0 0 25px rgba(233, 30, 99, 0); }
        100% {
          -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
          box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); } } }

/* ------------------------------ アニメスケール ------------------------------ */

@keyframes animScale {
    0% {
        transform: scale(0.8, 0.8);
    }

    5% {
        transform: scale(1.2, 1.2);
    }

    10% {
        transform: scale(1, 1);
    }

    15% {
        transform: scale(1.1, 1.1);
    }

    20% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
    }
}

/* ------------------------------ 拡大・縮小 ------------------------------ */

.keyframe5 {
    animation-name: anim_sc;
    transform: scale(0.95, 0.95);
}

@keyframes anim_sc {
    100% {
        transform: scale(1, 1);
    }
}

.animation {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 0.7s;
}

/* ------------------------------ 点滅 ------------------------------ */

.flash {
    animation: flash 1.5s linear infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* ------------------------------ 装飾 ------------------------------ */

.shade {
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.1)); /*影*/
}

/* ------------------------------ アニメーション(pulse) ------------------------------ */

@keyframes anime {
    0% {
        transform: scale(.95);
        opacity: 1
    }

    90% {
        opacity: .1
    }

    to {
        transform: scale(1.2, 1.5);
        opacity: 0
    }
}

.pulse {
    position: relative;
    width: 1000px;
    margin: 0 auto;
    transition: .2s;
    max-width: 100%;
}

.pulse:before {
    content: "";
    position: absolute;
    width: 87%;
    height: 80%;
    top: 8%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    background: #F9FF00;
    border: 1px solid #FBB03B;
    transform: translate3d(0, 0, 0);
}

.pulse:after {
    content: "";
    position: absolute;
    width: 87%;
    height: 80%;
    top: 8%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    background: #F9FF00;
    border: 1px solid #FBB03B;
    transform: translate3d(0, 0, 0);
}


.pulse:before {
    animation: anime 1.5s ease-out infinite;
}

.pulse:after {
    animation: anime 2s ease-out 1s infinite;
}

.pulse span {
    display: block;
    position: relative;
    font-family: sans-serif;
}

.pulse span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 0;
}

/* ------------------------------ アニメーション(fuwafuwa) ------------------------------ */


.fuwafuwa {
    -webkit-animation-name: fuwafuwa;
    /* fuwafuwaっていうアニメーションをしてね！ */
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    /*-webkit-animation-direction:alternate;*/
    -webkit-animation-timing-function: ease;
    -moz-animation-name: fuwafuwa;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    /*-moz-animation-direction:alternate;*/
    -moz-animation-timing-function: ease;
}

@-webkit-keyframes fuwafuwa {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, -15px);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes fuwafuwa {
    0% {
        -moz-transform: translate(0, 0);
    }

    50% {
        -moz-transform: translate(0, -15px);
    }

    100% {
        -moz-transform: translate(0, 0);
    }
}

.fuwafuwa_left {
    -webkit-animation-name: fuwafuwa_left;
    /* fuwafuwaっていうアニメーションをしてね！ */
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    /*-webkit-animation-direction:alternate;*/
    -webkit-animation-timing-function: ease;
    -moz-animation-name: fuwafuwa_left;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    /*-moz-animation-direction:alternate;*/
    -moz-animation-timing-function: ease;
}

@-webkit-keyframes fuwafuwa_left {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-15px, 0);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes fuwafuwa_left {
    0% {
        -moz-transform: translate(0, 0);
    }

    50% {
        -moz-transform: translate(-15px, 0);
    }

    100% {
        -moz-transform: translate(0, 0);
    }
}

.fuwafuwa_right {
    -webkit-animation-name: fuwafuwa_right;
    /* fuwafuwaっていうアニメーションをしてね！ */
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    /*-webkit-animation-direction:alternate;*/
    -webkit-animation-timing-function: ease;
    -moz-animation-name: fuwafuwa_right;
    -moz-animation-duration: 1.5s;
    -moz-animation-iteration-count: infinite;
    /*-moz-animation-direction:alternate;*/
    -moz-animation-timing-function: ease;
}

@-webkit-keyframes fuwafuwa_right {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(15px, 0);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@-moz-keyframes fuwafuwa_right {
    0% {
        -moz-transform: translate(0, 0);
    }

    50% {
        -moz-transform: translate(15px, 0);
    }

    100% {
        -moz-transform: translate(0, 0);
    }
}

/* ------------------------------ アニメーション(bound) ------------------------------ */

.bound {
    animation: bound 3s infinite;
}

@keyframes bound {
    0% {
        transform: translateY(0)
    }

    5% {
        transform: translateY(0)
    }

    10% {
        transform: translateY(0)
    }

    20% {
        transform: translateY(-25px)
    }

    25% {
        transform: translateY(0)
    }

    30% {
        transform: translateY(-15px)
    }

    50% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(0)
    }
}

/* ------------------------------ アニメーション(fade in) ------------------------------ */

.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1000ms;
}

.fadein_right {
    opacity: 0;
    transform: translate(100px, 0);
    transition: all 1000ms;
}

.fadein_left {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: all 1000ms;
}

.fadein.scrollin,
.fadein_right.scrollin,
.fadein_left.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/* ------------------------------ アニメーション(fade in2) ------------------------------ */


.fadeIn {
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}



/* ------------------------------ アニメーション(round) ------------------------------ */

.animation_rotation {
    animation: r1 2s linear infinite;
}

@keyframes r1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ------------------------------ アニメーション(reflection) ------------------------------ */

   .animation{
   	animation-timing-function: ease-in-out;
   	animation-iteration-count: infinite;
   	animation-direction: alternate;
   	animation-duration: 1s;
   }

   .reflection{
   display:inline-block;
   position:relative;
   overflow:hidden;
   margin: 0 auto;
   border-radius: 10px;
   }

   .reflection:after {
  margin: 0 auto;
   content:"";
   height:100%;
   width:30px;
   position:absolute;
   top:-180px;
   left:0;
   background-color: #fff;
   opacity:0;
   -webkit-transform: rotate(45deg);
   -webkit-animation: reflection 2s ease-in-out infinite;
   }

   @keyframes reflection {
   0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
   80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
   81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
   100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
   }
