@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/

body {
  background: #000 url(../img/nodesign.jpg) repeat 0 0;
  color: #333;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  height: 100%;
  min-height: 600px;
  min-width: 320px;
  animation: bg_move1 2s linear infinite;
  position: relative;
}

.jp {
  font-family: "SawarabiGothic", sans-serif;
}

#container {
  width: 100%;
  height: 100%;
  min-height: 600px;
  min-width: 320px;
  position: fixed;
  text-align: center;
}

div#bg01 {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000 url(../img/nodesign.jpg) repeat 0 0;
  opacity: .5;
  min-height: 600px;
  min-width: 320px;
  z-index: 10;
}

div#bg02 {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: fixed;
  border: 20px solid #FFF;
  border: 20px solid rgba(255, 255, 255, 0.3);
  min-height: 600px;
  min-width: 320px;
  z-index: 1000;
}

div#bg03 {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
  filter: blur(10px);
}

@keyframes bg_move1 {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes bg_move2 {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

a {
  -webkit-tap-highlight-color: rgba(200, 200, 555, .6);
}

a:link {
  color: #686C96;
  text-decoration: none;
}

a:visited {
  color: #686C96;
  text-decoration: none;
}

a:hover {
  color: #686C96;
  text-decoration: underline;
}

a:action {
  color: #686C96;
  text-decoration: underline;
}

img {
  vertical-align: top;
}


/*----------------------------------------------------
 common
----------------------------------------------------*/


/*----------------------------------------------------
 index
----------------------------------------------------*/

#logo {
  width: 30%;
  max-width: 400px;
  min-width: 200px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  transition: 1s;
  z-index: 10000;
}

#logo svg {
  display: inline-block;
  animation: logo 1s 3.6s ease infinite;
}

#logo svg g {
  transform-origin: center;
}

@keyframes logo {
  45% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  55% {
    transform: scale(1);
  }
}

#logo .st0 {
  opacity: 0.3;
}

#logo .st1 {
  fill: #FFF;
  stroke-width: 1px;
  stroke: #FFF;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
}

#logo .st1:nth-child(1) {
  animation: drawline 2s 1s linear forwards, FillIn 1s 2s linear both;
}

#logo .st1:nth-child(2) {
  animation: drawline 4s 1.5s linear forwards, FillIn 1s 2.2s linear both;
}

#logo .st1:nth-child(3) {
  animation: drawline 4s 1.7s linear forwards, FillIn 1s 2.3s linear both;
}

#logo .st1:nth-child(4) {
  animation: drawline 4s 1.9s linear forwards, FillIn 1s 2.4s linear both;
}

#logo .st1:nth-child(5) {
  animation: drawline 4s 2.1s linear forwards, FillIn 1s 2.5s linear both;
}

#logo .st1:nth-child(6) {
  animation: drawline 4s 2.3s linear forwards, FillIn 1s 2.6s linear both;
}

#logo .st1:nth-child(7) {
  animation: drawline 4s 2.5s linear forwards, FillIn 1s 2.7s linear both;
}

#logo .st1:nth-child(8) {
  animation: drawline 4s 2.7s linear forwards, FillIn 1s 2.8s linear both;
}

#logo .st1:nth-child(9) {
  animation: drawline 4s 2.9s linear forwards, FillIn 1s 2.9s linear both;
}

@keyframes drawline {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes FillIn {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
  }
}

#noteBlock {
  display: inline-block;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.work {
  letter-spacing: 1px;
  font-size: 16px;
  color: #FFF;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.otherTx {
  letter-spacing: 1px;
  font-size: 1４px;
  color: #FFF;
  color: rgba(255, 255, 255, 0.3);
}


/*----------------------------------------------------
  550px
----------------------------------------------------*/

@media screen and (max-width: 550px) {
  div#bg02 {
    border: 10px solid rgba(255, 255, 255, 0.3);
    min-height: 600px;
  }
  div#bg03 {
    filter: blur(5px);
  }
  #noteBlock {
    bottom: 30px;
  }
}