:root {
  --color-main: #93BFEB;
  --color-sub: #FFEB84;
  --color-white: #FFFFFF;
  --color-text: #2c3e50;
  --color-card-bg: #e0f0ff;
  --color-card-shadow: #b0d4f2;
  --font-retro: "M PLUS Rounded 1c", sans-serif;
}

/* ================== ページ全体 ================== */
body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-retro);
  margin: 0;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* ================== 見出し ================== */
.section-title {
  font-family: 'Rampart One', cursive;
  font-size: 2rem;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-sub);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ================== カード ================== */
.card {
  background: var(--color-card-bg);
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 0 var(--color-card-shadow);
}

/* ================== アクセス ================== */
.access-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  font-size: 1rem;
}

.access-address {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.access-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ================== Google Map ================== */
.access-map {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--color-card-shadow);
}

.access-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* ===== アクセス見出し ===== */
.access-heading {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--color-main);
}

/* 住所強調 */
.access-address {
  font-weight: bold;
  line-height: 1.7;
}

/* 周辺情報リスト */
.access-list {
  padding-left: 1.2em;
  margin: 8px 0 0;
}

.access-list li {
  margin-bottom: 6px;
}

/* 注意書き */
.access-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}


/* ================== スマホ対応 ================== */
@media (max-width: 480px) {
  .page {
    padding: 24px 12px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .access-card {
    padding: 20px 16px;
    font-size: 0.95rem;
  }

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