@charset "shift_jis";
/* CSS Document */


.ct_box .ct_inbox .btn_ct_inbox_back {
display: block;
position: absolute;
top:0;
left:1;
width: 41px;
height: 42px;

z-index: 10010;
}



.ct_box .ct_inbox {
background: url(../images/bg.jpg) no-repeat;
padding: 55px 0 0;
}



.ct_box .ct_inbox .instruction_txt {
display: block;
position: absolute;
top:0;
right:0;
z-index: 110;
}



.ct_box .ct_inbox .card_box {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}


.ct_box .ct_inbox .miss_box {
display: block;
position: relative;
width: 132px;
height: 30px;
margin-left: auto;
margin-right: auto;
}


.ct_box .ct_inbox .miss_box .miss01 {
position: absolute;
display: block;
width: 20px;
height: 20px;
top:5px;
left:53px;
z-index: 111;

width: 40px;
height: 40px;
top:-5px;
left:43px;
opacity: 0;
}
.ct_box .ct_inbox .miss_box .miss02 {
position: absolute;
display: block;
width: 20px;
height: 20px;
top:5px;
left:79px;
z-index: 112;

width: 40px;
height: 40px;
top:-5px;
left:69px;
opacity: 0;
}
.ct_box .ct_inbox .miss_box .miss03 {
position: absolute;
display: block;
width: 20px;
height: 20px;
top:5px;
left:104px;
z-index: 113;

width: 40px;
height: 40px;
top:-5px;
left:94px;
opacity: 0;
}

.ct_box .ct_inbox .miss_box .miss01.missShow {
animation: miss_show1 0.25s linear;
animation-fill-mode: forwards;
}
@keyframes miss_show1 {
  0% {
    width: 40px;
    height: 40px;
    top:-5px;
    left:43px;
    opacity: 0;
  }
  100% {
    width: 20px;
    height: 20px;
    top:5px;
    left:53px;
    opacity: 100;
  }
}

.ct_box .ct_inbox .miss_box .miss02.missShow {
animation: miss_show2 0.25s linear;
animation-fill-mode: forwards;
}
@keyframes miss_show2 {
  0% {
    width: 40px;
    height: 40px;
    top:-5px;
    left:69px;
    opacity: 0;
  }
  100% {
    width: 20px;
    height: 20px;
    top:5px;
    left:79px;
    opacity: 100;
  }
}

.ct_box .ct_inbox .miss_box .miss03.missShow {
animation: miss_show3 0.25s linear;
animation-fill-mode: forwards;
}
@keyframes miss_show3 {
  0% {
    width: 40px;
    height: 40px;
    top:-5px;
    left:94px;
    opacity: 0;
  }
  100% {
    width: 20px;
    height: 20px;
    top:5px;
    left:104px;
    opacity: 100;
  }
}


.ct_box .ct_inbox .txtimg_box {
display: block;
position: absolute;
width: 257px;
height: 105px;
right:-260px;
top:103px;
z-index: 1000;
text-align: center;
}

.ct_box .ct_inbox .txtimg_box .txt_clear,
.ct_box .ct_inbox .txtimg_box .txt_false {
display: none;
}

.ct_box .ct_inbox .txtimg_box .btn_again {
display: none;
cursor: pointer;
margin: 15px auto 0;
}



.ct_box .ct_inbox .card_box {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 26px;
}
.ct_box .ct_inbox .card_box .card_eachbox {
width: 82px;
height: 83px;
margin: 0 12px 6px;
position: relative;
}

.ct_box .ct_inbox .card_box .card_eachbox img.card0 {
position: absolute;
z-index: 121;
width: 0;
height:83px;
left:42px;
opacity: 0;
}

.ct_box .ct_inbox .card_box .card_eachbox img.card_each {
position: absolute;
z-index: 120;
opacity: 1;
}



/* カード表示 */

.ct_inbox .card_eachbox .cardHide {
animation: card_hide 0.5s linear;
animation-fill-mode: forwards;
}

@keyframes card_hide {
  0% {
    width: 82px;
    height: 83px;
    left: 0;
    opacity: 1;
  }

  50% {
    width: 0px;
    height: 83px;
    left: 42px;
    opacity: 1;
  }

  51% {
    opacity: 0;
  }

  100% {
    width: 0px;
    height: 83px;
    left: 42px;
    opacity: 0;
  }
}


/* カード表示 */

.ct_inbox .card_eachbox .cardShow {
animation: card_show 0.5s linear;
animation-fill-mode: forwards;
}

@keyframes card_show {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    width: 0px;
    height: 83px;
    left: 42px;
  }

  100% {
    width: 82px;
    height: 83px;
    left: 0px;
    opacity: 1;
  }
}


