/* =========================================================
   xxxxnese — components/footer.css
   グローバルフッター（ダークトーン）
   黒（--color-ink）背景 + 白系の文字で「ページの終端」を締める。
   ========================================================= */

.site-footer {
  border-top: none;
  padding-top: 80px;
  background: var(--color-ink);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px 24px;
  align-items: start;
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

/* タイトル自体がリンクのケース（Business / News / Company などサブアイテムを持たない列）。
   見た目はタイトルのまま、hover で opacity を落としてリンク性を示す。 */
.footer-col__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

.footer-col__title a:hover {
  opacity: 0.6;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  display: block; /* 行全体をクリック領域に */
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-col ul a:hover { color: #ffffff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 24px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.08em;
}

.footer-legal {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  transition: color 0.25s var(--ease);
}

.footer-legal a:hover { color: #ffffff; }

/* =========================================================
   Responsive — footer
   ========================================================= */

/* Tablet */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-footer {
    padding-top: 56px;
  }

  .footer-inner {
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-columns {
    justify-content: flex-start;
    gap: 32px 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px 32px;
    gap: 16px;
  }
}
