/* ===== 基本（雰囲気を変えない） ===== */
body {
  margin: 0 auto;
  padding: 12px;
  max-width: 1100px;

  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  background: #ffffff;
}

/* ===== リンク ===== */
a {
  color: #0044aa;
}
a:visited {
  color: #663399;
}

/* ===== 見出し（控えめ） ===== */
h1, h2, h3 {
  line-height: 1.4;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

/* ===== 表（スケジュール中心） ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

th, td {
  border: 1px solid #ccc;
  padding: 6px 8px;
  text-align: center;
}

th {
  background: #f0f0f0;
  font-weight: normal;
}

/* ===== 行間・余白だけ少し整える ===== */
p {
  margin: 0.5em 0 1em;
}

/* ===== スマホ対応（壊れないように） ===== */
@media (max-width: 768px) {

  body {
    font-size: 15px;
    padding: 8px;
  }

  table {
    font-size: 14px;
  }
}
