

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.memo {
  color: #a08a81;/*文字色*/
  font-weight: bold;
  padding: 0 0.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  border-left: 7px dotted #a08a81;
  background-color: #ffffff;
  outline: 3px solid #a08a81;
  outline-offset: 0.5em;
  position: relative;
}
.memo::after {
  content: '';
  position: absolute;
  right: calc(-0.5em - 3px);
  top: calc(-0.5em - 3px);
  border-width: 0 20px 20px 0;
  border-style: solid;
  border-color: #815a5a #fff #815a5a;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.line {
  color: #a08a81;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #a08a81;
}


h3 {
  margin-bottom: 5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


body {
  margin-left: 30px;
  margin-bottom: 35px;
  line-height: 1.8;
  font-size: 14px;
  color: #333;
  max-width: 90%
}

.mein {
  margin-left: 10px;
  margin-bottom: 35px;
  line-height: 1.8;
  font-size: 14px;
  color: #333;
  max-width:100%
}

.mein2 {
  margin-left: 30px;
}

.template{
  font-family: 'Noto Sans JP', sans-serif; /* 読みやすい日本語フォント */
  color: #9b3f28;                          /* 落ち着いたテキストカラー */
  font-size: 12px;                         /* 基本文字サイズ */
  margin-bottom: 30;
}




/* ――――――――――――――――例題のCSS―――――――――――――――― */
.example-box {
  border: 1px dashed #a08a81;
  background-color: #e7e1dd;
  padding: 0.6em 1em;
  /* margin: 1em 0; */
  font-size: 0.9em;
  line-height: 1.4;
  border-radius: 4px;
  max-width: 800px;  /* ← テーブルと同じに */
  width: 100%;
  margin-left: 3em;  /*段落を揃えた*/
  margin-bottom: 0em;  /*段落を揃えた*/
}

li + .example-box {
  margin-top: 0.3em;  /* ← この行がポイント */
  margin-bottom: 0em;  /*段落を揃えた*/

}
.example-box ul {
  list-style-type: disc;
  padding-left: 2em;
  margin-bottom: 0em;  /*段落を揃えた*/

}

ul{
margin-bottom: 0;

}

ol{
margin-bottom: 0;

}

/* ――――――――――――――――テーブルのCSSS―――――――――――――――― */

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  margin: 1em 0;
  font-size: 15px;
  background-color: #f9f7f5; /* ほんのりベージュ */
  color: #3a2d2d;
  border: 1px solid #a08a81; /* くすみ茶系 */
}

th, td {
  border: 1px solid #d5bfb3;
  padding: 6px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background-color: #eae3df; /* 少し濃いめで見出し感 */
  font-weight: bold;
}

tr:nth-child(even) td {
  background-color: #f4efec; /* 偶数行を淡く変えて見やすく */
}

/* ――――――――――――――――キャラシ画像のCSSS―――――――――――――――― */



.charactersheet {
  display: block;
  margin-left: 40px;       /* 上下余白 & 中央寄せ */
  width: 90%;              /* レスポンシブに対応 */
  max-width: 800px;        /* 最大幅の制限 */
  border-radius: 8px;      /* 角を少し丸く */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* ソフトな影 */
}



a:link {
  color: #b98141; /* 通常のリンク色 */
}

a:visited {
  color: #5a3e3e; /* 訪問済みリンク色 */
}

a:hover {
  color: #b75a5a; /* マウスホバー時の色 */
  text-decoration: underline;
}

a:active {
  color: #bb1818; /* クリック中の色 */
}
