:root{
    --footer-bg: #0b1220;     /* 背景 */
    --footer-fg: #e5e7eb;     /* 本文色 */
    --footer-muted: #9ca3af;  /* 補助テキスト */
    --footer-link: #c7d2fe;   /* リンク色(淡) */
    --footer-accent: #10b981; /* アクセント（ブランド色に合わせてOK） */
    --footer-border: rgba(255,255,255,.08);
  }
  
  .site-footer{
    background: var(--footer-bg);
    color: var(--footer-fg);
    border-top: 1px solid var(--footer-border);
  }
  
  .footer-container{
    max-width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 32px 12px;
    display: grid;
    gap: 28px;
  }
  
  .footer-brand .footer-logo{
    display: inline-block;
    font-weight: 800;
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: .02em;
  }
  .footer-desc{
    margin: 10px 0 16px;
    color: var(--footer-muted);
    line-height: 1.7;
    font-size: .95rem;
  }
  
  .socials{ display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
  .socials a{
    display: inline-grid; place-items: center;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: var(--footer-fg);
    text-decoration: none;
    border: 1px solid var(--footer-border);
  }
  .socials a:hover{ background: rgba(255,255,255,.12); color: #fff; }
  
  .footer-nav{ width: 100%; }
  .footer-cols{
    display: grid;
    gap: 16px 24px;
    grid-template-columns: 1fr;      /* モバイル：1列 */
  }
  
  .footer-col{ min-width: 0; }
  .footer-title{
    margin: 0 0 8px;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
  }
  .footer-links{ list-style: none; padding: 0; margin: 0; }
  .footer-links li + li{ margin-top: 6px; }
  .footer-links a{
    color: var(--footer-fg);
    text-decoration: none;
    font-size: .95rem;
    opacity: .9;
  }
  .footer-links a:hover{
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  .footer-bottom{
    border-top: 1px solid var(--footer-border);
    margin-top: 8px;
  }
  .footer-bottom-inner{
    max-width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .copyright{ margin: 0; color: var(--footer-muted); font-size: .9rem; }
  .legal-links{ list-style: none; display: flex; gap: 14px; padding: 0; margin: 0; }
  .legal-links a{
    color: var(--footer-link);
    text-decoration: none;
    font-size: .9rem;
  }
  .legal-links a:hover{ color: #fff; text-decoration: underline; text-underline-offset: 3px; }
  
  /* レイアウト拡張（タブレット〜PC） */
  @media (min-width: 640px){
    .footer-container{
      grid-template-columns: 1.1fr 2fr; /* 左：ブランド / 右：リンク群 */
    }
    .footer-cols{
      grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
  }
  @media (min-width: 960px){
    .footer-cols{
      grid-template-columns: repeat(3, minmax(160px, 1fr)); /* 列を増やす */
    }
  }
  