.modal{
    visibility: hidden; /* visible, hidden */
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000c0;
}
.main-container{
    width: 100%;
    color: #ffffff;
    flex-direction: row;
    justify-content: space-between;
    font-family: RocknRollOne;
}
.container-A{
    width: 100%;
    margin: 0px 2px;
    padding: 5px;
    background-color: #202020;
    border: solid 1px #606060;
    flex-direction: column;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
.container-B{
    width: 100%;
    height: 90vh;
    margin-top: 5vh;
    background-color: #202020;
    border: solid 1px #606060;
    flex-direction: column;
    justify-content: space-between;
}
.boards{
    visibility: hidden;
}
.list-tag{
    margin: 0px 0px;
    padding-left: 24px;
    padding-right: 36px;
    color: #808080;
    border-bottom: solid 1px #606060;
    justify-content: space-between;
    vertical-align: bottom;
    font-size: 12px;
}
.list-tag > div:first-child{
    width: 16%;
    justify-content: flex-start;
}
.list-tag > div{
    width: 12%;
    justify-content: flex-end;
}
.grid-list{
    padding: 6px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2px;
}
.grid-list > input{
    height: 30px;
    justify-content: center;
}
.flex-list{
    display: none;
    height: 100%;
    padding: 2px 10px;
    flex-direction: column;
    overflow-y: auto;
}
.flex-list > button{
    display: flex;
    width: 100%;
    max-height: 30px;
    margin: 2px 0px;
    justify-content: space-between;
}
.flex-list > button > div:first-child{
    width: 16%;
    justify-content: flex-start;
}
.flex-list > button > div{
    width: 12%;
    height: 30px;
    justify-content: flex-end;
    align-items: center;
}
.flex-list::-webkit-scrollbar{
    width: 6px;
}
.flex-list::-webkit-scrollbar-track{
    background-color: transparent;
    border: 0px solid transparent;
}
.flex-list::-webkit-scrollbar-thumb{
    background-color: #666;
    border: 0px solid transparent;
}
.row{
    width: 100%;
    height: 24px;
    margin: 2px 0px;
    justify-content: space-between;
}
.row > *{
    width: 50%;
}
.row-status{
    width: 100%;
    height: 20px;
    margin: 0px 0px;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: dashed 1px #666666;
}
.container-title{
    width: 100%;
    justify-content: space-between;
    color: #ffffbb;
}
.set-title{
    padding: 2px 4px;
    border: solid 1px #ff8040;
    background-color: #202020;
    color: #ffffff;
}
.container-B-title{
    width: 100%;
    padding: 2px 10px;
    background-color: #404040;
    border-bottom: solid 1px #606060;
}
.tag{
    margin: 2px 0px;
    color: #808080;
    border-bottom: solid 1px #606060;
    vertical-align: bottom;
    font-size: 12px;
}
.close-button{
    width: 100px;
    height: 30px;
    margin: 6px 10px;
    border-radius: 15px;
    color: #000000;
    background-color: #ffffff;
    border: solid 0px transparent;
    justify-content: center;
    font-size: 16px;
}
.reset-button{
    width: 100%;
    height: 30px;
    margin: 18px 6px;
    justify-content: center;
    color: #f0f0f0;
    font-size: 16px;
    border: solid 0px;
    border-radius: 10px;
    background: #202020;
    box-shadow: 3px 3px 6px #000000, -3px -3px 6px #303030;
}
.switch-button-list{
    width: 100%;
    margin-bottom: 4px;
}
.switch-button{
    width: 100px;
    height: 30px;
    margin: 2px;
    justify-content: center;
    color: #f0f0f0;
    font-size: 16px;
    border-radius: 15px;
    border: solid 1px #ff8040;
    background-color: #202020;
}
.copy-button, .paste-button{
    width: 100%;
    height: 22px;
    margin: 2px 4px;
    justify-content: center;
    align-items: center;
    color: #f0f0f0;
    border: solid 0px;
    border-radius: 6px;
    background: #202020;
    box-shadow: 2px 2px 4px #000000, -2px -2px 4px #303030;
}
.copy-text{
    width:100%;
    justify-content: flex-end;
    align-items: center;
    margin: 0px 8px;
    color: #f0f0f0;
    font-size: 16px;
}
/***** タグ系 *****/
body{
    background-color: #111;
}
h1{
    height: 38px;
    margin: 10px 0px;
    font-size: 32px;
    color: #e9a269;
    border-bottom: solid 2px #d44b38;
}
label,
select,
input,
button{
    display: flex;
    box-sizing: border-box;
    height: 100%;
    margin: 0px 0px;
    color: #ffffff;
    align-items: center;
    font-family: RocknRollOne;
}
select{
    background-color: #111111;
    border: solid 1px #666666;
    padding: 0px 4px;
    font-size: 12px;
}
input,
button{
    background-color: #111111;
    border: solid 1px #666666;
    padding: 0px 8px;
    font-size: 12px;
    cursor: pointer;
}
input:hover,
button:hover,
select:hover{
    color: #808080;
}
select:focus{
    color: #ffffff;
}
input:disabled,
button:disabled{
    color: #808080;
    background-color: #404040;
}
select:focus{
    outline: none;
}
/***** color *****/
.color-hp{
    color: #88ff9c;
}
.color-pp{
    color: #88f7ff;
}
.color-preset{
    color: #ff9253;
}
.color-prop{
    color: #fdff7c;
}
@media screen and (max-width: 780px){
    h1{
        display: flex;
        width: 100%;
        height: 40px;
        font-size: 20px;
        color: #eba15d;
        border-bottom: dotted 4px #d44b38;
        align-items: flex-end;
    }
    .main-container{
        flex-wrap: wrap;
        padding: 0.5%;
    }
    .container-A{
        margin: 0.5%;
        width: 49%;
    }
    .container-B{
        margin: 2px 0px;
    }
    .row{
        height: 32px;
    }
    .row-status{
        height: 24px;
    }
    .switch-button-list{
        display: grid;
        margin-bottom: 0px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 2px;
    }
    .switch-button{
        width: 100%;
    }
    /***** @Override *****/
    .outer{
        padding: 0px;
    }
}