あなたの旅を、もっと自由に。
    カスタマイズ可能なエジプト旅行で、理想の旅を叶えましょう。
  
      ツアーを探す
      自由プランを相談する
    
.hero-area {
  position: relative;
  width: 100%;
  height: 80vh; /* 高さ調整可 */
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%); /* 背景を少し暗くして文字を見やすく */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* --- ボタン設定 --- */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tcd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.tcd-btn.gold {
  background-color: #c9a54d; /* ゴールド */
  color: #fff;
}

.tcd-btn.gold:hover {
  background-color: #b08f42;
}

.tcd-btn.white {
  background-color: #fff;
  color: #004d73; /* ナイルブルー */
  border: 2px solid #004d73;
}

.tcd-btn.white:hover {
  background-color: #f2f2f2;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .tcd-btn {
    width: 80%;
    max-width: 280px;
  }
}