/* recofooter.CSS */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 25px;
  background: #f5c905;
  color: #706c6c;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000; /* カレンダー等のコンテンツの下に潜り込まないように */
  gap:20px;
}

/* 既存のリンク用スタイル */
.footer-link {
  color: #02eefa;
  font-size: 1rem;
  text-decoration: underline;
}

.footer-link:hover {
  color: #77e11b;
  text-decoration: none;
}

/* 管理用リンク（◆）のスタイル：目立たないように設定 */
.admin-quiet-trigger {
  color: inherit;       /* フッターの文字色と同じにする */
  text-decoration: none; /* 下線を消す */
  margin-left: 5px;      /* 店名との間に少し隙間を作る */
  opacity: 0.3;         /* かなり薄くする */
  cursor: default;      /* カーソルを指マークにせず、普通のテキストに見せかける */
}

.admin-quiet-trigger:hover {
  opacity: 1;           /* マウスを乗せた時だけ少し見えるようにする */
  cursor: pointer;      /* 管理者が操作する時は指マークにする */
}

@media (max-width: 480px){
.footer {
  max-height: 13px;
  }
.footer-link {
  font-size: 0.3rem;
}
}