/* A Modern CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700;800&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

mdview-content {
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-weight: 300;
  font-kerning: auto;
  font-variant-ligatures: none;
  letter-spacing: 0.25px;
  line-height: 1.75em;
  letter-spacing: 0.03rem;
  color: #3f3c3c;
}
mdview-content > section {
  padding: 60px 20px;
  max-width: 900px;
  width: 100%;
  margin: auto;
}
mdview-content > section p {
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
mdview-content > section a {
  color: #6699cc;
}
mdview-content > section a:link {
  color: #6699cc;
  text-decoration: underline;
}
mdview-content > section a:visited {
  text-decoration: underline;
  color: #778899;
}
mdview-content > section a:active {
  text-decoration: underline;
  color: #6699cc;
}
mdview-content > section a:hover {
  text-decoration: underline;
  color: #6699cc;
}
mdview-content > section h1, mdview-content > section h2, mdview-content > section h3, mdview-content > section h4, mdview-content > section h5 {
  margin: 3rem 0 1.38rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  line-height: 1.3;
}
mdview-content > section h1 {
  margin-top: 0;
  font-size: 2.488rem;
}
mdview-content > section h2 {
  font-size: 1.85rem;
  border-bottom: 1px solid #bbb;
  line-height: 1.5;
}
mdview-content > section h3 {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: #bbb 1px dashed;
  margin-bottom: 0.5rem;
}
mdview-content > section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
mdview-content > section h5 {
  font-size: 1.2rem;
}
mdview-content > section small, mdview-content > section .text_small {
  font-size: 0.833rem;
}
mdview-content > section pre {
  background-color: #f6f8fa;
  font-weight: 300;
  border-radius: 3px;
  line-height: 1.65em;
  margin: 1em;
  width: 100%;
}
mdview-content > section pre.mermaid {
  background-color: initial;
}
mdview-content > section sup, mdview-content > section sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
mdview-content > section sub {
  top: 0.4em;
}
mdview-content > section blockquote {
  position: relative;
  border-left: none;
  padding: 2rem 0 2rem 5rem;
  margin-bottom: 0;
}
mdview-content > section blockquote:before {
  content: open-quote;
  position: absolute;
  top: 60px;
  left: 3rem;
  font-size: 10rem;
  opacity: 0.1;
  font-family: "Times New Roman", Times;
  transform: scaleY(110%);
}
mdview-content > section blockquote:after {
  content: no-close-quote;
}
mdview-content > section hr {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #333;
  text-align: center;
  height: 1.75em;
  user-select: text;
  margin: 1rem auto;
}
mdview-content > section hr:after {
  content: "*";
  position: relative;
  display: inline-block;
  user-select: text;
  color: #bbb;
  padding: 0 0.5em;
  line-height: 1.75em;
}
mdview-content > section ul {
  padding-left: 2rem;
}
mdview-content > section ul li {
  position: relative;
  list-style: none;
  margin-top: 0.3rem;
  text-indent: -12px;
}
mdview-content > section ul li::before {
  content: "";
  display: inline-block;
  vertical-align: 2px;
  position: relative;
  margin-right: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: #bbb;
  border-radius: 10px;
}
mdview-content > section ul li > ul {
  padding-left: 2rem;
}
mdview-content > section ul li > ul > li::before {
  border: 1px solid #bbb;
  background-color: initial;
}
mdview-content > section ul li > ul > li > ul > li::before {
  width: 4px;
  height: 4px;
  background-color: #bbb;
  vertical-align: 3px;
}
mdview-content > section ul.contains-task-list {
  margin-left: -1em;
}
mdview-content > section ul.contains-task-list li::before {
  content: none;
}
mdview-content > section ol li {
  margin-top: 0.3rem;
}

mdview-content table {
  border-collapse: collapse;
  margin-bottom: 1em;
  width: 100%;
}
mdview-content table th, mdview-content table td {
  border-bottom: 1px solid #bbb;
  padding: 10px 20px;
}
mdview-content table tbody tr {
  background-color: #fff;
}
mdview-content table tbody tr:nth-child(even) {
  background-color: #ddd;
}
mdview-content table tbody tr:last-child td {
  border-bottom: 1px solid #333;
}
mdview-content table thead th {
  background-color: #333;
  color: #fff;
  border-bottom: none;
}

mdview-content .footnotes {
  font-size: 0.75rem;
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}
mdview-content .footnotes-list {
  padding-top: 5px;
  min-width: 50%;
  border-top: 1px solid #bbb;
}
mdview-content .footnotes-list p {
  margin-bottom: 0;
}
mdview-content .footnotes-sep {
  display: none;
}

mdview-content {
  /* highlight.js */
}
mdview-content code {
  border-radius: 3px;
  padding: 0 3px;
  white-space: pre-wrap;
  overflow: auto;
  line-height: 1.5;
}
mdview-content code:not(.hljs) {
  background-color: rgba(0, 0, 0, 0.03);
  display: inline-block;
  margin: 0 3px;
  vertical-align: -0.4em;
}
mdview-content pre:not(.code) {
  padding: 1em;
  margin: 0;
  margin-bottom: 1rem;
}
mdview-content pre:not(.code) > code {
  background: transparent;
  font-size: 0.875rem;
}
mdview-content pre.code {
  margin: 0;
  width: 100%;
  margin-bottom: 1rem;
}
mdview-content pre.code > code {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}
mdview-content pre.code > code[class*=language] {
  display: block;
  position: relative;
  word-break: break-word;
  white-space: break-spaces;
  overflow: scroll;
}
mdview-content pre.code > code table {
  display: table;
  border: 1px solid #bbb;
  width: 100%;
  font-size: 0.875rem;
  margin-bottom: 0;
}
mdview-content pre.code > code table td, mdview-content pre.code > code table th, mdview-content pre.code > code table tr {
  padding: 3px !important;
  border: none !important;
  vertical-align: top;
  background-color: transparent;
}
p mdview-content pre {
  display: inline-block;
  margin: 1px;
  padding: 0 2px;
  background-color: #f3f3f3;
}
mdview-content .highlight {
  margin-bottom: 16px;
}
mdview-content .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}
mdview-content .hljs-ln-numbers {
  border-right: 1px solid #ccc;
  color: #bbb;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
mdview-content .hljs-ln-n {
  width: 2em;
}
mdview-content .hljs-ln-code {
  width: 100%;
}

mdview-content .toc {
  display: inline-block;
  border: 1px solid #a2a9b1;
  padding: 5px;
  margin: 1em 0;
  width: 50%;
  background: #f8f9fa;
  font-size: 0.85em;
  line-height: 1.5em;
  word-break: normal;
}
@media (max-width: 768px) {
  mdview-content .toc {
    width: 100%;
  }
}
mdview-content .toc h2 {
  font-size: 1.2em;
  font-weight: 500;
  margin: 0 0.5em;
  border-bottom: none;
  cursor: pointer;
}
mdview-content .toc h2:after {
  content: " [hide]";
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  font-weight: 200;
  font-size: 0.85em;
  color: #bbb;
}
mdview-content .toc ul {
  list-style-position: outside;
  list-style-type: none;
  counter-reset: toc;
  margin: 0.5em auto;
  padding-left: 0.5em;
}
mdview-content .toc ul li {
  margin: 0 auto;
  display: table-row;
  counter-increment: toc;
  text-indent: initial;
}
mdview-content .toc ul li:before {
  padding-right: 0.25em;
  display: table-cell;
  content: counters(toc, ".") ".";
  vertical-align: initial;
  background-color: initial;
  border: initial;
}
mdview-content .toc ul li:after {
  content: none;
}
mdview-content .toc.close h2:after {
  content: " [show]";
}
mdview-content .toc.close ul {
  display: none;
}