.hero-link {
  display: block;
  text-decoration: none;
}

.hero-area {
  position: relative;   /* ←これが必須 */
  width: 100%;
  max-width: 750px;
  height: 210px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.hero-movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 文字を重ねる */
.hero-text {
  position: absolute;   /* ←これが必須 */
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 10;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* 文字デザイン */
.hero-logo {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

/* videoクリックで再生停止にならないようにする */
.hero-movie {
  pointer-events: none;
}

.hero-text {
  z-index: 9999;
}

.hero-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-top-text,
.hero-bottom-text {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin: 15px 0;
}