@charset "utf-8";
/*-----物件一覧セルの開閉処理-----*/
    .detail{
        display: none;
    }
    .active{
        display: table-row;
        animation: appear .5s ease;
    }
    .active2{
        border:4px solid #0072ff!important;
        background:#0072ff;
    }

/*-----休日設定のon/off-----*/
    .holiday_active{
        outline: 5px solid red!important;
        outline-offset: -6px;
    }

    @keyframes appear {
        0%{
            opacity: 0;
        }
        100%{
            opacity: 1;
        }
    }