.p-not-found {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 2rem;
  padding-bottom: 6rem;
}

.p-not-found > h1,
.p-not-found > h2,
.p-not-found > p {
  font-family: var(--font-family-number);
  color: var(--color-green-blue);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.p-not-found > h1 {
  font-size: 4rem;
}

.p-not-found > h2 {
  font-size: 2rem;
}

.p-not-found > p {
  font-size: 1.2rem;
  margin-top: 4rem;
}

/* 送信ボタン */
.c-button {
  cursor: pointer;
  font-family: var(--font-family-base);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--color-white);
  border: 1px solid var(--color-green-blue);
  background-color: var(--color-green-blue);
  border-radius: 12px;
  padding: 1rem 0rem;
  margin: 0 auto;
  margin-top: 4rem;
  font-size: 1.5rem;
  transition: 0.4s ease;
  position: relative;
}

.c-button:hover {
  background-color: var(--color-white);
  color: var(--color-green-blue);
}

.c-button .p-arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("/public/top/white-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.c-button:hover .p-arrow {
  background-image: url("/public/top/blue-arrow.svg");
}

/*-------------------------
  PC
-------------------------*/
@media screen and (min-width: 1200px) {
  .p-not-found {
    min-height: 100vh;
    position: relative;
    padding: 0;
  }

  .p-max {
    width: 100%;
    height: 100vh;
    position: absolute;
    margin: 0 auto;
  }

  .p-bg {
    position: absolute;
    left: -10rem;
    bottom: -10rem;
    width: 120%;
    z-index: -1;
  }

  .p-bg.p-back {
    bottom: -18%;
  }

  .p-bg-tree {
    position: absolute;
    bottom: 10%;
    z-index: -1;
  }

  .p-bg-tree.p-tree-1 {
    left: 0;
    bottom: 18%;
    width: 10rem;
  }

  .p-bg-tree.p-tree-2 {
    left: 6rem;
    bottom: -8rem;
    width: 16rem;
  }

  .p-bg-tree.p-tree-3 {
    right: 8rem;
    bottom: 0rem;
    width: 12rem;
  }

  .p-bg-tree.p-tree-4 {
    right: 4rem;
    bottom: 0;
    width: 8rem;
  }

  .p-not-found > h1 {
    font-size: 10rem;
  }

  .p-not-found > h2 {
    font-size: 2.4rem;
  }

  .p-not-found > p {
    font-size: 1.2rem;
    margin-top: 2rem;
  }

  /* 送信ボタン */
  .c-button {
    width: 24rem;
    margin-top: 2rem;
  }

  .c-button:hover {
    background-color: var(--color-white);
    color: var(--color-green-blue);
  }
}
