/* -------------------------------------------------------
 * フッター
 * ------------------------------------------------------- */
.praze-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}

.praze-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

/* ブランドカラム */
.footer-brand .praze-logo {
  color: #fff;
  display: block;
  margin-bottom: var(--space-md);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* リンクカラム */
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--space-sm); }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }

/* ボトムバー */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* -------------------------------------------------------
 * SP レスポンシブ
 * ------------------------------------------------------- */
@media (max-width: 767px) {
  .praze-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* mobile fix: フッターテキスト折り返し */
  .footer-brand p,
  .footer-bottom p,
  .footer-col ul li a {
    word-break: break-word;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .praze-footer-grid { grid-template-columns: 1fr; }
}
