@charset "UTF-8";
/* CSS Document */
.w230px {
  width: 230px;
}
.w500px {
  width: 500px;
}
.content-block {
  align-items: center;
}
.content {
  width: 230px;
  height: 190px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 1000;
}
/*-----------------
↓ドットライン
-------------------*/
svg {
  width: 1100px;
  height: 100px;
}
svg line {
  fill: none;
  stroke: #444;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 0.1, 30;
}
/*-----------------
↑ドットライン
-------------------*/
/*-----------------
↓バウンス
-------------------*/
.bound-container {
  position: relative;
  width: 80%;
  height: 360px;
  margin-top: 150px;
  margin-bottom: 100px;
  margin-left: 130px;
}
.bounce {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: bound-anim 1s infinite;
  z-index: 1;
}
@keyframes bound-anim {
  0%, 100% {
    top: 0;
    transform: scale(1);
  }
  20% {
    top: -20%;
    transform: scale(0.96, 1.04);
  }
  40% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.15, 0.9);
  }
}
/*-----------------
↑バウンス
-------------------*/
/*-----------------
↓スクロールボタン
-------------------*/
.scroll {
  text-align: center;
  margin-top: -10px;
}
.scroll a {
  padding-bottom: 30px;
  border-radius: 50%;
}
.scroll a span.arrow {
  position: absolute;
  top: 15px;
  bottom: 130px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
  z-index: 9999;
}
/*-----------------
↑スクロールボタン
-------------------*/
#js-particles {
  width: 100vw;
  height: 100vh;
}
body {
  position: relative;
}
canvas {
  position: absolute;
  top: 0;
  left: 0;
}
main .wrap .zindex {
  position: relative;
  z-index: 10000;
  background-color: #fff;
}
main .wrap .zindex2 {
  position: relative;
  z-index: 10000;
}
header .wrap .zindex {
  position: relative;
  z-index: 10000;
}
