@charset "UTF-8";
:root {
  color: var(--text-color);
}

body {
  margin: 0;
  width: 100%;
}

.navi_link:any-link svg {
  width: fit-content;
  margin: 0;
  height: 24px;
  transition: fill 0.2s, height 0.2s ease-in-out;
}
.navi_link:any-link:hover svg {
  height: 32px;
}

.post {
  font-size: 15px;
  color: var(--text-color-1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.post .sidebar_wrapper {
  flex-grow: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  width: calc((100vw - var(--content-max-width)) / 2);
  box-sizing: border-box;
  border: 24px solid var(--bg-color-0);
  background-image: var(--bg-image-koiro-text-tile);
}
.post .sidebar_wrapper .navi {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 24px;
  top: 40vh;
  transform: translateY(-50%);
  width: fit-content;
  align-items: end;
}
.post .sidebar_wrapper .navi a {
  width: fit-content;
}
.post .sidebar_wrapper .catalogue {
  height: 100vh;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  transition: 0.5s opacity;
}
.post .sidebar_wrapper .catalogue:hover {
  opacity: 1;
}
.post .sidebar_wrapper .catalogue ul {
  width: fit-content;
  margin: 0 0;
  padding: 0;
  overflow-y: scroll;
}
.post .sidebar_wrapper .catalogue ul li {
  list-style: none;
  max-width: 15vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post .sidebar_wrapper .catalogue ul li a t {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-color-2);
  transition: color 0.16s;
}
.post .sidebar_wrapper .catalogue ul li a:hover t {
  color: var(--text-color-0);
}
.post .sidebar_wrapper .catalogue .h1 {
  margin: 14px 0 8px;
  font-size: 14px;
}
.post .sidebar_wrapper .catalogue .h1 a {
  color: var(--text-color-1);
}
.post .sidebar_wrapper .catalogue .h2 {
  margin: 8px 0;
  padding-left: 16px;
  font-size: 14px;
}
.post .sidebar_wrapper .catalogue .h2 a {
  color: var(--text-color-1);
}
.post .sidebar_wrapper .catalogue .h2::before {
  content: "-";
}
.post .sidebar_wrapper .catalogue .h3 {
  margin: 4px 0;
  padding-left: 32px;
  font-size: 14px;
}
.post .sidebar_wrapper .catalogue .h3 a {
  color: var(--text-color-2);
}
.post .sidebar_wrapper .catalogue .h3::before {
  content: "·";
}
.post .sidebar_wrapper .catalogue a {
  text-decoration: none;
  cursor: pointer;
  transition: 0.1s color;
  color: var(--text-color-1);
}
.post .contents {
  margin: 0;
  border-left: solid var(--bg-color-2) 1px;
  border-right: solid var(--bg-color-2) 1px;
  padding: 24px 52px 52px;
  background-color: var(--bg-color-0);
}
.post .contents .top_gap_space {
  height: 5vh;
}
.post .contents .header {
  display: none;
  flex-direction: row;
  gap: 8px;
  height: 48px;
  align-items: center;
}
.post .contents .page_description {
  box-shadow: inset 0 -6px var(--bg-color-2);
  padding: 12px 24px;
  padding-bottom: 18px;
  border-radius: 6px;
  border: solid 1px var(--bg-color-3);
  background-color: var(--bg-color-1);
  margin: 24px 0;
}
.post .contents .page_description h1 {
  margin: 6px 0;
  text-align: left;
  font-weight: 400;
  font-size: 28px;
  color: var(--emphasized-color);
}
.post .contents .page_description hr {
  border: none;
  border-top: var(--bg-color-3) solid 1px;
  margin: 18px -24px;
}
.post .contents .page_description .sub_info {
  display: flex;
  justify-content: left;
  padding: 0 0;
  gap: 4px;
}
.post .contents .page_description .sub_info p {
  margin: 0;
  width: fit-content;
  color: var(--text-color-1);
  font-size: 16px;
  font-family: monospace;
}
.post .contents .page_description .sub_info .type_tags {
  display: flex;
  flex-direction: row;
  justify-content: end;
}
.post .contents .page_description .sub_info .type_tags .tag {
  margin: auto 6px;
  text-decoration: underline dotted;
}
.post .contents .page_description .sub_info .type_tags .tag::before {
  content: "#";
}
.post .contents .page_description .sub_info .type_tags .type {
  margin-left: 8px;
  text-decoration: underline solid;
}
@media only screen and (max-width: 760px) {
  .post .catalogue {
    display: none;
  }
  .post .navi {
    display: none;
  }
  .post .contents .header {
    display: flex;
  }
}

@media only screen and (max-width: 760px) {
  html {
    box-sizing: content-box;
  }
  .post {
    display: block;
    width: 100%;
  }
  .post .sidebar_wrapper {
    display: none;
  }
  .post .contents {
    padding: 24px;
    width: 100%;
    max-width: none;
    border: none;
    display: block;
  }
}

/*# sourceMappingURL=post.css.map */
