    /* ==========================================================
       マーダーミステリー公演案内 カスタムCSS
       (style.cssに記述する内容)
       ========================================================== */
    :root {
      --my-mm-bg-color: #1a1614;         /* 暗いセピア・レンガ調のベース */
      --my-mm-panel-bg: #29231f;         /* 古い書斎を思わせるダークブラウン */
      --my-mm-text-main: #e8dcc5;        /* 古紙のようなオフホワイト */
      --my-mm-accent-gold: #c2a36b;      /* 真鍮・アンティークゴールド */
      --my-mm-accent-gold-hover: #dec28c;
      --my-mm-accent-red: #8f2121;       /* クラシックな深紅 */
      --my-mm-accent-blue: #1c2a38;      /* 深いネイビー */
      --my-mm-border-color: #5c4e46;     /* 枠線 */
    }

    body {
      background-color: var(--my-mm-bg-color);
      background-image: 
        linear-gradient(rgba(194, 163, 107, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 163, 107, 0.05) 1px, transparent 1px);
      background-size: 24px 24px;
      color: var(--my-mm-text-main);
      font-family: 'Noto Serif JP', 'Noto Sans JP', serif;
      margin: 0;
      padding: 0;
    }

    a {
      color: var(--my-mm-accent-gold);
      text-decoration: none;
    }
    a:hover {
      color: var(--my-mm-accent-gold-hover);
    }

    /*--------------------------------------------------------------
    # Header (a.htmlの構造に合わせたスタイル)
    --------------------------------------------------------------*/
    #header {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 300px;
      z-index: 9997;
      padding: 0 15px;
      background: linear-gradient(180deg, var(--my-mm-accent-blue) 0%, #0d1117 100%);
      border-right: 2px solid var(--my-mm-accent-gold);
      overflow-y: auto;
      transition: all ease-in-out 0.5s;
    }

    #header .profile {
      text-align: center;
      padding: 30px 0 20px 0;
    }

    #header .profile h1 {
      font-size: 22px;
      margin: 0;
      font-weight: 700;
      line-height: 1.5;
    }

    #header .profile h1 a {
      color: var(--my-mm-accent-gold);
      text-decoration: none;
      text-shadow: 0 0 10px rgba(194, 163, 107, 0.3);
    }

    /* カウントダウン */
    .countdown {
      margin-top: 15px;
    }
    .countdown div {
      display: inline-block;
      margin: 0 8px;
      text-align: center;
    }
    .countdown h3 {
      font-size: 20px;
      color: var(--my-mm-text-main);
      margin-bottom: 0;
      font-family: 'Open Sans', sans-serif;
    }
    .countdown h4 {
      font-size: 11px;
      color: #b0a89d;
    }

    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    .nav-menu {
      padding: 0;
      display: block;
      margin-top: 20px;
    }
    .nav-menu * {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .nav-menu > ul > li {
      margin-bottom: 10px;
      font-weight: bold;
    }
    .nav-menu a, .nav-menu a:focus {
      display: flex;
      align-items: center;
      color: #f1ede6;
      padding: 12px 15px;
      font-size: 15px;
      text-decoration: none;
      transition: 0.3s;
      border-left: 3px solid transparent;
    }
    .nav-menu a i, .nav-menu a:focus i {
      font-size: 20px;
      margin-right: 10px;
      color: var(--my-mm-accent-gold);
    }
    .nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
      color: #fff;
      background: rgba(194, 163, 107, 0.1);
      border-left: 3px solid var(--my-mm-accent-gold);
    }

    /*--------------------------------------------------------------
    # Mobile Navigation
    --------------------------------------------------------------*/
    .mobile-nav-toggle {
      position: fixed;
      right: 15px;
      top: 15px;
      z-index: 9998;
      border: 0;
      font-size: 28px;
      transition: all 0.4s;
      outline: none !important;
      background-color: var(--my-mm-panel-bg);
      color: var(--my-mm-accent-gold);
      width: 45px;
      height: 45px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      border: 1px solid var(--my-mm-accent-gold);
      cursor: pointer;
    }

    /*--------------------------------------------------------------
    # Main Content Layout
    --------------------------------------------------------------*/
    #main {
      margin-left: 300px;
      transition: all ease-in-out 0.5s;
    }
    #footer {
      margin-left: 300px;
      transition: all ease-in-out 0.5s;
      background: #0d1117;
      color: #b0a89d;
      padding: 20px 0;
      text-align: center;
      border-top: 1px solid var(--my-mm-border-color);
    }

    .my-mm-main-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    @media (max-width: 1199px) {
      #header { left: -300px; }
      #main, #footer { margin-left: 0; }
      /* スマホメニュー開閉連動 */
      body.mobile-nav-active #header { left: 0; }
      body.mobile-nav-active::before {
        content: "";
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.7);
        z-index: 9996;
      }
    }
    @media (max-width: 768px) {
      .my-mm-main-container { padding: 20px 10px; }
    }

    /*--------------------------------------------------------------
    # Custom Components (ミステリーデザイン)
    --------------------------------------------------------------*/
    #mm-hero img{
      max-width: 1280px;
    }
    .my-mm-section-title {
      color: var(--my-mm-accent-gold);
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
      letter-spacing: 4px;
    }
    /*.my-mm-section-title::before {
      content: "✦";
      color: var(--my-mm-accent-red);
      margin-right: 10px;
      font-size: 1.5rem;
    }*/
    .my-mm-section-title::after {
      content: "";
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 100px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--my-mm-accent-gold), transparent);
    }
    @media (max-width: 768px) {
      .my-mm-section-title { font-size: 1.5rem; letter-spacing: 2px; }
    }

    /* ボタン */
    .my-mm-btn {
      display: inline-block;
      background: var(--my-mm-panel-bg);
      color: var(--my-mm-accent-gold);
      border: 1px solid var(--my-mm-accent-gold);
      padding: 12px 24px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
      cursor: pointer;
      text-align: center;
      position: relative;
    }
    .my-mm-btn::before {
      content: "";
      position: absolute;
      top: 3px; left: 3px; right: 3px; bottom: 3px;
      border: 1px dashed rgba(194, 163, 107, 0.5);
      pointer-events: none;
    }
    .my-mm-btn:hover {
      background: var(--my-mm-accent-gold);
      color: #1a1614;
      box-shadow: 0 0 15px rgba(194, 163, 107, 0.5);
    }
    .my-mm-btn:hover::before { border-color: #1a1614; }

    .my-mm-btn-fill {
      background: var(--my-mm-accent-gold);
      color: #1a1614;
    }
    .my-mm-btn-fill::before { border-color: rgba(26, 22, 20, 0.5); }
    .my-mm-btn-fill:hover {
      background: var(--my-mm-accent-gold-hover);
      color: #1a1614;
    }

    /* 各種ボックス（アンティーク風飾り枠） */
    .my-mm-intro-box, .my-mm-outline-box, .my-mm-table-wrapper {
      background-color: var(--my-mm-panel-bg);
      border: 2px solid var(--my-mm-border-color);
      padding: 30px;
      position: relative;
      box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
      .my-mm-intro-box, .my-mm-outline-box, .my-mm-table-wrapper { padding: 15px; }
    }
    .my-mm-intro-box { height: 100%; }
    .my-mm-intro-box::before, .my-mm-outline-box::before, .my-mm-table-wrapper::before {
      content: "";
      position: absolute;
      top: 6px; left: 6px; right: 6px; bottom: 6px;
      border: 1px solid rgba(194, 163, 107, 0.3);
      pointer-events: none;
    }

    .my-mm-intro-title {
      font-size: 1.5rem;
      color: var(--my-mm-text-main);
      border-left: 4px solid var(--my-mm-accent-red);
      padding-left: 15px;
      margin-bottom: 15px;
    }
    .my-mm-catch-row {
      margin: 20px 0;
      border-top: 1px dashed var(--my-mm-border-color);
      border-bottom: 1px dashed var(--my-mm-border-color);
      padding: 15px 0;
    }
    .my-mm-catch-col h5 {
      color: var(--my-mm-accent-gold);
      margin: 0;
      font-size: 1.1rem;
      letter-spacing: 2px;
    }
    .my-mm-intro-text p {
      line-height: 1.8;
      font-size: 0.95rem;
    }

    /* プロフィールカード */
    .my-mm-date-title {
      background: linear-gradient(90deg, var(--my-mm-panel-bg) 0%, transparent 100%);
      border-left: 4px solid var(--my-mm-accent-red);
      padding: 10px 15px;
      margin-bottom: 20px;
      color: var(--my-mm-accent-gold);
    }
    .my-mm-cast-category {
      color: #b0a89d;
      font-size: 1.1rem;
      margin-bottom: 15px;
      border-bottom: 1px solid var(--my-mm-border-color);
      padding-bottom: 5px;
    }
    .my-mm-profile-card {
      background: var(--my-mm-panel-bg);
      border: 1px solid var(--my-mm-border-color);
      text-align: center;
      padding: 15px;
      transition: 0.3s;
      position: relative;
    }
    .my-mm-profile-card::after {
      content: "";
      position: absolute;
      top: -5px; left: 50%;
      transform: translateX(-50%);
      width: 30px; height: 10px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
      .my-mm-profile-card { padding: 10px; }
    }
    .my-mm-profile-card:hover {
      border-color: var(--my-mm-accent-gold);
      transform: translateY(-5px);
    }
    .my-mm-profile-img {
      width: 100%;
      aspect-ratio: 3/4;
      background-color: #111;
      margin-bottom: 15px;
      overflow: hidden;
      border: 2px solid #000;
    }
    .my-mm-profile-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: sepia(20%) contrast(110%) brightness(90%);
    }
    .my-mm-profile-info {
      margin-bottom: 15px;
    }
    .my-mm-profile-info h5 {
      font-size: 1.1rem;
      color: var(--my-mm-text-main);
      margin-bottom: 5px;
    }
    @media (max-width: 768px) {
      .my-mm-profile-info h5 { font-size: 0.95rem; }
    }
    .my-mm-profile-info p {
      font-size: 0.85rem;
      color: var(--my-mm-accent-gold);
      margin: 0;
    }

    /* キャストタブボタン */
    .my-mm-tab-btn {
      background: var(--my-mm-panel-bg);
      color: var(--my-mm-text-main);
      border: 1px solid var(--my-mm-border-color);
      padding: 10px 15px;
      margin: 5px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: bold;
      border-radius: 3px;
    }
    .my-mm-tab-btn.active, .my-mm-tab-btn:hover {
      background: var(--my-mm-accent-gold);
      color: #1a1614;
      border-color: var(--my-mm-accent-gold);
      box-shadow: 0 0 10px rgba(194, 163, 107, 0.5);
    }
    .my-mm-cast-pane {
      display: none;
      animation: fadeIn 0.5s ease;
    }
    .my-mm-cast-pane.active {
      display: block;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* 星取表 */
    .my-mm-table-wrapper {
      overflow-x: auto;
      white-space: nowrap; /* スマホでも縮まないように */
    }
    .my-mm-table {
      width: 100%;
      min-width: 800px;
      border-collapse: collapse;
      color: var(--my-mm-text-main);
      position: relative;
      z-index: 1;
    }
    .my-mm-table th, .my-mm-table td {
      padding: 15px;
      border: 1px solid var(--my-mm-border-color);
      text-align: center;
      vertical-align: middle;
    }
    .my-mm-table thead th {
      background-color: #1a1614;
      color: var(--my-mm-accent-gold);
      font-weight: normal;
    }
    .my-mm-table tbody th {
      background-color: rgba(255,255,255,0.02);
      color: #b0a89d;
    }

    /* 注意事項 */
    .my-mm-notice-title {
      color: var(--my-mm-accent-red);
      font-size: 1.2rem;
      margin-top: 20px;
      margin-bottom: 10px;
      border-left: 3px solid var(--my-mm-accent-red);
      padding-left: 10px;
    }

    /* モーダル */
    .my-mm-modal-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      display: none;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
    }
    .my-mm-modal-window {
      background: var(--my-mm-panel-bg);
      border: 2px solid var(--my-mm-accent-gold);
      width: 90%;
      max-width: 500px;
      padding: 30px;
      position: relative;
      box-shadow: 0 0 30px rgba(0,0,0,0.8);
    }
    .my-mm-modal-window::before {
      content: "";
      position: absolute;
      top: 6px; left: 6px; right: 6px; bottom: 6px;
      border: 1px solid rgba(194, 163, 107, 0.3);
      pointer-events: none;
    }
    .my-mm-modal-close {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 2rem;
      color: var(--my-mm-accent-gold);
      background: none; border: none; cursor: pointer;
      z-index: 2;
    }
    .my-mm-modal-body {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /*--------------------------------------------------------------
    # Back to top button
    --------------------------------------------------------------*/
    .back-to-top {
      position: fixed;
      visibility: visible; /* 常に表示されるように修正 */
      opacity: 1;          /* 常に表示されるように修正 */
      right: 15px;
      bottom: 15px;
      z-index: 9999;
      background: var(--my-mm-panel-bg);
      width: 45px;
      height: 45px;
      border-radius: 4px;
      border: 1px solid var(--my-mm-accent-gold);
      transition: all 0.4s;
      display: flex !important; /* Bootstrapの非表示クラス等に勝つため追加 */
      align-items: center;
      justify-content: center;
    }
    .back-to-top i {
      font-size: 28px;
      color: var(--my-mm-accent-gold);
      line-height: 0;
    }
    .back-to-top:hover {
      background: var(--my-mm-accent-gold);
      box-shadow: 0 0 10px rgba(194, 163, 107, 0.5);
    }
    .back-to-top:hover i {
      color: #1a1614;
    }