@charset "utf-8";
/* CSS Document */
body {
            margin: 0;
            padding: 0px;
            background: #000;
            color: #fff;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100svh;
        }
        
        h1 {
            margin-bottom: 20px;
            text-align: center; position: relative; z-index: 1;
        }
        
        #canvas {
            border: 0px solid #333;
            background: #333;
            width: 100%; height: 100%; object-fit: contain;
        }
        
        .controls {
            margin-top: 0px;
            display: flex;
            gap: 10px;
            align-items: center; position: fixed; bottom: 0; left: 0; width: 100%; box-sizing: border-box; padding: 20px;
            display: flex;justify-content: center;
        }

#fps { display: none;}
        
        button {
           
        }
        
        button:hover {
            
        }
        
        button:disabled {
            
        }
        
        .info {
            margin-top: 10px;
            text-align: center;
            font-size: 14px;
            color: #aaa; display: none;
        }
        
        .scene-info {
            margin-top: 0;
            text-align: center;
            font-size: 2vw; padding: 2vw;
            color: #888; height: 4vw; overflow: hidden; display: none;
        }
        
        #center { position: fixed; top:50%; left: 50%; width: 100%; transform: translate(-50%,-50%); height: 100svh;}
 .controls {
        text-align: center;
        margin: 20px 0;
        padding: 20px;
        /*background: rgba(0, 0, 0, 0.1);*/
        border-radius: 10px;
    }
    
    .initial-controls {
        display: block;
    }
    
    .play-controls {
        display: none;
    }
    
    .play-controls.show {
        display: block;
    }
    
    button {
        padding: 0;
        margin: 0 10px;
        font-size: 16px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 80px; height: 80px; background-position: center; background-repeat: no-repeat; background-size: 60px; background-color: transparent; text-indent: -9999px;
    }
    
    #testVoiceBtn {
       /* background-image:url("../img/app.svg"); background-repeat: no-repeat;*/ text-indent: 0; color: #FFF; width: auto; height: auto; padding: 1em 2em; background-color: rgba(255,255,255,.2); border-radius: .3em;
    }
    
    #testVoiceBtn:hover {
        
    }
    
    #playBtn {
        background-image: url("../img/play.svg"); background-repeat: no-repeat;
    }
    
    #playBtn:hover {
        
    }
    
    #stopBtn {
        background-image: url("../img/pause.svg"); background-repeat: no-repeat;
    }
    
    #stopBtn:hover {
        
    }
    
    button:disabled {
        display: none;
    }
    
    .status-message {
        margin: 10px 0;
        padding: 10px;
        border-radius: 5px;
        font-weight: bold;
        display: none!important;
    }
    
    .status-initial {
        background: #e3f2fd;
        color: #1976d2;
        border: 1px solid #2196f3;
    }
    
    .status-ready {
        background: #e8f5e8;
        color: #2e7d32;
        border: 1px solid #4caf50;
        display: none;
    }

    /* ローディング表示用スタイル */
    .loading-container {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
        padding: 20px;
        /*background: rgba(0, 0, 0, 0.3);*/
        border-radius: 10px;
        /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid #fff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 15px;
    }

    .loading-text {
        color: #fff;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

@media (orientation: landscape) {
 
}


