/*-----------------------------------------------------*/
/*                  スマートフォン向け                  */
/*-----------------------------------------------------*/
@media screen and (max-width: 2400px) {
    html {
        font-size: 10.5px;
    }

    a:link {
        text-decoration: none;
        color: #E6E6FA;
    }

    body {
        background-color: #111111;
        color: #FFFFFF;
    }

    .game-button {
        text-align: center;
        border-radius: 10px;
    }
    .game-display {
        border: 0.1px color(srgb red green blue);
        width: 400px;
        height: 550px;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    h2 {
        font-size: 1rem;
        color: #ffffff;
        padding: 0.1rem 0rem;
        margin-top: 0rem;
        margin-bottom: 0.3rem;
        font-weight: 100;
        text-align: center;
        overflow: hidden;
        background: linear-gradient(45deg, #777, #000, #777);
    }

    h3 {
        font-size: 1rem;
        color: #ffffff;
        padding: 0.3rem 0rem;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
        font-weight: 100;
        text-align: center;
        background: linear-gradient(45deg, #777, #000, #777);
    }

    .links {
        background-color: #111111;
        padding-bottom: 1rem;
        font-size: 1rem;
        text-align: center;
    }

    .link-button {
        width: 9rem;
        height: 1.2rem;
        display: inline-block;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        border: 1.5px solid #eeeeee;
        color: #eeeeee;
        border-radius: 0rem;
        transition: all 0.3s ease;
        padding: 0.5rem 0rem;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }

    .center {
        text-align: center;
    }
}
  
/*-----------------------------------------------------*/
/*                   タブレット向け                     */
/*-----------------------------------------------------*/
/*@media screen and (min-width: 0px) and (max-width: 1px) {*/
/*}*/
  
/*-----------------------------------------------------*/
/*                   デスクトップ向け                   */
/*-----------------------------------------------------*/
@media screen and (min-width: 1201px) {
    html {
        font-size: 16px;
    }

    a:link {
        text-decoration: none;
        color: #E6E6FA;
    }

    body {
        background-color: #111111;
        color: #FFFFFF;
    }

    .game-display {
        border: 1px solid #dddddd;
        width: 400px;
        height: 550px;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    h2 {
        font-size: 1.5rem;
        color: #ffffff;
        padding: 0.3rem 0rem;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
        font-weight: 100;
        text-align: center;
        overflow: hidden;
        background: linear-gradient(45deg, #777, #000, #777);
    }

    h3 {
        font-size: 1.5rem;
        color: #ffffff;
        padding: 0.3rem 0rem;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
        font-weight: 100;
        text-align: center;
        background: linear-gradient(45deg, #777, #000, #777);
    }

    .links {
        background-color: #111111;
        padding-bottom: 1rem;
        font-size: 1rem;
        text-align: center;
    }

    .link-button {
        width: 9rem;
        height: 1.2rem;
        display: inline-block;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        border: 1.5px solid #eeeeee;
        color: #eeeeee;
        border-radius: 0rem;
        transition: all 0.3s ease;
        padding: 0.5rem 0rem;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }

    .center {
        text-align: center;
    }
}