@charset "UTF-8";
/* CSS Document */
#MangaArea {
	display: block;
	width: 91.66%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.MangaBlock {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: column;
	gap: 1em;
	width: 54.545%;
	margin: 0 auto;
}
#DLBlock {
	display: block;
	width: 100%;
	border: solid 1px #0071ce;
}
#DLBlock h2 {
	margin: 0;
	padding: 0.25em;
	text-align: center;
	color: #ffffff;
	background-color: #0071ce;
}
#DLBlock #DLbadge {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	gap: 2em;
}
#DLBlock #DLbadge img {
	height: 3em;
	width: auto;
}
/*タブレット*/
@media screen and (min-width:768px) and (max-width:1199px) {}
/*スマホ*/
@media screen and (max-width: 767px) {
	@media screen and (max-aspect-ratio: 11/10) {
		/* 縦向きの場合のスタイル */
		.MangaBlock {
			width: 90%;
		}
	}
	@media screen and (min-aspect-ratio: 11/10) {
		/* 横向きの場合のスタイル */
	}
}

#ReadFinishBtn {
	margin: 0 auto;
	width: 15em;
	height: 3em;
	text-align: center;
	align-content: center;
	color: #ffffff;
	line-height: 100%;
	background-color: #6aaae4;
	padding: 0.5em 2em;
	border-radius: 50px;
	cursor: pointer;
	user-select: none;
}

#ReadFinishBtn.disabled {
	background-color: gray;
	cursor: default;
	white-space: pre-line;
}

#ReadFinishBtn.disabled::after {
	content: '(ポイント付与済み)';
}

#MangaProductName {
	position: relative;
	top: -3em;
	width: 100%;
	font-size: .5em;
	text-align: right;
}

#Paging {
	width: 90%;
	margin: 0 auto;
}

#Paging-Prev {
	text-align: left;
}

#Paging-Next {
	text-align: right;
}

#Paging a {
	width: 10em;
	text-align: center;
}
