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

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

a,
blockquote,
button,
code,
div,
figcaption,
h1,
h2,
h3,
input[type=email],
input[type=text],
input[type=password],
li,
ol,
option,
p,
pre,
select,
span,
strong,
sub,
sup,
td,
textarea,
th,
ul {
  color: var(--color-font);
}

a,
blockquote,
body,
br,
button,
code,
div,
figure,
figcaption,
h1,
h2,
h3,
html,
iframe,
img,
input,
li,
ol,
option,
p,
pre,
select,
span,
strong,
sub,
sup,
table,
tbody,
td,
th,
thead,
tr,
ul {
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

html,
body {
  overflow: hidden;
}

body {
  font-family: BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  font-size: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

a {
  background: transparent;
  font-size: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

p a {
  font-size: 100%;
  font-weight: bold;
}

strong {
  font-size: 100%;
  vertical-align: baseline;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  font-size: 0;
  max-width: 100%;
}

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

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  text-align: left;
  white-space: nowrap;
  word-break: break-all;
}

th {
  font-weight: bold;
}

blockquote {
  quotes: none;
}

blockquote::after,
blockquote::before {
  content: "";
}

pre code {
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Consolas, Menlo, "Liberation Mono", monospace;
}

input {
  background-color: transparent;
}

input[type=file],
input[type=checkbox] {
  display: none;
}

textarea {
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
  background-color: transparent;
  resize: vertical;
  text-rendering: optimizeLegibility;
  width: 100%;
  overflow-anchor: none;
}

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

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

::-webkit-calendar-picker-indicator {
  display: none;
}

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

iframe {
  display: block;
  max-width: 100%;
}

:root {
  --color-font: #f4f4f4;
  --color-font-black: #1f1f1f;
  --color-font-white: #fcfcfc;
  --color-group-header-font: #9a9a9a;
  --color-muted: #646464;
  --color-hex: #9a9a9a;
  --color-stepper-icon: #dadada;
  --color-number-icon: #dadada;
  --color-icon: #adadad;
  --color-transparent-dark: #3a3a3a;
  --color-transparent-light: #3c3c3c;
  --color-input-background: #3c3c3c;
  --color-panel-background: #363636;
  --color-panel-header-background: #323232;
  --color-panel-border: #2e2e2e;
  --color-panel-group-border: #2a2a2a;
  --color-child-panel-group-border: #393939;
  --color-application-menu-border: #393939;
  --color-body-background: #3a3a3a;
  --color-shadow: #303030;
  --color-item-selected: #393939;
}

.Logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 28px;
}
.Logo-Text {
  color: var(--color-font);
  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: var(--color-panel-background);
  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;
  flex-shrink: 0;
  padding: 12px 0;
}
.ApplicationMenu-Link {
  padding: 5px 24px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-font);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ApplicationMenu-Home {
  padding: 5px 24px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-group-header-font);
  text-decoration: none;
}

.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: var(--color-muted);
  cursor: pointer;
  user-select: none;
}
.PanelControl-Item[data-open] {
  color: var(--color-font);
}

.PanelColumn {
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 20;
  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: var(--color-panel-background);
  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;
  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-icon);
  cursor: pointer;
}
.Panel-CloseIcon svg {
  visibility: hidden;
}
.Panel-CloseIcon:hover svg {
  visibility: visible;
}
.Panel-Title {
  display: flex;
  align-items: center;
  height: 32px;
  background: var(--color-panel-header-background);
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-font);
  border-bottom-right-radius: 12px;
}
.Panel-Title[data-end] {
  padding: 0 16px;
}
.Panel > .EntryList,
.Panel > .Filter,
.Panel > .About {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

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

.EntryList {
  display: flex;
  flex-direction: column;
  width: 320px;
  padding: 4px 0 12px;
}
.EntryList-Item {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  text-decoration: none;
  cursor: pointer;
}
.EntryList-Item-Date {
  font-size: 11px;
  line-height: 17px;
  color: var(--color-group-header-font);
}
.EntryList-Item-Title {
  padding-top: 3px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-group-header-font);
}
.EntryList-Item:hover .EntryList-Item-Title {
  color: var(--color-font);
}
.EntryList-Item[data-current] {
  background: var(--color-item-selected);
}
.EntryList-Item[data-current] .EntryList-Item-Title {
  color: var(--color-font);
}
.EntryList-Empty {
  padding: 8px 16px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-group-header-font);
}

.Filter {
  display: flex;
  flex-direction: column;
  width: 220px;
  padding: 4px 0 12px;
}
.Filter-Group {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.Filter-Group-Label {
  padding: 0 16px 4px;
  font-size: 11px;
  line-height: 17px;
  color: var(--color-group-header-font);
}

.SelectList {
  display: flex;
  flex-direction: column;
}
.SelectList-Item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 16px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-group-header-font);
  text-align: left;
}
.SelectList-Item-Check {
  display: flex;
  align-items: center;
  color: var(--color-icon);
  visibility: hidden;
}
.SelectList-Item:hover {
  color: var(--color-font);
}
.SelectList-Item[data-current] {
  background: var(--color-item-selected);
  color: var(--color-font);
}
.SelectList-Item[data-current] .SelectList-Item-Check {
  visibility: visible;
}

.About {
  width: 320px;
  padding: 12px 16px 20px;
}
.About-Heading {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-font);
}
.About-Body {
  padding-top: 10px;
  font-size: 13px;
  line-height: 22px;
  color: var(--color-group-header-font);
}

.Article {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px calc(72px - 6.5px);
}
.Article-Head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-group-header-font);
}
.Article-Title {
  padding-top: 20px;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  color: var(--color-font);
}
.Article-Summary {
  padding-top: 16px;
  font-size: 15px;
  line-height: 26px;
  color: var(--color-group-header-font);
}
.Article-Body {
  padding-top: calc(28px - 6.5px);
}
.Article-Body p {
  font-size: 15px;
  line-height: 28px;
  color: var(--color-font);
}
.Article-Body p + p {
  padding-top: calc(20px - 6.5px - 6.5px);
}
.Article-Source {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
}
.Article-Source-Label {
  font-size: 12px;
  line-height: 18px;
  color: var(--color-group-header-font);
}
.Article-Source-Link {
  padding-top: 8px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-font);
}
.Article-Source-Link:hover {
  text-decoration: underline;
}
.Article-Checked {
  padding-top: 24px;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-group-header-font);
}

.Root {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--color-body-background);
  color: var(--color-font);
  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;
}

.Board {
  position: absolute;
  inset: 0;
  padding-top: 56px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}