@charset "UTF-8";

        audio{width: 400px;}
        ul{
            list-style:  none;  /* デフォルトのアイコンを消す */
            margin:  0;         /* デフォルト指定上書き */
            padding: 0;         /* デフォルト指定上書き */
        }
        li {
            padding:  4px;             /* 余白指定 */
            background-color:  #ccc; /* 背景色指定 */
            border-top: solid 1px #b1daff;
            background-size: cover;
            border-radius:  10px;       /* 角丸指定 */
            margin-bottom: 2px;         /* 要素と要素の間指定 */
            color: #000;                /* 文字色指定 */
            font-size:  14px;           /* 文字サイズ指定 */
            width: 400px;
             /* display: inline-block; */
             text-align: left;
             cursor: pointer;
            }
         li:hover{
            background: #efefff;
            }
         .active{
            background: #efefff;
            color: #ff6800;
            }
