/* 全体ラッパー */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center; /* タイトル／説明を中央寄せ */
}

/* ページタイトル */
.page-title {
  font-size: 32px;
  font-weight: bold;       /* 初期の太さ（bold） */
  margin-bottom: 20px;
  color: #333;
  text-align: center;      /* 中央寄せ */
}

/* レジェンド */
.legend-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* アイテムを中央寄せ */
  gap: 10px;
  margin-bottom: 20px;
}
.legend-item {
  display: flex;
  align-items: center;
  justify-content: center; /* テキストも中央寄せ */
  gap: 8px;
  font-size: 14px;
  font-weight: normal;      /* 初期の太さ（normal） */
  padding: 5px 10px;
  border: 1px solid #ccc;   /* 初期のボーダー太さ */
  border-radius: 12px;
  background: #fff;
  color: #333;
}

/* カラードット */
.color-box {
  width: 18px;              /* 初期のドットサイズ */
  height: 18px;
  border-radius: 50%;
}

/* 各種色（最初のまま） */
.legend-item.business .color-box { background: #F4511E; } /* オレンジ */
.legend-item.atelier  .color-box { background: #33B679; } /* 緑 */
.legend-item.holiday  .color-box { background: #616161; } /* 濃いグレー */

/* Google カレンダー iframe */
.calendar-iframe {
  width: 1000px;           /* 固定幅 */
  height: 1000px;          /* 固定高さ */
  border: solid 1px #777;  /* 初期の枠線 */
  margin: 0 auto;          /* 中央寄せ */
}