    /* ページ全体のスタイル */
    body,
    html {
      margin: 0;
      height: 100%;
      font-family: Arial, sans-serif;
    }

    /* 地図の表示領域 */
    #map {
      height: 100%;
      width: 100%;
    }

    /* テーブルのヘッダーセルのスタイル */
    table {
      border-collapse: collapse;
      /* 境界線を統合 */
      width: 100%;
      /* テーブルを全幅に */
    }

    table th,
    table td {
      border: 1px solid #ddd;
      /* セルの境界線を追加 */
      padding: 8px;
      /* セルの内側に余白を追加 */
    }

    table th {
      background-color: #f2f2f2;
      /* ヘッダーの背景色 */
      text-align: left;
      /* ヘッダーテキストを左揃え */
      font-weight: bold;
      /* 太字にする */
    }

    table td {
      background-color: #fff;
      /* データセルの背景色を白に */
      text-align: left;
      /* データのテキストを左揃え */
    }

    /* ポップアップ全体のスタイル */
    .popup-content {
      font-family: Arial, sans-serif;
      /* フォントを指定 */
      color: #333;
      /* 文字色を黒っぽく */
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
      /* 影を追加してくっきりさせる */
    }

    /* レイヤーコントロールUIのスタイル */
    /* #layerControl {
      position: absolute;
      top: 10px;
      left: 60px;
      padding: 8px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border-radius: 5px;
      font-size: 12px;
      width: 220px;
    } */
    /* レイヤーコントロールUIのスタイル */
    #layerControl {
      position: absolute;
      top: 10px;
      left: 60px;
      padding: 10px;
      /* パディングを大きくして余白を調整 */
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border-radius: 5px;
      font-size: 12px;
      width: 230px;
      /* 全体の幅を広げました */
      z-index: 1000;
    }

    /* 各フォーム要素やスライダーのスタイル */
    #layerControl select,
    #layerControl input[type="text"],
    #layerControl button,
    #opacitySlider {
      width: 100%;
      /* 幅を100%に設定 */
      margin-bottom: 8px;
      /* 下に少し余白を追加 */
      padding: 6px;
      /* パディングを増やし、要素を広げました */
      font-size: 12px;
      border: 1px solid #ccc;
      border-radius: 3px;
      box-sizing: border-box;
      /* 要素の幅が枠の内側に収まるように */
    }

    /* スライダーの上のマージンを調整 */
    #opacitySlider {
      margin-top: 5px;
      /* スライダーの上下の余白を調整 */
    }

    /* 幾何学的なシンプルボタン */
    #layerControlButton {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 40px;
      height: 40px;
      background-color: #4CAF50;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      z-index: 1000;
    }

    /* ボタンの中のテキスト */
    #layerControlButton span {
      font-size: 16px;
      font-weight: bold;
    }

    /* 隠すためのスタイル */
    #layerControl.hidden {
      display: none;
    }

    /* 地図の中央に赤いマーカー */
    /* .center-marker {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      background-color: red;
      border: 2px solid white;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 10;
    } */
    .center-marker {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 30px;
      height: 35px;
      background-image: url('https://docs.mapbox.com/mapbox-gl-js/assets/custom_marker.png');
      /* background-image: url('https://maps.google.com/mapfiles/ms/icons/blue-dot.png'); */
      background-size: contain;
      background-repeat: no-repeat;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 10;
    }

    #helpButton {
      position: absolute;
      top: 60px;
      /* +アイコンの少し下に配置 */
      left: 10px;
      width: 40px;
      height: 40px;
      background-color: #4CAF50;
      color: white;
      font-size: 14px;
      font-weight: bold;
      text-align: center;
      line-height: 40px;
      border-radius: 5px;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    /* モーダルの背景 */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
    }

    /* モーダルのコンテンツ */
    .modal-content {
      position: relative;
      top: 50%;
      left: 50%;
      width: 90%;
      height: 90%;
      transform: translate(-50%, -50%);
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    /* 閉じるボタン */
    .close-button {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 30px;
      color: #333;
      cursor: pointer;
    }

    /* HELPページ用のiframe */
    #helpFrame {
      width: 100%;
      height: 100%;
      border: none;
    }