/* ==========================================================================
   404 Page
   ========================================================================== */

.page-404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  min-height: 50vh;
}

.page-404__code {
  font-family: 'Inter', sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: #F7F6F6;
  line-height: 1;
  margin: 0 0 -20px 0;
}

.page-404__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #313131;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.page-404__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #313131;
  line-height: 1.8;
  margin: 0 0 40px 0;
}

.page-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E51F1F;
  color: #FFFFFF;
  border: 1px solid #E51F1F;
  border-radius: 4px;
  padding: 16px 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.page-404__btn:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .page-404__container {
    padding: 80px 20px 60px;
  }
  .page-404__code {
    font-size: 100px;
  }
  .page-404__title {
    font-size: 24px;
  }
}
