        body {
            font-family: 'Garamond', serif;
            background-color: #3e3b3b; /* 暗いトーン */
            margin: 0;
            padding: 0;
            color: #d4af37; /* 金色の文字 */
        }
        header {
            background-color: #8b0000; /* 暗い赤色 */
            color: white;
            padding: 20px;
            text-align: center;
            border-bottom: 3px solid #d4af37; /* 金色のボーダー */
        }
        main {
            padding: 20px;
            padding-bottom: 80px; /* ← フッターの高さ＋少し余裕 */
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
        .content {
            margin: 20px 0;
            padding: 15px;
            background-color: #5a4d43; /* 茶色っぽい背景 */
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        .link-button {
            background-color: #d4af37; /* 金色のボタン */
            color: black;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            margin-top: 10px;
            display: inline-block;
            border: 2px solid #d4af37;
        }
        .link-button:hover {
            background-color: #8b0000;
            color: white;
        }
        
        .link-button.disabled {
            background-color: #ccc;         /* 無効感を出すためのグレー */
            color: #666;                    /* 文字色も少し薄く */
            border: 2px solid #999;
            pointer-events: none;          /* クリックできない */
            cursor: default;               /* マウスカーソルを通常に */
            opacity: 0.7;                  /* 少し薄くして“無効”を演出 */
        }
    /* 時間割テーブルのスタイル */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      color: #d4af37;
    }
    th, td {
      border: 1px solid #d4af37;
      padding: 12px;
      text-align: center;
    }
    th {
      background-color: #8b0000;
      color: white;
    }
    td {
      background-color: #5a4d43;
    }
    caption {
      caption-side: top;
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #d4af37;
    }  