.site-footer {
  background: #111;
  color: #eee;
  padding: 48px 0 24px 0;
  font-size: 1rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;   /* ← stretchで全カラム高さを親に合わせる */
  gap: 36px;
  padding: 0 24px;
}

/* 3カラム共通：均等幅・高さauto・flex縦並び */
.footer-brand,
.footer-nav,
.footer-contact {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: flex-start;
}

/* brandだけ中央寄せ（上下・左右） */
.footer-brand {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

/* nav/contactは上揃え・左寄せ */
.footer-nav {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.footer-contact {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
/* メニュー部分 */
.footer-menu,
.footer-menu ul,
.footer-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.footer-menu {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu li {
  line-height: 1.1;
}
.footer-menu li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.18s, opacity 0.18s;
}

.footer-menu li a:hover {
  color: #00c6fb;
  opacity: 1;
}

.footer-logo {
  width: 70%;
  margin-bottom: 0px;
  max-width: 200px;
}

.footer-desc {
  color: #bbb;
  font-size: 0.95em;
  margin: 0;
}

.footer-contact {
  font-size: 0.98em;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  color: #aaa;
  font-size: 0.92em;
  letter-spacing: 0.08em;
}

/* デフォルトリセット: p/ul/liの余白を削除（必要に応じて） */
.footer-brand > *,
.footer-nav > *,
.footer-contact > * {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    min-width: 0;
    width: 80%;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
  }
}