@charset "UTF-8";
/* -------------------------------
//. 404エラーページ
------------------------------- */
.p-notfound {
  background-color: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 30px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .p-notfound {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}
.p-notfound::before {
  content: "";
  background-image: url(/img/common/bg_notfound.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-notfound__inner {
  text-align: center;
  z-index: 1;
}
.p-notfound__lead {
  font-size: 28px;
}
@media (max-width: 768px) {
  .p-notfound__lead {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .p-notfound__lead {
    font-size: 17px;
  }
}
.p-notfound__error {
  color: #8e7f64;
  font-size: 150px;
}
@media (max-width: 768px) {
  .p-notfound__error {
    font-size: 112px;
  }
}
@media (max-width: 480px) {
  .p-notfound__error {
    font-size: 82px;
  }
}
.p-notfound__txt {
  font-size: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-notfound__txt {
    font-size: 14px;
  }
}