
/* 白黒反転ボタンのスタイル */
.darkmode-btn {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 1em 1.5em;
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 9999;
}

/* ダークモード本体 */
body.darkmode {
  background-color: #000 !important;
  color: #fff !important;
}

/* aタグ（リンク）も白く */
body.darkmode a {
  color: #fff !important;
  text-decoration: underline;
}

/* 画像は反転させない */
body.darkmode img {
  filter: none !important;
}

/* 背景が白になっている主要な要素も黒に */
body.darkmode,
body.darkmode #container,
body.darkmode #contents,
body.darkmode #main,
body.darkmode #sub,
body.darkmode footer,
body.darkmode nav,
body.darkmode section {
  background-color: #000 !important;
  color: #fff !important;
}

#darkModeToggle.hidden {
  display: none;
}


