/**
 * サイトメニュー専用スタイル
 *
 * @package G-FANS
 * @since 12.0.0
 */

/* ========================================
   ページコンテナ
======================================== */
.site-menu-page .page-container {
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
  background: #f5f5f5;
}

/* ========================================
   メニューセクション
======================================== */
.menu-section {
  margin-bottom: 2rem;
}

.menu-section:last-child {
  margin-bottom: 0;
}

/* セクションタイトル */
.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #666;
  padding: 1.5rem 2rem;
  background: #f5f5f5;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-title i {
  font-size: 1.6rem;
  color: #999;
}

/* ========================================
   メニューリスト
======================================== */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid #e6e6e6;
}

.menu-list li {
  border-bottom: 1px solid #e6e6e6;
}

.menu-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  color: #222;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.2s;
}

.menu-list li a:hover {
  background-color: #f9f9f9;
}

.menu-list li a i.fa-chevron-right {
  color: #ccc;
  font-size: 1.4rem;
}
