footer {
    font-family: 'keinann', sans-serif;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px 0;
    text-align: center;
    font-size: 1em;
    color: #fa7aa5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@font-face {
    font-family: 'keinann';
    src: url('../fonts/keinann.ttf') format('truetype');
}



/* フッター */
footer {
    background-color: #fa7aa5; /* 背景色 */
    color: white; /* フォント色 */
    padding: 20px; /* 全体の余白 */
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* 上部に軽い影 */
    position: relative; /* フッターを別レイヤーに */
    z-index: 1; /* ヘッダーやハンバーガーより後ろ */
}

.footer-content {
  background-color: #fA7AA5;
  padding: 20px 40px;
}

/* 上段：ロゴ＋メニューを左右に */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  height: 60px;
}

.footer-menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 16px;
  /* background-color: #e4809e; */
  border-radius: 20px;
  transition: all 0.3s ease;
}

.footer-menu a:hover {

    opacity: 0.5;
}

.footer-menu a.highlight {
  background-color: white;
  color: #d43758;
}

.footer-menu a.inactive {
  opacity: 0.5;
}

.footer-copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-logo img {
    height: 50px;
    margin-bottom: 10px;
  }

  .footer-menu {
    /* flex-direction: column; */
    align-items: center;
    gap: 12px;
  }

  .footer-menu a {
    padding: 10px 20px;
    font-size: 1em;
  }
}
