/* ===== ヒーロー（書き直し） ===== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.65) contrast(1.1);
}

/* 文字をクッキリさせる黒レイヤー */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.70)
  );
}

/* 中身 */
.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}

/* タイトル＆サブタイトル */
.hero-title,
.hero-sub {
  color: #ffffff !important;
  opacity: 0;
  text-shadow: 0 0 22px rgba(0,0,0,0.9); /* 超クッキリ */
  animation: heroFade 1.6s ease-out forwards;
}

/* タイトルを少し早く出す */
.hero-title {
  animation-delay: 0.1s;
  transform: translateY(16px);
}

/* サブは少し遅れて上品に */
.hero-sub {
  animation-delay: 0.45s;
  transform: translateY(22px);
}

/* ボタンもフワッと */
.hero-cta {
  opacity: 0;
  animation: heroFade 1.6s ease-out forwards;
  animation-delay: 0.8s;
  transform: translateY(26px);
}

/* フェードイン＋スライド */
@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ヒーロー見出しを濃く・クッキリ ===== */
.hero-title {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 8px rgba(0,0,0,0.85),
    0 0 28px rgba(0,0,0,0.85);
}

.hero-sub {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 600;
  text-shadow:
    0 0 6px rgba(0,0,0,0.75),
    0 0 18px rgba(0,0,0,0.75);
}

/* 背景暗めにして文字をさらに読みやすく */
.hero-bg {
  filter: brightness(0.60) contrast(1.1);
}

/* 画面暗めオーバーレイ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* ←必要に応じて 0.45〜0.65 に調整可能 */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HERO タイトルを絶対に濃くする（強制オーバーライド）
========================================================= */
.hero .hero-title {
  color: #ffffff !important;
  font-weight: 900 !important;
  opacity: 1 !important;
  text-shadow:
    0 0 10px rgba(0,0,0,1),
    0 0 25px rgba(0,0,0,1),
    0 0 40px rgba(0,0,0,0.9) !important;
  position: relative !important;
  z-index: 5 !important;
}

.hero .hero-sub {
  color: #ffffff !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  text-shadow:
    0 0 8px rgba(0,0,0,0.95),
    0 0 20px rgba(0,0,0,0.95) !important;
  z-index: 5 !important;
}

/* 背景をさらに暗くする（強制） */
.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.55) !important; /* ← 0.55〜0.70で調整可能 */
  z-index: 2 !important;
}

.hero .hero-inner {
  position: relative !important;
  z-index: 10 !important;
}

.hero-bg {
  filter: brightness(0.55) contrast(1.2) !important;
  z-index: 1 !important;
}

.falcon-footer {
  background: #001f2a;
  padding: 24px 0;
  text-align: center;
  color: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===============================================
   Falcon Footer（スマホ完全対応）
================================================ */
.falcon-footer {
  background: #001f2a;
  padding: 28px 0;
  text-align: center;
  color: #fff;
}

.footer-copy {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

/* ======== スマホ最適化 ======== */
@media (max-width: 768px) {
  .falcon-footer {
    padding: 22px 0;
  }

  .footer-copy {
    font-size: 0.85rem;  /* スマホで読みやすいサイズ */
    line-height: 1.5;
    opacity: 0.9;
  }
}
