@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/* カラー */
/* ページ名の配列 */
* {
  margin: 0 0;
  padding: 0 0;
  line-height: 1em;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

.fade-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  -webkit-animation: fadeIn 3s;
          animation: fadeIn 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  pointer-events: none;
}

.fadeout {
  -webkit-animation: fadeOut 1s;
          animation: fadeOut 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeIn_up {
  /* 最初は非表示 */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fadeIn_up_delay {
  /* 最初は非表示 */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.2s;
}

.fadeIn_up_delay_more {
  /* 最初は非表示 */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.4s;
}

.fadeIn_right_delay {
  /* 最初は非表示 */
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.3s;
}

.fadeIn_left_delay {
  /* 最初は非表示 */
  opacity: 0;
  transform: translateX(150px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.3s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  transform: translateX(0);
}

.header {
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  mix-blend-mode: difference;
}
@media screen and (max-width: 768px) {
  .header {
    justify-content: space-between;
  }
}
.header .logo {
  margin-left: 20px;
  width: 120px;
  height: 40px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .header .logo {
    width: 96px;
    height: 32px;
  }
}
.header .headerMenu {
  margin-right: 20px;
}
.header .headerMenu ul {
  display: flex;
}
.header .headerMenu ul li {
  margin: 0 20px;
  list-style: none;
}
.header .headerMenu ul li a {
  position: relative;
  letter-spacing: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .header .headerMenu ul li a {
    font-size: 16px;
    padding: 4px;
  }
}
.header .headerMenu ul li a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.3rem;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background-color: #555;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header .headerMenu ul li a:after {
    opacity: 0.3;
    width: 100%;
  }
}
.header .headerMenu ul li a:hover:after {
  width: 100%;
}

.mainVisual {
  z-index: -2;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
.mainVisual .portfolio {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  letter-spacing: 10px;
  color: #fff;
  -webkit-text-stroke: 0.8px #000;
}
@media screen and (min-width: 769px) {
  .mainVisual .portfolio {
    top: 45%;
    font-size: 100px;
    -webkit-text-stroke: 1.2px #000;
  }
}
.mainVisual .wave {
  z-index: -10;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 200vw 200px;
}
.mainVisual .wave01 {
  background-position: top 20vh;
  background-image: url(../images/wave01.svg);
  -webkit-animation: wave linear 6s infinite;
          animation: wave linear 6s infinite;
}
.mainVisual .wave02 {
  top: -1vh;
  background-image: url(../images/wave02.svg);
  -webkit-animation: wave linear 12s infinite;
          animation: wave linear 12s infinite;
}
.mainVisual .wave03 {
  top: 1vh;
  background-image: url(../images/wave03.svg);
  -webkit-animation: wave linear 18s infinite;
          animation: wave linear 18s infinite;
}

@-webkit-keyframes wave {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}

@keyframes wave {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
.space {
  z-index: -11;
  width: 100%;
  height: 100vh;
}

.contents {
  z-index: 1;
  position: relative;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1764705882) 0 -30px 70px;
}
.contents .scroll {
  position: absolute;
  left: 50%;
}
.contents .scroll .scrollText {
  position: absolute;
  top: -140px;
  padding-bottom: 10px;
  transform: translate(-50%, 0);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .contents .scroll .scrollText {
    top: -86px;
    font-size: 14px;
  }
}
.contents .scroll .scrollBar {
  position: absolute;
  top: -60px;
  width: 1px;
  height: 120px;
  background-color: #555;
  -webkit-animation: scrollDown_sp linear 2s infinite;
          animation: scrollDown_sp linear 2s infinite;
}
@media screen and (min-width: 769px) {
  .contents .scroll .scrollBar {
    -webkit-animation: scrollDown_pc linear 1.6s infinite;
            animation: scrollDown_pc linear 1.6s infinite;
  }
}

@-webkit-keyframes scrollDown_sp {
  0% {
    height: 0px;
    top: -120px;
    opacity: 0.2;
  }
  35% {
    height: 120px;
    top: -120px;
    opacity: 1;
  }
  100% {
    height: 0px;
    top: 0px;
    opacity: 0.2;
  }
}

@keyframes scrollDown_sp {
  0% {
    height: 0px;
    top: -120px;
    opacity: 0.2;
  }
  35% {
    height: 120px;
    top: -120px;
    opacity: 1;
  }
  100% {
    height: 0px;
    top: 0px;
    opacity: 0.2;
  }
}
@-webkit-keyframes scrollDown_pc {
  0% {
    height: 0px;
    top: -60px;
    opacity: 0.2;
  }
  35% {
    height: 60px;
    top: -60px;
    opacity: 1;
  }
  100% {
    height: 0px;
    top: 0px;
    opacity: 0.2;
  }
}
@keyframes scrollDown_pc {
  0% {
    height: 0px;
    top: -60px;
    opacity: 0.2;
  }
  35% {
    height: 60px;
    top: -60px;
    opacity: 1;
  }
  100% {
    height: 0px;
    top: 0px;
    opacity: 0.2;
  }
}
.about {
  padding-top: 100px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .about {
    padding-top: 300px;
    height: 800px;
  }
}
.about .title {
  margin-left: 1em;
  position: relative;
  color: rgba(0, 0, 0, 0);
  font-size: 34px;
  letter-spacing: 6px;
  font-weight: 600;
  -webkit-text-stroke: 0.8px #000;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .about .title {
    margin-left: 300px;
    font-size: 80px;
    -webkit-text-stroke: 1.5px #000;
  }
}
.about .title span {
  z-index: -1;
  position: absolute;
  top: -20px;
  left: 40px;
  color: #e7e7e7;
  font-size: 80px;
  font-weight: 500;
  -webkit-text-stroke: 0px #000;
  font-family: "Teko", sans-serif;
}
@media screen and (min-width: 769px) {
  .about .title span {
    top: -66px;
    left: 80px;
    font-size: 200px;
  }
}
.about .aboutBox {
  margin: 0 auto;
  position: relative;
  padding-top: 60px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .about .aboutBox {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    padding-top: 140px;
  }
}
.about .aboutBox .leftBox {
  margin: 0 auto;
  position: relative;
  width: 400px;
  height: 549px;
}
.about .aboutBox .leftBox .aboutImage {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 300px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.5803921569) 10px 10px 20px;
}
.about .aboutBox .leftBox .aboutImage01 {
  z-index: 13;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
}
.about .aboutBox .leftBox .aboutImage01 img {
  width: 100%;
  vertical-align: top;
}
.about .aboutBox .leftBox .aboutImage02 {
  z-index: 12;
  top: 100px;
  left: 100px;
  background-color: rgba(0, 0, 0, 0);
}
.about .aboutBox .leftBox .aboutImage02 img {
  width: 100%;
  vertical-align: top;
}
.about .aboutBox .leftBox .bgText {
  position: absolute;
  right: 700px;
  bottom: -120px;
  overflow: hidden;
  font-size: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 200vw;
  height: 100px;
  transform: translateX(100%);
}
@media screen and (min-width: 769px) {
  .about .aboutBox .leftBox .bgText {
    right: 0;
    bottom: 30px;
    width: 80vw;
  }
}
.about .aboutBox .leftBox .bgText .bgTextArea {
  display: flex;
  -webkit-animation: textLoop 20s infinite linear both;
          animation: textLoop 20s infinite linear both;
  list-style: none;
}
.about .aboutBox .leftBox .bgText li {
  width: 1330px;
  color: #ccc;
  font-weight: 500;
  font-family: "Teko", sans-serif;
}
.about .aboutBox .rightBox {
  margin: 0 auto;
  z-index: 10;
  position: relative;
  width: calc(100% - 100px);
  max-width: 500px;
  padding-top: 120px;
}
@media screen and (min-width: 769px) {
  .about .aboutBox .rightBox {
    padding-top: 50px;
    width: 550px;
  }
}
.about .aboutBox .rightBox .nameBox {
  display: flex;
  align-items: center;
}
.about .aboutBox .rightBox .nameBox .nameJp {
  color: #000;
  font-size: 22px;
  font-weight: 100;
  font-family: "Klee One", cursive;
}
.about .aboutBox .rightBox .nameBox .nameEn {
  margin-top: 10px;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}
.about .aboutBox .rightBox .aboutText {
  margin: 0 auto;
  margin-top: 30px;
  width: calc(100% - 40px);
  font-size: 16px;
  line-height: 30px;
  font-family: "Klee One", cursive;
}
.about .aboutBox .rightBox .snsBox {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  width: 100px;
  padding-bottom: 40px;
}
.about .aboutBox .rightBox .snsBox a {
  width: 26px;
  height: 26px;
  border-radius: 100%;
}
.about .aboutBox .rightBox .snsBox a svg {
  width: 100%;
  height: 100%;
}
.about .aboutBox .rightBox .snsBox .logoIns {
  width: 80%;
  height: 80%;
}
.about .aboutBox .rightBox .goDetail {
  position: absolute;
  bottom: 36px;
  right: 10%;
  color: #000;
  font-size: 20px;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  height: 30px;
}
@media screen and (min-width: 769px) {
  .about .aboutBox .rightBox .goDetail {
    top: 340px;
    right: 0;
  }
}
.about .aboutBox .rightBox .goDetail .arrow {
  position: absolute;
  top: 38px;
  margin-top: -12px;
  margin-left: 0px;
}
.about .aboutBox .rightBox .goDetail .arrow .overLine {
  position: absolute;
  top: -10px;
  right: -5px;
  width: 30px;
  height: 1px;
  transform: rotate(45deg);
  background-color: #000;
}
.about .aboutBox .rightBox .goDetail .arrow .underLine {
  width: 134px;
  height: 1px;
  background-color: #000;
  transition: all 0.3s;
}
.about .aboutBox .rightBox .goDetail:hover .arrow .underLine {
  width: 164px;
}

@-webkit-keyframes textLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes textLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.slideGallery {
  margin-top: 80px;
  width: 100%;
  height: 190px;
}
@media screen and (min-width: 769px) {
  .slideGallery {
    margin-top: 200px;
    margin-bottom: 150px;
    height: 400px;
  }
}
.slideGallery .border {
  width: 80%;
  height: 1px;
  background-color: #000;
}
.slideGallery .border01 {
  margin-left: 20%;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .slideGallery .border01 {
    margin-bottom: 50px;
  }
}
.slideGallery .border02 {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .slideGallery .border02 {
    margin-top: 50px;
  }
}
.slideGallery .slideBox {
  overflow: hidden;
}
.slideGallery .slideBox .slideArea {
  display: flex;
  -webkit-animation: imgLoop_sp 40s infinite linear both;
          animation: imgLoop_sp 40s infinite linear both;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .slideGallery .slideBox .slideArea {
    -webkit-animation: imgLoop_pc 40s infinite linear both;
            animation: imgLoop_pc 40s infinite linear both;
  }
}
.slideGallery .slideBox .slideArea li {
  padding-right: 10px;
  height: 150px;
}
@media screen and (min-width: 769px) {
  .slideGallery .slideBox .slideArea li {
    padding-right: 50px;
    height: 300px;
  }
}
.slideGallery .slideBox .slideArea li a img {
  height: 100%;
  filter: saturate(20%);
  transition: all ease-in 0.2s;
}
.slideGallery .slideBox .slideArea li a:hover img {
  filter: saturate(100%);
}

@-webkit-keyframes imgLoop_pc {
  from {
    transform: translateX(calc(-200% + 300px));
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes imgLoop_pc {
  from {
    transform: translateX(calc(-200% + 300px));
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes imgLoop_sp {
  from {
    transform: translateX(calc(-200% - 390px));
  }
  to {
    transform: translateX(0px);
  }
}
@keyframes imgLoop_sp {
  from {
    transform: translateX(calc(-200% - 390px));
  }
  to {
    transform: translateX(0px);
  }
}
#skill {
  padding-top: 100px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #skill {
    padding-top: 150px;
  }
}
#skill .title {
  margin-left: 1em;
  position: relative;
  color: rgba(0, 0, 0, 0);
  font-size: 34px;
  letter-spacing: 6px;
  font-weight: 600;
  -webkit-text-stroke: 0.8px #000;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  #skill .title {
    margin-left: 300px;
    font-size: 80px;
    -webkit-text-stroke: 1.5px #000;
  }
}
#skill .title span {
  z-index: -1;
  position: absolute;
  top: -20px;
  left: 40px;
  color: #e7e7e7;
  font-size: 80px;
  font-weight: 500;
  -webkit-text-stroke: 0px #000;
  font-family: "Teko", sans-serif;
}
@media screen and (min-width: 769px) {
  #skill .title span {
    top: -66px;
    left: 80px;
    font-size: 200px;
  }
}
#skill .skillBox {
  position: relative;
  padding-top: 60px;
  width: 90%;
}
@media screen and (min-width: 769px) {
  #skill .skillBox {
    padding-top: 150px;
  }
}
#skill .skillBox:first-of-type {
  padding-top: 70px;
}
@media screen and (min-width: 769px) {
  #skill .skillBox:first-of-type {
    padding-top: 150px;
  }
}
#skill .skillBox .passing .passing-box {
  display: block;
  text-align: center;
}
#skill .skillBox .passing .passing-box .passing-bar {
  position: relative;
  display: inline-block;
  /*　後ほど解説　*/
  transform: translate3d(0, 0, 0);
}
#skill .skillBox .passing .passing-box .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  /* 任意の値 */
  background: #555;
}
#skill .skillBox .passing .passing-box .passing-bar .passing-txt {
  opacity: 0;
  /* 後ほど解説 */
  transform: translate3d(0, 0, 0);
  /* 任意の値 */
  color: #555;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  #skill .skillBox .passing .passing-box .passing-bar .passing-txt {
    font-size: 60px;
  }
}
#skill .skillBox .borderBox {
  display: flex;
}
#skill .skillBox .borderBox .square {
  position: absolute;
  margin-top: -10px;
  margin-left: -20px;
  width: 20px;
  height: 20px;
  border: #000 1px solid;
  transform: rotate(45deg);
  -webkit-animation: squareSpin01 4s linear infinite;
          animation: squareSpin01 4s linear infinite;
}
@media screen and (min-width: 769px) {
  #skill .skillBox .borderBox .square {
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }
}
#skill .skillBox .borderBox .border {
  margin-left: 30px;
  margin-bottom: 16px;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 769px) {
  #skill .skillBox .borderBox .border {
    margin-left: 100px;
  }
}
#skill .skillBox .skillText {
  width: 80%;
  font-size: 14px;
  line-height: 20px;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  #skill .skillBox .skillText {
    width: 600px;
    font-size: 20px;
    line-height: 40px;
  }
}
#skill .skillBox .skillText span {
  padding-top: 20px;
  display: block;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  #skill .skillBox .skillText span {
    padding-top: 40px;
    letter-spacing: 2px;
  }
}
#skill .skillBox01 {
  margin-left: auto;
}
#skill .skillBox01 .skillTitle {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  #skill .skillBox01 .skillTitle {
    padding-left: 120px;
  }
}
#skill .skillBox01 .skillText {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  #skill .skillBox01 .skillText {
    padding-left: 120px;
  }
}
#skill .skillBox02 .skillTitle {
  display: flex;
  justify-content: flex-end;
  margin-right: 40px;
}
@media screen and (min-width: 769px) {
  #skill .skillBox02 .skillTitle {
    margin-right: 120px;
  }
}
#skill .skillBox02 .skillTitle .black {
  left: calc(100% - 190px);
}
@media screen and (min-width: 769px) {
  #skill .skillBox02 .skillTitle .black {
    left: calc(100% - 360px);
  }
}
#skill .skillBox02 .borderBox {
  position: relative;
}
#skill .skillBox02 .borderBox .square {
  margin-right: -20px;
  right: 0;
  -webkit-animation: squareSpin02 4s linear infinite;
          animation: squareSpin02 4s linear infinite;
}
#skill .skillBox02 .borderBox .border {
  margin-right: 30px;
  margin-left: 0;
}
@media screen and (min-width: 769px) {
  #skill .skillBox02 .borderBox .border {
    margin-right: 100px;
  }
}
#skill .skillBox02 .skillText {
  margin-right: 40px;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  #skill .skillBox02 .skillText {
    margin-right: 120px;
  }
}
#skill .skillBox03 {
  margin-left: auto;
}
#skill .skillBox03 .skillTitle {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  #skill .skillBox03 .skillTitle {
    padding-left: 120px;
  }
}
#skill .skillBox03 .skillText {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  #skill .skillBox03 .skillText {
    padding-left: 120px;
  }
}

.slideText {
  visibility: hidden;
  transition: all 0.1s;
  transition-delay: 0.4s;
}

.slideTextAnime {
  visibility: visible;
}

.slideAnime01 {
  -webkit-animation: blackSlide01_sp 0.8s ease-in-out;
          animation: blackSlide01_sp 0.8s ease-in-out;
}
@media screen and (min-width: 769px) {
  .slideAnime01 {
    -webkit-animation: blackSlide01_pc 0.8s ease-in-out;
            animation: blackSlide01_pc 0.8s ease-in-out;
  }
}

.slideAnime02 {
  -webkit-animation: blackSlide02_sp 0.8s ease-in-out;
          animation: blackSlide02_sp 0.8s ease-in-out;
}
@media screen and (min-width: 769px) {
  .slideAnime02 {
    -webkit-animation: blackSlide02_pc 0.8s ease-in-out;
            animation: blackSlide02_pc 0.8s ease-in-out;
  }
}

.skillBox01 .passing {
  position: relative;
}
.skillBox01 .passing .passing-box {
  position: absolute;
  bottom: 0px;
  left: 40px;
}
@media screen and (min-width: 769px) {
  .skillBox01 .passing .passing-box {
    bottom: 0px;
    left: 120px;
  }
}
.skillBox01 .move .passing-box .passing-bar:before {
  -webkit-animation: passing-bar_01 1s ease 0s 1 normal forwards;
  animation: passing-bar_01 1s ease 0s 1 normal forwards;
}
.skillBox01 .move .passing-box .passing-bar .passing-txt {
  -webkit-animation: passing-txt 0s ease 0.5s 1 normal forwards;
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

.skillBox02 .passing {
  position: relative;
}
.skillBox02 .passing .passing-box {
  position: absolute;
  bottom: 0px;
  right: 42px;
}
@media screen and (min-width: 769px) {
  .skillBox02 .passing .passing-box {
    bottom: 0px;
    right: 120px;
  }
}
.skillBox02 .move .passing-box .passing-bar:before {
  -webkit-animation: passing-bar_02 1s ease 0s 1 normal forwards;
  animation: passing-bar_02 1s ease 0s 1 normal forwards;
}
.skillBox02 .move .passing-box .passing-bar .passing-txt {
  -webkit-animation: passing-txt 0s ease 0.5s 1 normal forwards;
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@-webkit-keyframes squareSpin01 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}

@keyframes squareSpin01 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}
@-webkit-keyframes squareSpin02 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@keyframes squareSpin02 {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@-webkit-keyframes blackSlide01_pc {
  0% {
    transform: translateX(550px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 550px;
  }
  65% {
    transform: translateX(0);
    width: 550px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@keyframes blackSlide01_pc {
  0% {
    transform: translateX(550px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 550px;
  }
  65% {
    transform: translateX(0);
    width: 550px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@-webkit-keyframes blackSlide01_sp {
  0% {
    transform: translateX(290px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 290px;
  }
  65% {
    transform: translateX(0);
    width: 290px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@keyframes blackSlide01_sp {
  0% {
    transform: translateX(290px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 290px;
  }
  65% {
    transform: translateX(0);
    width: 290px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@-webkit-keyframes blackSlide02_pc {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 360px;
  }
  65% {
    transform: translateX(0);
    width: 360px;
  }
  100% {
    transform: translateX(360px);
    width: 0;
  }
}
@keyframes blackSlide02_pc {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 360px;
  }
  65% {
    transform: translateX(0);
    width: 360px;
  }
  100% {
    transform: translateX(360px);
    width: 0;
  }
}
@-webkit-keyframes blackSlide02_sp {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 190px;
  }
  65% {
    transform: translateX(0);
    width: 190px;
  }
  100% {
    transform: translateX(190px);
    width: 0;
  }
}
@keyframes blackSlide02_sp {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 190px;
  }
  65% {
    transform: translateX(0);
    width: 190px;
  }
  100% {
    transform: translateX(190px);
    width: 0;
  }
}
@-webkit-keyframes passing-bar_01 {
  0% {
    right: 0;
    left: auto;
    width: 0;
  }
  50% {
    right: 0;
    left: auto;
    width: 100%;
  }
  51% {
    right: auto;
    left: 0;
    width: 100%;
  }
  100% {
    right: auto;
    left: 0;
    width: 0;
  }
}
@-webkit-keyframes passing-bar_02 {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar_01 {
  0% {
    left: 100%;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 0;
    width: 0;
  }
}
@keyframes passing-bar_02 {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#works {
  padding-top: 100px;
}
@media screen and (min-width: 769px) {
  #works {
    padding-top: 200px;
  }
}
#works .title {
  margin-left: 1em;
  position: relative;
  color: rgba(0, 0, 0, 0);
  font-size: 34px;
  letter-spacing: 6px;
  font-weight: 600;
  -webkit-text-stroke: 0.8px #000;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  #works .title {
    margin-left: 300px;
    font-size: 80px;
    -webkit-text-stroke: 1.5px #000;
  }
}
#works .title span {
  z-index: -1;
  position: absolute;
  top: -20px;
  left: 40px;
  color: #e7e7e7;
  font-size: 80px;
  font-weight: 500;
  -webkit-text-stroke: 0px #000;
  font-family: "Teko", sans-serif;
}
@media screen and (min-width: 769px) {
  #works .title span {
    top: -66px;
    left: 80px;
    font-size: 200px;
  }
}
#works .works_inner {
  margin-inline: auto;
  max-width: 1300px;
}
#works .works_inner .worksList {
  margin: 0 auto;
  padding-top: 50px;
  gap: 120px;
  list-style: none;
}
@media screen and (min-width: 769px) {
  #works .works_inner .worksList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(100% - 140px + 100px);
    padding-top: 100px;
  }
}
#works .works_inner .worksList li {
  padding-top: 60px;
  margin: 0 auto;
  width: calc(100% - 60px);
}
@media screen and (min-width: 769px) {
  #works .works_inner .worksList li {
    padding-top: 0;
    width: calc((100% - 140px) / 2);
  }
}
#works .works_inner .worksList li a {
  text-decoration: none;
}
#works .works_inner .worksList li a .imgBox {
  text-align: center;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1882352941) 5px 5px 10px 0px;
}
#works .works_inner .worksList li a .imgBox img {
  width: 100%;
  vertical-align: top;
  transition: all 0.6s;
}
#works .works_inner .worksList li a:hover .imgBox img {
  transform: scale(1.1);
}
#works .works_inner .worksList li .worksText {
  z-index: 20;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  #works .works_inner .worksList li .worksText {
    font-size: 18px;
  }
}
#works .works_inner .worksList li .worksText span {
  display: block;
  color: #555;
  font-weight: 600;
  padding: 12px 0 8px;
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  #works .works_inner .worksList li .worksText span {
    font-size: 16px;
  }
}

.contact {
  position: relative;
  margin-top: 100px;
  width: 100%;
  height: 150px;
  background-color: #303030;
}
@media screen and (min-width: 769px) {
  .contact {
    height: 250px;
    margin-top: 150px;
  }
}
.contact .contactText {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
}
.contact .contactText a {
  margin-top: 50px;
  text-decoration: none;
  transition: all 0.2s;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 6px;
  font-family: "Didact Gothic", sans-serif;
}
.contact .contactText a:hover {
  margin-top: 52px;
  color: #aaa;
}

.footer {
  position: absolute;
  bottom: 20px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer {
    bottom: 40px;
  }
}
.footer .border {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 80%;
  height: 1px;
  background-color: #fff;
}
.footer .footerBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer .footerBox p {
  margin-left: 15vw;
  font-size: 8px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .footer .footerBox p {
    font-size: 12px;
  }
}
.footer .footerBox .snsBox {
  margin-right: 15vw;
  display: flex;
  justify-content: space-between;
  width: 60px;
}
@media screen and (min-width: 769px) {
  .footer .footerBox .snsBox {
    width: 100px;
  }
}
.footer .footerBox .snsBox a {
  width: 12px;
  height: 12px;
  border-radius: 100%;
}
@media screen and (min-width: 769px) {
  .footer .footerBox .snsBox a {
    width: 20px;
    height: 20px;
  }
}
.footer .footerBox .snsBox a svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.footer .footerBox .snsBox .logoIns {
  width: 80%;
  height: 80%;
}
/*# sourceMappingURL=top.css.map */