@charset "UTF-8";

/* ==========================================================================
   サイトマップ用スタイル (njm_sitemap.css)
   ========================================================================== */


/* ==========================================
   1. サイトマップ・グリッドレイアウト
   ========================================== */
/* グリッドコンテナ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

/* カテゴリカード */
.sitemap-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* カード内タイトル */
.sitemap-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #004d00;
  border-bottom: 2px solid #004d00;
  padding-bottom: 10px;
  margin-bottom: 18px;
}


/* ==========================================
   2. リンク一目リスト
   ========================================== */
/* リンク外枠リスト */
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各リンク行 */
.sitemap-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

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

/* リンク行頭アイコン（矢印） */
.sitemap-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: #16a34a;
  font-weight: bold;
  font-size: 1.2rem;
}

/* リンクテキスト */
.sitemap-list a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.2s;
}

/* リンクテキスト（ホバー時） */
.sitemap-list a:hover {
  color: #004d00;
  text-decoration: underline;
}


/* ==========================================
   3. レスポンシブ調整
   ========================================== */
/* タブレット・小画面サイズ（768px以下） */
@media screen and (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sitemap-card {
    padding: 20px;
  }
}

