@charset "UTF-8";
/*============================================================*/
/* 404 not found */
/*============================================================*/
.notfound {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0;
  /*ボタン内spanの形状*/
}

.notfound__title {
  font-family: futura-pt, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-size: 50px;
  font-weight: 600;
  display: block;
  margin-top: 50px;
}

.notfound__btn:link, .notfound__btn:visited {
  color: #fff;
  text-decoration: none;
}

.notfound__btn {
  font-size: 22px;
  color: #fff;
  padding: 10px 20px;
  width: 350px;
  background: linear-gradient(180deg, #F09BA5 0%, #E97582 100%);
  position: relative;
  transition: all .3s;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}

.notfound__btn::after {
  font-family: "Font Awesome 5 Pro";
  content: '\f105';
  font-weight: 400;
  display: inline-block;
  position: absolute;
  right: 20px;
  transition: all .3s;
}

.notfound__btn:hover {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #e7909a 0%, #e96a79 100%);
}

.notfound__btn:hover::after {
  right: 17px;
}

@media screen and (max-width: 767px) {
  .notfound__btn {
    width: 90%;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=404.css.map */
