.View-Canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.View-Attribution {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: calc(100% - 32px);
  padding: 9px 16px;
  color: #7a7f88;
  font-size: 10px;
  line-height: 16px;
  text-align: right;
  word-break: break-all;
  pointer-events: none;
  z-index: 5;
}

.MapSelect {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  box-sizing: border-box;
  min-height: 0;
  max-height: 240px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

.MapSelect-Option {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 28px;
  flex-shrink: 0;
  padding: 0 20px 0 12px;
  font-size: 13px;
  font-family: inherit;
  color: #ededed;
  text-decoration: none;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.MapSelect-Option[data-current] {
  color: #4ade80;
  cursor: default;
}

.MapSelect-Option-Label {
  white-space: nowrap;
}

.Logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 28px;
}
.Logo-Text {
  color: #ededed;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
}

.ApplicationMenu {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  flex-direction: column;
  width: 300px;
  background: #24272c;
  border-radius: 0 8px 0 0;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
.ApplicationMenu[data-open] {
  display: flex;
}
.ApplicationMenu-Section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
.ApplicationMenu-Section + .ApplicationMenu-Section {
  border-top: 1px solid #363b43;
}
.ApplicationMenu-Link {
  padding: 0 24px;
}
.ApplicationMenu-Link-Name {
  display: block;
  font-size: 15px;
  line-height: 23px;
  color: #ededed;
  text-decoration: none;
}
.ApplicationMenu-Link-Description {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  color: #9a9a9a;
}

.PanelControl {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 56px;
  padding: 0 32px;
}
.PanelControl-Item {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 21px;
  color: #9a9a9a;
  cursor: pointer;
  user-select: none;
}
.PanelControl-Item[data-open] {
  color: #ededed;
}

.PanelColumn {
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: max-content;
  max-height: calc(100vh - 56px);
  background: #24272c;
  border-radius: 12px 8px 8px 8px;
  overflow: hidden;
}
.Panel[data-panel]:not([data-open]) {
  display: none;
}
.Panel[data-float] {
  position: fixed;
}
.Panel[data-edge-left] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.Panel[data-edge-right] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.Panel[data-edge-top] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.Panel[data-edge-bottom] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.Panel-Header {
  flex-shrink: 0;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: grab;
  user-select: none;
}
.Panel-Header:active {
  cursor: grabbing;
}
.Panel-Title {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  background: #1d2025;
  font-size: 11px;
  line-height: 1.5;
  color: #ededed;
  border-bottom-right-radius: 12px;
}
.Panel-CloseIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #9a9a9a;
  cursor: pointer;
}
.Panel-CloseIcon svg {
  visibility: hidden;
}
.Panel-CloseIcon:hover svg {
  visibility: visible;
}
.Panel-Handle {
  position: absolute;
  z-index: 1;
}
.Panel-Handle[data-direction=n] {
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  cursor: ns-resize;
}
.Panel-Handle[data-direction=s] {
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  cursor: ns-resize;
}
.Panel-Handle[data-direction=e] {
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  cursor: ew-resize;
}
.Panel-Handle[data-direction=w] {
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  cursor: ew-resize;
}
.Panel-Handle[data-direction=ne] {
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  cursor: nesw-resize;
  z-index: 2;
}
.Panel-Handle[data-direction=nw] {
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  cursor: nwse-resize;
  z-index: 2;
}
.Panel-Handle[data-direction=se] {
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  cursor: nwse-resize;
  z-index: 2;
}
.Panel-Handle[data-direction=sw] {
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  cursor: nesw-resize;
  z-index: 2;
}

.PanelText {
  flex: 1 1 auto;
  min-width: 240px;
  min-height: 0;
  padding: 12px 0;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
.PanelText-Title {
  padding: 0 24px 8px;
  font-size: 14px;
  line-height: 22px;
  color: #ededed;
}

.Root[data-fixed] .Panel {
  position: fixed;
  top: 56px;
  right: 0;
  left: auto;
}
.Root[data-fixed] .Panel-Header {
  cursor: default;
}

.MapData-Item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 0 24px;
  font-size: 14px;
  line-height: 22px;
}
.MapData-Item + .MapData-Item {
  margin-top: 6px;
}
.MapData-Item-Label {
  text-align: right;
  color: #ededed;
}
.MapData-Item-Value {
  color: #ededed;
  font-variant-numeric: tabular-nums;
}

.LandPrice-Static {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 64px;
  box-sizing: border-box;
  min-height: 100vh;
  background: #16181c;
  color: #ededed;
  font-family: BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
}
.LandPrice-Static-Title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.LandPrice-Static-Lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a9a;
}
.LandPrice-Static-Nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.LandPrice-Static-Nav-Item {
  padding: 6px 12px;
  border: 1px solid #363b43;
  border-radius: 2px;
  font-size: 13px;
  color: #ededed;
  text-decoration: none;
}
.LandPrice-Static-Nav-Item[aria-current] {
  border-color: #ededed;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  overflow: hidden;
}

#jp-land-price {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #16181c;
  color: #ededed;
  font-family: BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
}

#jp-land-price:empty {
  position: static;
  height: 0;
}

body:has(#jp-land-price:empty) {
  overflow: auto;
}