body {
    /* font-family: sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 20px;
    text-align: center; */
  }
  
  /* SVGを内包するコンテナ */
  #chart {
    position: relative;
    margin: 2rem auto; /* 上下に2rem、左右は中央寄せ */
    max-width: 600px;
    border: 1px solid #ccc;
    background: #fff;
    box-sizing: border-box;
  }
  
  /* SVG はコンテナの幅に合わせて自動調整 */
  #chart svg {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ツールチップ（固有クラス名） */
  .meguru-tooltip {
    position: fixed;
    pointer-events: none;
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999 !important;
    font-size: 14px; /* 文字サイズを固定 */
    max-width: 200px; /* tooltipの最大幅を設定 */
  }
  
  .meguru-tooltip img {
    max-width: 100px;
    display: block;
    margin-bottom: 5px;
  }
  
  .meguru-tooltip strong {
    display: block;
    font-size: 14px; /* 物件名の文字サイズも固定 */
    line-height: 1.4;
  }
  
  /* SVG 内の円に対して明示的に pointer-events を有効にする */
  #chart svg circle.property {
    pointer-events: all !important;
  }
  