/* ============================================================
   会員ボトムナビ（mp-bottom-nav）共通スタイル
   表サイト（ログイン中）と会員ページの両方で使用。
   ※ 元は /member/css/style.css にあったものを共通CSS化。
   ============================================================ */

.mp-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(15,15,20,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 0.5px solid var(--gold-border);
  display: flex;
  align-items: stretch;
  z-index: 90;
  padding-bottom: env(safe-area-inset-bottom);
}

.mp-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 2px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}

.mp-bottom-nav__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.mp-bottom-nav__item.is-active {
  color: var(--gold);
}

.mp-bottom-nav__item.is-active::before {
  transform: scaleX(1);
}

.mp-bottom-nav__icon { font-size: 2rem; line-height: 1; }

@media (min-width: 768px) {
  .mp-bottom-nav { display: none; }
}