/* --- 全体レイアウト --- */ body { background-color: #2c3e50; /* 深い青みがかったグレーの背景 */ color: #ecf0f1; /* 明るいグレーの文字色 */ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; margin: 0; padding: 2em; display: flex; justify-content: center; align-items: center; min-height: 100vh; text-align: center; } .container { width: 90%; max-width: 800px; } h1 { font-size: 4em; margin-bottom: 0.5em; color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); } /* --- 曲情報表示パネル --- */ #nowPlaying { background-color: rgba(0, 0, 0, 0.2); border: 1px solid #34495e; border-radius: 12px; padding: 1.5em; margin: 2em 0; font-size: 2.2em; /* 文字を大きく */ font-weight: bold; min-height: 2.5em; /* 高さの変動を防ぐ */ display: flex; justify-content: center; align-items: center; transition: all 0.3s; } /* --- 初期化ボタン --- */ #initBtn { font-size: 1.2em; padding: 0.8em 1.5em; background-color: #3498db; /* 明るい青 */ color: white; border: none; border-radius: 8px; cursor: pointer; margin-bottom: 2em; transition: background-color 0.2s; } #initBtn:hover { background-color: #2980b9; } /* --- 標準オーディオプレイヤー --- */ #audioPlayer { width: 100%; /* 横幅をコンテナに合わせる */ margin-top: 1em; }