
midashi{
    overflow: visible;
}
sentaku{
    overflow: visible;
}

.parapara_list{
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}

.parapara_list li{
font-size:6em;
width:1em;
height: 1em;
display: block;

position: relative;

background-color: #fff;
border:0.04em solid #555;
border-radius: 0.1em;

margin: 0.1em auto;
padding:0.2em;
box-sizing: border-box;
overflow: hidden;

}

.parapara_list li>div{
width:100%;
height: 100%;
overflow: hidden;

}

.parapara_list li:nth-child(1) img{
width: 0.5em;
height: 0.5em;
position: relative;


}



.parapara_list li .edit{

/*
    content: "";
background: url(../images/edit.svg) rgba(255,255,255,0.9)  center no-repeat;

background-size: contain;
*/
width: 0.3em;
height: 0.3em;
position: absolute;
right: 0;
bottom: 0em;
z-index: 2;
border-radius: 0.1em;

}


.edit_panel{
    display: none;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.6);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.edit_panel.show{
    display: flex;
}

.edit_panel section{ 
    display: none;
    position: relative;
    width: 15em;
    height: 15em;

    background-color: #fff;
    border-radius: 0.4em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.edit_panel section.show{
    display: flex;
}

.edit_panel .edit_menu .anim{
position: relative;
}


.edit_panel .edit_menu .edit,
.edit_panel .edit_menu .rec,
.edit_panel .edit_menu .delete{
        border: 1px solid #cccccc;
    border-radius: 3em;
    width: 3em;
    height: 3em;
    padding:0.5em;
}

.edit_panel .edit_menu .anim.have_sound::after{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 2em;
    height: 2em;
    border-radius: 3em;

    content: "";
    background: url(../images/play.svg) 0 0 #fff no-repeat;
    background-size: 100%;

    
}




.edit_panel .edit_menu div:nth-of-type(1){
    height: 6em;
    width: 6em;
    overflow: hidden;
    margin: 2em auto ;
}


.edit_panel .edit_menu div:nth-of-type(2){
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.edit_panel .recording .message{
    text-align: center;
}



.edit_panel.show .wave{
width: 3em;
height: 3em;
}

.edit_panel.show .recording .btn_rec_wrapper{
    height: 5em;

}

.edit_panel.show .recording .btn_rec{

background: #f00;

width: 5em;
height: 5em;
padding:0.5em;
border-radius: 5em;

transition: all 0.2s linear;


}

.edit_panel.show .recording .btn_rec.in_recording{
background-color: #aaa;
}


.hide{

    width: 3em;
    height: 3em;
    padding:0.5em;
    border-radius: 1em;

    position: absolute;

    right: 0.5em;
    top: 0.5em;

}

.meter{
    padding: 0;
    width: 80%;
    height: 1em;
    border: 0.2em solid #000;
    background-color: #fff;
    margin:0.2em;
}

.meter .meter_inner{

    background-color: red;
    height: 100%;
    width:0%;

}



.meter .meter_inner.in_recording{
    transition: width 3s linear;

    width:100%;

}


    

