.hero {
  position: relative;
  top: 60px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-inner {
  position: relative;
  text-align: center;
  width: calc(100% - 8vw);
  padding: 0 1rem;
}
.hero-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 4rem;
  opacity: 0.8;

}
.hero-breadcrumb a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
.hero-breadcrumb a:hover {
  text-decoration: underline;
}
.hero-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-text {
  font-size: 1.125rem;
  color: #ebebeb;
  margin-bottom: 8rem;
  opacity: 0.9;
}

.hero-App-buttons {
  position: relative;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  animation: floatIn 3s ease-out both;
  animation-delay: 0.5s;
}

.hero-cta-button {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1.5px solid #fff;
  border-radius: 9999px;
  padding: 12px 32px;
  width: 220px;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-text {
    font-size: 1rem;
  }
}
</style>