.footer {
  background: #f9f9f9;
  color: #333;
  font-size: 14px;
  padding: 40px 0 30px;
  border-top: 1px solid #ddd;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-brand {
  flex: 0 1 auto;
  min-height: auto;
}

.footer-company {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.footer-tel {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
}

.footer-time {
  font-size: 13px;
  color: #666;
}

.footer-nav {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.footer-nav a:hover {
  border-color: #666;
  color: #000;
}

.footer-info {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-nav {
    gap: 12px;
    margin-top: 12px;
  }

  .footer-tel {
    font-size: 18px;
  }
}
