/* twdocs.css */

/* 全体のレイアウト */
.container {
  max-width: 800px;         /* 適度な横幅に制限 */
  margin: 0 auto;           /* ブラウザ中央配置 */
  padding: 20px;
  text-align: left;         /* 左詰め */
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  color: #333;              /* 文字色を落ち着いたダークグレーに */
  line-height: 1.8;         /* 行間を広めにとって読みやすく */
  background-color: #fff;
}

/* 見出しスタイル */
h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
  border-left: 5px solid #007ACC; /* 左側にアクセントライン */
  padding-left: 10px;
}

h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #007ACC;
  border-bottom: 1px solid #ccc;  /* 下にうっすら区切り線 */
  padding-bottom: 5px;
}

/* 段落やリストのベーススタイル */
p {
  margin: 1em 0;
  text-align: justify;  /* 両端揃えにしたい場合は変更 */
}

ul, ol {
  margin: 1em 0 1em 2em;   /* リストマーカーを多少インデント */
  padding-left: 0;         /* 余計なパディングをリセット */
}

li {
  margin-bottom: 0.5em;    /* リストアイテム間の間隔 */
}

/* テーブルがある場合のデザイン（必要に応じて） */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

th, td {
  border: 1px solid #ccc;
  padding: 0.8em;
  text-align: left;
}

/* 最終更新日の表記 */
.last-updated {
  font-size: 0.9rem;
  color: #666;
  margin-top: 2em;
  text-align: right;  /* 右寄せにしてアクセント */
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
}
