/* explanations.php */
/* .explanations-home {
  background: #3f3f3f;
  justify-content: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
} */
 .explanations-home {
  background: #191e20;
  /* justify-content: center; (削除) */
  display: flex;
  /* flex-direction: column; */
  min-height: 100vh;
}


/* .explanations-contaner {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #202122;
  min-height: 600px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  flex-grow: 1;
} */
.explanations-contaner {
  /* padding-top: 120px; (変更) ↓ */
  /* padding-bottom: 120px; (変更) ↓ */
  /* background: #202122; (親ラッパーに移動) */
  /* min-height: 600px; (削除) */
  /* max-width: 1200px; (削除) → .explanations-main-content へ移動 */
  width: 100%;
  box-sizing: border-box;
  /* margin-left: auto; (削除) */
  /* margin-right: auto; (削除) */
  /* padding-left: 40px; (変更) ↓ */
  /* padding-right: 40px; (変更) ↓ */
  flex-grow: 1; /* サイドバー以外の幅をすべて取る */

  /* ↓ スクロールバーを適用 */
  overflow-y: auto;
  overflow-x: hidden;

  /* ↓ パディングをスクロール領域の内側に再設定 */
  padding: 40px 40px;
}

/* .explanations-main-content {
  background-color: #1a1a1a;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  padding: 2rem;
  color: #f0f0f0;
} */
 .explanations-main-content {
  background-color: #000000;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 0, 0.5); 
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  padding: 2rem;
  color: #f0f0f0;

  /* ↓ コンテンツ幅の制限をこちらに移動 */
  max-width: 1200px;
  margin: 0 auto;
}
.explanations-main-content h1 {
  font-size: 1.8em;
  font-weight: normal;
  color: rgb(0, 255, 0);
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
}
.explanations-main-content h2 {
  font-size: 1.5em;
  font-weight: normal;
  color: rgb(0, 255, 0);
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
  padding-bottom: 0.25em;
  margin-top: 1.3em;
  margin-bottom: 0.5em;
}
.explanations-main-content p,
.explanations-main-content ul li {
  line-height: 1.7;
  margin-bottom: 1em;
  color: #f0f0f0;
}
.explanations-main-content ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.explanations-main-content hr {
  border: none;
  border-top: 1px solid rgba(0, 255, 0, 0.3);
  margin: 1.5em 0;
}
