/* === スマホ固定メニュー & 全画面メニュー共有CSS === */

.bottom-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.bottom-banner {
  position: fixed;
  bottom: 16.66vh;
  width: 100%;
  background: #fff;
  color: red;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  padding: 7px 0;
  z-index: 9998;
}

.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  z-index: 10000;
  overflow-y: auto;
}

.full-menu.open {
  display: flex;
}

.full-menu .header-text {
  color: red;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.full-menu a {
  width: 90%;
  padding: 14px;
  margin: 10px 0;
  background: #ddd;
  color: #000;
  text-align: center;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.bottom-bar a {  
  font-size: 22px;
  font-weight: bold;
}
