/* アクセス＆市内移動ガイド カスタムスタイル */

/* ヒーローを画面幅いっぱいの写真＋テキストオーバーレイに変更 */
.hero {
  padding: 0;
  position: relative;
  max-width: none;
}

.hero__cover {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ライオンの顔が見切れないよう、上寄りを表示 */
  object-position: center top;
  display: block;
}

/* 写真の上に暗いグラデーションをかけてテキストを読みやすくする */
.hero__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* テキストを写真の上に重ねる */
.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 32px 32px 36px;
  max-width: 760px;
  margin: 0 auto;
}

.hero__eyebrow--cover {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.hero__title--cover {
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__lead--cover {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* スマホでは高さを少し下げる */
@media (max-width: 600px) {
  .hero__cover {
    height: 340px;
  }
  .hero__overlay {
    padding: 24px 20px 28px;
  }
}

/* お得な切符テーブルをスマホで横スクロール（5列全表示） */
#tickets .info-table {
  min-width: 560px;
  width: auto;
}

/* ①②③ など番号つきの手順リストは、丸ポチを消す */
.list--steps li {
  padding-left: 0;
}
.list--steps li::before {
  display: none;
}

