﻿/*アパレル工程管理デモ用CSS(PC) 1000px以上*/
@media(min-width: 1000px){
    table{
        width:100%;
    }
        table td {
            background-color: white;
            border-right: 1px solid black;
        }
        table tr:nth-child(2n+1) td{
            background-color:azure;
        }
        table th{
            background-color:#4194d3;
            font-weight:bold;
            text-align:center;
            color:white;
        }
    
}