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

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;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

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

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

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

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

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

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  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;
  padding: px;
  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 .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 {
  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;
  }
}
.worksMain {
  position: fixed;
  width: 100%;
  height: 100vh;
}
.worksMain .mainImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  box-shadow: rgba(0, 0, 0, 0.1254901961) 10px 10px 10px 0px;
}
@media screen and (min-width: 769px) {
  .worksMain .mainImg {
    height: 90vh;
    width: auto;
  }
}
.worksMain .mainImg img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .worksMain .mainImg img {
    height: 100%;
    width: auto;
  }
}

.worksTextBox {
  width: 100%;
  overflow: hidden;
}
.worksTextBox .textBox {
  margin: 0 auto;
  padding-top: 100px;
  width: 90%;
  max-width: 1400px;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox {
    padding-top: 200px;
  }
}
.worksTextBox .textBox .title {
  position: relative;
  color: #555;
  font-size: 30px;
  font-weight: 400;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .title {
    font-size: 60px;
  }
}
.worksTextBox .textBox .title span {
  z-index: -1;
  position: absolute;
  top: -30px;
  left: 80px;
  color: #e7e7e7;
  font-size: 100px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .title span {
    top: -60px;
    left: 120px;
    font-size: 200px;
  }
}
.worksTextBox .textBox .text {
  margin: 0 auto;
  padding-top: 50px;
  width: 90%;
  max-width: 1100px;
  font-size: 16px;
  line-height: 34px;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .text {
    padding-top: 150px;
    font-size: 26px;
    line-height: 44px;
  }
}
.worksTextBox .textBox .detailBox {
  margin: 0 auto;
  padding-top: 60px;
  width: 80%;
  max-width: 900px;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .detailBox {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
  }
}
.worksTextBox .textBox .detailBox:first-of-type {
  padding-top: 50px;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .detailBox:first-of-type {
    padding-top: 150px;
  }
}
.worksTextBox .textBox .detailBox:last-of-type {
  padding-bottom: 120px;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .detailBox:last-of-type {
    padding-bottom: 200px;
  }
}
.worksTextBox .textBox .detailBox .detailHead {
  width: 100px;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .detailBox .detailHead {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
  }
}
.worksTextBox .textBox .detailBox .detailText {
  padding-top: 20px;
  width: 100%;
  max-width: 700px;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .worksTextBox .textBox .detailBox .detailText {
    padding-top: 0;
    font-size: 20px;
  }
}

.footer {
  position: absolute;
  bottom: 40px;
  margin: 0 auto;
  width: 100%;
}
.footer .border {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 80%;
  height: 1px;
  background-color: #000;
}
.footer .footerBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer .footerBox p {
  margin-left: 15vw;
  font-size: 12px;
  color: #000;
}
.footer .footerBox .snsBox {
  margin-right: 15vw;
  display: flex;
  justify-content: space-between;
  width: 100px;
}
.footer .footerBox .snsBox a {
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
.footer .footerBox .snsBox a svg {
  width: 100%;
  height: 100%;
}
.footer .footerBox .snsBox .logoIns {
  width: 80%;
  height: 80%;
}
/*# sourceMappingURL=works002.css.map */