/* ===== ヘッダー固定（レイアウト変更禁止）===== */
.vol-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  /* 横幅制限なし、左右端に押し出す */
  .vol-header-inner {
    width: 100%;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
  
  /* ===== ロゴ ===== */
  .vol-logo {
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    max-width: 70%;
  }
  
  /* ===== ログアウトボタン ===== */
  .vol-logout-button {
    background: none;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  
  .vol-logout-button:hover {
    background: #f0f0f0;
    color: #000;
    border-color: #999;
  }
  
  /* ===== メインコンテンツ（高さ補正なし）===== */
  main {
    padding-top: 72px;
    padding-bottom: 16px;
    box-sizing: border-box;
  }
  
  /* ===== フッター（自然に表示）===== */
  .vol-footer {
    width: 100%;
    padding: 10px 0;
    background: none;
    box-shadow: none;
    text-align: center;
  }
  
  .vol-footer-inner {
    font-size: 14px;
    color: #acacac;
  }
  
  /* ✅ フッターリンクは常にアンダーライン、色は継承 */
  .vol-footer a {
    color: inherit;
    text-decoration: underline;
  }
  
  /* ===== モバイル対応 ===== */
  @media (max-width: 630px) {
    .vol-logo {
      height: 48px;
      max-width: 70%;
    }
  
    .vol-logout-button {
      font-size: 12px;
      padding: 6px 12px;
    }
  
    .vol-footer-inner {
      font-size: 13px;
    }
  }
  