@charset "utf-8";

html {
  background-color: #ffc400;    /* 背景色 */
}
/* ボディ全体 */
body {
  margin: 5% 5%;                /* 左右の外側の余白 */
  margin-top: 21%;               /* 上の余白 */
  margin-bottom: 0%;
  padding: 0px;                 /* 内側の余白 */
  background-color: white;    /* ボディの背景色 */
}
/* ヘッダー */
#header {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);    /* ヘッダーの影 */
  z-index: 99;                                       /* ヘッダーの要素の重なり順を指定上部に */
  width: 100%;                                       /* ヘッダーの幅画面幅いっぱい */
  position: fixed;                                   /* メニューを上部に固定スクロールしてもくっついてくる */
  top: 0;                                            /* ヘッダー上を画面にくっ付ける */
  left: 0;                                           /* ヘッダーの枠を左いっぱいに */
  background: white;                               /* ヘッダーの色 */
}

main{
  margin-top: 5%;
}

footer a{
  text-decoration: none;
}

li{
  list-style: none;   /* リストのコロン消去 */
}

/*見出しタグ*/
h1 {
  position: relative;
  background: #dfefff;
  box-shadow: 0px 0px 0px 5px #dfefff;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  color: #454545;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

h2 {
  padding: 0.5em;/*文字周りの余白*/
  color:purple;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

h3 {
  padding: 0.5em 0.5em;/*上下 左右の余白*/
  color: orange;/*文字色*/
  background:white;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  border-bottom: double 6px #FFC778;
}

h4 {
  padding: 0.5em 0.5em;/*上下 左右の余白*/
  border-bottom: solid 2px #FFC778;
  color: orange;/*文字色*/
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

/*目次*/
#toc_container {
  background: #f1f8ff;
  box-shadow: 0px 0px 0px 10px #f1f8ff;/*線の外側*/
  border: dashed 2px #668ad8;/*破線*/
  border-radius: 9px;
  margin-left: 10px;/*はみ出ないように調整*/
  margin-right: 10px;/*はみ出ないように調整*/
  padding: 0.5em 0.5em 0.5em 2em;
}
.toc_title {
  font-weight: 700;
  text-align: center;
}

#toc_container li, #toc_container ul, #toc_container ul li{
  list-style-position: outside;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 0;
}

/*マーカー*/
.marker_line_red { 
  background:linear-gradient(transparent 0%, #fec1fe 0%);
}

.marker_line_yellow { 
  background:linear-gradient(transparent 0%, #ffff00 0%);
}

.marker_line_blue { 
  background:linear-gradient(transparent 0%, #00d2ff 0%);
}

.marker_line_green { 
  background:linear-gradient(transparent 0%, #3cff00 0%);
}

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
table th, table td {
  border: solid 2px rgb(80, 255, 246);
  background-color: rgb(189, 251, 255);;
  text-align: center;
}


