#home {
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: auto;
    display: inline-block;
}

#navi {
    height: 2.8em;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    box-sizing: border-box;
    background-color: white;
    border-bottom: 1px solid rgba(0.15, 0.15, 0.15, 0.6);
    z-index: 0;
}

#rightNavi {
    text-align: right;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    display: inline-block;
}
#user img {
    max-height: 100%;
}

#main {
    margin-top: 3em;
}

@media (max-width: 768px) {
    #home {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 55vw;
    }
}