/*================================================================================================*/
/*=====================================編集画面、新規画面style======================================*/
/*================================================================================================*/


/*========================================全画面共通===========================================*/
.check {
    width: 30px;
    min-width: 30px;
}

.title {
    width: 100px;
    min-width: 100px;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 100px;
}

#sticky-1 {
    border-top: 1px solid #111934;
    border-right: 1px solid #111934;
    border-left: 1px solid #111934;
    position: sticky;
    left: 0;
    z-index: 10;
    width: 80px;
}

#sticky-2 {
    border-top: 1px solid #111934;
    border-right: 1px solid #111934;
    position: sticky;
    left: 38px;
    /* sticky-1のwidth分だけずらす */
    z-index: 9;
    width: 80px;
}

#stickyes1 {
    border-left: 1px solid #111934;
    border-right: 1px solid #111934;
    border-bottom: 1px solid #111934;
    border-top: 1px solid #111934;
    position: sticky;
    left: 0;
    z-index: 10;
    width: 80px;
}

#stickyes2 {
    border-right: 1px solid #111934;
    border-bottom: 1px solid #111934;
    border-top: 1px solid #111934;
    position: sticky;
    left: 38px;
    /* sticky-1のwidth分だけずらす */
    z-index: 9;
    width: 80px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #4CAF50;
    /* 対応ブラウザなら色変更可能 */
    cursor: pointer;
}

/* ======================================編集画面style ======================================*/
#editHeader {
    position: sticky;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 50px;
    padding-top: 5px;
    background-color: #d3d3d3;
    z-index: 10;
}

#editTable {
    padding-top: 0px;
}

#formInp {
    max-width: 150px;
    border-color: #bdbdbd;
}

#formSpan {
    border-color: #bdbdbd;
}

#formInp.form-select:focus,
#formInp.form-control:focus {
    background-color: #e6f0ff;
    /* 薄い青（背景） */
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
    /* 青系のフォーカスリング */
    border-color: #0056b3;
    /* optional: 枠線の色 */
}

#editHome{
    border-radius: 15px;
}
#editHome:hover{
    border-radius: 15px;
    background-color: #bad5fc;
}
#editList{
    border-radius: 15px;
}
#editList:hover{
    border-radius: 15px;
    background-color: #aaebff;
}

/*==========================================新規作成style=====================================================*/
#H1{
    background-color: #bdbdbd;
    margin: 0px;
}
.btns {
    position: sticky;
    top: 0;
    z-index: 12;
    background-color: #bdbdbd;
}
#newHome{
    border-radius: 15px;
}
#newHome:hover{
    background-color: #bad5fc;
    border-radius: 15px;
}
#addButton{
    border-radius: 15px;
}
#addButton:hover{
    border-radius: 15px;
    background-color: #70f075;
}
#newList{
    border-radius: 15px;
}
#newList:hover{
    border-radius: 15px;
    background-color: #aaebff;
}
#register{
    border-radius: 15px;
    margin-left: 10px;
}
#register:hover{
    border-radius: 15px;
    background-color: #4CAF50;
}
/*=============================================一覧画面style=====================================================*/