@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #333;
  font-size: 16px;
  font-family: sans-serif;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

::-webkit-scrollbar {
  width: 7px;
  position: absolute;
  top: 0;
  right: 0;
}

::-webkit-scrollbar-track {
  background: #333;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/*====================
共通設定
====================*/
/*中央寄せ*/
.flex {
  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;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

/*====================
ヘッダー
====================*/
header {
  width: 5%;
  height: 100%;
  position: fixed;
  z-index: 9999;
}

header nav {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}

header nav ul {
  width: 100%;
  height: 100%;
  background-color: #333;
  border-right: 1px solid #000;
}

header nav ul li {
  height: auto;
  width: 100%;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  list-style: none;
  position: relative;
}

header nav ul li::before {
  content: "";
  height: 100%;
  width: 4px;
  background-color: orangered;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header nav ul li:hover::before, header nav ul li.now::before {
  opacity: 1;
}

header nav ul li a {
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  padding: 1rem 0;
  font-weight: bold;
  letter-spacing: 0.25rem;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 769px) {
  header {
    width: 9%;
    height: 100%;
  }
  header nav ul li {
    height: auto;
    width: 100%;
  }
  header nav ul li::before {
    height: 100%;
    width: 3px;
  }
  header nav ul li:hover::before, header nav ul li.now::before {
    opacity: 1;
  }
  header nav ul li a {
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
  }
}

/*====================
各ページ共通（TOP以外）
====================*/
main {
  width: 100%;
  height: 100%;
  position: relative;
}

main .main_wrap {
  width: 65%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 5%;
  background-color: #333;
  background-image: url("../img/graphy-dark.png");
  overflow-x: hidden;
  position: relative;
}

main .main_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

main .main_wrap.on::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

main .main_wrap.go::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

main .main_wrap.end::before {
  display: none;
}

main .main_wrap section {
  width: 100%;
  height: 100%;
}

main .main_wrap section .container {
  width: 80%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
}

main .main_wrap section.hide {
  display: none;
}

main .side_wrap {
  width: 30%;
  height: 100%;
  background-color: #333;
  border-left: 1px solid #000;
  position: fixed;
  top: 0;
  left: 70%;
  overflow-x: hidden;
}

main .side_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

main .side_wrap.on::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

main .side_wrap.go::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

main .side_wrap.end::before {
  display: none;
}

main .side_wrap > div {
  width: 100%;
  height: 100%;
}

main .side_wrap > div.hide {
  display: none;
}

.title_wrap {
  font-size: 1rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  font-weight: 400;
  font-style: normal;
  position: relative;
}

.title_wrap::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: orangered;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 769px) {
  main {
    width: 100%;
    height: 100%;
    position: relative;
  }
  main .main_wrap {
    width: 91%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 9%;
    background-color: #333;
    background-image: url("../img/graphy-dark.png");
    overflow-x: hidden;
    position: relative;
  }
  main .main_wrap::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  main .main_wrap section {
    width: 100%;
    height: 100%;
  }
  main .main_wrap section .container {
    width: 90%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
  }
  main .main_wrap section.hide {
    display: none;
  }
  main .side_wrap {
    display: none;
  }
}

/*====================
TOP
====================*/
#top {
  width: 100%;
  height: 100vh;
}

#top .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#top .container .top_title {
  text-align: center;
  margin-bottom: 2rem;
}

#top .container .top_title h1 {
  display: inline;
  font-size: 5vw;
  letter-spacing: 1rem;
  padding-left: 36px;
  position: relative;
}

#top .container .top_title h1::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: orangered;
  position: absolute;
  top: 0;
  left: 0;
}

#top .container .top_title p {
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  font-weight: bold;
}

#top .container .top_txt p {
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
  padding-left: 0.75rem;
  position: relative;
}

#top .container .top_txt p:not(:last-of-type) {
  margin-bottom: 0.75rem;
}

#top .container .top_txt p::before {
  content: '';
  width: 4px;
  height: 100%;
  background-color: orangered;
  position: absolute;
  top: 0;
  left: 0;
}

#top_side {
  width: 100%;
  height: 100%;
}

#top_side .side_top_title {
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #000;
}

#top_side .side_top_title div h2 {
  width: 95%;
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  position: relative;
}

#top_side .side_top_title div h2::first-letter {
  color: orangered;
}

@media screen and (max-width: 769px) {
  #top {
    width: 100%;
    height: 100vh;
  }
  #top .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #top .container .top_title {
    text-align: center;
    margin-bottom: 2rem;
  }
  #top .container .top_title h1 {
    display: block;
    font-size: 9vw;
    letter-spacing: 0.25rem;
    padding-left: 26px;
    position: relative;
  }
  #top .container .top_title h1::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: orangered;
    position: absolute;
    top: 0;
    left: 0;
  }
  #top .container .top_title p {
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
    font-size: 3vw;
    font-weight: normal;
  }
  #top .container .top_txt p {
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    padding-left: 0.75rem;
    position: relative;
  }
  #top .container .top_txt p:not(:last-of-type) {
    margin-bottom: 0.75rem;
  }
  #top .container .top_txt p::before {
    content: '';
    width: 4px;
    height: 100%;
    background-color: orangered;
    position: absolute;
    top: 0;
    left: 0;
  }
  #top_side {
    width: 100%;
    height: 100%;
  }
  #top_side .side_top_title {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: 1px solid #000;
  }
  #top_side .side_top_title div h2 {
    width: 95%;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    -webkit-transform: skewX(-15deg);
            transform: skewX(-15deg);
    position: relative;
  }
  #top_side .side_top_title div h2::first-letter {
    color: orangered;
  }
}

/*====================
ABOUT
====================*/
#about {
  width: 100%;
}

#about .container {
  margin-top: 150px;
}

#about .container .name h2 {
  font-size: 2.5rem;
}

#about .container .name p:first-of-type {
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

#about .container > div {
  margin-bottom: 2rem;
}

#about .container dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#about .container dl dd {
  padding-left: 2rem;
}

#about_side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 769px) {
  #about .container {
    margin-top: 50px;
  }
  #about .container dl {
    display: block;
  }
  #about .container dl dt {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  #about .container dl dd {
    padding-left: 0;
  }
}

/*====================
skill
====================*/
#skill {
  width: 100%;
}

#skill .container {
  margin-top: 150px;
  margin-bottom: 150px;
}

#skill .container .skill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#skill .container .skill:not(:last-of-type) {
  margin-bottom: 100px;
}

#skill .container .skill .skill_img {
  width: 18%;
}

#skill .container .skill .skill_img img {
  width: 100%;
  height: auto;
}

#skill .container .skill .skill_exp {
  width: 80%;
}

#skill .container .skill .skill_exp p {
  font-size: 0.9rem;
  letter-spacing: 0.125rem;
  line-height: 1.5rem;
}

#skill .container .skill .skill_exp p:not(:last-of-type) {
  margin-bottom: 0.9rem;
}

#skill .container .skill .skill_exp .p_title {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.125rem;
  line-height: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.45rem;
  position: relative;
}

#skill .container .skill .skill_exp .p_title::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background-color: orangered;
  position: absolute;
  bottom: 0;
  left: 0;
}

#skill .container .skill .skill_exp .title {
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  font-weight: bold;
}

#skill .container .skill .skill_exp .star {
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  line-height: 2rem;
  color: #999;
}

#skill .container .skill .skill_exp .star span {
  color: orangered;
}

#skill .container .skill .skill_exp .star .harf {
  position: relative;
  display: inline-block;
  color: #999;
  white-space: nowrap;
}

#skill .container .skill .skill_exp .star .harf::before {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-split);
  width: 44%;
  height: 100%;
  color: orangered;
  overflow: hidden;
}

#skill_side {
  position: relative;
}

#skill_side > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#skill_side > div p {
  font-size: 1rem;
  letter-spacing: 0.125rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#skill_side > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.3);
          filter: brightness(0.3);
}

#skill_side .webdesign {
  display: none;
}

@media screen and (max-width: 769px) {
  #skill .container {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #skill .container .skill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #skill .container .skill:not(:last-of-type) {
    margin-bottom: 100px;
  }
  #skill .container .skill .skill_img {
    width: 48%;
    margin-bottom: 0.9rem;
  }
  #skill .container .skill .skill_exp {
    width: 100%;
  }
  #skill .container .skill .skill_exp .title {
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
    font-weight: bold;
  }
}

/*====================
works
====================*/
#works {
  width: 100%;
}

#works .container {
  margin-top: 150px;
  margin-bottom: 150px;
}

#works .container .works_list {
  margin-top: 2rem;
  margin-bottom: 150px;
}

#works .container .works_list .works_list_item:not(:last-of-type) {
  margin-bottom: 100px;
}

#works .container .works_list .works_list_item .title {
  border-left: 4px solid orangered;
  padding-left: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

#works .container .works_list .works_list_item .works_list_item_img {
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

#works .container .works_list .works_list_item .works_list_item_img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#works .container .works_list .works_list_item .works_list_item_img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

#works .container .works_list .works_list_item .works_list_item_exp {
  border-left: 4px solid orangered;
  padding-left: 0.75rem;
}

#works .container .works_list .works_list_item .works_list_item_exp dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

#works .container .works_list .works_list_item .works_list_item_exp dl dt {
  width: 10%;
  font-weight: bold;
}

#works .container .works_list .works_list_item .works_list_item_exp dl dd {
  padding-left: 2rem;
}

#works .container .works_list .works_list_item .works_list_item_exp p {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

#works .container .works_list.graphic_design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#works .container .works_list.graphic_design .works_list_item {
  width: 45%;
}

#works .container .works_list.graphic_design .works_list_item .works_list_item_img {
  width: 100%;
  max-width: 100%;
  height: 250px;
}

#works .container .works_list.graphic_design .works_list_item .works_list_item_exp {
  border-left: 4px solid orangered;
  padding-left: 0.75rem;
}

#works .container .works_list.graphic_design .works_list_item .works_list_item_exp dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#works .container .works_list.graphic_design .works_list_item .works_list_item_exp dl dt {
  width: 20%;
}

#works .container .works_list.graphic_design .works_list_item .works_list_item_exp dl dd {
  padding-left: 1rem;
}

#works_side {
  position: relative;
  overflow: hidden;
}

#works_side .works_nav {
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

#works_side .works_nav p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

#works_side .works_nav ul {
  list-style: none;
}

#works_side .works_nav ul li {
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

#works_side .works_nav ul li:not(:last-of-type) {
  margin-bottom: 2rem;
}

#works_side .works_nav ul li a {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  line-height: 3rem;
  padding-left: 0.5rem;
}

#works_side p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

#works_side ul {
  list-style: none;
}

#works_side ul:not(:last-of-type) {
  margin-bottom: 3rem;
}

#works_side ul li {
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.2);
}

#works_side ul li:not(:last-of-type) {
  margin-bottom: 1rem;
}

#works_side ul li a {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  line-height: 3rem;
  padding-left: 0.5rem;
}

#works_side .works_back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#works_side .works_back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: blur(4px) brightness(0.5);
          filter: blur(4px) brightness(0.5);
}

#works_side #nt_back,
#works_side #it_back,
#works_side #he_back,
#works_side #gd_back {
  display: none;
}

@media screen and (max-width: 769px) {
  #works .container {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #works .container .works_list {
    margin-top: 2rem;
    padding-left: 0;
  }
  #works .container .works_list .works_list_item {
    display: block;
  }
  #works .container .works_list .works_list_item:not(:last-of-type) {
    margin-bottom: 75px;
  }
  #works .container .works_list .works_list_item .works_list_item_exp {
    border-left: none;
    padding-left: 0;
  }
  #works .container .works_list .works_list_item .works_list_item_exp dl {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }
  #works .container .works_list .works_list_item .works_list_item_exp dl dt {
    width: 100%;
    font-weight: bold;
    border-left: 4px solid orangered;
    padding-left: 0.75rem;
    margin-bottom: 0.25rem;
  }
  #works .container .works_list .works_list_item .works_list_item_exp dl dd {
    width: 100%;
    padding-left: calc(0.75rem + 4px);
    word-break: break-all;
  }
  #works .container .works_list .works_list_item .works_list_item_exp p {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }
  #works .container .works_list.graphic_design .works_list_item {
    width: 100%;
  }
  #works .container .works_list.graphic_design .works_list_item:not(:last-of-type) {
    margin-bottom: 25px;
  }
  #works .container .works_list.graphic_design .works_list_item .works_list_item_img {
    height: 180px;
  }
  #works .container .works_list.graphic_design .works_list_item .works_list_item_exp {
    border-left: none;
    padding-left: 0;
  }
  #works .container .works_list.graphic_design .works_list_item .works_list_item_exp dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
  }
  #works .container .works_list.graphic_design .works_list_item .works_list_item_exp dl dt {
    width: 50%;
    font-weight: bold;
    border-left: 4px solid orangered;
    padding-left: 0.75rem;
    margin-bottom: 0.25rem;
  }
  #works .container .works_list.graphic_design .works_list_item .works_list_item_exp dl dd {
    width: 100%;
    padding-left: calc(0.75rem + 4px);
    word-break: break-all;
  }
}

/*====================
フッター
====================*/
/*# sourceMappingURL=style.css.map */