@charset "UTF-8";


@font-face{
    src: url(../font/font2.ttf);
    font-family: "style";
}

.font_style{
    font-family: "style";
    font-size: 30px;
}

body{
    padding:0;
    margin: auto;
    font-family: sans-serif;
    color: gray;
}

#bg{
    z-index: -1;
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../image/bg_profile.jpg);
}

#profile{
    display: block;
    width: 100%;
    height: auto;
    font-size: 14px;
    color: white;
    font-weight: 400;
    animation-name: first_fadain;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@keyframes first_fadain{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#profile_in{
    width: 100%;
    max-width: 420px;
    margin: auto;
    height: auto;
    box-sizing: border-box;
    padding: 20px;
}

li{
    font-size: 12px;
}

.no_disc{
    list-style: none;
}

#back_btn{
    width: 150px;
    height: 42px;
    margin-top: 50px;
    box-sizing: border-box;
    border-bottom: solid 1px white;
    text-align: center;
    letter-spacing: 5px;
    font-size: 18px;
    line-height: 42px;
    font-family: "style";
}

a{
    text-decoration: none;
    color: inherit;
}

#sq_block{
    width: 100%;
    height: 40px;
    text-align: right;
    box-sizing: border-box;
    padding-right: 20px;    
}

#sq_box{
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: solid 1px white;
    position: relative;
    display: inline-block;

}