#wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100dvh;
  background: url("../img/img-pc.webp") no-repeat center / cover;
  color: #fff;
}
.mo {
  display: none;
}

.title-wrap h1 {
  font-size: 8.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 6.5rem;
}
.title-wrap h1 b {
  color: #13dc6c;
}
.title-wrap p {
  font-size: 4.4rem;
  letter-spacing: -.2rem;
}

.google {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: fit-content;
  font-size: 4.3rem;
  font-weight: 500;
  letter-spacing: -.2rem;
  background: linear-gradient(to right, #64c7ed, #25d376);
  margin-top: 6.5rem;
  padding: 2.2rem 7rem;
  border-radius: 10rem;
}


@media screen and (max-width: 720px) {
  .mo {
    display: block;
  }
  .pc {
    display: none;
  }
	#wrap {
    background: url("../img/img-mo.webp") no-repeat center / cover;
  }
  .title-wrap h1 {
    font-size: 12rem;
    margin-bottom: 8rem;
  }
  .title-wrap p {
    font-size: 6rem;
    line-height: 1.35;
  }
  .google {
    font-size: 5.2rem;
    margin-top: 9rem;
  }
  .google img {
    width: 5rem;
  }
}

@media screen and (max-width: 480px) {
  
}