/* CakePHP版と同じSVGマップスタイル（シンプル版） */
.box-popup__maps svg {
  width: 100%;
  height: auto;
  max-width: 415px;
}

/* 右側リストのスタイル（CakePHP版と同じ） */
/* .box-popup__maps-rsublist a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: inherit;
} */

.box-popup__maps-rsublist a:hover {
  color: #4a90e2;
  text-decoration: underline;
}

/* アクティブ状態のスタイル */
.box-popup__maps-rsublist li.active a {
  color: #4a90e2;
  font-weight: bold;
}

/* SVGマップ全体のレスポンシブ対応 */
@media (max-width: 768px) {
  .box-popup__maps {
    flex-direction: column;
  }
  
  .box-popup__maps-l {
    margin-bottom: 20px;
  }
  
  .box-popup__maps svg {
    max-width: 100%;
  }
}