/* ===== 共通 ===== */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  text-align: center;
  background: #f8f8f8;
}

*, *::before, *::after { box-sizing: border-box; }

h1 {
  margin: 0;
  padding: 10px;
}

/* ===== エリアボタン ===== */
.area-links {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.area-links a {
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  flex: 1 1 auto;
  text-align: center;
  min-width: 60px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* 色ごとのボタン */
.area-links a.red    { background: #d32f2f; }
.area-links a.blue   { background: #1976d2; }
.area-links a.green  { background: #388e3c; }
.area-links a.orange { background: #f57c00; }

/* ===== 会場マップ ===== */
.map-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px; /* ボタンとの隙間 */
}

/* ===== ページトップボタン ===== */
#index-page #toTop, #toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;       /* 幅固定 */
  height: 40px;      /* 高さ固定 */
  line-height: 40px; /* 文字を縦中央に */
  text-align: center; 
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  background: #000;
  color: #fff;
  padding: 0;        /* paddingは不要に */
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
