@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : copy.css
 author     : Ability Consultant
 style info : エラーページ
=================================================================== */
/* font-awesome */
@-moz-keyframes view {
  0% {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes view {
  0% {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes view {
  0% {
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* -----------------------------------------------------------
	misc
----------------------------------------------------------- */
.notfound {
  width: 1000px;
  margin: 0 auto;
  padding-top: 142px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .notfound {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
  }
}
.notfound h1 {
  margin-bottom: 100px;
  font-size: 3em;
  font-size: 3rem;
  font-weight: bold;
  color: #1a5aa2;
}
@media only screen and (max-width: 767px) {
  .notfound h1 {
    margin-bottom: 70px;
    font-size: 1.8em;
    font-size: 1.8rem;
  }
}
.notfound .inner .message {
  padding-bottom: 60px;
}
.notfound .inner .btn {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .notfound .inner .btn {
    margin-bottom: 50px;
  }
}
.notfound .inner .btn a {
  text-decoration: none;
  display: inline-block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #81c0de;
  font-weight: bold;
  color: #177fb8;
}
