/* トップビジュアル */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end; /* center から flex-end に変更 */
  justify-content: flex-start; /* center から flex-start に変更 */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0 4rem 4rem; /* 左下に余白を追加 */
}

.hero-content {
  text-align: left; /* center から left に変更 */
  color: white;
  z-index: 2;
  max-width: 600px; /* 800px から 600px に縮小 */
  padding: 0;
  position: relative;
}

.hero-title {
  margin: 0 0 1.5rem 0; /* 2rem から 1.5rem に縮小 */
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem 1.5rem; /* 3rem 2rem から 2rem 1.5rem に縮小 */
  border-radius: 15px; /* 20px から 15px に縮小 */
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.title-main {
  display: block;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  font-size: 2.5rem; /* 3.5rem から 2.5rem に縮小 */
  font-weight: 600;
  letter-spacing: 0.1em;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-organizers {
  margin-top: 1.5rem; /* 2rem から 1.5rem に縮小 */
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem; /* 1.5rem から 1rem に縮小 */
  border-radius: 10px; /* 15px から 10px に縮小 */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.organizer {
  font-size: 0.9rem; /* 1.1rem から 0.9rem に縮小 */
  margin: 0.25rem 0; /* 0.5rem から 0.25rem に縮小 */
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.title-main {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-organizers {
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
    padding: 0 0 2rem 2rem; /* パディングを縮小 */
    align-items: center; /* モバイルでは中央に戻す */
    justify-content: center; /* モバイルでは中央に戻す */
  }

  .hero-content {
    text-align: center; /* モバイルでは中央揃え */
    max-width: 90%;
  }

  .hero-title {
    padding: 1.5rem 1rem; /* さらに縮小 */
    border-radius: 10px;
  }

  .title-main {
    font-size: 2rem; /* 2.5rem から 2rem に縮小 */
  }

  .hero-organizers {
    padding: 0.75rem; /* さらに縮小 */
  }

  .organizer {
    font-size: 0.8rem; /* さらに縮小 */
  }

  .hero-caption {
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0 0 1.5rem 1.5rem; /* さらに縮小 */
  }

  .hero-title {
    padding: 1rem 0.75rem; /* さらに縮小 */
    border-radius: 8px;
  }

  .title-main {
    font-size: 1.5rem; /* さらに縮小 */
  }

  .organizer {
    font-size: 0.75rem; /* さらに縮小 */
  }
}