.body{
    margin: 0px;
}
h1,h2,h3,h4,h5,h6 {
    border-bottom: 1px solid #ccc;
}
.title{
    font-size: 2em;
    font-weight: bold;
    padding: 20px 0;
}
.flex{
    display: flex; 
}
.occTitle{
    margin:10px 0;
    display: flex;
    align-items: center;
}
.occFlex{
    display: flex;
    align-items: center;
}
.buildTitle{
    margin:0px 0px 5px;
    font-weight: bold;
    font-size: 150%;
}
.currentContainer{
    margin: 0 0 10px 0px;
    align-items: flex-end;
}
.currentDisplay{
    overflow: scroll;
    margin: 0px;
    white-space: nowrap;
}
.displayText{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
.charBlock {
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    flex-shrink: 0;
}
.displayTextIndex{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
.indexBlock{
    border: 1px solid white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    flex-shrink: 0;
}
.sidbarConstruction{
    width: 200px;
}
.staticElement{
    position: static;
    padding: 0px 0px 0px 0px;
}
.fixElement{
    position: fixed;
    top: 20px;
    padding: 0px;
}

button{
    height: 30px;
}
.suffixLinkButton{
    margin: 5px 10px 0 0;
}
.staticCanvas{
    margin: 0px;
}
.fixCanvas{
    /* margin-top: 206.25px;scroll-elementのheightを書いている */
    margin: 0 0 0 258px;
}
.canvasScroll{
    overflow: scroll;
    white-space: nowrap;
}
#sidebar{
    min-width: 258px;
}

@media screen and (max-width:425px) {
    .containWrap{
        display: block;
    }
    .staticElement{
        padding: 0;
    }
    .staticCanvas{
        margin: 0px;
    }
    .fixCanvas{
        margin: 65px 0 0 0px;
    }
    #testCanvas{
        display: block;
        max-width: 100%;
        height: auto;
        aspect-ratio: auto;
    }
}