/* 学生向け共通フッター */
.student-footer {
  background: #ff9800;
  border-top: 1px solid #e0e0e0;
  padding: 24px 16px 80px; /* 下にボトムナビ分の余白 */
  font-size: 0.85rem;
  color: #f9f9f9;
}

.student-footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

.student-footer-brand {
  flex: 1 1 auto;
}

.student-footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 6px;
}

.student-footer-description {
  margin: 0;
  color: #f9f9f9;
  line-height: 1.6;
}

.student-footer-links {
  display: flex;
  flex: 2 1 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.student-footer-column-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 6px;
}

.student-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.student-footer-link-list li {
  margin-bottom: 4px;
}

.student-footer-link {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.2s;
}

.student-footer-link:hover {
  color: #ff9800;
}

.student-footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.student-footer-copy {
  margin: 0;
}

.student-footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.student-footer-legal a {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 0.82rem;
}

.student-footer-legal a:hover {
  color: #ff9800;
}
