/* 🌟 モバイルでのタップ遅延を完全に無効化 */
a, button {
  touch-action: manipulation;
}

/* 🌟 下部ナビゲーション（タブ）等を押した瞬間に、即座にフィードバック（色変化や沈み込み）を与える */
/* ※クラス名は実際のナビゲーションのクラスに合わせて調整してください */
.bottom-nav-item:active {
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.1s ease-out;
}

/* 🌟 Turbo Driveの読み込みプログレスバーをPWA環境向けに最適化 */
.turbo-progress-bar {
  height: 4px !important;            /* バーを太くして視認性を高める */
  background-color: #2589d0 !important; /* 飯マイルのブランドカラー（青） */
  
  /* iOS PWAのセーフエリア（ノッチ等の下）にプログレスバーを配置する */
  top: env(safe-area-inset-top, 0px) !important;
  z-index: 999999 !important;
}