@charset "utf-8";
/* ----------------------------------------------------------------------------------------
* kf 読み込み完了まで操作を受け付けないようにするための記述
* ---------------------------------------------------------------------------------------- */

#loading_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* 半透明の背景 */
    z-index: 9999; /* 最前面に配置 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
}
