/* フッターのリンク基本スタイル */
.footer-links a {
  color: #EFEFEF;
  text-decoration: none;
  display: block;         /* 縦並びのスペースを安定させるなら推奨 */
  margin: 4px 0;          /* 行間の調整（お好みで変更可） */
  transition: all 0.25s ease;
}

/* ホバー時のスタイル */
.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
/* ロゴの自然な視認性アップ（最適バランス） */
[data-zs-logo] {
  filter: drop-shadow(0 1px 0.8px rgba(0,0,0,0.38));
}
/* トップへ戻るボタン */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px; /* ← ここを上げるだけ！ */
  width: 48px;
  height: 48px;
  background-color: #BDB4D6;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.back-to-top:hover {
  background-color: #563779 !important; /* ← ホバー時の背景 */
  color: #fff !important;              /* ← ホバー時の矢印の色（白のまま） */
}


/* スクロール後に表示 */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
