@charset "utf-8";
/* CSS Document */

.main__firstview--participant {
    right: -30px;
    bottom: -50px;
}
.main__firstview--participant {
    background: rgb(21,206,249);
    background: linear-gradient(90deg, rgba(21,206,249,1) 35%, rgba(33,48,234,1) 100%);
    height: 50px;
    transform: skewX(330deg);
}
.main__firstview--participant::before {
    content: "Check!";
    position: absolute;
    top: -25px;
    left: 30px;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
     -webkit-text-stroke: .8px rgb(21,206,249);
    text-stroke: .8px rgb(21,206,249);
    transform: skewX(-330deg);
}
.main__firstview--participant::after {
    content:"";
    background-image: url("../img/finger-img.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 50px;
    position: absolute;
    top: -20px;
    left: 5px;
    display: block;
    animation: .5s bound-anim ease-in infinite alternate;
    transform: skewX(-330deg);
}
.main__firstview--participant02 {
    background: rgb(21,206,249);
    background: linear-gradient(90deg, rgba(21,206,249,1) 35%, rgba(33,48,234,1) 100%);
    height: 50px;
    transform: skewX(330deg);
}
.main__firstview--participant02::before {
    content: "Check!";
    position: absolute;
    top: -25px;
    left: 30px;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
     -webkit-text-stroke: .8px rgb(21,206,249);
    text-stroke: .8px rgb(21,206,249);
    transform: skewX(-330deg);
}
.main__firstview--participant02::after {
    content:"";
    background-image: url("../img/finger-img.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 50px;
    position: absolute;
    top: -20px;
    left: 5px;
    display: block;
    animation: .5s bound-anim ease-in infinite alternate;
    transform: skewX(-330deg);
}


.main__firstview--participant a {
    line-height: 50px;
    font-size: 1.8rem;
    transform: skewX(-330deg);
}
.main__firstview--participant02 a {
    line-height: 50px;
    font-size: 1.8rem;
    transform: skewX(-330deg);
}

.main__firstview--participant02.move {
    right: -30px;
}

/*** 全文字にアニメーションを適用 ***/
.bound span{
    display: inline-block; /*横並びにしつつアニメーションを適用*/
    animation: .5s bound-anim ease-in infinite alternate;
}

@keyframes bound-anim{
    0%{
        transform: skewX(-330deg) translateY(0px);
    }
    100%{
        transform: skewX(-330deg) translateY(4px);
    }
}
/*** 各文字のスタート時間をずらす ***/
/* 1文字目 */
.bound span:nth-child(1){
  animation-delay: 0;
}
/* 2文字目 */
.bound span:nth-child(2){
  animation-delay: 0.2s;
}
/* 3文字目 */
.bound span:nth-child(3){
  animation-delay: 0.4s;
}
/* 4文字目 */
.bound span:nth-child(4){
  animation-delay: 0.6s;
}
.bound span:nth-child(5){
  animation-delay: 0.8s;
}

@media screen and (max-width: 1100px){
    .main__firstview--participant {
        display: none;
    }
    .main__firstview--participant02{
        left: -30px;
        bottom: 100px;
    }
    .main__firstview--participant02.move{
        left: -30px;
        bottom: 100px;
    }
    .main__firstview--participant02 a {
        padding-right: 20px;
        text-align:right; 
    }
    .main__firstview--participant02::after {
        left: 30px;
    }
    .main__firstview--participant02::before {
        left: 50px;
    }
}
@media screen and (max-width: 750px){
    .main__firstview--participant02 a {
        letter-spacing: 0.15rem;
        line-height: 60px;
    }
    .main__firstview--participant02::after {
        left: 15px;
    }
    .main__firstview--participant02::before {
        content: "Check!";
        top: -20px;
        left: 40px;
        font-size: 2.5rem;
    }
    .main__firstview--participant02 {
        width: 155px;
        height: 60px;
        left: -20px;
    }
    .main__firstview--participant02.move {
        left: -20px;
    }
}

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
 
      .main__firstview--participant {
        display: none;
      }
      .main__firstview--participant02{
          left: -15px;
          bottom: 90px;
      }
      .main__firstview--participant02.move{
        left: -15px;
      }
      .main__firstview--participant02 a {
          padding-right: 20px;
          text-align: center;
      }
      .main__firstview--participant02::after {
        left: 30px;
      }
      .main__firstview--participant02::before {
        left: 50px;
      }
      
}