/* 上部のボタンコントロール */
.top-controls {
  display: flex;
  flex-wrap: wrap; /* 幅に応じて折り返しを有効に */
  gap: 10px; /* ボタン間の均一な間隔 */
  width: 100%; /* 親要素いっぱいに広げる */
  box-sizing: border-box; /* パディングとボーダーを幅に含める */
}
.top-controls button {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}
/* ページ全体のラッパー */
.page-wrapper {
  width: 95%; /* 固定幅から可変幅に変更 */
  max-width: 1200px; /* 最大幅を設定 */
  margin: 20px auto; /* 上下に20px、左右にautoで中央揃え */
  display: grid;
  gap: 15px;
  align-content: start;
  box-sizing: border-box; /* パディングとボーダーを幅に含める */
  padding: 0 10px; /* 左右に余白を追加 */
}
body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}
.main-content {
  display: flex;
  flex-direction: row;
  align-items: stretch; /* ★ 高さを揃えるためにstretchに変更 */
  gap: 20px; /* 地図とテキストエリアの間隔 */
}
.map-container {
  position: relative; /* スライダーを配置する基準 */
  width: 85vmin;      /* ビューポートの短辺の85% */
  height: 85vmin;     /* これで正方形になります */
  border: 2px solid #333; /* 枠線 */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* 見た目を良くするための影 */
}
#map, #map svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* 地図上に表示するテキストのスタイル */
.map-overlay-text {
  position: absolute;
  font-weight: bold;
  color: #333;
  text-shadow: 1px 1px 2px white, -1px -1px 2px white, 1px -1px 2px white, -1px 1px 2px white;
  cursor: move;
  white-space: pre;      /* テキストエリアの改行を反映し、自動改行はしない */
  font-size: 16px;       /* ベースフォントサイズ - 初期値 */
  line-height: 1.2;      /* 行の高さを相対的に設定 */
  transform-origin: 0 0;  /* スケーリングの原点を左上に設定 */
  transform-box: fill-box; /* スケーリングの基準ボックスを設定 */
  will-change: transform; /* パフォーマンス最適化 */
  pointer-events: auto;  /* ドラッグ可能にするために必要 */
  /* スムーズな移動のための最適化 */
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
/* 白色テキスト用の黒い縁取り */
.map-overlay-text .text-with-black-stroke {
  text-shadow: -1px -1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000, 1px 1px 2px #000;
}
#map-overlay-text-1 {
  z-index: 20;
}
#map-overlay-text-2 {
  z-index: 10;
}
/* 3つ目のテキストは最前面に */
#map-overlay-text-3 {
  z-index: 30;
}
path.pref{
  fill: #eee;
  /* strokeを削除し、塗りとクリックイベントに専念させます */
  cursor:pointer;
  transition:fill .15s;
}
path.pref.active{ fill:red; }
/* 海岸線と県境をまとめて描画するためのスタイル */
.map-borders {
  fill: none;
  stroke: #666; /* 枠線の色 */
  stroke-width: 0.8; /* 枠線の太さを統一 */
  vector-effect:non-scaling-stroke;
  pointer-events:none;                /* 境界線はクリック不可 */
}
/* 市区町村の境界線 */
.municipality-borders {
  fill: none;
  stroke: #bbb;
  stroke-width: 0.5;
  stroke-dasharray: 2, 2;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
  display: none; /* 初期状態は非表示 */
}
/* 右下のコントロール類をまとめるコンテナ */
.map-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  flex-direction: column; /* 要素を縦に並べる */
  align-items: flex-end;  /* 右揃えにする */
  pointer-events: none; /* ★ コンテナ自体はクリックを透過させる */
}

/* .map-controls内の操作可能な要素はクリックを有効にする */
.map-controls > * {
  pointer-events: auto;
}
/* ポップアップ（ツールチップ）のスタイル */
#map-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 1000;
  white-space: nowrap; /* ツールチップが改行されて縦長になるのを防ぐ */
  pointer-events: none; /* マップ上のマウスイベントを妨げないようにする */
}
/* ズームボタン内のアイコンを中央に配置 */
.zoom-buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
}
.zoom-buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
#color-palette {
  display: flex;
  flex-direction: column; /* 縦一列に並べる */
  gap: 4px;
  margin-top: 20px; /* 上のUIとの間隔 */
}

/* カラーパレットのグリッドレイアウト */
.color-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 2px;
}

.zoom-inputs {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

#zoom-slider {
  width: 200px;
}
.color-box {
  width: 24px; height: 24px; border: 2px solid #fff; cursor: pointer; border-radius: 4px;
}
.color-box.active { border-color: #000; transform: scale(1.1); }
/* 〼ボタンのスタイル */
.reset-box {
  background-color: #ccc;
  color: #333; /* 斜線の色として利用 */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* テキスト入力エリアとフォントコントロールをまとめるコンテナ */
.text-controls-container {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* ★ 子要素の幅をコンテナに合わせる */
  gap: 10px; /* コントロール間の間隔 */
}
/* テキストエリア1のスタイル */
/* テキストエリアの共通スタイル */
#overlay-text-input-1,
#overlay-text-input-2,
#overlay-text-input-3 {
  width: 320px; /* 幅を調整 */
  height: 75px; /* 高さを調整 */
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: both; /* 縦横両方向にリサイズ可能にする */
}
/* フォントサイズ調整UIのスタイル */
.font-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap; /* コントロールがはみ出た場合に折り返す */
  color: #333;
}

.font-controls button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}

.font-controls span {
  font-weight: bold;
  min-width: 2em;
  text-align: center;
  font-size: 16px;
}
/* 位置座標入力のスタイル */
.pos-label {
  margin-left: 10px;
}
.pos-input {
  width: 50px;
  padding: 4px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: right;
}

/* 行間入力とX座標入力の間にスペースを追加 */
.line-height-input {
  margin-right: 10px;
}

/* ズームレベル入力欄の幅を調整 */
#zoom-pos-x-input,
#zoom-pos-y-input {
  width: 60px;
}

/* 画像保存・リセットボタンのコンテナ */
.action-buttons {
  display: flex;
  flex-direction: column; /* ★ 縦に並べるように変更 */
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}
/* ボタンの行を定義する新しいクラス */
.button-row {
  display: flex;
  gap: 8px;
  width: 100%;
}
.action-buttons button {
  flex: 1; /* 幅を均等に分ける */
  padding: 8px 12px;
  font-size: 20px;
  font-weight: bold; /* ★フォントを太字に変更 */
  cursor: pointer;
  border: 1px solid #bbb;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  text-shadow: -1px -1px 4px white, 1px -1px 4px white, -1px 1px 4px white, 1px 1px 4px white;
  justify-content: center; /* テキストを中央揃え */
  display: flex;
  align-items: center;
  transition: background-color 0.2s, border-color 0.2s;
}

.action-buttons button svg {
  width: 18px;
  height: 18px;
  margin-right: 8px; /* アイコンとテキストの間のスペース */
}

.toggle-indicator {
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}
.action-buttons button:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

/* 透過保存ボタンの背景をチェッカーボード柄にする */
#screenshot-transparent-button {
  background-color: #e9e9e9; /* Fallback */
  background-image: repeating-conic-gradient(#e0e0e0 0% 25%, #fafafa 0% 50%);
  background-size: 16px 16px;
}
.toggle-indicator.on {
  background-color: #3cb44b; /* 緑 */
}
.toggle-indicator.off {
  background-color: #e6194b; /* 赤 */
}

/* ドロップダウンコンテナのスタイル */
.dropdown {
  position: relative;
  display: inline-block;
}
/* ドロップダウンメニューのスタイル（初期状態は非表示） */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 50; /* テキストより手前に表示 */
  border-radius: 4px;
  padding: 5px 0;
  font-size: 14px;
}
/* コンテナにマウスオーバーした時にメニューを表示 */
.dropdown:hover .dropdown-menu {
  display: block;
}
/* メニュー項目のスタイル */
.dropdown-item { padding: 8px 12px; cursor: pointer; }
.dropdown-item:hover { background-color: #ddd; }

/* --- 情報表示ボックスのスタイル --- */
.info-box {
  min-height: 90px; /* レイアウトが崩れないように最小の高さを確保 */
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.info-box p {
  margin: 0;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.dialog-box {
  background: white;
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.dialog-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}
.dialog-buttons button {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
}
#confirm-yes {
  color: #e6194b; /* 赤字 */
  font-weight: bold;
}
#confirm-no {
  color: #333; /* 黒字 */
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}

.info-box-placeholder {
  color: #888;
  font-style: italic;
}

/* --- クリック防止オーバーレイのスタイル --- */
#click-blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent; /* 透明で見えない */
  z-index: 1000; /* ポップアップ(1001)よりは下、地図よりは上 */
  display: none; /* 初期状態は非表示 */
}

/* ワイプ内の地図はクリックできないようにする */
#hokkaido-wipe {
  pointer-events: none;
}

/* --- 右クリックメニューのスタイル --- */
.context-menu {
  position: absolute;
  display: none;
  flex-direction: column; /* 追加 */
  gap: 6px; /* 追加 */
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
  padding: 10px; /* 変更 */
  z-index: 1001; /* ツールチップより手前に */
  border-radius: 4px;
  transform: translateY(-50%);
}

.context-menu-header {
  font-weight: bold;
  font-size: 16px;
}

.context-menu-current-colors {
  font-size: 13px;
  color: #ccc;
  padding-bottom: 6px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.current-color-labels {
  font-weight: bold;
}

.context-menu-color-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 4px 12px; /* 行間、列間 */
}

.context-menu-palette-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ポップアップ内のカラーボックスとリセットボックスのサイズを統一 */
.context-menu .color-box {
  width: 24px;
  height: 24px;
}

/* saninsen.htmlから移動したスタイル */
#minimap-container {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 150px;
  height: 150px;
  z-index: 40; /* テキストより手前に表示 */
  pointer-events: none; /* ミニマップ上のクリックは無効化 */
}
#minimap-container svg {
  width: 100%;
  height: 100%;
}
.left-column {
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; を削除し、コンテナが地図の幅以上に広がらないようにします */
}
footer {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: right;
  width: 100%;
  padding-right: 10px;
  box-sizing: border-box;
  word-break: break-all; /* コンテナ幅に合わせてテキストを強制的に折り返す */
}

/* Responsive adjustments for narrow screens */
@media (max-width: 1000px) {
  .main-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .map-container {
    width: 100%;
    max-width: 100%;
    height: 85vmin; /* Keep aspect ratio */
  }
  
  footer {
    text-align: right;
    padding-right: 10px;
    margin-top: 5px;
  }
}

/* コピー完了通知 */
.copy-notification {
  position: absolute; /* JSでカーソル位置に配置するため absolute に変更 */
  /* bottom, left はJSで指定するため削除 */
  /* transform でカーソル基準の位置を調整 */
  transform: translate(-50%, -120%); /* 水平中央、カーソルの少し上に配置 */
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  pointer-events: none; /* ポップアップ自体がクリックイベントを妨げないように */
  white-space: nowrap; /* テキストが折り返されて縦長になるのを防ぐ */
}

.copy-notification.show {
  opacity: 1;
  visibility: visible;
}

.context-menu .reset-box {
  width: 24px;
  height: 24px;
  background-color: #666;
  color: #fff;
}

.context-menu-color-label {
  font-size: 13px;
}

/* スマホ長押しの選択やコールアウトを抑止（地図SVGに限定） */
svg {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* iOS: 長押しのコピー等を抑止 */
  touch-action: manipulation;   /* ダブルタップズーム等を最小化（ピンチは可） */
}
