@charset "UTF-8";
/*-----------------------------------------

	sitemap.css
			Page: サイトマップ
			create date: 2026-05

-----------------------------------------*/
.sitemap {
  max-width: 1100px;
  margin: 60px auto 0;
}
@media screen and (max-width: 840px) {
  .sitemap {
    margin-top: 40px;
  }
}
.sitemap {
  /* ---------- リード文 ---------- */
}
.sitemap-lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 840px) {
  .sitemap-lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.sitemap {
  /* ---------- セクション群 ---------- */
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
}
@media screen and (max-width: 840px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.sitemap {
  /* ---------- 各セクション ---------- */
}
.sitemap-section {
  box-sizing: border-box;
}
.sitemap-section.wide {
  grid-column: 1/-1;
}
.sitemap-section-tit {
  color: #fb6322;
  font-size: 22px;
  font-family: "Rodin M", sans-serif;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #fb6322;
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 840px) {
  .sitemap-section-tit {
    font-size: 19px;
  }
}
.sitemap-section-tit .en {
  font-family: "fontEnglish", sans-serif;
  font-size: 14px;
  color: #fb6322;
  letter-spacing: 0.1em;
  font-weight: normal;
}
.sitemap-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-section-item {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
  line-height: 1.6;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.sitemap-section-item:last-child {
  border-bottom: none;
}
.sitemap-section-item a {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.sitemap-section-item a::before {
  content: "›";
  color: #fb6322;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}
.sitemap-section-item a:hover {
  color: #fb6322;
  opacity: 1;
  transform: none;
}
.sitemap-section-item {
  /* インデント（子項目） */
}
.sitemap-section-item.child {
  padding-left: 22px;
  font-size: 14px;
}
.sitemap-section-item.child a::before {
  content: "└";
  color: #999;
  font-weight: normal;
}
