body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { position: fixed; width: 100%; height: 100% }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
/*
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
*/
/* Now Loading のテキスト */
#unity-loading-text {
    text-align: center; /* 中央揃え */
    font-family: Arial, sans-serif; /* フォント */
    color: #ffffff; /* 文字色 */
    font-weight: bold;
    font-size: large;
    margin-top: 5px; /* 外枠との間隔 */
}
#unity-progress-bar-empty { 
    width: 80%; /* 全体幅 */
    height: 30px; /* 高さ */
    background-color: white; /* 背景色（外枠） */
    border: 4px solid white; /* 枠線 */
    border-radius: 99px; /* 丸み */
    overflow: hidden; /* 子要素が丸枠を超えないように */
    position: relative; /* テキストとのレイアウト調整のため */
    margin: 10px auto; /* 中央揃え */
}
#unity-progress-bar-full {
    height: 100%; /* 外枠に合わせる */
    background-color: rgb(0, 0, 37); /* 中身の色 */
    transition: width 0.5s ease; /* スムーズなアニメーション */
    width: 0%;
}
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { cursor:pointer; float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
/* Unityの画面をウィンドウ全体に拡げる */
#unity-container, #unity-canvas {
    width: 100%;
    height: 100%;
}

/* フッターのロゴ等を隠す */
#unity-footer {
    display: none;
}

/* 縦スクロールバーを隠す */
body {
    overflow: hidden;
}
/* 閉じるボタン hoverとactiveでスタイル変更 */
img.close-btn {
    position: absolute;
    top: 7.5%;
    right: 1.5%;
    transform: translate(-50%, -50%);
    width: 3%;
    z-index: 102;
    transition: all 0.3s ease;
}
img.close-btn:hover {
    filter: brightness(0.8);
}
img.close-btn:active {
    filter: brightness(0.6);
}
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 101;
}
.video-overlay.museum {
    background-color: rgba(0, 0, 0, 0.5);
}
.video-overlay.intro {
    background-color: rgb(0, 0, 0);
}
video.museum {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 102;
}
