.footer {
  background-color: #fafdff;
  box-shadow: 0 -4px 10px rgba(0, 0, 64, 0.6);
  padding: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px; /* フッターの高さ調整 */
}

.footer-content {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  gap: 10px; /* 項目間の隙間 */
  align-items: center;
}

.footer-content a {
  color: #192f60;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
}

.footer-content a:hover {
  color: #e9bc00; /* トパーズ */
  text-decoration: underline;
}

.footer-content p {
  margin: 0;
  color: #192f60;
  font-size: 0.9rem;
}
