@charaset "UTF-8";
body {
    margin: 0px;
    display: flex;
    flex-flow: column;
}
#header {
    font-size: 50px;
    width: auto;
    height: 200px;
}
#main {
    width : 740px;
    outline: 3px solid;
    outline-color: rgba(127,127,127,50);
    margin-top: 20px;
    margin-bottom: 20px;
}
#rank_select{
    text-align: center;
    width: 100px;
    margin-right: 320px;
    margin-left: 320px;
    font-size: 18px;
}
#gacha_div {
    width: 700px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}
#result_div {
    padding:20px;
    margin-top:20px;
}
#total_div {
    font-size: 25px;
    padding: 20px;
    margin: 20px;
}
#urset_div{
    min-height: 280px;
    margin: 20px;
    padding: 20px;
}
#site_ul{
    margin: 20px;
}
#rightsidebar {
    width: 280px;
    margin: 20px;
    padding:20px;
}
#leftsidebar {
    width: 300px;
    margin: 20px;
    padding:20px;
}
#footer {
    width: auto;
    height: 200px;;
}
#pagetop_btn{
    cursor:pointer;
    width: 75px;
    height: 75px;
    background-color: rgba(0,0,0,0);
    padding: 0px;
    border: 0px;
    border-radius: 36.5px;
    position: fixed;
    bottom: 50px;
    right: 50px;
}
#pagetop_btn_img{
    height: 75px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.title{
    font-size:24px;
    margin : 20px;
}
.flex {
    display: flex;
}
.flex_SA {
    display: flex;
    justify-content: space-around;
}
.flex_column {
    display: flex;
    flex-flow: column;
}
.flex_start {
    display: flex;
    justify-content: start;
}
.margin_5px{
    margin: 5px;
}
.center_20px{
    font-size: 20px;
    text-align: center;
}
.center_24px {
    font-size:24px;
    text-align:center;
}
.box_1{
    background-color: rgba(230,230,230,75);
    outline: 3px solid;
    outline-color: rgba(127,127,127,50)
}
.table{
    text-align: center;
    margin: auto;
}
.table_outline1{
    outline: 1px solid;
    outline-color: rgba(230,230,230,75);
}
.table_outline2{
    outline: 1px solid;
    outline-color: rgba(27,127,127,75);
}

.explanation_div{
    font-size: 18px;
    margin-left: 20px;
    margin-right: 20px;
}
.prob_ul{
    font-size: 22px;
    width: 250px;
}
.compass_button {
    display: block;
    cursor:pointer;
    font-size: 25px;
    color: white;
    width: 200px;
    height: 75px;
    background:repeating-linear-gradient(
        -45deg,
        rgba(127,127,127,50),
        rgba(127,127,127,50) 1px,
        #000 0,
        #000 10px
    );
    outline: 5px solid;
    outline-color: rgba(127,127,127,50);
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.btn_incolor{
    font-size: 20px;
    background-color: rgba(127,127,127,50);
}
.card{
    padding-top:16px;
    outline : 5px solid;
    outline-color: rgba(230,230,230,75);
}
.card_img {
    height: 200px;
    object-fit: contain;
}
.cardname_p {
    text-align: center;
    width: 300px;
}
.limit_p{
    text-align: center;
    width: 155px;
}
.table_prob{
    width: 125px;
    background-color: white;
}
.table_rarity {
    width: 125px;
    background-color: #cccccc;
}
.table_sheet {
    width: 400px;
    background-color: white;
}
.table_ratio {
    width: 135px;
    background-color: white;
}
.table_head {
    color: white;
    background-color: #505050;
}
.Rcard{
    background-color: #eee;
}
.SRcard {
    background-color: #eea;
}
.URcard {
    background-color: #eaa;
}
site_li{
    display: table;
}
.set_icon{
    height: 40px;
    padding: 5px;
}
.site_icon{
    width: 40px;
    outline: 1px solid;
    object-fit: contain;
}
.site_p{
    padding: 5px;
    line-height: 40px;
    text-decoration: none;
    flex-grow: 1;
}

#pagetop_btn_img.fadein {
  opacity: 1;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

ul{
    padding: 0px;
}
li{
    list-style:none;
}