@charset "utf-8";

input{
    border: none;
    outline: none;
}

select{
    border: none;
    /* outline: none; */
}

/* スクロールバー非表示 */
.scrollbarNone{
    scrollbar-width: none;
}
.scrollbarNone::-webkit-scrollbar{
    display: none;
}




/* ヘッダー */
.header{
    height: 65px;
}

/* メインコンテンツ */
.main{
    height: calc( 100% - 125px );
}

/* フッター */
.footer{
    height: 60px;
}

/* 表示部分(サイドメニュー以外) */
.display{
    width: 100%;
}

/* 左側 */
.left-side{
    width: calc( 100% - 300px );
    /* border-right: 1px solid #afafaf; */
}

/* 右側(プロパティ) */
.right-side{
    width: 300px;
    font-size: 11px;
}

/* 伝票 ヘッダー */
.header-part{
    height: 210px;
    font-size: 11px;
}

/* 明細部 */
.detail-part{
    height:  calc( 100% - 210px );
    font-size: 11px;
}
/* 明細部レイヤー */
.detail-child{
    display: none;
}
/* 左側 */
.detail-left{
    width: 450px;
}
/* 中央 */
.detail-center{
    width: calc( 100% - 650px );
}
/* 右側 */
.detail-right{
    width: 200px;
}
/* ボーダーカラー */
.border-gray{
    border-color: #858585!important;
}
/* 1行の高さ */
.row-height{
    height: 24px;
}
.l-height-28{
    line-height:28px;
}
/* インデックスの高さ */
/* #table-row-index{
    height: 49px;
} */
.table-row-index{
    height: 49px;/* なぞ？？？ */
}

/* プロパティ */
.property{
    display: none;
}
/* 表の高さ */
.property-table{
    height: calc( 100% - 33px );
}
.property-table-row{
    height: calc( 100% - 24px );
}


/* .t-header{
    padding-right: 10px;
} */


#file_list{
    font-size: 11px;
}

/* エディタ設定 */
/* デフォルトフォントサイズ */
.note-editable{
    font-size: 12px;
}
/* 行間 */
.note-editable p{
    margin-bottom: 5px;
}
.note-editable li{
    margin-bottom: 5px;
}



.pointer{
    cursor: pointer;
}

.overflow-scroll{
    overflow: scroll;
}

.pt-6px{
    padding-top: 6px;
}



.w-100px{
    width: 100px;
}


.bg-error{
    background-color: #ffd8e1!important;
}