.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-family: "Rubik Iso", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  font-size: 22px;
  line-height: 2;
  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;
}

.Population {
  position: fixed;
  top: 56px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 20px;
  box-sizing: border-box;
  text-align: center;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
.Population-Title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}
.Population-Total {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 26px;
  font-variant-numeric: tabular-nums;
}
.Population-Credit {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 20px;
  color: #9a9a9a;
}
.Population-Credit-Link {
  color: inherit;
  text-decoration: underline;
}

.PopulationTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 24px;
}
.PopulationTable-Name {
  width: 50%;
  padding: 6px calc(16px / 2) 6px 0;
  text-align: right;
  color: #9a9a9a;
}
.PopulationTable-Value {
  width: 50%;
  padding: 6px 0 6px calc(16px / 2);
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.YearSelect {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 12px;
}
.YearSelect-Option {
  font-size: 16px;
  line-height: 24px;
  color: #9a9a9a;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.YearSelect-Option:hover {
  color: #ededed;
}
.YearSelect-Option[data-selected] {
  color: #ededed;
}

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

body {
  background: #16181c;
  color: #ededed;
  font-family: BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
}