body
{
    margin-left: auto;
    margin-top : auto;
    background-color: #009BCF;
    font-family: 'Noto Sans JP',sans-serif;
}

#can
{
    display: flex;
    text-align: center;
    margin: auto;
    margin-top: 50px;
    border: solid 4px #F1ACB4;
    border-radius: 6px;
    box-shadow:0 6px 6px rgba(0, 0, 0, 0.25);

}

.keyconfig
{
    margin-left: auto;
    margin-right: auto;
    border: solid;
    border-color: white;
    padding: 10px 20px 10px 20px;
    margin-top: 40px;
}

.keyconfig th
{
    text-align: right;
    color: white;
}

.keyconfig td 
{
    margin-left: 10px;
    text-align: left;
    display: block;
    color: white;
}

#gwtLogo
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#gwtLogo img
{
    width: 140px;
    cursor : pointer;
}

/* ローダーのスタイル */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #009BCF; /* 背景色を設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* ローダーが最前面に表示されるようにします */
  }
  
  .loading-content {
    font-size: 24px;
    background-color: #000000;
    /* ここにロードアニメーションのスタイルを追加します */
  }

  @media screen and (max-width:480px) {

    body
    {
        max-width: 100em;
    }

    #can
    {
        width: 100%;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 50px;
        border: solid 4px #F1ACB4;
        border-radius: 6px;
        box-shadow:0 6px 6px rgba(0, 0, 0, 0.25);
    }

    .keyconfig
    {
        border: solid 2px white;
    }

}