.site-footer {
  background-color: color-mix(in srgb, var(--main-color) 20%, white);
  padding: 2rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column; /* ← PCも縦並びに */
  align-items: center;     /* 中央寄せ */
  text-align: center;
  border-bottom: 10px solid var(--main-color);
}

.footer-inner {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-info {
  flex: unset;
}


.footer-nav ul {
  list-style: none;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.footer-logo {
  font-family: var(--english-font);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-color);
  opacity: 0.8;
}


/* アイコンの微調整 */
.footer-contact i.ph,
.footer-contact i.ph-fill {
  font-size: 1rem;
  color: var(--text-color);
  margin-right: 4px;
  position: relative;
  top: 2px;
}

/* フッターメニューの基本 */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  font-family: var(--english-font);
  text-decoration: none;
  color: var(--text-color);
  font-size: 12px;
      transition: color 0.3s ease;
}

.footer-menu a:hover {
    text-decoration: none;
    color: var(--main-color);
}

/* 説明文は非表示 */
.footer-menu .menu-description {
  display: none;
}

/* --- スマホ対応 --- */
@media screen and (max-width: 767px) {
  .site-footer {
    flex-direction: column; /* 縦並びにする */
    padding: 1rem;
    text-align: center; /* 中央寄せでスッキリ */
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-info {
    flex: unset;
    text-align: center;
  }

  .footer-contact {
    line-height: 1.8;
  }

  .footer-menu {
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .footer-menu li {
    margin-bottom: 0;
  }
}
