/*
* Basics
*/
@font-face {
  font-family: "mori";
  src: url("/wp-content/themes/docs/assets/fonts/PPMori-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "mori";
  src: url("/wp-content/themes/docs/assets/fonts/PPMori-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
.hljs {
  color: #c9d1d9;
  background: #0d1117;
}

.hljs-doctag, .hljs-keyword, .hljs-meta .hljs-keyword, .hljs-template-tag, .hljs-template-variable, .hljs-type, .hljs-variable.language_ {
  color: #ff7b72;
}

.hljs-title, .hljs-title.class_, .hljs-title.class_.inherited__, .hljs-title.function_ {
  color: #d2a8ff;
}

.hljs-attr, .hljs-attribute, .hljs-literal, .hljs-meta, .hljs-number, .hljs-operator, .hljs-selector-attr, .hljs-selector-class, .hljs-selector-id, .hljs-variable {
  color: #79c0ff;
}

.hljs-meta .hljs-string, .hljs-regexp, .hljs-string {
  color: #a5d6ff;
}

.hljs-built_in, .hljs-symbol {
  color: #ffa657;
}

.hljs-code, .hljs-comment, .hljs-formula {
  color: #8b949e;
}

.hljs-name, .hljs-quote, .hljs-selector-pseudo, .hljs-selector-tag {
  color: #7ee787;
}

.hljs-subst {
  color: #c9d1d9;
}

.hljs-section {
  color: #1f6feb;
  font-weight: 700;
}

.hljs-bullet {
  color: #f2cc60;
}

.hljs-emphasis {
  color: #c9d1d9;
  font-style: italic;
}

.hljs-strong {
  color: #c9d1d9;
  font-weight: 700;
}

.hljs-addition {
  color: #aff5b4;
  background-color: #033a16;
}

.hljs-deletion {
  color: #ffdcd7;
  background-color: #67060c;
}

/*
* VW Unit
*/
/*
* VH Unit
*/
a {
  text-decoration: none;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

section {
  position: relative;
}

#viewport {
  height: 100%;
  min-height: 100lvh;
}
#viewport #pageWrapper #pageContent {
  will-change: transform;
}

.container {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}

.cbg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.cobj {
  object-fit: cover;
  object-position: center center;
}

.btn {
  background: transparent;
  display: flex;
  width: fit-content;
  height: 50px;
  margin: 0;
  padding: 0 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-n1-color);
  border-radius: 6px;
}
.btn span {
  font-size: 18px;
  font-weight: 400;
  font-family: "mori";
  color: var(--gray-n1-color);
}
@media screen and (max-width: 1366px) {
  .btn span {
    font-size: clamp(16px, 1.317715959vw, 18px);
  }
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 16px;
  align-items: center;
}

/*
* Templates
*/
header {
  background: var(--theme-color);
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 99;
}
header .container {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1540px;
  align-items: center;
  justify-content: space-between;
}
header .container .left {
  display: flex;
  width: 320px;
  height: 100%;
  flex: 0 0 320px;
  padding: 0 24px 0 30px;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
header .container .left a {
  display: inline-flex;
  width: fit-content;
}
header .container .left a svg {
  width: auto;
  height: 25px;
}
header .container .left a svg path {
  fill: var(--white-color);
}
header .container .left .search {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  transition-property: background;
  transition-duration: 0.2s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
}
header .container .left .search svg {
  width: 16px;
  height: auto;
}
header .container .left .search svg path {
  fill: var(--gray-n1-color);
  transition-property: fill;
  transition-duration: 0.2s;
}
header .container .left .search:hover {
  background: var(--gray-n1-color);
}
header .container .left .search:hover svg path {
  fill: var(--theme-color);
}
header .container .right {
  padding: 0 30px;
}
header .container .right nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .container .right nav ul li a {
  font-size: 18px;
  color: var(--gray-n1-color);
  transition-property: color;
  transition-duration: 0.2s;
}
header .container .right nav ul li a:hover {
  color: var(--gray-n2-color);
}
header .container .right nav ul li + li {
  margin-left: 25px;
}
header .container .right nav ul li:last-child {
  margin-left: 35px;
}
header .container .right nav ul li:last-child a {
  background: var(--gray-n1-color);
  display: flex;
  padding: 0 25px;
  width: fit-content;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  transition-property: background, border-color, color;
  transition-duration: 0.2s, 0.2s, 0.2s;
  height: 35px;
}
header .container .right nav ul li:last-child a:hover {
  background: var(--gray-n2-color);
  border-color: var(--gray-n2-color);
  color: var(--gray-n1-color);
}
header .container .right nav .ham-menu {
  display: none;
  width: 75px;
  height: 100%;
  flex: 0 0 75px;
  cursor: pointer;
}
header .container .right nav .ham-menu .bars {
  position: relative;
  width: 40px;
  height: 14px;
}
header .container .right nav .ham-menu .bars .bar {
  background: var(--gray-n1-color);
  position: absolute;
  width: 100%;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
}
header .container .right nav .ham-menu .bars .bar:nth-child(1) {
  top: 0;
}
header .container .right nav .ham-menu .bars .bar:nth-child(2) {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  header .container .left {
    width: 100%;
    flex: initial;
    padding: 0 20px;
  }
  header .container .right {
    height: 100%;
    padding: 0;
  }
  header .container .right nav {
    height: 100%;
  }
  header .container .right nav ul {
    background: var(--theme-color);
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    padding: 40px;
    pointer-events: none;
    opacity: 0;
  }
  header .container .right nav ul li a {
    white-space: nowrap;
  }
  header .container .right nav ul li + li {
    margin: 15px 0 0 !important;
  }
  header .container .right nav .ham-menu {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
}

#h__intro {
  display: flex;
  height: 100vh;
  padding: 124px 20px 64px;
  align-items: center;
  justify-content: center;
}
#h__intro .container .contents {
  margin: 0 auto;
}
#h__intro .container .contents .inner-contents h1 {
  display: table;
  margin: 0 auto;
  font-size: 48px;
  text-align: center;
  color: var(--white-color);
}
#h__intro .container .contents .inner-contents .buttons {
  margin: 15px 0 0;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #h__intro .container .contents .inner-contents h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 540px) {
  #h__intro .container .contents .inner-contents h1 {
    font-size: 28px;
  }
}

.docs {
  width: 100%;
  height: 100svh;
  padding-top: 65px;
}
.docs .container {
  display: flex;
  height: 100%;
  max-width: 1540px;
}
.docs .container .sidebar,
.docs .container .main-contents {
  height: 100%;
}
.docs .container .menu-btn {
  background: var(--theme-color);
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.docs .container .menu-btn span {
  color: var(--gray-n1-color);
}
.docs .container .menu-btn .icon {
  display: inline-flex;
}
.docs .container .menu-btn .icon svg {
  width: 12px;
  height: auto;
}
.docs .container .menu-btn .icon svg path {
  fill: var(--gray-n1-color);
}
.docs .container .sidebar {
  width: 320px;
  flex: 0 0 320px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: scroll;
}
.docs .container .sidebar .inner .item .title {
  display: flex;
  column-gap: 16px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 20px;
}
.docs .container .sidebar .inner .item .title .icon {
  background: var(--gray-n1-color);
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.docs .container .sidebar .inner .item .title span {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-n1-color);
}
.docs .container .sidebar .inner .item ul {
  margin: 0 0 0 20px;
}
.docs .container .sidebar .inner .item ul li a {
  font-size: 16px;
  color: var(--gray-n1-color);
  transition-property: color;
  transition-duration: 0.2s;
}
.docs .container .sidebar .inner .item ul li a:hover {
  color: var(--gray-n2-color);
}
.docs .container .sidebar .inner .item + .item {
  margin: 35px 0 0;
}
.docs .container .main-contents {
  display: flex;
  width: 100%;
}
.docs .container .main-contents article {
  width: 100%;
  height: 100%;
  max-width: 800px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: scroll;
}
.docs .container .main-contents article nav {
  margin: 0 0 18px;
}
.docs .container .main-contents article nav ul {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
.docs .container .main-contents article nav ul li {
  display: flex;
  column-gap: 12px;
  align-items: center;
}
.docs .container .main-contents article nav ul li a {
  font-size: 16px;
  color: var(--gray-n2-color);
  transition-property: color;
  transition-duration: 0.2s;
}
.docs .container .main-contents article nav ul li a:hover {
  color: var(--white-color);
}
.docs .container .main-contents article nav ul li + li:before {
  content: "/";
  font-size: 16px;
  color: var(--gray-n2-color);
}
.docs .container .main-contents article .contents .inner-contents h1,
.docs .container .main-contents article .contents .inner-contents h2,
.docs .container .main-contents article .contents .inner-contents h3,
.docs .container .main-contents article .contents .inner-contents h4,
.docs .container .main-contents article .contents .inner-contents h5,
.docs .container .main-contents article .contents .inner-contents h6 {
  color: var(--gray-n1-color);
}
.docs .container .main-contents article .contents .inner-contents h2,
.docs .container .main-contents article .contents .inner-contents h3,
.docs .container .main-contents article .contents .inner-contents h4,
.docs .container .main-contents article .contents .inner-contents h5,
.docs .container .main-contents article .contents .inner-contents h6 {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.docs .container .main-contents article .contents .inner-contents h1 {
  font-size: clamp(32px, 3.513909224vw, 48px);
}
.docs .container .main-contents article .contents .inner-contents h2 {
  font-size: clamp(24px, 2.635431918vw, 36px);
}
.docs .container .main-contents article .contents .inner-contents h3 {
  font-size: clamp(20px, 2.0497803807vw, 28px);
}
.docs .container .main-contents article .contents .inner-contents h4 {
  font-size: clamp(18px, 1.6105417277vw, 22px);
}
.docs .container .main-contents article .contents .inner-contents h5,
.docs .container .main-contents article .contents .inner-contents h6 {
  font-size: clamp(16px, 1.317715959vw, 18px);
}
.docs .container .main-contents article .contents .inner-contents .uptitle,
.docs .container .main-contents article .contents .inner-contents .subtitle {
  color: var(--gray-n2-color);
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap {
  display: block;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap h2 + p, .docs .container .main-contents article .contents .inner-contents rwp-wrap h2 + ul, .docs .container .main-contents article .contents .inner-contents rwp-wrap h2 + ol, .docs .container .main-contents article .contents .inner-contents rwp-wrap h2 + pre, .docs .container .main-contents article .contents .inner-contents rwp-wrap h2 + code, .docs .container .main-contents article .contents .inner-contents rwp-wrap h2 + .notice,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h3 + p,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h3 + ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h3 + ol,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h3 + pre,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h3 + code,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h3 + .notice,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h4 + p,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h4 + ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h4 + ol,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h4 + pre,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h4 + code,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h4 + .notice,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h5 + p,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h5 + ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h5 + ol,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h5 + pre,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h5 + code,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h5 + .notice,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h6 + p,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h6 + ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h6 + ol,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h6 + pre,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h6 + code,
.docs .container .main-contents article .contents .inner-contents rwp-wrap h6 + .notice {
  margin-top: 25px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol {
  padding-left: 40px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul li,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol li {
  line-height: 140%;
  color: var(--gray-n1-color);
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul li a,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol li a {
  color: var(--gray-n1-color);
  text-decoration: underline;
  transition-property: color;
  transition-duration: 0.2s;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul li a:hover,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol li a:hover {
  color: var(--gray-n2-color);
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul li ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol li ul {
  margin: 8px 0 0;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul li + li,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol li + li {
  margin-top: 7px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul code,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol code {
  display: inline;
  padding: 3px 7px;
  width: fit-content;
  white-space: pre-wrap;
  word-break: break-word;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul + p, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + ul, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + ol, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + pre, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + code, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + .notice,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + p,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + ul,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + ol,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + pre,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + code,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + .notice {
  margin-top: 25px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul + h2, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + h3, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + h4, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + h5, .docs .container .main-contents article .contents .inner-contents rwp-wrap ul + h6,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + h2,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + h3,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + h4,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + h5,
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol + h6 {
  margin-top: 35px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ul {
  list-style: initial;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap ol {
  list-style: auto;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap p {
  line-height: 140%;
  color: var(--gray-n1-color);
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap p a {
  color: var(--gray-n1-color);
  text-decoration: underline;
  transition-property: color;
  transition-duration: 0.2s;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap p a:hover {
  color: var(--gray-n2-color);
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap p code {
  display: inline;
  padding: 3px 7px;
  width: fit-content;
  white-space: pre-wrap;
  word-break: break-word;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap p + p, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + ul, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + ol, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + pre, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + code, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + .notice {
  margin-top: 25px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap p + h2, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + h3, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + h4, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + h5, .docs .container .main-contents article .contents .inner-contents rwp-wrap p + h6 {
  margin-top: 35px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap pre {
  white-space: pre-wrap;
  margin-bottom: 0;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap pre + p, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + ul, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + ol, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + pre, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + code, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + .notice {
  margin-top: 25px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap pre + h2, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + h3, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + h4, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + h5, .docs .container .main-contents article .contents .inner-contents rwp-wrap pre + h6 {
  margin-top: 35px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap code {
  background: rgba(255, 255, 255, 0.1);
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  tab-size: 4;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap code + p, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + ul, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + ol, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + pre, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + code, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + .notice {
  margin-top: 25px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap code + h2, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + h3, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + h4, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + h5, .docs .container .main-contents article .contents .inner-contents rwp-wrap code + h6 {
  margin-top: 35px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap .notice {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 20px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + p, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + ul, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + ol, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + .notice {
  margin-top: 25px;
}
.docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + h2, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + h3, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + h4, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + h5, .docs .container .main-contents article .contents .inner-contents rwp-wrap .notice + h6 {
  margin-top: 35px;
}
.docs .container .main-contents article .contents:nth-child(2) .inner-contents rwp-wrap {
  margin: 20px 0 0;
}
.docs .container .main-contents article .contents:nth-child(2) .inner-contents rwp-wrap p {
  font-size: clamp(18px, 1.6105417277vw, 22px);
}
.docs .container .main-contents article .contents:nth-child(2) .inner-contents .buttons {
  margin: 25px 0 0;
}
.docs .container .main-contents article .contents:nth-child(3) {
  margin: 65px 0 0;
}
.docs .container .main-contents article .contents:nth-child(3) .inner-contents rwp-wrap p {
  font-size: clamp(16px, 1.317715959vw, 18px);
}
.docs .container .main-contents article .contents:nth-child(3) .inner-contents rwp-wrap ul li,
.docs .container .main-contents article .contents:nth-child(3) .inner-contents rwp-wrap ol li {
  font-size: clamp(16px, 1.317715959vw, 18px);
}
.docs .container .main-contents aside {
  width: calc(100% - 800px);
  height: 100%;
  padding: 40px;
  overflow: scroll;
}
.docs .container .main-contents aside .inner {
  width: 100%;
  max-width: 320px;
  margin: 0 0 0 45px;
}
.docs .container .main-contents aside .inner ul li span {
  font-size: 16px;
  color: var(--gray-n1-color);
  transition-property: color;
  transition-duration: 0.2s;
  cursor: pointer;
}
.docs .container .main-contents aside .inner ul li span:hover {
  color: var(--gray-n2-color);
}
@media screen and (max-width: 1440px) {
  .docs .container .main-contents aside .inner {
    margin: 0;
  }
}
@media screen and (max-width: 1366px) {
  .docs .container .main-contents article {
    max-width: 100%;
    border-right: none;
  }
  .docs .container .main-contents aside {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .docs .container {
    position: relative;
    flex-wrap: wrap;
  }
  .docs .container .menu-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
  }
  .docs .container .sidebar {
    background: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    flex: 0 0 100%;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 2;
  }
  .docs .container .sidebar .inner {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .docs .container .main-contents {
    position: relative;
    z-index: 1;
  }
  .docs .container .main-contents article {
    max-width: 100%;
    border-right: none;
    padding: 110px 30px 40px;
  }
  .docs .container .main-contents aside {
    display: none;
  }
}

footer {
  margin: 65px 0 0;
}
footer span {
  font-size: 14px;
  line-height: 100%;
  color: var(--gray-n1-color);
}
footer span a {
  color: var(--gray-n1-color);
  text-decoration: underline;
}