@charset "UTF-8";
body {
    margin: 0;
    padding-top: 150px;
    position: relative;
    background:
        linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), /* 白レイヤー（全面） */
        url(image/kyu-u.png); 
    background-size: cover;
    background-position: center;
}
h1{
    color:rgb(255, 123, 0);
    text-align: center;
}
#msg{
    background: #b4f78e;
    text-align: center;
    margin: 0 auto;
    width: 60vw;
}
#tweet{
    text-align: center;
    margin: 0 auto;
    width: 300px;
    height: 30px;
}
#tweet_a{
    font-size: 20px;
}
#tweet_b{
    width: 200px;
}
#table_top{
    font-size: 20px;
}
#decision{
    height: 50px;
    width: 150px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    background-color: #3442fa;
}
aside {/* サイドバー */
  position: fixed;
  background: #56e7f1;
  top: 80px;
  right: 0; /* 右側に配置 */
}
#side_bar{
    list-style: none;
}
#side_bar a{
    color: #0d6828;
    display: block;
    margin: 20px 0 20px 0;
}
#side_bar a:hover{
    color: #8e0d0d;
}
@media (max-width: 600px){/*スマホ用*/

}