/* ============================================================
   shn-footer.css — サイトフッター専用スタイル
   template-parts/shn-site-footer.php から <link> で直接読み込む。
   functions.php のエンキューに依存しないため、
   filemtime() でキャッシュバスティングが自己完結する。
   ============================================================ */

.shn-site-footer {
  background-color: #0C1B30;
  color: #fff;
}

/* ページ上端のバー */
.shn-site-footer__bar {
  height: 4px;
  background: #fff;
}

.shn-site-footer .shn-container {
  padding-top: 56px;
}

/* グリッド */
.shn-site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}

/* ブランドカラム */
.shn-site-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shn-site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.shn-site-footer__logo-link:hover { opacity: 0.82; text-decoration: none; }

/* 画像ロゴ：dark背景に合わせて白く反転 */
.shn-site-footer__logo-img {
  display: block;
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* 画像ロゴがない場合のテキストフォールバック */
.shn-site-footer__brand-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
}
.shn-site-footer__brand-accent {
  color: #60A5FA;
}
.shn-site-footer__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin: 0;
  max-width: 210px;
}

/* CTA ボタン */
.shn-site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2E7BE0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.shn-site-footer__cta-btn:hover {
  background: #1E5BB8;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* ナビカラム */
.shn-site-footer__heading {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}
.shn-site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shn-site-footer__list a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.shn-site-footer__list a:hover {
  color: #60A5FA;
  text-decoration: none;
}

/* コピーライト行 */
.shn-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  text-align: center;
}
.shn-site-footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  letter-spacing: 0.04em;
}

/* タブレット */
@media (max-width: 960px) {
  .shn-site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .shn-site-footer__brand-col {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 40px;
  }
  .shn-site-footer__desc {
    max-width: 320px;
  }
}

/* スマホ */
@media (max-width: 480px) {
  .shn-site-footer .shn-container {
    padding-top: 40px;
  }
  .shn-site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .shn-site-footer__brand-col {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 16px;
  }
  .shn-site-footer__desc {
    max-width: 100%;
  }
}