body #aboutHeader {
  width: 100%;
  position: relative;
  z-index: 2;
}

body #aboutHeader .headerIcon {
  width: 50px;
  height: 50px;
  border: solid 1px rgba(34, 34, 34, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 3;
}

body #aboutHeader .headerIcon::after {
  content: '';
  width: 50px;
  height: 50px;
  border-right: solid 1px rgba(34, 34, 34, 0.75);
  border-bottom: solid 1px rgba(34, 34, 34, 0.75);
  position: absolute;
  top: -5px;
  left: -5px;
}

body #aboutHeader .headerIcon a {
  width: 65%;
  height: 65%;
  -webkit-transform: translate(-1.5px, -1.5px);
          transform: translate(-1.5px, -1.5px);
  z-index: 3;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #aboutHeader .headerIcon a img {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-animation-name: worksAnime1;
          animation-name: worksAnime1;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes worksAnime1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes worksAnime1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body #aboutHeader .headerIcon a:hover {
  opacity: .5;
}

body #aboutHeader ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  bottom: 75px;
  right: 2.5%;
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-animation-name: worksAnime1;
          animation-name: worksAnime1;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@keyframes worksAnime1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body #aboutHeader ul li:nth-of-type(1) {
  height: 25px;
}

body #aboutHeader ul li:nth-of-type(1) img {
  width: 100%;
  height: 100%;
}

body #aboutHeader ul li:nth-of-type(1):hover {
  cursor: text;
}

body #aboutHeader ul li:nth-of-type(2) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: .5em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 300;
  color: rgba(34, 34, 34, 0.75);
  letter-spacing: .1em;
  text-align: right;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  cursor: pointer;
  position: absolute;
  right: 0;
}

body #aboutHeader ul li:nth-of-type(2):hover {
  opacity: .5;
}

body #aboutMain .line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 150px 0 0 150px;
  position: relative;
}

body #aboutMain .line svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  fill: transparent;
  stroke-width: .1px;
  stroke: #666;
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-animation-name: aboutAnime1;
          animation-name: aboutAnime1;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes aboutAnime1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes aboutAnime1 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body #aboutMain .line::after {
  content: '';
  width: 0;
  height: .5px;
  background-color: rgba(34, 34, 34, 0.25);
  margin-right: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-150px, -50%);
          transform: translate(-150px, -50%);
  -webkit-animation-name: aboutAnime2;
          animation-name: aboutAnime2;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes aboutAnime2 {
  from {
    width: 0;
  }
  to {
    width: 150px;
  }
}

@keyframes aboutAnime2 {
  from {
    width: 0;
  }
  to {
    width: 150px;
  }
}

body #aboutMain .aboutContents {
  width: 50%;
  margin: 175px auto 0 auto;
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-animation-name: aboutAnime3;
          animation-name: aboutAnime3;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes aboutAnime3 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes aboutAnime3 {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body #aboutMain .aboutContents h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 150px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  color: rgba(34, 34, 34, 0.5);
  letter-spacing: .1em;
}

body #aboutMain .aboutContents h2:nth-of-type(1) {
  margin-top: 0;
}

body #aboutMain .aboutContents ul {
  width: calc(100% - 75px);
  margin: 75px 0 0 75px;
}

body #aboutMain .aboutContents ul li {
  width: 100%;
  height: 125px;
  border-top: solid 1px rgba(34, 34, 34, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: .1em;
}

body #aboutMain .aboutContents ul li p:nth-of-type(1) {
  width: 200px;
  padding-left: 15px;
  color: rgba(34, 34, 34, 0.5);
  line-height: 1.5em;
}

body #aboutMain .aboutContents ul li p:nth-of-type(2) {
  width: calc(100% - 215px);
  padding-left: 1em;
  color: #222;
  line-height: 1.5em;
}

body #aboutMain .aboutContents ul li:last-child {
  border-bottom: solid 1px rgba(34, 34, 34, 0.25);
}
/*# sourceMappingURL=about.css.map */