﻿#spreadsheet table tbody td{
    padding-top:8px;
    padding-bottom:8px;
}

.DoropSelect {
    height: 35px;
    font-size: 20px;
    border: 2px solid #1b2538;
    border-radius: 3px;
}


#spreadsheet{
    font-size:18px;
}

/*　スクロールバーの実装 */
    #spreadsheet table {
        overflow-y: scroll;
    }

    #spreadsheet table thead {
        position: sticky;
        top: 0;
        left: 0;
        z-index: 20;
    }
/*固定したヘッダーの重なり順*/
        #spreadsheet table tbody {
            z-index: 10;
        }

    

