/* マップ全体コンテナ */
#mapContainer {
  position: relative;
  width: 800px;
  height: 800px;
  border: 1px solid #ccc;
  overflow: hidden;
  margin-bottom: 20px;
}

/* X軸タイトル位置・スタイル */
#xAxisTitle {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}

#yAxisTitle {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%); /* 中央に配置する */
  font-weight: bold;
  writing-mode: vertical-rl; 
  text-orientation: upright;
  white-space: nowrap;
  line-height: 1.2;
}


/* アイコンアップロード領域 */
#iconUploadArea {
  width: 200px;
  height: 100px;
  border: 2px dashed #ccc;
  text-align: center;
  line-height: 100px;
  margin-bottom: 10px;
}

/* 例: アイコンなどがJSで挿入される場合、共通スタイルを定義してもよい */
.map-icon img {
  display: block;
  width: 50px; /* JSで上書き可能 */
  height: 50px; /* JSで上書き可能 */
}

/* 必要に応じて他のスタイルを追加 */
