@charset "utf-8";
/* CSS Document */

html{
	height:100vh;
	margin:0;
	padding:0;
}

body{
	background-color:#171717;
	font-family:serif;
	margin:0;
	padding:0;
	color: #B7B7B7;
	letter-spacing: 2px;
	line-height: 200%;
	font-size: 95%;
	width: 100vw;
	overflow-x: hidden;
}

img{
	width:100%;
}

p{
	margin-top: 2%;
	margin-bottom: 3%;
}

h2{
	border-bottom: 1px solid #9E9E9E;
	border-left: 5px solid #9E9E9E;
	padding-left: 1%;
	margin: 0;
	transition: 3s;
}

a{
	text-decoration: none;
	color: #B7B7B7;
	transition: 2s;
}

a:hover{
	color: #DBDBDB;
}


hr{
	background-color: #808080;
	border-color: #9E9E9E;
}


.firstInfo{
	border-left: 5px solid #808080;
	padding-left: 20px;
	margin-bottom: 7vh;
}

.suspectedA{
	transform: 3s;
}

.suspectedA:hover{
	color: #DBDBDB;
}

.position-fixed{
	position: fixed;
}

.mainIMG{
	float:left;
	height:100%;
	position:fixed;
}

.mainIMG img{
	height:100vh;
}

.main{
	float:left;
	padding:3% 3%;
	box-sizing:border-box;
	width:;
	margin-left: ;
}



/*-----------------------ロード画面-----------------------*/
.loading{
	width: 100%;
	height: 100vh;

	position: fixed;
	z-index: 9999;
	background-color: #171717;
	
	font-family: sans-serif;
	box-sizing: border-box;
	
	padding-top: 50vh;
	padding-bottom: -50vh;
	padding-left: 50vw;
	padding-right: -50vw;
}


/*-----------------------text-box-------------------------*/
.text-box{
	background-color:#252929;
	width:100%;
	box-sizing:border-box;
	padding:1% 5% 2%;
	color:#9F9F9F;
	height: ;
	margin-bottom: 5vh;

	word-break: keep-all;
	line-break: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;

}

.text-box ul{
	list-style: none;
	padding-left: 0;
}


/*-----------------------text-box-------------------------*/

.headline{
	font-weight:1000;
	font-size:150%;
	padding: 0;
	margin-top: 3%;
	margin-bottom: 1%;
}

/*-------------------float-----------------------------*/
.textBox-float-left{
	float: left;
}

.textBox-float-right{
	float: left;
	margin-left: 3%;
}

.clearfix::after{
	content: "";
	clear: both;
	display: block;
}


/*-----------------------クリック展開------------------------*/
.dropDown{
	display: none;
}

.clickText{
	cursor: pointer;
	color: #B7B7B7;
}



/*--キャラ紹介--*/
.charaIcon{
	width:15%;
	float: left;
	margin-right:4%;
	margin-left:-2%;
	margin-top: 2%;
	height: ;
}

/*--あらすじ--*/
.synopsis .text-box{
	width: 60%;
	box-sizing: border-box;
}

.synopsis .textBox-float-right{
	width: 40%;
	margin-left: 0;
	background-color: aliceblue;
	height: ;
	overflow: hidden;
	box-sizing: border-box;
}

.synopsis img{
	width: 120%;
	margin-top: ;	/*jsで指定中*/
	margin-left: ;	/*jsで指定中*/
	transition: 3s;
}


/*--小説リスト部分--*/
.novel ol{
	list-style-type: none;
}

.novel ol li{
	font-size: 120%;
	counter-increment: number;
	cursor: pointer;
	transition: 2s;
}

.novel ol li::before {
	content: "第"counter(number,cjk-ideographic)"章　";
	}

.publish a{
	text-decoration: underline;
}



/*----------------------------------スマホ-----------------------------------------------------*/
@media screen and (max-width:480px) {
	body,html{
		margin-top: 0;
		padding-top: 0;
	}

	.mainIMG{
		display: none;
		clear: both;
	}

	.loading{
		width: 100vw;
	}

	.main{
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}

	.firstInfo{
		border: 0;
		padding-bottom: 5vh;
		padding-top: 5vh;
		background-image: url(images/urer.png);
		background-position: 60% 23%;
		background-color: rgba(0, 0, 0, 0.4);
		background-blend-mode: darken;
	}
	
	h2{
		box-sizing: border-box;
		border-left: 0;
		padding-left: 3%;
	}







	/*あらすじ*/
	.synopsis .text-box{
		width: 100%;
	}
	
	.synopsis .textBox-float-right{
		display: none;
	}



	/*--キャラ紹介--*/
	.charaIcon{
		width:30%;
		text-align: left;
	}