/* 小説目次ページ用 */

/* ボディ */
BODY{
  background-color : #E9EDF2;
  color :#000000;
}
/* 全体のボックス */
.main{
  background-color : #FBFBFB;
  border-radius: 10px;
  margin : auto;
  padding: 0.4rem 0.4rem; /* 上下・左右 */
  line-height : 1.8%;
  border-width : 0px;
  border-style : none;
  max-width : 40rem;
  text-align : left;
}
/* カウンター用 */
.counter{
  max-width : 200px;
  margin : 0 auto;
  text-align : center;
  background-color : #D0D0E7;
}
/* ページタイトル用ボックス */
.title{
  width : 95%;
  padding : 0.7rem;
  text-align : left;
  border-width : 0px;
  border-style : solid;
  border-color : #6200c4;
  margin : auto;
}
/* H1 ページタイトル用 */
H1{
  font-size: 1.2rem;
  font-weight : 500;
  margin-top : 1rem;
  text-align : left;
}
/* ページの内容説明 */
.guide{
  width : 95%;
  line-height : 1.8;
  padding : 0;
  text-align : left;
  margin : auto;
}

/* 偽テーブル */
.table {
  box-sizing: border-box;
  width: 100%;
  border: solid #330099;
  border-width: 1px 1px 0px 1px;
  margin : 0 auto 50px;
  line-height : 1.3;
  display:block;
}
.row {
  box-sizing: border-box;
  width: 100%;
  border : none;
  display: flex;
  flex-direction:column;
}
.row>div {
  display:block;
}
.row > div:nth-child(1) { /* 日付 */
  box-sizing: border-box;
  width: 100%;
  padding: 0.7rem 0.7rem 0.4rem 0.7rem;
  text-align:left;
  font-size : 0.9rem;
  border : none;
}
.row > div:nth-child(2) { /* タイトル＋ページリンク */
  box-sizing: border-box;
  width: 100%;
  padding: 1rem;
  border:solid #330099;
  border-width: 0px;
  text-align:left;
  font-size : 0.95rem;
  margin-bottom : 1rem;
  line-height : 2rem;
}
.row > div:nth-child(3){ /* 内容説明 */
  box-sizing: border-box;
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  border:solid #330099;
  border-width:  0px 0px 1px 0px;
  text-align:left;
  font-size : 0.95rem;
  line-height : 1.4;
}

span {
  font-size : 0.95rem;
  line-height : 1.3;
}
/* PC画面でのみ表示する要素 */
.pc {
	display:inline !important;
}
.sp {
	display:none! important;
}

/* スマホ画面でのみ表示する要素 */
@media screen and (max-width: 600px) {
.pc {
	display:none !important;
}
.sp {
	display:inline !important;
}
}
/* リンク  旧ホバー色#a2a2ff*/
A{
  color : #1A0DAB;
}
A:LINK{
  color : #1A0DAB;
}
A:VISITED{
  color : #666666;
}
A:HOVER{
  color : #f89172;
  text-decoration : none;
}
A[id]{
  color :#2e2e2e;
}
a.jump{
	display: block;
	padding-top: 20px;
	margin-top: -20px;
}
