/* atelier_calendar.css */

/* 全体ラッパー */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 10px;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* タイトル */
.title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

/* 説明文 */
.description {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* legend-lines: 丸いマーク＋テキスト */
.legend-lines {
  margin-bottom: 20px;
  text-align: center;
}
.legend-lines p {
  margin: 4px 0;
  font-size: 14px;
  color: #333;
}
.legend-lines .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
/* マークの色 */
.legend-lines .schedule { background-color: #795548; } /* 教室定期カレンダー（茶） */
.legend-lines .holiday  { background-color: #616161; } /* 休業日（灰） */

/* カレンダー iframe */
.calendar-iframe {
  width: 100% !important;
  height: 1000px;
  border: solid 1px #777;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .calendar-iframe { height: 600px; }
}
@media (max-width: 480px) {
  .calendar-iframe { height: 500px; }
}
