/* ============================================================
   common.css - ヘッダー・フッター共通スタイル
   career-life-design/assets/css/common.css
   ============================================================ */

/* ── ヘッダー ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(26,74,58,0.97);
  backdrop-filter: blur(8px);
  z-index: 100; height: 60px;
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700; font-size: 1rem;
  color: #c9a84c; text-decoration: none;
  letter-spacing: 0.05em; line-height: 1.3;
}
.site-logo span {
  display: block; font-size: 0.65rem;
  font-weight: 400; color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}
.header-nav { display: flex; gap: 2rem; }
.header-nav a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.05em; transition: color 0.2s;
}
.header-nav a:hover { color: #c9a84c; }
@media (max-width: 640px) { .header-nav { display: none; } }

/* ── フッター ── */
.site-footer { background: #0f2f24; }
.footer-inner { padding: 3rem 2rem 2rem; text-align: center; }
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; font-weight: 700; color: #c9a84c; margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; margin-bottom: 2rem;
}
.footer-links {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.82rem; transition: color 0.2s;
}
.footer-links a:hover { color: #c9a84c; }
.footer-bottom {
  padding: 1rem 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
