/* ================================================================
   SHINZO Marushine Theme - Nav & Footer CSS
   ヘッダー(ナビゲーション)・フッターのスタイル
   ================================================================ */

/* ===== NAV ===== */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 25, 41, 0.08);
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.brand:hover .brand-logo { opacity: 0.7; }
.brand-logo-footer { height: 52px; }

/* メインメニュー */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 13px; letter-spacing: 0.1em;
  font-weight: 500; position: relative; padding-bottom: 4px;
}
.nav-links a.current,
.nav-links li.current-menu-item a,
.nav-links li.current_page_item a {
  color: var(--brand);
}
.nav-links a.current::after,
.nav-links li.current-menu-item a::after,
.nav-links li.current_page_item a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--brand);
}
.nav-links a:hover::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--brand);
}

/* TEL情報 + CTAボタン */
.nav-tel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-tel-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1;
}
.nav-tel-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
  display: block;
  margin-bottom: 2px;
}
.nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--brand-deep); }

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  color: #fff;
  padding: 80px 80px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand p {
  font-size: 13px; opacity: 0.7;
  line-height: 1.85; max-width: 320px;
}
.footer-col h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.3em;
  color: var(--brand);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.footer-col a, .footer-col p {
  display: block; color: #fff;
  opacity: 0.7; text-decoration: none;
  font-size: 13px; padding: 5px 0;
  transition: all 0.3s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--brand);
  padding-left: 6px;
}
.footer-license {
  margin-top: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  font-size: 11px !important;
  border-left: 2px solid var(--brand);
  opacity: 1 !important;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.5;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  nav.main-nav { padding: 14px 20px; }
  .nav-links, .nav-tel-num, .nav-tel-label { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 32px; }
}
