@media (min-width: 1024px) {
  #hero-pc {
    height: 100vh;
    padding-right: 12.5%;
    padding-top: 20%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url("/assets/imgs/title.jpg") no-repeat center/cover;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
  }

  #hero-pc h2 {
    margin-top: 0.5rem;
  }

  #hero-pc h3 {
    margin-top: 2rem;
  }

  #hero-pc h4 {
    margin-top: 1rem;
  }

  section {
    padding: 20px 12.5%;
  }

  #hero-mobile {
    display: none;
  }

  #greeting-pc {
    width: 100%;
    height: 80vh;
    background: #d7e9ee;
    padding: 50px 12.5%;
  }

  #greeting-mobile {
    display: none;
  }

  #greeting-pc {
    display: block;
  }

  #greeting-pc > * {
    margin-top: 10px;
  }

  #greeting-pc h2 {
    margin-top: 10px;
    color: var(--text-main);
  }

  #greeting-pc h3 {
    width: fit-content;
  }

  #greeting-pc p {
    margin-top: 20px;
  }

  #greeting-pc img {
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 35%;
    visibility: visible;
  }

  #greeting-pc .img1 {
    top: 50%;
    left: 55%;
    width: 20%;
    transform: translate(-50%, -50%) rotate(-10deg);
  }

  #greeting-pc .img2 {
    top: 60%;
    left: 72%;
    width: 15%;
    transform: translate(-50%, -50%) rotate(20deg);
  }
}
@media (min-width: 1600px) {
  header {
    height: 12.5vh;
    padding: 0 12.5%;
  }

  .nav-pc {
    display: block;
    width: 60%;
  }
}
