
/* ベーススタイル */
body {
    margin: 10mm 0mm 10mm 0mm; /* 上, 右, 下, 左 の順番 */
    font-family: Arial, sans-serif;
    padding-top: 45px; /* ヘッダーの高さに応じて調整 */
    overflow: hidden; /* スクロールを防止 */
    /* height: 100vh; 画面全体を占める */
}

/* ヘッダーの初期スタイル */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* 必要に応じて色を変更 */
    transition: transform 0.3s ease; /* スムーズなアニメーション */
  }
  
  /* ヘッダーを隠すスタイル */
  .header.hidden {
    transform: translateY(-100%); /* ヘッダーを上に隠す */
  }
  
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* padding: 15px 30px; */
    box-sizing: border-box;
}

 .header-left { 
    order: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ヘッダー全体をフレックスで右寄せ 　新規に追加５・１５*/
.header-toolbar {
    height: 80px; 
    display: flex;
    justify-content: flex-end; /* ✅ 右寄せ */
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;               /* ✅ これが無いと右寄せされません */
    padding: 10px 20px;
    background-color: #f9f9f9;
  }
  

/* 各ボタンを小さめ＆アイコン＋ラベル */
.header-toolbar button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 14px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.header-toolbar button:hover {
    background-color: #388E3C;
}

.header-toolbar input[type="date"] {
    padding: 5px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f0f0ff; /* 薄紫背景 */
    flex-wrap: wrap; /* 幅が足りない時に折り返す */
  }
  
  .color-selector label {
    margin-right: 4px;
  }
  
  .color-select {
    padding: 4px;
  }
  


/* ドロップダウンメニューのスタイル */
.dropdown-menu {
    position: relative;
    display: inline-block;
    margin: 20px 0;
}

.dropdown-toggle {
    background-color: #4CAF50;
    color: rgb(36, 35, 35);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    width: 220px;
}

.dropdown-list li {
    border-bottom: 1px solid #ddd;
}

.dropdown-list li:last-child {
    border-bottom: none;
}

.dropdown-list a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-list a:hover {
    background-color: #f1f1f1;
    color: #4CAF50;
}

/* 画像 TOP のタイトルボックスの調整 */
.title-box {
    position: relative;
    z-index: 1; /* ドロップダウンより背面に配置 */
    margin-top: 50px; /* 画像 TOP を下にずらす */
    overflow: visible;
}



.show {
    display: block;
}



.company-title {
    order: 2;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.company-names {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.company-name-en {
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    color: #333;
}

.company-name-jp {
    font-size: 30px;
    color: #333;
}

.logo img {
    height: 50px;
}

.mobile-menu {
    order: 3;
    display: flex;
    align-items: center;
    position: relative;
}

.menu-toggle {
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #333;
}

.menu-toggle:hover {
    background: linear-gradient(145deg, rgba(66, 133, 244, 0.1), rgba(219, 68, 55, 0.1));
    transform: scale(1.1) rotate(90deg);
    color: #2196F3;
}

.menu-items {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    border-radius: 12px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                0 0 15px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-items li {
    margin: 0;
    padding: 0;
}

.menu-items a {
    display: block;
    padding: 12px 24px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.menu-items a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        45deg,
        rgba(66, 133, 244, 0.1),
        rgba(219, 68, 55, 0.1),
        rgba(244, 180, 0, 0.1)
    );
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-items a:hover {
    color: #2196F3;
    transform: translateX(5px);
}

.menu-items a:hover::before {
    width: 100%;
}



/* モバイル向け */
@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }
    
    .menu-items {
        width: 180px;
        right: 10px;
    }
    
    .company-name-en {
        font-size: 30px;
    }
    
    .company-name-jp {
        font-size: 20px;
    }
    
    .header-left {
        position: static;
        transform: none;
        margin: 0;
        flex-grow: 1;
        gap: 10px;
        width: auto;
        overflow: hidden;
    }

    .company-names {
        gap: 5px;
        flex-wrap: nowrap;
        font-size: 0.8em;
    }

    .company-name-en {
        font-size: 24px;
    }
    
    .company-name-jp {
        font-size: 16px;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu {
        margin-left: 10px;
        flex-shrink: 0;
    }
}

/* さらに小さい画面用 */
@media (max-width: 480px) {
    .company-name-en {
        font-size: 20px;
    }
    
    .company-name-jp {
        font-size: 14px;
    }

    .logo img {
        height: 35px;
    }

    .header {
        padding: 10px 15px;
    }
}

/* メニューの表示/非表示の制御用クラス */
.menu-items.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: slideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.menu-items.hide {
    display: none;
}

/* main { 
    padding-top: 80px; /* ヘッダーの高さ分の余白 
}*/

/* コンテンツコンテナのスタイル */
.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 2;
    width: 100%;
}

/* タイトルボックスのスタイル */
.title-box {
    border: 2px solid #fff;
    padding: 30px 50px;
    border-radius: 8px;
    background-color: rgba(40, 167, 69, 0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.title-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: rgba(40, 167, 69, 0.95);
}

/* タイトルリンクのスタイル */
.title-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    min-width: 200px;
    text-align: center;
    transition: color 0.3s ease;
}

.title-link:hover {
    color: #ffffff;
}

.textbox {
    text-align: left;
    padding-left: 5px;
    width: 100%; /* 親要素（<td>）の幅いっぱいに広げる */
    min-width: 100px; /* 小さくなりすぎないように最小幅を設定 */
    box-sizing: border-box;
}





/* レスポンシブ対応 */
@media (min-width: 768px) {
    .content-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* テーブルのスタイル調整 */
table { 
    width: 100%;
    height: auto;
    padding: 3px 3px;
    border-collapse: collapse; 
    /* margin: 15px auto 10px;   */
    text-align: center; 
    font-size: 15px;
    white-space: nowrap; 
    /* margin-bottom: 20px; */
}

th, td { 
   padding: 2px; 
    border: solid 2px #333;
    font-weight: bold; 
    text-align: center;
   }

td {
    width: 10%;
}

/* 入力フィールドのスタイル */
.textbox {
    padding: 12px 10px;
    font-size: 15px;
    color: #333;
    height: 15px;
    font-weight: bold;
    text-align: left;
    border: none;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.textbox1 {
    padding: 10px 10px;
    font-size: 15px;
    color: #e60e0e;
    height: 15px;
    font-weight: bold;
    border: none;
    border-bottom: 1px solid #ddd;
    /* background-color: #fff; */
    transition: border-bottom-color 0.3s ease;
}

@media only screen and (max-width: 500px) {
    .mobile-scroll {
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* フォーカス時のスタイル 
.textbox:focus {
    background-color: #f5f5f5;
    outline: none;
}*/

/* textbox1クラスも同様に */
.textbox1:focus {
    border-bottom-color: #333;
    outline: none;
}

/* プレースホルダーのスタイル */
.textbox::placeholder {
    color: #999;
}

/* 入力フィールドのコンテナ */
p {
    margin: 0;
    padding: 0;
}

/* エラー表示用のスタイル（必要な場合） */
.textbox.error {
    border-color: #ff0000;
}

/* 無効な入力時のスタイル（必要な場合） */
.textbox:invalid {
    border-color: #ff0000;
}

#g-nav-list{
    position: fixed;
}

.td1 {
    color: #960505;
}

.textbox1 {
    position: relative;
    z-index: 1;
    ime-mode: active;
}

/* IME候補ウィンドウのための空間を確保 */
td {
    position: relative;
    min-height: 2em;
}

select{
    /* border: 1px solid skyblue; */
    color: #cb0606;
}

/* ボタンの共通イル */
/* ボタンの共通スタイル */
button {
    background-color: #4CAF50;
    color: white;
    margin: 5px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    padding: 8px 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #388E3C;
  }
  

/* ボタンホバー時のエフェクト */
button:hover {
    background-color: #45a049; /* ホバー時の背景色 */
}

/* ファイル入力のスタイル */
input[type="file"] {
    margin: 5px;               /* 上下左右の外側の余白 */
    font-size: 12px;           /* 文字サイズ */
    padding: 3px;              /* 上下左右の内側の余白 */
    cursor: pointer;           /* ポインターの形状 */
}

/* ボタンとファイル入力の配置調整 */
.container {
    display: flex;             /* 横並びに配置 */
    flex-wrap: wrap;           /* 自動で折り返し */
    align-items: center;       /* 縦方向のセンタリング */
    gap: 5px;                  /* 各ボタンと入力フィールドの間隔 */
}

/* メインコンテンツエリアの調整 */
.day1 {
    padding-top: 10px; /* ヘッダーの下の余白を調整 */
    padding-bottom: 5px; /* フッターの上の余白を調整 */
    width: 98%; /* 横幅を広げる */
    margin: 0 auto;
    max-width: 1600px;
    text-align: center; /* 中央揃え */
    display: flex;
    align-items: center;
    gap: 5px;
}

/* タイトル部分の調整 */
.h1 {
    text-align: center;
    margin: 5px 0; /* 余白を調整 */
    padding-top: 5px;
}

.h1 h1 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    padding: 5px 0;
    display: inline-block; /* インライン要素として表示 */
}

.h3 {
    text-align: right;
    margin: 5px 20px 10px;
    font-size: 16px;
}

/* 日付選択部分のスタイル */
.day1 select {
    margin: 5px;
    padding: 3px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    display: inline-block; /* インライン要素として表示 */
}

/* 日付とタイトルの間隔調整 */
.day1 + .h1 {
    margin-top: 10px;
}

/* ボタンのホバー時のエフェクト */
button:hover {
    background-color: #45a049; /* ホバー時の背景色 */
    transform: scale(1.1); /* ホバー時に少し拡大 */
  }
  
  /* ボタンのアクティブ時のエフェクト */
  button:active {
    background-color: #3e8e41; /* 押されたときの背景色 */
    transform: scale(0.95); /* 押されたときに少し縮小 */
  }
  
  /* ボタンの配置をきれいに整える */
  button {
    transition: all 0.2s ease; /* ホバーやクリック時のアニメーション */
  }
  
  /* ズームボタンのコンテナ */
  .zoom-container {
    position: fixed;
    bottom: 2px;
    right: 20px;
    display: flex; /* 横並びにする */
    gap: 10px; /* ボタン間の間隔 */
    z-index: 1000;
}

.zoom-container button {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.zoom-container button:hover {
    background-color: #45a049;
    transform: scale(1.1);
}

  
.date-container {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .date-container label {
    font-size: 14px;
  }
  
  .date-container input[type="date"] {
    padding: 5px;
    font-size: 14px;
  }
  
  .date-container button {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .date-container button:hover {
    background-color: #45a049;
  }
  

/* テーブル全体のスタイリング */
.table-container {
    /* margin: 20px auto; */
    overflow-x: auto;
}

.data-table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.data-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.data-table input.textbox {
    width: 90%;
    padding: 20px;
    font-size: 18px;
    text-align: center;
}


/* ✅ メニュー全体のスタイル */
.mobile-menu {
    position: relative;
    text-align: center;
}

/* ✅ メニューボタンのスタイル */
.menu-toggle {
    display: block;
    padding: 10px;
    font-size: 24px;
    border: none;
    background: #438544;
    color: white;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

/* ✅ メニューアイテムのスタイル */
.menu-items {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #acddb8;
}

/* ✅ メニューアイテムを表示する */
.menu-items.show {
    display: block;
}

/* ✅ メニューアイテムのリンク */
.menu-items li {
    border-bottom: 1px solid #759994;
}

.menu-items li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

/* ✅ ドロップダウンメニュー */
.dropdown-menu {
    position: relative;
}

.dropdown-toggle {
    background: #cef6c7;
    color: fff;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

/* ✅ ドロップダウンリスト (非表示) */
.dropdown-list {
    display: none;
    list-style: none;
    padding: 0;
    background: #c9d8f0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

/* ✅ ドロップダウンリスト (表示) */
.dropdown-list.show {
    display: block;
}

/* ✅ ドロップダウンリストのリンク */
.dropdown-list li a {
    display: block;
    padding: 10px;
    color: rgb(39, 88, 47);
    text-decoration: none;
    border-bottom: 1px solid #c7f5c0;
}

/* ✅ ホバー効果 */
.menu-items li a:hover, .dropdown-list li a:hover {
    background: #555;
}

/* テキスト入力ボックスを左端から入力できるように */
.textbox {
    text-align: left; /* 左寄せ */
    padding-left: 5px; /* 左端から少し余裕を持たせる */
    width: 100%; /* 親要素の幅いっぱいに広げる */
    box-sizing: border-box; /* ボーダーやパディングを含めて調整 */
}

/* （）内のテキストボックスの幅を小さくする */
.textbox-small {
    /* width: 40px; ← ここを40pxに設定 */
    text-align: center; /* テキストを中央揃え */
    padding: 2px; /* 余白を少し小さく */
    font-size: 16px; /* 文字サイズを調整 */
    box-sizing: border-box; /* ボーダーやパディングを幅に含める */
    width: 7em;         /* ← 文字幅を12emに拡張（全角6文字以上） */
    min-width: 20px;    /* ← 最小幅も広めに */
    height: 28px;        /* ← 高さも少し余裕を持たせる */
  
}



/* カラー選択ドロップダウンのカスタマイズ */
.color-select {
    width: 120px; /* 幅を広げて見やすく */
    height: 35px;
    font-size: 16px;
    border: 2px solid #ccc;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}

/* 各オプションのスタイル */
.color-select option {
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}


/* <td> 内の画像を中央配置し、サイズ調整 */
.gallery5 {
    display: flex;
    justify-content: center; /* 水平方向に中央揃え */
    align-items: center; /* 垂直方向に中央揃え */
    height: 100%; /* <td> の高さを考慮 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery5 li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.example5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-height: 100%;
}

/* 画像のサイズを <td> の範囲内に収める */
.example5 img {
    max-width: 50%; /* 幅を <td> の 90% に制限 */
    max-height: 50%; /* 高さを <td> の 90% に制限 */
    height: auto; /* 縦横比を保持 */
    /* display: block; */
}



.data-container {
    display: flex;
    align-items: center;
    gap: 10px; /* 要素間のスペース */
    flex-wrap: wrap; /* 画面幅が狭い場合に折り返し */
  }

  .data-container label {
    white-space: nowrap; /* ラベルの折り返しを防ぐ */
  }

  .data-container input {
    padding: 5px;
  }

  .data-container button {
    padding: 5px 10px;
    cursor: pointer;
  }

  #deleteForm {
    display: flex;
    align-items: center;
    gap: 10px;
  }



  a.link-button {
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
  }
  
  a.link-button:hover {
    background-color: #e6ffe6; /* 薄い緑 */
    color: green;
  }

  /* ホバー時に画像を少し暗くする */
.hover-image {
    transition: 0.3s ease;
  }
  
  .hover-image:hover {
    /* filter: brightness(0.8); 明るさを少し落とす */
    cursor: pointer;
  }
  

 
  .btn-download {
    display: inline-block;
    margin-left: 20px; /* ← 横に少しスペース追加 */
    padding: 6px 14px;
    background-color: #3cb371;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-download:hover {
    background-color: #2e8b57;
  }

 
  .pdf-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
  }
  
  .pdf-form,
  .pdf-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .btn-download {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .btn-download:hover {
    background-color: #218838;
  }
  
  .pdf-upload-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* スマホ対応で折り返し可能 */
  }
  
  .upload-label {
    font-weight: bold;
  }
  
  .file-input {
    margin-left: 5px;
  }
  
  .upload-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .upload-btn:hover {
    background-color: #45a049;
  }
  
  .file-status {
    font-weight: bold;
  }
  
  .file-name {
    color: #c0392b;
    margin-left: 5px;
  }
  

.delete-btn {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 6px 12px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
}
.delete-btn:hover {
  background-color: #c0392b;
}



/* 黄色背景に黒文字（見やすい） */
.bg-kyouryoku { background-color: #d1e7dd; }
.bg-kanrisha  { background-color: #f8d7da; }
.bg-sekininsha { background-color: #fff3cd; }
.bg-teiden    { background-color: #cfe2ff; }

.yellow-box {
    background-color: #f1f1f1;
}
.green-box {
    background-color: #EEFFFF;
}

.td-green {
    background-color: #EEFFFF;
}
.th-green {
    background-color: #d1e7dd; /* 薄いグリーン系（安全・修理向き） */
}

.tr-orgi{
    background-color: #fff0f5;
}

.tk-orange {
    background-color: #FFDBC9;
}


.bg-yellow    { background-color: #EEFFFF; }
.bj-yellow    { background-color: #FFFFEE; }



  iframe {
    margin-top: 20px;
    border-radius: 8px;
  }

  .bg-kyouryoku {
    background-color: #d6e7e3;
    font-weight: bold;
    width: 65px; /* 5pxだけ広げた */
  }
  



  .bg-kyouryoku {
    background-color: #d6efef !important; /* 協力会社：薄い青緑 */
    font-weight: bold;
    min-width: 250px;
    width: 500px;
  }
  
  .bg-kanrisha {
    background-color: #f8d2d2 !important; /* 管理者：淡いピンク */
  }
  
  .bg-sekininsha {
    background-color: #fdf1b0 !important; /* 作業責任者：淡い黄色 */
  }
  
  .bg-teiden {
    background-color: #cde3f5 !important; /* 停電責任者：淡い水色 */
  }
  
  .bg-other {
    background-color: #f4f4f4 !important; /* その他：グレー */
  }
  
  /* テーブルの罫線を強制 */
  .data-table th,
  .data-table td {
    border: 1px solid #000 !important;
  }
  
  