/* index.cssと共通の基本設定を読み込むか、ここに書きます */
:root { --primary: #3498db; --accent: #f39c12; }
body { font-family: sans-serif; margin: 0; background: #f0f4f8; color: #333; }

.disclaimer { background: #ddd; text-align: center; font-size: 0.8rem; padding: 5px; }
header { background: #fff; padding: 1rem 5%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.logo { color: var(--primary); font-weight: bold; }

.container { max-width: 800px; margin: 2rem auto; padding: 20px; }
.section-title { color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 10px; }

.info-grid { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: white; padding: 20px; border-radius: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 10px; border-bottom: 1px solid #eee; text-align: left; }
.info-table th { background: #f9f9f9; }

.student-list { list-style: none; padding: 0; }
.student-list li { background: #f0f7ff; margin-bottom: 10px; padding: 10px; border-radius: 8px; display: flex; align-items: center; }
.icon { margin-right: 10px; }