@charset "UTF-8";

/* フッター全体 */
.site-footer {
  position: relative;
  padding: 80px 20px 30px;
  color: #ffffff;

  background-image: url(../img/22051476.jpg); /* ← 背景画像 */
  background-size: cover;
  background-position: center;
}

/* 背景を少し落ち着かせる */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* 中身 */
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* ロゴ */
.footer-logo img {
  max-width: 250px;
  width: 100%;
}

/* メニュー */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'CustomFont3', sans-serif;
  position: relative;
}

/* ホバーで下線ふわっと */
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* 著作権 */
.footer-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}
/* ロゴとメニューの区切り線 */
.footer-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
}

/* ---------- スマホ ---------- */
@media (max-width: 768px) {
    /* フッター全体 */
.site-footer {
  position: relative;
  padding: 50px 20px 30px;
  color: #ffffff;

  background-image: url(../img/22051476.jpg); /* ← 背景画像 */
  background-size: cover;
  background-position: center;
}


  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo img {
    max-width: 160px;
  }
    .footer-divider {
    width: 80px;
    height: 1px;
    margin: 20px auto;
  }

}
