/* =========================================================
   HEROセクション（トップビジュアル）
   ========================================================= */
main.hero {
  position: relative;

  min-height: 100vh;
  height: auto;

  display: flex;
  flex-direction: column; /* ← hero-content → hero-news を縦並びにする */
  justify-content: flex-start;
  align-items: center;

  padding-top: 15vh;

  padding-bottom: 5rem; /* ← hero-newsの下に余白を確保 */

  background: url("../img/top.png") center/cover no-repeat;
  color: #333;
}


/* ---------- オーバーレイ（中央白帯） ---------- */
main.hero::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, leftをまとめて指定 */
  z-index: 0;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,   /* 左端透明 */
    rgba(255, 255, 255, 0) 10%,  /* 左側透明部分 */
    rgba(255, 255, 255, 0.8) 10%, /* 中央白開始 */
    rgba(255, 255, 255, 0.8) 90%, /* 中央白終了 */
    rgba(255, 255, 255, 0) 90%,  /* 右側透明部分 */
    rgba(255, 255, 255, 0) 100%  /* 右端透明 */
  );
}

/* =========================================================
   HERO内部テキスト
   ========================================================= */
.hero-content {
  position: relative; /* オーバーレイより前面に表示 */
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  width: 90%;
}

/* ---------- ロゴテキスト ---------- */
.hero-content h1.logo {
  font-family: "Playwrite US Modern", cursive;
  font-weight: bold;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  padding-top: 30px;
  letter-spacing: 0.5em;

  /* グラデーションテキスト */
  color: transparent;
  background: linear-gradient(0.25turn, #f56263, #6a75e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 下端切れ防止 */
  display: inline-block;
  line-height: 1.1em;
  padding-bottom: 0.4em;
}

/* ---------- サブ説明テキスト ---------- */
.hero-content p {
  font-size: 1rem;
  color: #444;
}

/* ---------- 注意文（R18など） ---------- */
.hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #a00;
  font-weight: bold;
}

/* =========================================================
   お知らせセクション（背景上）
   ========================================================= */
.hero-news {
  position: relative;
  z-index: 2;
  border: 2px solid #000;
  border-radius: 0.5rem;
  max-width: 600px;
  width: 70%;
  background-color: rgba(255,255,255,0);
  padding: 1rem 1.5rem;
}

.hero-news h5 {
  font-size: 1.0rem;
  margin-bottom: 0.5rem;
}

.hero-news ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-news li {
  font-size: 0.90rem;
  margin-bottom: 0.3rem;
}