body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  background-color: #0baa6a;
  color: #333;
  overflow-x: hidden;
}

main {
  flex: 1;
  margin-bottom: 110px;
}

.cta-btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #0baa6a;
  color: #fff;
  padding: 15px 25px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 800;
}

.cta-btn:hover {
  background-color: #097b50;
}

.arrow-wrapper {
  background-color: #fff;
  border-top: 1px solid #0baa6a;
  position: relative;
  overflow: hidden;
}

.down-arrow-div {
  transform: scale(1.01);
  transform-origin: top;
  overflow: hidden;
  background: linear-gradient(to bottom, #0baa6a, #f8f9f8);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.down-arrow-div > div {
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.down-arrow {
  margin-top: 5vh;
  margin-bottom: 5vh;
  width: 30%;
  aspect-ratio: 5/4;
  background-image: url("../assets/img/arrow.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}

.pc-open {
  display: inline;
}

.footer-copy {
  width: 100%;
  background-color: #e0e0e0;
  text-align: center;
  justify-content: center;
  padding: 50px 0;
}

.footer-copy p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0 auto;
}

.marker {
  --marker-color: #fff3a0;
  position: relative;
  display: inline;
  font-weight: 700;
  color: #333;
  background: linear-gradient(transparent 60%, var(--marker-color) 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 2.5s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: normal;
}

.marker.aos-animate {
  background-size: 100% 100%;
}

@media screen and (max-width: 767px) {
  .pc-open {
    display: none;
  }
  .footer-copy p {
    font-size: 8px;
  }
}
