body {
  margin: 0;
  padding: 0;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

h3, p, li {
  text-align: left;
}


/* ROI情報マーカーのスタイル（既存のまま） */
.roi-info-marker {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #333;
    border-radius: 5px;
    padding: 8px 12px;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
}

.roi-info-marker .eki-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 15px;
    color: #007cbf;
}

.roi-info-marker ruby rt {
    font-size: 1em;
    color: #0f0f0f;
}

footer {
  text-align: center;
  font-family: 'ipag', sans-serif;
  background-color: #0288d1;
  color: white;
  padding: 2px;
  position: fixed;
  font-size: 10px;
  bottom: 0;
  width: 100%;
}

.social-links a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}
p#footer-company {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  
/* 追加 */
  display: inline-flex;
  align-items: center;   /* 垂直中央 */
  gap: 6px;              /* 文字とバッジの間隔 */
  line-height: 1;        /* 行ボックスの高さを詰める */

}



/* 共通ボタンスタイル（web地図の注意事項ボタンと閉じるボタン） */
#notice-button,
.overlay-content button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}


/* オーバーレイ全体 */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* オーバーレイ内のコンテンツ */
.overlay-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 80%;
  font-family: sans-serif;
}

.overlay-text {
  height: 45vh;
  overflow-y: auto;
}

/* フッター用β版バッジ */
.beta-badge-footer {
  display: inline-block;
  padding: 4px 8px;
  background: linear-gradient(90deg, #FF6600, #FF8800); /* 影なしで目立たせる */
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.7);             /* 枠線でラベル感 */
}

