@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;
  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_more {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-200px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.6s;
}

.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(200px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.3s;
}

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

/* フェードイン時に入るクラス */
.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 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
}
.mainVisual .mainImg {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  width: 80%;
  max-width: 700px;
}
.mainVisual .mainImg img {
  width: 100%;
}
.mainVisual .textBox {
  padding-top: 30px;
  width: 90%;
  max-width: 700px;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .mainVisual .textBox {
    top: 69%;
  }
}
.mainVisual .textBox .nameBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainVisual .textBox .nameBox .nameJp {
  color: #000;
  font-size: 20px;
  font-weight: 100;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  .mainVisual .textBox .nameBox .nameJp {
    font-size: 26px;
  }
}
.mainVisual .textBox .nameBox .nameEn {
  margin-top: 10px;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .mainVisual .textBox .nameBox .nameEn {
    font-size: 20px;
  }
}
.mainVisual .textBox .mainText {
  margin: 0 auto;
  padding-top: 30px;
  width: 90%;
  max-width: 500px;
  font-size: 16px;
  line-height: 30px;
  font-family: "Klee One", cursive;
}
.mainVisual .snsBox {
  z-index: 11;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
  width: 50%;
}
@media screen and (min-width: 769px) {
  .mainVisual .snsBox {
    margin-top: 60px;
    margin-left: auto;
    margin-right: 100px;
    justify-content: space-between;
    width: 100px;
  }
}
.mainVisual .snsBox a {
  width: 26px;
  height: 26px;
  border-radius: 100%;
}
.mainVisual .snsBox a svg {
  width: 100%;
  height: 100%;
}
.mainVisual .snsBox .logoIns {
  width: 80%;
  height: 80%;
}
.mainVisual .wave {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: 200vw 200px;
  pointer-events: none;
}
.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;
  }
}
.contents {
  z-index: 1;
  position: relative;
  width: 100%;
  background-color: #fff;
}
.contents .space {
  width: 100%;
  height: 100vh;
}

.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) {
  .title {
    margin-left: 300px;
    font-size: 80px;
    -webkit-text-stroke: 1.5px #000;
  }
}
.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) {
  .title span {
    top: -66px;
    left: 80px;
    font-size: 200px;
  }
}

.design {
  padding-top: 60px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .design {
    padding-top: 140px;
  }
}
.design .designWindow {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 60px;
  width: 200%;
  height: 400px;
  background-color: #555;
}
@media screen and (min-width: 769px) {
  .design .designWindow {
    margin-top: 80px;
    height: 500px;
  }
}
.design .designWindow .designDeco {
  display: flex;
  position: absolute;
  top: 28%;
  left: 50%;
  width: 20%;
  height: 50px;
}
@media screen and (min-width: 769px) {
  .design .designWindow .designDeco {
    top: 50%;
  }
}
.design .designWindow .designDeco .designBorder {
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .design .designWindow .designDeco .designBorder {
    width: 100%;
  }
}
.design .designWindow .designDeco .square {
  position: absolute;
  top: calc(50% - 42px);
  width: 30px;
  height: 30px;
  transform: rotate(45deg) translate(-50%, -50%);
  border: #fff 2px solid;
  -webkit-animation: squareSpin02 4s linear infinite;
          animation: squareSpin02 4s linear infinite;
}
@media screen and (max-width: 768px) {
  .design .designWindow .designDeco .square {
    display: none;
  }
}
.design .designWindow .designDeco .square01 {
  left: calc(-50% - 100px);
}
.design .designWindow .designDeco .square02 {
  left: calc(50% + 70px);
}
.design .designWindow .designBox {
  padding-bottom: 20px;
  border-bottom: #fff 1px solid;
  text-align: center;
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 769px) {
  .design .designWindow .designBox {
    padding-bottom: 50px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .design .designWindow .designBox {
    border: none;
  }
}
.design .designWindow .designBox .designTitle {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .design .designWindow .designBox .designTitle {
    font-size: 60px;
  }
}
.design .designWindow .designBox .designText {
  color: #fff;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 14px;
  width: 80%;
  max-width: 600px;
  line-height: 34px;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  .design .designWindow .designBox .designText {
    margin-top: 60px;
    font-size: 20px;
  }
}

.slideGallery {
  margin-top: 80px;
  width: 100%;
  height: 192px;
}
@media screen and (min-width: 769px) {
  .slideGallery {
    margin-top: 200px;
    height: 402px;
  }
}
.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 30s infinite linear both;
          animation: imgLoop_sp 30s infinite linear both;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .slideGallery .slideBox .slideArea {
    -webkit-animation: imgLoop_pc 30s infinite linear both;
            animation: imgLoop_pc 30s 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);
  }
}
.strength {
  padding-top: 80px;
  padding-bottom: 160px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .strength {
    padding-top: 200px;
    padding-bottom: 250px;
  }
}
.strength .squareBox {
  padding-top: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .strength .squareBox {
    padding-top: 240px;
  }
}
.strength .squareBox .square {
  position: relative;
  width: 150px;
  height: 150px;
  opacity: 0;
  background-image: linear-gradient(0deg, black, black), linear-gradient(0deg, black, black), linear-gradient(0deg, black, black), linear-gradient(0deg, black, black);
  background-repeat: no-repeat;
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  background-position: left bottom, left top, right top, right bottom;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .strength .squareBox .square {
    width: 400px;
    height: 400px;
  }
}
.strength .squareBox .square .squareText {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  left: 50%;
  color: #000;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .strength .squareBox .square .squareText {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 6px;
  }
}
.strength .squareBox .square .squareText span {
  display: block;
  padding-top: 4px;
}
@media screen and (min-width: 769px) {
  .strength .squareBox .square .squareText span {
    font-size: 30px;
    padding-top: 10px;
  }
}
.strength .squareBox .square .squareText .to {
  letter-spacing: 0px;
}
@media screen and (min-width: 769px) {
  .strength .squareBox .square .squareText .to {
    font-size: 24px;
    letter-spacing: 4px;
  }
}
.strength .squareBox .gap {
  width: 40px;
}
@media screen and (min-width: 769px) {
  .strength .squareBox .gap {
    width: 100px;
  }
}
.strength .squareBox .square02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.strength .strengthBox {
  padding-top: 60px;
  width: 90%;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox {
    padding-top: 150px;
  }
}
.strength .strengthBox:first-of-type {
  padding-top: 100px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox:first-of-type {
    padding-top: 200px;
  }
}
.strength .strengthBox .strengthTitle {
  position: relative;
  display: flex;
  padding-bottom: 12px;
  color: #555;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0px;
  font-family: "Raleway", sans-serif;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox .strengthTitle {
    letter-spacing: 2px;
    font-size: 60px;
  }
}
.strength .strengthBox .strengthTitle .black {
  position: absolute;
  width: 0;
  height: calc(1em + 8px);
  background-color: #555;
}
.strength .strengthBox .strengthTitle .slideJp {
  font-family: "Klee One", cursive;
}
.strength .strengthBox .passing .passing-box {
  display: block;
  text-align: center;
}
.strength .strengthBox .passing .passing-box .passing-bar {
  position: relative;
  display: inline-block;
  /*　後ほど解説　*/
  transform: translate3d(0, 0, 0);
}
.strength .strengthBox .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;
}
.strength .strengthBox .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) {
  .strength .strengthBox .passing .passing-box .passing-bar .passing-txt {
    font-size: 60px;
  }
}
.strength .strengthBox .borderBox {
  display: flex;
}
.strength .strengthBox .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) {
  .strength .strengthBox .borderBox .square {
    margin-top: -20px;
    width: 40px;
    height: 40px;
  }
}
.strength .strengthBox .borderBox .border {
  margin-left: 30px;
  margin-bottom: 16px;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox .borderBox .border {
    margin-left: 100px;
  }
}
.strength .strengthBox .strengthText {
  width: 80%;
  font-size: 14px;
  line-height: 20px;
  font-family: "Klee One", cursive;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox .strengthText {
    width: 600px;
    font-size: 20px;
    line-height: 40px;
  }
}
.strength .strengthBox .strengthText span {
  padding-top: 50px;
  display: block;
}
.strength .strengthBox01 {
  margin-left: auto;
}
.strength .strengthBox01 .strengthTitle {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox01 .strengthTitle {
    padding-left: 120px;
  }
}
.strength .strengthBox01 .strengthTitle .slideJp {
  padding-top: 8px;
  padding-left: 10px;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox01 .strengthTitle .slideJp {
    padding-top: 20px;
    padding-left: 40px;
    font-size: 30px;
  }
}
.strength .strengthBox01 .strengthText {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox01 .strengthText {
    padding-left: 120px;
  }
}
.strength .strengthBox02 .strengthTitle {
  display: flex;
  justify-content: flex-end;
  margin-right: 40px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox02 .strengthTitle {
    margin-right: 120px;
  }
}
.strength .strengthBox02 .strengthTitle .black {
  left: calc(100% - 120px);
}
@media screen and (min-width: 769px) {
  .strength .strengthBox02 .strengthTitle .black {
    left: calc(100% - 290px);
  }
}
.strength .strengthBox02 .strengthTitle .slideJp {
  padding-top: 8px;
  padding-right: 10px;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox02 .strengthTitle .slideJp {
    padding-top: 20px;
    padding-left: 40px;
    font-size: 30px;
  }
}
.strength .strengthBox02 .borderBox {
  position: relative;
}
.strength .strengthBox02 .borderBox .square {
  margin-right: -20px;
  right: 0;
  -webkit-animation: squareSpin02 4s linear infinite;
          animation: squareSpin02 4s linear infinite;
}
.strength .strengthBox02 .borderBox .border {
  margin-right: 30px;
  margin-left: 0;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox02 .borderBox .border {
    margin-right: 100px;
  }
}
.strength .strengthBox02 .strengthText {
  margin-right: 40px;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox02 .strengthText {
    margin-right: 120px;
  }
}
.strength .strengthBox03 {
  margin-left: auto;
}
.strength .strengthBox03 .strengthTitle {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox03 .strengthTitle {
    padding-left: 120px;
  }
}
.strength .strengthBox03 .strengthText {
  padding-left: 40px;
}
@media screen and (min-width: 769px) {
  .strength .strengthBox03 .strengthText {
    padding-left: 120px;
  }
}

.squareAnime {
  -webkit-animation: square_anim 1.2s linear forwards;
          animation: square_anim 1.2s linear forwards;
}

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

.slideText_last {
  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;
  }
}

.slideAnime03 {
  -webkit-animation: blackSlide03 0.8s ease-in-out;
          animation: blackSlide03 0.8s ease-in-out;
}

.slideJp {
  position: absolute;
  font-family: "Klee One", cursive;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .slideJp {
    font-size: 30px;
  }
}

.strengthBox01 .passing {
  position: relative;
}
.strengthBox01 .passing .passing-box {
  position: absolute;
  bottom: 0px;
  left: 40px;
}
@media screen and (min-width: 769px) {
  .strengthBox01 .passing .passing-box {
    bottom: 0px;
    left: 120px;
  }
}
.strengthBox01 .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;
}
.strengthBox01 .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;
}
.strengthBox01 .slideJp {
  bottom: 10px;
  left: 270px;
}
@media screen and (min-width: 769px) {
  .strengthBox01 .slideJp {
    bottom: 20px;
    left: 570px;
  }
}

.strengthBox02 .passing {
  position: relative;
}
.strengthBox02 .passing .passing-box {
  position: absolute;
  top: -44px;
  right: 42px;
}
@media screen and (min-width: 769px) {
  .strengthBox02 .passing .passing-box {
    top: -90px;
    right: 120px;
  }
}
.strengthBox02 .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;
}
.strengthBox02 .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;
}
.strengthBox02 .slideJp {
  bottom: 10px;
  right: 200px;
}
@media screen and (min-width: 769px) {
  .strengthBox02 .slideJp {
    bottom: 20px;
    right: 420px;
  }
}

@-webkit-keyframes square_anim {
  00% {
    opacity: 0;
    background-size: 1px 0, 0 1px, 1px 0, 0 1px;
  }
  25% {
    background-size: 1px 100%, 0 1px, 1px 0, 0 1px;
  }
  50% {
    background-size: 1px 100%, 100% 1px, 1px 0, 0 1px;
  }
  75% {
    background-size: 1px 100%, 100% 1px, 1px 100%, 0 1px;
  }
  100% {
    opacity: 1;
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  }
}

@keyframes square_anim {
  00% {
    opacity: 0;
    background-size: 1px 0, 0 1px, 1px 0, 0 1px;
  }
  25% {
    background-size: 1px 100%, 0 1px, 1px 0, 0 1px;
  }
  50% {
    background-size: 1px 100%, 100% 1px, 1px 0, 0 1px;
  }
  75% {
    background-size: 1px 100%, 100% 1px, 1px 100%, 0 1px;
  }
  100% {
    opacity: 1;
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  }
}
@-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(450px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 450px;
  }
  65% {
    transform: translateX(0);
    width: 450px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@keyframes blackSlide01_pc {
  0% {
    transform: translateX(450px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 450px;
  }
  65% {
    transform: translateX(0);
    width: 450px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@-webkit-keyframes blackSlide01_sp {
  0% {
    transform: translateX(180px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 180px;
  }
  65% {
    transform: translateX(0);
    width: 180px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@keyframes blackSlide01_sp {
  0% {
    transform: translateX(180px);
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 180px;
  }
  65% {
    transform: translateX(0);
    width: 180px;
  }
  100% {
    transform: translateX(0);
    width: 0;
  }
}
@-webkit-keyframes blackSlide02_pc {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 290px;
  }
  65% {
    transform: translateX(0);
    width: 290px;
  }
  100% {
    transform: translateX(290px);
    width: 0;
  }
}
@keyframes blackSlide02_pc {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 290px;
  }
  65% {
    transform: translateX(0);
    width: 290px;
  }
  100% {
    transform: translateX(290px);
    width: 0;
  }
}
@-webkit-keyframes blackSlide02_sp {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 120px;
  }
  65% {
    transform: translateX(0);
    width: 120px;
  }
  100% {
    transform: translateX(120px);
    width: 0;
  }
}
@keyframes blackSlide02_sp {
  0% {
    width: 0;
  }
  50% {
    transform: translateX(0);
    width: 120px;
  }
  65% {
    transform: translateX(0);
    width: 120px;
  }
  100% {
    transform: translateX(120px);
    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;
  }
}
.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=about.css.map */