/* =========================================
   File: common.css
   Purpose: 全画面共通のスタイル
   Author: やぎさん
   Created: 2026-04-30：style.css から分割
   Updated: （なし）

   Notes:
   - 共通スタイルは common.css / layout.css を使用
   - ゲームUIは game.css に分離
========================================= */

/* =========================
   共通（全ページ）
========================= */
/* ページ全体の基本スタイル（余白・フォント・背景） */
body {
    margin: 0;
    font-family: sans-serif;
    text-align: center;
    background: #fffdf8;
}

/* 共通見出しの基本余白（必要に応じて各ページで上書き） */
h1 {
    margin: 1px 0;
}

/* 警告モーダル */
.warning-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.warning-box {
    background: white;
    padding: 24px;
    border-radius: 16px;

    width: 80%;
    max-width: 320px;

    text-align: center;
}

.warning-box h2 {
    margin-bottom: 16px;
}

.warning-box p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.warning-box button {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;

    background: #ff9800;
    color: white;

    font-size: 16px;
}

.hidden {
    display: none;
}

.menu-icon {
    font-size: 24px;
    font-weight: bold;
}


/* =====================
    PC表示時の共通調整（ロゴサイズなど）
===================== */
@media (min-width: 768px) {
    .app-logo {
        width: 95px;
    }
}