@charset "utf-8";
/*--------------------------------------------------
*
*   Game
*
*--------------------------------------------------*/
#game-container {

}

/*--------------------------------------------------
*
*   Game
*
*--------------------------------------------------*/
#game-container {
    position:relative;
    width:100%;
    height:100%;
}

#game-container button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none; /* Safari/古いiOS用 */
    -moz-appearance: none;    /* Firefox用 */
    outline: none;
}

#game-character {
    position:relative;
}

/*--------------------------------------------------
*   title
*--------------------------------------------------*/
#game-scene-title-container {
    height: 100%;
    z-index: 4000;
}

#game-scene-title-container > .game-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#game-scene-title-container #game-scene-title-button {
    position: absolute;
    bottom: 24%;
    right: 0;
    left: 0;
    width: 70%;
    padding: 10px;
    border-radius: 6px;
    margin: 0 auto;
    text-align: center;
    font-size: 200%;
    font-weight: bold;
    background-color: rgba(0,0,0,0.3);
    color: #FFF;
}

#game-scene-title-container #game-scene-title-bg {
    height: 100%;
}

#game-scene-title-container img {
    width: 100%;
}

/*--------------------------------------------------
*  button view
*--------------------------------------------------*/
#game-flag-button-container {
    z-index: 2000;
}

#game-flag-button-container .game-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------
*    game
*--------------------------------------------------*/
#game-touch-number-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #FFF;
}
#game-touch-number-container > .game-inner {
    position:relative;
    width: 100%;
    height: 100%;
}
.game-number-rect {
    position: absolute;
    display: table;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: #555;
    font-size: 125%;
    font-weight: bold;
    color:#FFF;
    cursor: pointer;
}
.game-number-rect p {
    display: table-cell;
    vertical-align: middle;
}
