      /* 一般的なスタイル */
      body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
      }
      /* タイトル文字のスタイル */
      #h1title {
        text-align: center;
      }
      /* 説明のスタイル */
      #explanation {
        margin:35px;
      }
      /* フォームスタイル */
      form {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px;
      }
      #progress{
        text-align: center;
      }
      /* select要素のスタイル */
      #file-select {
        padding: 8px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        background-color: #f2f2f2;
        margin-right: 10px;
      }
      /* ボタンのスタイル */
      input[type="button"] {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        background-color: #4CAF50;
        color: white;
        font-size: 16px;
        cursor: pointer;
      }
      /* テーブルのスタイル */
      #result-table {
        display: table;
        margin: auto;
        border-collapse: collapse;
        width: 100%;

      }
      /* テーブルのセルのスタイル */
      #result-table td, #result-table th {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
      }
      /* テーブルのヘッダーのスタイル */
      #result-table th {
        padding-top: 12px;
        padding-bottom: 12px;
        background-color: #4CAF50;
        color: white;
      }
      /* コピーライトのタイトル */
      #copy{
        text-align: center;
      }