/* static/css/02_layout.css */
/*──────────────────────────────────────────────────────────────
  02_layout.css
  ・サイト全体の大まかな「枠組み」を定義
  ・ヘッダー固定／フッター固定
  ・コンテナ幅／グリッド／フレックス
──────────────────────────────────────────────────────────────*/

/* 1. 固定ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: var(--color-bg-white);
    z-index: var(--z-header);
    box-shadow: var(--shadow-sm);
  }
  
  /* 2. 固定フッター */
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: var(--z-header);
  }
  
  /* 3. ページ中央のコンテナ */
  .container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
    padding-top: var(--space-md);
    padding-bottom: var(--space-lg);
  }
  
  /* 4. 2カラムグリッド */
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  
  /* 5. フレックスセンター配置 */
  .flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* 6. スペースユーティリティ（例） */
  .mt-md { margin-top: var(--space-md); }
  .mb-md { margin-bottom: var(--space-md); }
  