/***** タグ系 *****/
body{
    background-color: #111;
}
h1{
    height: 38px;
    margin: 10px 0px;
    font-size: 32px;
    color: #d1d1d1;
    border-bottom: solid 8px #d1d1d1;
}
/***** クラス *****/
.board{
    width: 100%;
    margin: 1px;
    flex-direction: column;
    color: #ffffff;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 20vh;
}
.box{
    flex-direction: row;
}
.grid-list{
    width: 100%;
    max-width: 600px;
    padding: 6px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2px;
    color: #ffffff;
    border: solid 1px #666666;
    background-color: #222222;
}
.grid-list > input{
    width: 100px;
    height: 30px;
    color: #ffffff;
    border: solid 1px #666666;
    background-color: #111111;
}
.status{
    width: 100%;
    max-width: 600px;
    margin: 2px;
    padding: 6px;
    color: #ffffff;
    border: solid 1px #666666;
    background-color: #222222;
    justify-content: space-between;
    align-items: center;
}
.status > div{
    width: 30%;
    justify-content: center;
}
.status > input{
    height: 30px;
    margin: 0px;
    padding: 4px 8px;
    color: #ffffff;
    background-color: #111111;
    text-align: center;
    box-sizing: border-box;
}
.param-ex-text{
    font-size: 90%;
    color: #ff9d5c;
}
.reset-button{
    font-size: 80%;
    border-radius: 15px;
}
@media screen and (max-width: 780px){
    h1{
        display: flex;
        width: 100%;
        height: 40px;
        font-size: 20px;
        border-bottom: solid 4px #d1d1d1;
        align-items: flex-end;
    }
    .grid-list > input{
        height: 40px;
    }
    .status > input{
        font-size: 80%;
        height: 40px;
    }
    .reset-button{
        border-radius: 20px;
    }
}