  /* ===== CATEGORY SECTION ===== */
  #category {
    background-color: #f3f9ff; /* 明るい青系背景 */
    border: 2px solid #d1e7ff; /* 柔らかい青色の枠線 */
    border-radius: 10px; /* 角を丸くして柔らかい印象に */
    padding: 20px; /* 内側の余白を増加 */
    margin: 20px 0; /* セクション間のマージンを増加 */
  }
  
  #category_section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 各要素の間隔を広げる */
  }
  
  #category_nav {
    background-color: #eaf4ff; /* ナビ部分を淡いブルーで区切り */
    border: 1px solid #c2dfff;
    border-radius: 5px;
    padding: 15px; /* 内側の余白を増加 */
    margin-bottom: 20px; /* 下にスペースを追加 */
  }
  
  .category_title_text {
    padding-left: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #007acc; /* 明るい青色 */
  }
  
  /* ===== SITEMAP SECTION ===== */
  #sitemap {
    background: linear-gradient(135deg, #f0faff, #ffffff); /* 柔らかいグラデーション背景 */
    border: 2px solid #d1e7ff;
    border-radius: 10px;
    padding: 30px; /* 内側の余白を増加 */
    margin: 40px 0; /* 上下のマージンを広げる */
  }
  
  #sitemap_section {
    margin-top: 30px; /* 上の余白を増やす */
  }
  
  #sitemap_nav {
    overflow: scroll;
    height: 500px;
    background-color: #ffffff; /* 白背景で明確に */
    border: 1px solid #c2dfff;
    border-radius: 5px;
    padding: 15px; /* 内側の余白を調整 */
    margin-top: 20px; /* ナビ部分の間隔を広げる */
  }
  
  .title_text {
    font-size: 1.5em;
    font-weight: bold;
    color: #007acc;
    border-bottom: double 5px #FFC778; /* 明るいオレンジでアクセント */
    margin-bottom: 20px; /* タイトルと内容の間隔を広げる */
  }
  
  /* Sitemap title styles */
  .sitemap_title {
    padding: 10px;
    padding-left: 20px;
    font-size: 1.3em;
    color: #007acc;
  }
  
  /* ===== DETAIL SECTION ===== */
  .detail_text {
    position: relative;
    padding: 1.5em; /* 内側の余白を増加 */
    margin-bottom: 40px; /* セクション間の余白を広げる */
    background: #e6f7ff; /* 淡い水色背景 */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* シャドウを強調 */
  }
  
  .detail_text:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e6f7ff; /* 矢印と背景を同じ色に */
    width: 0;
    height: 0;
  }
  
  .detail_description {
    padding: 1.5em; /* 内側の余白を増加 */
    background: #f0faff; /* さらに柔らかい青系背景 */
    border: 1px solid #c2dfff;
    border-radius: 10px;
    margin-bottom: 30px; /* 各説明間の余白を追加 */
  }
  
  .detail_description h1, .detail_description h2, .detail_description h3,
  .detail_description h4, .detail_description h5, .detail_description h6 {
    color: #007acc; /* 明るい青で統一 */
    margin-bottom: 15px; /* ヘッダー下に余白を追加 */
  }
  
  .detail_description p {
    color: #333; /* 見やすい濃いグレー */
    padding: 15px 0; /* 上下の余白を増加 */
    line-height: 1.8; /* 行間を広げて読みやすく */
  }
  
  /* ===== SAMPLE SECTION ===== */
  div.sample_text,
  pre.sample_code {
    font-size: 18px;
    background-color: #d1e7ff; /* 明るいブルー */
    color: #333; /* 見やすい文字色 */
    border: 1px solid #007acc;
    border-radius: 10px;
    padding: 20px;
    overflow: auto;
    margin-bottom: 30px; /* サンプル間に余白を追加 */
  }
  
  /* ===== CATEGORY NAVIGATION TITLE ===== */
  .category_nav_title {
    display: inline-block;
    width: 200px;
    height: 100px;
    background-color: #e0f7fa; /* 明るい水色 */
    border: 2px solid #c2dfff;
    border-radius: 10px;
    text-align: center;
    line-height: 100px;
    color: #007acc;
    font-weight: bold;
    margin-bottom: 20px; /* 各タイトル間に余白を追加 */
  }
  
  /* ===== NEWS TITLE ===== */
  .news_title_text {
    font-size: 1.4em;
    color: #007acc;
    border-bottom: double 5px #00aaff; /* VRoidぽい明るいブルーでアクセント */
    margin-bottom: 30px; /* タイトルと内容の間隔を広げる */
  }
  