/* Hero Simple Overlay Styles */

.hero-content-simple {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

.hero-title-simple {
  margin: 0 0 40px 0;
}

.company-name {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
  line-height: 0.85;
  display: block;
  font-family: 'Geist Sans', 'Noto Sans JP', sans-serif;
  margin-bottom: 30px;
}

.hero-subtitle-simple {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
  font-family: 'Geist Sans', 'Noto Sans JP', sans-serif;
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
  font-family: 'Geist Sans', 'Noto Sans JP', sans-serif;
  line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-content-simple {
    text-align: center;
    padding: 0 16px;
  }

  .company-name {
    font-size: clamp(2.2rem, 12vw, 6rem);
    margin-bottom: 20px;
    line-height: 0.9;
  }

  .hero-subtitle-simple {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }
}

@media (max-width: 480px) {
  .hero-content-simple {
    padding: 0 12px;
  }

  .company-name {
    font-size: clamp(1.8rem, 14vw, 5rem);
    line-height: 0.85;
  }

  .hero-subtitle-simple {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }

  .hero-tagline {
    font-size: clamp(0.8rem, 4vw, 1rem);
  }
}

/* 非常に小さなスクリーン用 */
@media (max-width: 360px) {
  .company-name {
    font-size: clamp(1.5rem, 12vw, 4rem);
    line-height: 0.8;
    margin-bottom: 15px;
  }

  .hero-subtitle-simple {
    font-size: clamp(1rem, 6vw, 1.8rem);
    margin-bottom: 15px;
  }

  .hero-content-simple {
    padding: 0 8px;
  }
}