/* ==========================================================================
   Hero Section - シンプル統合版
   ========================================================================== */

/* ヒーローセクション基本スタイル */
#hero {
  height: 80vh;
  max-height: 800px;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--primary-blue);
  border-bottom: none;
  /* 十分な上部パディングでヘッダーとの重なりを確実に回避 */
  padding-top: 120px;
}

/* 背景動画 */
#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.8;
}

/* オーバーレイ */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* ヒーローコンテンツ（ガラス調） */
.hero-content {
  max-width: 1100px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  padding: 40px 60px 50px 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* タイトル */
.hero-content h1 {
  color: var(--white);
  font-size: clamp(36px, 8vw, 60px);
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  word-break: auto-phrase;
  overflow-wrap: break-word;
  line-break: auto;
}

/* 説明文 */
.hero-description {
  margin: 40px 0 45px;
}

.hero-description p {
  font-size: 24px;
  color: var(--white);
  line-height: 1.7;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  text-align: center;
  word-break: auto-phrase;
  overflow-wrap: break-word;
  line-break: auto;
}

.hero-description strong {
  color: var(--primary-teal);
  font-weight: 900;
}

/* ハイライト */
.hero-highlight {
  color: var(--white);
  font-weight: 800;
  position: relative;
  display: inline;
  margin: 0 2px;
}

.hero-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  right: -8px;
  bottom: 0;
  background: var(--primary-blue);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: -1;
}

/* CTA */
.hero-cta {
  margin-top: 20px;
}

.cta-message {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 35px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.cta-message strong {
  color: var(--secondary-yellow);
}

/* ヒーローセクションの直後の要素との間隔を削除（ステータスバナー以外） */
#hero + *:not(.status-banner):not(#today-status) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ==========================================================================
   レスポンシブデザイン - シンプル統合版
   ========================================================================== */

/* タブレット (768px以下) */
@media (max-width: 768px) {
  #hero {
    height: 70vh;
    max-height: 600px;
    min-height: 500px;
    padding-top: 120px;
    margin-bottom: 0;
  }

  .hero-content {
    margin: 0 20px;
    padding: 35px 30px 45px 30px;
    border-radius: 30px;
    max-width: calc(100% - 40px);
  }

  .hero-content h1 {
    font-size: clamp(30px, 6vw, 42px);
    margin-bottom: 25px;
  }

  .hero-description p {
    font-size: 22px;
    line-height: 1.6;
  }

  .hero-highlight::before {
    left: -6px;
    right: -6px;
    border-radius: 4px;
  }
}

/* スマートフォン (480px以下) */
@media (max-width: 480px) {
  #hero {
    height: 65vh;
    max-height: 550px;
    min-height: 480px;
    padding-top: 100px;
    margin-bottom: 0;
  }

  .hero-content {
    margin: 0 15px;
    padding: 25px 20px 35px 20px;
    border-radius: 25px;
    max-width: calc(100% - 30px);
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-description {
    margin: 30px 0 35px;
  }

  .hero-description p {
    font-size: 18px;
    line-height: 1.55;
  }

  .cta-message {
    font-size: 20px;
    margin: 0 auto 30px;
  }
}

/* 極小画面 (360px以下) */
@media (max-width: 360px) {
  #hero {
    padding-top: 90px;
    min-height: 450px;
    margin-bottom: 0;
  }

  .hero-content {
    margin: 0 10px;
    padding: 20px 15px 30px 15px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-description p {
    font-size: 16px;
  }
}