@charset "UTF-8";

    @media (prefers-color-scheme:dark) {
        .sidebar {
            background-color: #333
        }

        .sidebar a {
            color: #fff
        }

        .sidebar a:hover {
            background-color: #555
        }

        #menuToggle {
            color: #fff
        }
    }

    @media (prefers-color-scheme:light) {
        .sidebar {
            background-color: #ccc
        }

        .sidebar a {
            color: #000
        }

        .sidebar a:hover {
            background-color: #ddd
        }

        #menuToggle {
            color: #000
        }


    }

    .sidebar {
        width: 100%;
        position: fixed;
        top: 0;
        opacity: 0;
        height: 100%;
        overflow-y: scroll;
        z-index: -1000;
    }

    .sidebar.show {
        height: 100%;
        top: 0;
        opacity: .98;
        z-index: 10001
    }

    .sidebar a {
        width: 50%;
        position: relative;
        text-align: center;
        top: 60px;
        display: block;
        margin: 0 auto;
        border-radius: 20px;
        padding: 20px;
        text-decoration: none;
        z-index: 10002
    }

    .sidebar a:hover {
        text-align: center;
        margin: 0 auto;
        border-radius: 20px;
        cursor: pointer
    }

    #menuToggle {
        background-color: transparent;
        border: none;
        font-size: 24px;
        cursor: pointer;
        position: fixed;
        top: 8px;
        left: 0;
        z-index: 10002
    }

    #menuToggle i {
  /* ベース：強力なブラーで「液状化」させる */
backdrop-filter: blur(60px) saturate(250%) contrast(110%) brightness(102%) !important;
-webkit-backdrop-filter: blur(60px) saturate(250%) contrast(110%) brightness(102%) !important;

/* 背景：中央は透明度を上げ、縁に向かって光を溜める */
background: 
  /* プリズム・ハイライト */
  linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.1) 100%),
  /* 液体感を出すベース */
  radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important;

/* ★縁の歪み（屈折）をシミュレートする多重インセットシャドウ */
box-shadow: 
  /* 1. 外側の浮遊感 */
  0 30px 60px rgba(0, 0, 0, 0.2),
  /* 2. 【屈折エッジ】縁に光が溜まって背景が白んでいる様子（屈折の入り口） */
  inset 0 0 0 1px rgba(255, 255, 255, 0.4),
  /* 3. 【レンズ効果】縁の直内側を暗くし、背景が「曲がっている」ような影を落とす */
  inset 0 0 25px rgba(255, 255, 255, 0.3),
  /* 4. 【肉厚感】分厚いガラスの底に溜まる光 */
  inset -10px -15px 40px rgba(255, 255, 255, 0.1),
  /* 5. 【スペキュラ】表面の鋭いテカリ */
  inset 2px 2px 4px rgba(255, 255, 255, 0.7) !important;

/* 境界線：物質としての厚みを定義 */
border: 0.5px solid rgba(255, 255, 255, 0.2) !important;
border-top: 1.5px solid rgba(255, 255, 255, 0.8) !important;

/* 角丸：液体の表面張力を感じる滑らかな曲線 */
border-radius: 40px;

        height: 20px;
        width: 20px;
        padding: 5px;
        font-size: 20px
    }