:root {
  background-color: var(--bg-color);
  --about-width: 366px;
}

body {
  margin: 0;
}

.cursor_follower {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: var(--bg-color-0);
  font-weight: bold;
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  width: var(--about-width);
  height: 100vh;
  background-color: var(--bg-color-1);
  background-image: var(--bg-image-koiro-text-tile);
  box-sizing: border-box;
  border: 24px var(--bg-color-0) solid;
  padding: 30px;
  overflow: auto;
  color: var(--text-color-1);
  font-weight: 200;
}
.about .up {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.about .down {
  justify-content: end;
  width: 100%;
}
.about .outside_pages {
  margin: 16px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.about img {
  width: min(266px, 100%);
  object-fit: contain;
}
.about .introduction {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 24px 0;
}
.about .introduction .texts {
  display: flex;
  flex-direction: column;
}
.about .introduction .texts h2 {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}
.about .introduction .texts p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-color-2);
  font-weight: normal;
}
.about .introduction .icon {
  padding-right: 8px;
}
.about .introduction .icon img {
  height: 72px;
  width: 72px;
}
@media only screen and (max-width: 380px) {
  .about .outside_pages {
    flex-direction: column;
  }
  .about .outside_pages .outside_page_item {
    margin-left: auto;
    margin-right: auto;
  }
  .about .introduction {
    flex-direction: column;
  }
  .about .introduction .icon {
    margin-bottom: 16px;
  }
  .about .introduction .texts {
    text-align: center;
  }
}
@media only screen and (max-width: 440px) {
  .about .friends {
    margin-top: 12px;
  }
  .about .friends .title {
    width: fit-content;
    margin: 0 auto;
  }
}

.contents_wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100vw - var(--about-width));
  background-color: var(--bg-color-0);
}

.contents {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  border-left: solid var(--bg-color-1) 1px;
  border-right: solid var(--bg-color-1) 1px;
}

@media only screen and (max-width: 600px) {
  .about {
    align-items: center;
    width: 100vw;
    position: static;
    height: fit-content;
  }
  .contents_wrapper {
    width: 100vw;
    position: static;
  }
  .contents {
    margin: 0 auto;
  }
}
.title_icon svg * {
  transition: 0.2s fill;
  fill: var(--emphasized-color);
}

.title_icon svg:hover * {
  fill: var(--theme-color);
}

.hidden {
  display: none;
}

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