/* サイトマップ全体（パネル表示） */
.sitemap {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 998;
  transition: right 0.6s ease;
  overflow-y: auto;
  padding: 80px 24px 40px; /* 上はヘッダー分 */
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

/* パネルを開いた状態 */
.sitemap.panelactive {
  right: 0;
}

/* サイトマップ内コンテンツ */
.sitemap-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.sitemap-section {
  margin-bottom: 32px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 16px;
}

.sitemap-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sitemap-section li {
  margin: 8px 0;
  font-size: 1.4rem;
}

.sitemap-section li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.sitemap-section li a:hover {
  color: #E67E22;
}

/* 日本語・英語表示 */
.text-ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
}

.text-en {
  display: block;
  font-size: 1.1rem;
  color: #888;
}
