/* =========================
   アクセスページ（完成）
========================= */

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: #111;
}

.access-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 20px;
  font-size: 16px;
  line-height: 2;
}

/* =========================
   注意（センター）
========================= */

.center {
  text-align: center;
}

.access-warning {
  margin-bottom: 80px;
}

.access-warning h1 {
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.access-warning h1 span {
  display: block;
  margin-top: 8px;
  color: #b00000;
  font-size: 22px;
}

.access-warning p {
  margin-bottom: 18px;
}

.access-warning .strong {
  color: #b00000;
}

/* =========================
   ボタン
========================= */

.access-action {
  text-align: center;
  margin-bottom: 80px;
}

.map-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 22px 60px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.3s;
}

.map-btn:hover {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

/* 🔥 強調ナビ警告 */

.nav-warning {
  margin-top: 35px;
  font-size: 18px;
  color: #b00000;
  line-height: 2.2;
}

/* =========================
   地図
========================= */

.access-map {
  margin-bottom: 80px;
}

.access-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* =========================
   タクシー（グレー復活）
========================= */

.access-taxi {
  background: #f6f6f6;
  padding: 50px 40px;
  margin-bottom: 80px;
}

.access-taxi h2 {
  font-size: 20px;
  margin-bottom: 30px;
}

.access-taxi p {
  margin-bottom: 15px;
}

.taxi-list {
  margin-top: 20px;
}

.taxi-list p {
  margin-bottom: 10px;
}

.taxi-list a {
  text-decoration: underline;
  color: #000;
}

/* =========================
   もどる
========================= */

.back-link {
  text-align: center;
  margin-top: 60px;
  font-size: 16px;
}

.back-link a {
  color: #888;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

/* =========================
   スマホ
========================= */

@media (max-width: 768px) {

  .access-page {
    padding: 70px 16px;
  }

  .access-warning h1 {
    font-size: 22px;
  }

  .access-warning h1 span {
    font-size: 18px;
  }

  .map-btn {
    width: 100%;
    padding: 16px;
  }

  .access-map iframe {
    height: 300px;
  }

  .nav-warning {
    font-size: 16px;
  }

}