/* ════════════════════════════════════════
   company.css — 会社概要ページ固有スタイル
════════════════════════════════════════ */
/* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(245,242,237,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 0 40px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
    .nav-logo img { height: 36px; width: auto; display: block; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--ink); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--accent); }
    .nav-cta a { background: var(--ink); color: #fff; padding: 10px 24px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; transition: background 0.2s; }
    .nav-cta a:hover { background: var(--accent); }

    /* PAGE HEADER */
    .page-header { padding: 120px 40px 60px; max-width: 960px; margin: 0 auto; }
    .page-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
    .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }

    /* COMPANY TABLE */
    .company-section { max-width: 960px; margin: 0 auto 80px; padding: 0 40px; }
    .company-table { width: 100%; border-collapse: collapse; }
    .company-table tr { border-bottom: 1px solid var(--line); }
    .company-table tr:first-child { border-top: 1px solid var(--line); }
    .company-table th { width: 200px; padding: 24px 20px 24px 0; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; color: var(--muted); vertical-align: top; white-space: nowrap; }
    .company-table td { padding: 24px 0; font-size: 0.95rem; line-height: 1.8; color: var(--ink); }
    .company-table td ul { list-style: none; padding: 0; }
    .company-table td ul li { padding-left: 1em; position: relative; margin-bottom: 4px; }
    .company-table td ul li::before { content: '・'; position: absolute; left: 0; color: var(--accent); }

    /* ACCESS */
    .access-section { max-width: 960px; margin: 0 auto 100px; padding: 0 40px; }
    .access-section h2 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; }
    .map-placeholder { background: #e8e4dd; border-radius: 8px; height: 300px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.9rem; }

    /* FOOTER */
    footer { background: var(--ink); color: #fff; }
    .footer-top { max-width: 1200px; margin: 0 auto; padding: 60px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
    .footer-logo img { height: 36px; width: auto; display: block; margin-bottom: 4px; filter: brightness(0) invert(1); }
    .footer-desc { font-size: 0.8rem; color: #9ca3af; line-height: 1.8; margin-top: 12px; }
    .footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: #9ca3af; text-transform: uppercase; margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a { color: #d1d5db; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid #374151; padding: 20px 40px; max-width: 1200px; margin: 0 auto; }
    .footer-copy { font-size: 0.75rem; color: #6b7280; }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .page-header { padding: 100px 20px 40px; }
      .company-section, .access-section { padding: 0 20px; }
      .company-table th { width: 120px; font-size: 0.8rem; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 32px; }
      .footer-bottom { padding: 16px 20px; }
    }
  