/* --- ベースのスタイル --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Heroセクション全体（高さを画面いっぱいに） */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面の高さ100% */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:#1a73e8;  /*画像の後ろの基本背景色 */
}

/* 背景を少し暗く・ぼかす演出（ポスターを引き立てる） */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/76thposter.jpg'); /* ポスターと同じ画像 */
  background-size: cover;
  background-position: center;
 filter: blur(20px) brightness(0.65); /* ぼかし＋暗化 */
  z-index: 1;
  transform: scale(1.1); /* ぼかしの端の白いノイズを防ぐ */
}

/* コンテンツエリア */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* 上下に少し余白を持たせる */
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px; /* 画像とテキストの間隔 */
  margin-top:30px;
}

/* 画像のラッパー */
.hero-image-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 縦長ポスターの肝 */
.hero-poster {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain; /* 画像を切り取らずに枠内に収める */
  /*box-shadow: 0 20px 40px rgba(0,0,0,0.5); /* ポスターに立体感を出す 
  border-radius: 8px;*/
  margin-top:45px;
}

/* テキストエリア */
.hero-text {
  flex: 1;
  color: #ffffff;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
/*
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #dddddd;
}*/

/* --- レスポンシブ（スマホ対応） --- */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column; /* 縦並びにする */
    justify-content: center;
    padding: 20px;
    height: 100%;
  }

  /* スマホでは画像を背景っぽく大きく見せる、または上部に配置 */
  .hero-image-wrap {
    width: 100%;
    height: 50vh; /* 画面の上半分を画像に */
  }

  .hero-text {
    width: 100%;
    text-align: center; /* スマホは中央揃えが綺麗 */
    padding-top: 15px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}