/* =========================================
   ベース設定
========================================= */

/* 全体リセット */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* html / body の基本 */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100dvh;
    background: #000;
    font-family: "Yu Gothic", "Segoe UI", sans-serif;
    color: #fff;
}

#tourFrame {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
    transform: translateZ(0);
}