*,
:before,
::before,
:after,
::after {
  box-sizing: border-box;
}

* {
  border: 0;
  border-radius: 0;
  margin: 0;
  outline: 0;
  padding: 0;
}

html,
body {
  overflow: hidden;
}

body {
  font-size: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

a {
  background: transparent;
  text-decoration: none;
}

img {
  max-width: 100%;
}

svg {
  border: 0;
  stroke-width: 0;
}

ol,
ul {
  list-style: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  font-family: inherit;
}

input[type=text] {
  background-color: transparent;
}

::-webkit-scrollbar {
  display: none;
}

.Article {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.Article-Title {
  color: var(--color-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.Article-Heading {
  color: var(--color-font);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.Article-Text {
  color: var(--color-group-header-font);
  font-size: 13px;
  line-height: 21px;
}

.Panel .Article {
  width: 300px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 16px 18px;
}

.Panel {
  position: relative;
  width: max-content;
  background: var(--color-panel-background);
  border: 1px solid var(--color-panel-border);
  border-radius: 12px;
  overflow: hidden;
  color: var(--color-font);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.Panel[data-floating] {
  position: absolute;
  z-index: 40;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.Panel-Header {
  height: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: grab;
  user-select: none;
}
.Panel-Header:active {
  cursor: grabbing;
}
.Panel-CloseIcon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-font);
  cursor: pointer;
}
.Panel-CloseIcon svg {
  width: 9px;
  visibility: hidden;
}
.Panel-CloseIcon:hover svg {
  visibility: visible;
}
.Panel-Title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  background: var(--color-panel-header-background);
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-font);
}
.Panel-Title[data-end] {
  padding: 0 16px;
  border-bottom-right-radius: 12px;
}
.Panel-Title[data-start] {
  padding: 0 16px;
  border-bottom-left-radius: 12px;
}
.Panel-Main {
  padding: 0;
}

.PanelGroup + .PanelGroup {
  border-top: 1px solid var(--color-panel-group-border);
}
.PanelGroup-Header {
  display: flex;
  height: 28px;
  padding: 9px 12px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-group-header-font);
}
.PanelGroup[data-hidden] {
  display: none;
}

.RightLabelGrid {
  display: grid;
  grid-template-columns: max-content 1fr;
  padding: 8px 12px;
}
.RightLabelGrid-Row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  align-items: center;
  height: 36px;
  column-gap: 8px;
}
.RightLabelGrid-Row-Label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-font);
  padding: 0 12px;
}

.StepperInput {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 4px;
}
.StepperInput-Arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--color-stepper-icon);
  cursor: pointer;
}
.StepperInput-Arrow[data-disabled] {
  opacity: 0.3;
  cursor: default;
}
.StepperInput-Track {
  display: grid;
  justify-items: center;
}
.StepperInput-Option {
  grid-area: 1/1;
  visibility: hidden;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  user-select: none;
}
.StepperInput-Option[data-selected] {
  visibility: visible;
}

.ToggleInput {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}
.ToggleInput-Option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  user-select: none;
}
.ToggleInput [data-selected]::before, .ToggleInput [data-selected]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  pointer-events: none;
}
.ToggleInput [data-selected]::before {
  left: 0;
  border-left: 1px solid var(--color-input-border);
  border-top: 1px solid var(--color-input-border);
  border-bottom: 1px solid var(--color-input-border);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ToggleInput [data-selected]::after {
  right: 0;
  border-right: 1px solid var(--color-input-border);
  border-top: 1px solid var(--color-input-border);
  border-bottom: 1px solid var(--color-input-border);
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.ButtonRow {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
}

.Button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--color-input-border);
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  cursor: pointer;
}
.Button[data-disabled] {
  opacity: 0.3;
  cursor: default;
}
.Button[data-danger] {
  color: var(--color-danger);
  border-color: var(--color-danger);
}

.ViewControl {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px;
}
.ViewControl-Item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-font);
  cursor: pointer;
  user-select: none;
}
.ViewControl-Item[data-selected] {
  background-color: var(--color-selected);
  border-radius: 2px;
}
.ViewControl-Item-Check {
  display: flex;
  align-items: center;
  visibility: hidden;
}
.ViewControl-Item[data-selected] .ViewControl-Item-Check {
  visibility: visible;
}

.SelectList {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
}
.SelectList-Item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-font);
  cursor: pointer;
  user-select: none;
}

.AlignRow {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
}
.AlignRow-Button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border: 1px solid var(--color-input-border);
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  cursor: pointer;
}

.StatList {
  display: flex;
  flex-direction: column;
  min-width: 160px;
  padding: 8px 12px;
}
.StatList-Row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 28px;
}
.StatList-Row[data-sub] {
  padding-left: 12px;
}
.StatList-Label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-group-header-font);
}
.StatList-Value {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-font);
  font-variant-numeric: tabular-nums;
}

.HistoryList {
  display: flex;
  flex-direction: column;
  min-width: 190px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 8px 12px;
}
.HistoryList-Row {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 8px;
  border-radius: 2px;
  cursor: pointer;
}
.HistoryList-Row[data-current] {
  background-color: var(--color-selected);
}
.HistoryList-Row[data-future] {
  opacity: 0.4;
}
.HistoryList-Dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-group-header-font);
}
.HistoryList-Label {
  flex: 1;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.LayerList {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 200px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 8px 12px;
}
.LayerList-Row {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--color-panel-header-background);
  cursor: pointer;
}
.LayerList-Row[data-active] {
  border-color: var(--color-input-border);
}
.LayerList-Row[data-hidden] {
  opacity: 0.4;
}
.LayerList-Dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.LayerList-Name {
  flex: 1;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-font);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.LayerList-Count {
  margin-left: 4px;
  color: var(--color-group-header-font);
}
.LayerList-Rename {
  flex: 1;
  min-width: 0;
  height: 22px;
  padding: 0 6px;
  border: 1px solid var(--color-input-border);
  border-radius: 2px;
  background: transparent;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-font);
}
.LayerList-Rename:focus {
  outline: none;
}
.LayerList-Button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  border-radius: 2px;
  cursor: pointer;
}
.LayerList-Button[data-del] {
  font-size: 11px;
  color: var(--color-danger);
}

.SqlForm {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px;
}
.SqlForm-Note {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-group-header-font);
}
.SqlForm-Info {
  min-height: 16px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-group-header-font);
}
.SqlForm-Actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.CodeArea {
  width: 320px;
  height: 180px;
  padding: 8px;
  border: 1px solid var(--color-input-border);
  border-radius: 2px;
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-font);
  resize: vertical;
}
.CodeArea:focus {
  outline: none;
}

.TextLink {
  align-self: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-group-header-font);
  cursor: pointer;
  text-decoration: underline;
}

.Overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.Modal {
  background: #1a1c24;
  border: 1px solid #2a2d38;
  border-radius: 14px;
  padding: 24px 28px;
  min-width: 340px;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.Modal[data-wide] {
  width: 620px;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.Modal[data-table] {
  width: 700px;
  max-width: 95vw;
  max-height: 90vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.Modal-Label {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.Modal-Subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.Modal-Input {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  background: #0f1117;
  border: 2px solid #3a3d48;
  border-radius: 8px;
  color: #fff;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
}
.Modal-Input:focus {
  border-color: #4A90D9;
}
.Modal-Pair {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 6px;
}
.Modal-Badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.Modal-Badge[data-side=from] {
  background: rgba(74, 144, 217, 0.1254901961);
  color: #4A90D9;
}
.Modal-Badge[data-side=to] {
  background: rgba(224, 82, 82, 0.1254901961);
  color: #E05252;
}
.Modal-Arrow {
  color: #444;
  font-size: 18px;
}
.Modal-Section {
  margin-top: 14px;
}
.Modal-SectionLabel {
  font-size: 11px;
  color: #666;
  margin-bottom: 6px;
}
.Modal-SectionRow {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.Modal-Choice {
  padding: 5px 10px;
  font-size: 11px;
  border: 1px solid #2a2d38;
  border-radius: 6px;
  background: transparent;
  color: #888;
  cursor: pointer;
}
.Modal-Choice[data-selected] {
  background: rgba(74, 144, 217, 0.1254901961);
  color: #4A90D9;
  border-color: #4A90D9;
}
.Modal-Reuse {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  cursor: pointer;
}
.Modal-Actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.Modal-Spacer {
  flex: 1;
}
.Modal-Cancel {
  padding: 8px 20px;
  font-size: 13px;
  border: 1px solid #2a2d38;
  border-radius: 6px;
  background: transparent;
  color: #888;
  cursor: pointer;
}
.Modal-Cancel[data-danger] {
  color: #E05252;
  border-color: transparent;
}
.Modal-Ok {
  padding: 8px 24px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  background: #4A90D9;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.Modal-Ok[data-tone=green] {
  background: #50B86C;
}
.Modal-Ok[data-tone=cyan] {
  background: #26C6DA;
}
.Modal-Ddl {
  width: 100%;
  height: 300px;
  padding: 12px;
  font-size: 13px;
  background: #0f1117;
  border: 1px solid #3a3d48;
  border-radius: 8px;
  outline: none;
  font-family: monospace;
  resize: vertical;
  line-height: 1.5;
  color: #26C6DA;
}

.TableEdit-Header {
  padding: 20px 24px 12px;
  border-bottom: 1px solid #2a2d38;
}

.TableEdit-NameRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.TableEdit-Icon {
  font-size: 12px;
  color: #888;
  flex-shrink: 0;
}

.TableEdit-NameInput {
  flex: 1;
  padding: 8px 12px;
  font-size: 17px;
  font-weight: 700;
  background: #0f1117;
  border: 1px solid #3a3d48;
  border-radius: 6px;
  color: #50B86C;
  outline: none;
  font-family: monospace;
}
.TableEdit-NameInput:focus {
  border-color: #50B86C;
}

.TableEdit-Cols {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  min-height: 120px;
}

.TableEdit-Empty {
  padding: 24px 0;
  text-align: center;
  color: #444;
  font-size: 12px;
}

.TableEdit-ColHeader {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 44px 44px 44px 44px 60px;
  gap: 6px;
  padding: 8px 0 4px;
  font-size: 9px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #2a2d38;
  margin-bottom: 4px;
}

.TableEdit-ColRow {
  display: grid;
  grid-template-columns: 32px 1fr 1fr 44px 44px 44px 44px 60px;
  gap: 6px;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #1a1c24;
}

.TableEdit-ColIdx {
  font-size: 10px;
  color: #555;
  text-align: center;
}

.TableEdit-ColName,
.TableEdit-ColType {
  padding: 5px 8px;
  font-size: 12px;
  background: #0f1117;
  border: 1px solid #2a2d38;
  border-radius: 4px;
  outline: none;
  font-family: monospace;
}
.TableEdit-ColName:focus,
.TableEdit-ColType:focus {
  border-color: #50B86C;
}

.TableEdit-ColName {
  color: #ddd;
}
.TableEdit-ColName[data-pk] {
  color: #F5A623;
}
.TableEdit-ColName[data-fk] {
  color: #B07DD8;
}

.TableEdit-ColType {
  font-size: 11px;
  color: #888;
}

.TableEdit-Toggle {
  width: 44px;
  height: 28px;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  text-align: center;
  opacity: 0.35;
}
.TableEdit-Toggle[data-on] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.062745098);
}

.TableEdit-ColActions {
  display: flex;
  gap: 2px;
  justify-content: center;
}

.TableEdit-Move {
  width: 18px;
  height: 24px;
  border: none;
  border-radius: 3px;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-size: 10px;
  padding: 0;
}
.TableEdit-Move:disabled {
  color: #333;
  cursor: default;
}
.TableEdit-Move[data-del] {
  color: #E05252;
  width: 20px;
}

.TableEdit-Footer {
  padding: 12px 24px;
  border-top: 1px solid #2a2d38;
  display: flex;
  align-items: center;
  gap: 10px;
}

.TableEdit-Count {
  font-size: 10px;
  color: #555;
}

.ContextMenu {
  position: fixed;
  background: #1e2028;
  border: 1px solid #2a2d38;
  border-radius: 10px;
  padding: 8px;
  z-index: 100;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-height: 80vh;
  overflow-y: auto;
}
.ContextMenu-Item {
  padding: 5px 12px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  color: #ddd;
}
.ContextMenu-Item:hover {
  background: rgba(255, 255, 255, 0.031372549);
}
.ContextMenu-Item[data-selected] {
  color: #4A90D9;
}
.ContextMenu-Item[data-tone=cyan] {
  color: #26C6DA;
}
.ContextMenu-Item[data-tone=green] {
  color: #50B86C;
}
.ContextMenu-Item[data-tone=purple] {
  color: #9B59B6;
}
.ContextMenu-Item[data-tone=red] {
  color: #E05252;
}
.ContextMenu-Sep {
  border-top: 1px solid #2a2d38;
  margin: 2px 0;
}
.ContextMenu-Info {
  padding: 4px 12px;
  font-size: 9px;
  color: #888;
  cursor: default;
}
.ContextMenu-Info[data-conn] {
  padding: 2px 12px;
  color: #F5A623;
}
.ContextMenu-SubLabel {
  font-size: 9px;
  color: #888;
  padding: 2px 8px;
}
.ContextMenu-Colors {
  display: flex;
  gap: 3px;
  padding: 0 8px 4px;
  flex-wrap: wrap;
}
.ContextMenu-Swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}
.ContextMenu-Swatch[data-current] {
  border-color: #fff;
}
.ContextMenu-Align {
  display: flex;
  gap: 2px;
  padding: 2px 8px;
  flex-wrap: wrap;
}
.ContextMenu-AlignButton {
  padding: 2px 6px;
  font-size: 9px;
  background: #0f1117;
  border: 1px solid #2a2d38;
  border-radius: 3px;
  color: #aaa;
  cursor: pointer;
}

.Search {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: rgba(26, 28, 36, 0.9333333333);
  border: 1px solid #2a2d38;
  border-radius: 10px;
  padding: 8px 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-width: 280px;
  max-width: 400px;
}
.Search-InputRow {
  display: flex;
  gap: 6px;
  align-items: center;
}
.Search-Input {
  flex: 1;
  padding: 6px 10px;
  font-size: 12px;
  background: #0f1117;
  border: 1px solid #3a3d48;
  border-radius: 6px;
  color: #fff;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
}
.Search-Close {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 14px;
}
.Search-Result {
  margin-top: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.Search-Empty {
  font-size: 11px;
  color: #555;
  padding: 4px 0;
}
.Search-Row {
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
}
.Search-Row:hover {
  background: rgba(74, 144, 217, 0.0823529412);
}
.Search-Row[data-selected] {
  color: #4A90D9;
}
.Search-Dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.Search-Name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Search-Icon {
  font-size: 9px;
  color: #50B86C;
}
.Search-More {
  font-size: 9px;
  color: #555;
  padding: 2px 8px;
}

.Er,
.ErSeo {
  --color-font: #ededed;
  --color-group-header-font: #9a9a9a;
  --color-stepper-icon: #dadada;
  --color-input-border: #a5a5a5;
  --color-panel-background: #363636;
  --color-panel-header-background: #323232;
  --color-panel-border: #2e2e2e;
  --color-panel-group-border: #2a2a2a;
  --color-selected: #575757;
  --color-danger: #e05252;
}

.Er {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #0f1117;
  overflow: hidden;
  position: relative;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  color: #e0e0e0;
  outline: none;
}
.Er-Body {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}
.Er-CanvasWrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.Er-Canvas {
  display: block;
  cursor: default;
  touch-action: none;
}
.Er-Minimap {
  position: absolute;
  bottom: 28px;
  right: 8px;
  width: 160px;
  height: 100px;
  border-radius: 8px;
  border: 1px solid #2a2d38;
  cursor: crosshair;
  z-index: 15;
  opacity: 0.85;
}
.Er-FileInput {
  display: none;
}

.ErSeo {
  height: 100vh;
  overflow-y: auto;
  background-color: #0f1117;
  color: #e0e0e0;
  font-family: "Noto Sans JP", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.ErSeo-Main {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px;
}

.Hidden {
  display: none;
}