@charset "UTF-8";

/* ==========================================
   サイトマップ ヒーローセクション
   ========================================== */
.sitemap-hero {
  width: 100%;
  padding: 0;
  /* 方眼紙風グリッド背景 */
  background-color: #fafafa;
  background-image:
    linear-gradient(#ececec 1px, transparent 1px),
    linear-gradient(90deg, #ececec 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-container {
  max-width: 100%;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   サイトマップ リストセクション
   ========================================== */
.sitemap-section {
  padding: 80px 20px 120px;
  background-color: #ffffff;
}

.sitemap-container {
  max-width: 500px;
  margin: 0 auto;
}

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

.sitemap-list li {
  margin-bottom: 24px;
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 20px;
}

.sitemap-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sitemap-list a {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sitemap-list a:hover {
  opacity: 0.7;
}

/* 左側の黄色い縦線（見出しアクセント） */
.map-en {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  font-family: 'Poppins', sans-serif;
  width: 220px;
  flex-shrink: 0;
  padding-left: 14px;
}

.map-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 1.1rem;
  background-color: #fbd038; /* 黄色のアクセントカラー */
}

/* 右側の日本語説明文 */
.map-ja {
  font-size: 0.95rem;
  color: #666666;
  font-weight: 400;
}

/* ==========================================
   レスポンシブ対応（スマホ・タブレット）
   ========================================== */
@media (max-width: 768px) {
  .sitemap-hero {
    padding: 50px 20px;
  }

  .hero-title .en {
    font-size: 2rem;
  }

  .sitemap-section {
    padding: 50px 20px 80px;
  }

  .sitemap-list a {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-en {
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.1rem;
  }

  .map-ja {
    padding-left: 14px; /* 日本語部分も左アクセントに合わせる */
    font-size: 0.85rem;
  }
}
