@charset "UTF-8";

.box{
    box-sizing: border-box;

}

div{
    box-sizing: border-box;
}
.t_al_c{
    text-align: center;
}
.item_box{
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: auto;
    font-size: 0;
    padding: 5px;
    margin: auto;
    border: solid 1px black;
}
.item_box .check_area{
    padding-top: 20px;
    display: inline-block;
    width: 100%;
    height: 50px;
    text-align: center;
}
.check_area input[type="radio"]{
    width: 100%;
    max-width: 20px;
    height: 100%;
    max-height: 20px;
    margin: auto;
}

input[type="radio"]:checked{
    box-shadow: 0 0 0 2px blue;
}

input[type="radio"]:checked + label{
    color:darkblue;
    border: solid 1px black;
}

.item_box .img_area{
    display: inline-block;
    transition-duration: 1s;
    width: 250px;
    height: 250px;
    padding: 10px;
}
.img_area label{
    width: 100%;
    height: 100%;
}


.img_area img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.submit_block{
    position: fixed;
    display: block;
    width: 100%;
    height: 70px;
    text-align: center;
    left:0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: white;
    border: solid 1px black;
}
.submit_block input[type="submit"]{
    width: 100%;
    height: 100%;
    font-size: 24px;
}

.padd_area{
    width: 100%;
    height: 100px;
    display: block;
}



#upload_wrapper{
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: auto;
    height: auto;
}

#upload_wrapper #file_form{
    width: 100%;
    height: 50px;
    font-size: 20px;
}

#upload_wrapper input[type="text"]{
    width: 90%;
    height: 30px;
}

#upload_wrapper input[type="submit"]{
    width: 100%;
    height: 40px;
    margin: 20px auto;
    font-size: 20px;
}


#upload_wrapper input[type="reset"]{
    width: 100%;
    height: 40px;
    margin: 20px auto;
    color: red;
    font-size: 20px;
}


#upload_wrapper label{
    padding: 2px 20px;
    margin-left:20px ;
}


.update_box{
    display: inline-block;
    box-sizing: border-box;
    border: solid 1px gray;
    width: 100%;
    max-width: 300px;
    height:auto;
    font-size: 0;
    padding: 5px;
    margin: 10px 10px;
}

.update_box .img_area{
    display: inline-block;
    transition-duration: 1s;
    width: 250px;
    height: 250px;
    padding: 10px;
}

.info_box{
    box-sizing: border-box;
    padding:10px;
    font-size: 14px;
    text-align: left;
    margin: auto;
    width: 100%;
}



#update_modal{
    width: 150px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    margin: auto;
    left:0;
    right: 0;
    top:0;
    bottom:0;
    background-color: black;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    border: solid 1px white;
    animation-name: updateModal;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}

@keyframes updateModal{
    0%{

    }
    90%{
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(90deg);
    }
}



#login_wrapper{
    width: 100%;
    max-width: 420px;
    height: auto;
    text-align: center;
    margin: auto;
}

#login_wrapper #id,#login_wrapper #pass,#login_wrapper #enter{

    width: 100%;
    height: 50px;
    margin: 20px auto;
    box-sizing: border-box;
    padding:5px;
    font-size: 16px;

}

#result_box{
    width: 100%;
    max-width: 420px;
    height: auto;
    text-align: center;
    margin: auto;
}


