
    body { 
        font-family: Montserrat, sans-serif; 
        color: #6d6d6d;     
        text-align: center; /* 内容を中央に配置 */
    }
    .table-container { 
        margin: 0 auto; /* 自動外部マージン */ 
        width: 60%; /* 幅を60%に設定 */
    }
    table { 
        border-collapse: collapse; 
        width: 100%; /* テーブルの幅を100%に設定 */
    }
    th, td { 
        border: 1px solid #ccc; 
        padding: 8px; 
        text-align: left; 
    }
    th { 
        background-color: #f9f9f9; 
    }
