/* 通知エリアのスタイル */
#notification {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  /* width: (100% - 135px - 75px); */
  /* max-width: 95%; */
  /* background-color: #333; */
  /* color: #fff; */
  background-color: #FFFFFFCC;
  color: #FF0000;
  padding: 10px 15px;
  border: solid 3px #FF0000;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 1.2em;
  font-weight: bold;
  z-index: 9999;
  display: flex;
  opacity: 0.8;
  justify-content: space-between;
  align-items: center;
}

/* アイコンボタンのスタイル */
#notifyButton {
  position: fixed;
  top: 162px;
  left: 10px;
  background: #FFFFFF;
  border: solid 1px #ccc;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.5em;
  z-index: 8000;
  box-shadow: 0.2px 0.2px 0.2px 0.2px rgba(0,0,0,0.35);
}
#notifyButton.gray {
  filter: grayscale(1);
}

/* ■閉じるボタンのスタイル */
#closeBtn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2em;
  color: #FF0000;
}

/* ■通知メッセージの点滅表示用 */
.blink {
  animation: blinkAnimation 3s steps(1, start) infinite;
}

@keyframes blinkAnimation {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
