@charset "UTF-8";

/* ======================
フェードイン
========================= */
.a-fadein {
  -webkit-animation: a-fadein 0.8s both 0.4s ease;
  animation: a-fadein 0.8s both 0.4s ease;
  visibility: visible !important;
  backface-visibility: hidden;
  transform: perspective(0);
}

@-webkit-keyframes a-fadein {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) perspective(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) perspective(0);
  }
}
@keyframes a-fadein {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) perspective(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) perspective(0);
  }
}

/*==============================
-P-404
===============================*/
.p-404-wrapper {
  display: block;
  position: relative;
  padding: 120px 0;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  background-color: #F7F7F7;
}
@media only screen and (max-width: 767px) {
  .p-404-wrapper {
    padding: 60px 0;
  }
}

.p-404-title {
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 10px;
  text-indent: 10px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.p-404-text {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 3px;
  text-indent: 3px;
  line-height: 1.4;
  margin-bottom: 80px;
}

.p-404-lead {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-indent: 2px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.p-404-leadlink {
  display: inline;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-indent: 2px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f00;
  transition: .3s;
}
.p-404-leadlink:hover {
  text-decoration: underline;
  transition: .2s;
}
