@charset "utf-8";

html, body {
	font-size: 12px;
	font-family: sans-serif;
	color: #241309;
	background: #f6b894;
}

@media screen and (min-width: 768px) {
	html, body {
		font-size: 16px;
		font-family: sans-serif;
		color: #241309;
		background: #f6b894;
	}
}

/* 見出し */
.cam_h2 {
	padding-bottom: 5px;
	margin: 10px 0 10px 0;
	color: #241309;
	border-bottom: 1px dashed #241309;
	font-size: 1.3rem;
}

.cam_h3 {
	padding-bottom: 3px;
	margin: 15px 0 10px 0;
	color: #626262;
	border-bottom: 1px dashed #626262;
	font-size: 1.2rem;
}

.cam_h4 {
	padding-bottom: 3px;
	margin: 10px 0 10px 0;
	color: #626262;
	font-size: 1.0rem;
}

.cap_top {
	padding-bottom: 3px;
	margin: 5px 0 10px 0;
	color: #626262;
	font-size: 1.4rem;
}

/* ========== メインエリア基本レイアウト ========== */
main {
	padding-top: 0px;
	padding-bottom: 50px;
	background: #f6b894;
}

@media screen and (min-width: 767px) {
	main {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* ========== ナビゲーション ========== */
.cam_nav {
	background: #241309;
	flex-wrap: wrap;
	justify-content:flex-start;
}
.navbar {
	display: flex !important;
}
.navbar li {
	flex: 1 1 auto;
	text-align: center;
	border-style: solid;
	border-color: #241309 #f6b894;
	border-width: 1px;
}
.navbar a {
	display: block;
	padding: 0.6rem 0;
	color: #fff;
	text-decoration: none;
}
.navbar a:hover {
	color: #241309;
	background: #f6b894;
}

/* ========== 漫画ブロック ========== */
.item {
	padding: 0.5em;
	background-color: #fff;
}
.item h3 {
	margin: 0.1em 0 0.1em 0;
	font-size: 1.1em;
}
.item .story {
	font-size: 1.0em;
}
.item .data {
	font-size: 0.8em;
}
.item .new {
	color: #fff;
	background: #f6b894;
	font-size: 0.8em;
	width: auto;
	height: auto;
}
.item img{
	max-width: 100%;
	height: auto;
	border: 1px solid #ccc;
	image-rendering: -webkit-optimize-contrast;
}
.item .y_button{
	margin: auto 1em 1em auto;
}
.item {
	position: relative;
	z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
}
.item a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent:-999px;
	z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}
.item a:hover {
	background-color:rgba(255,255,255,0.5);
}

/* ========== 漫画ブロックリスト ========== */
.comic_list ul {
	list-style-type: none;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
}
.comic_list li {
	width: calc(33.3% - 10px);
	padding: 0.1em;
	margin: 0.2em;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
	background-color: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
}
.comic_list a {
	text-decoration: none;
}

/*メディアクエリ*/
@media all and (max-width: 480px) {
	.comic_list li{
		width: calc(50% - 6px);
	}
	.comic_list .y_button{
		margin: auto 0.5em 0.7em auto;
	}
}
@media all and (max-width: 320px) {
	.comic_list li{
		width: calc(50% - 5px);
	}
}

/* ========== 章ブロックリスト ========== */
.chapter_list ul {
	list-style-type: none;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
}
.chapter_list li {
	width: calc(50% - 10px);
	padding: 0em;
	margin: 0.1em;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
	background-color: #fff;
	list-style-position: inside;
	line-height: 0;
}
}
.chapter_list a {
	text-decoration: none;
}

.chapter_list img{
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

/*メディアクエリ*/
@media all and (max-width: 480px) {
	.chapter_list li{
		width: calc(50% - 6px);
	}
	.chapter_list .y_button{
		margin: auto 0.1em 0.1em auto;
	}
}
@media all and (max-width: 320px) {
	.chapter_list li{
		width: calc(50% - 5px);
	}
}

/* ========== キャラクター紹介 ========== */
.chara_list ul {
	list-style-type: none;
	width: 100%;
	padding: 0px;
}
.chara_list li {
	border-radius: 10px;
	width: 100%;
	margin: 0 0em 1em 0;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	position:relative;
}
.chara_list img {
	width: auto;
	height: auto;
	border-radius: 10px;
	image-rendering: -webkit-optimize-contrast;
}
.chara_block {
	border-radius: 10px;
	width: 100%;
	background-color: #fff;
}
.caption {
	// スマホ
	width: 100%;
	font-size: 12px;
	padding: 0.7em;
}
.caption .h4 {
	padding-bottom: 0px;
	margin: 2px 0 2px 0;
	font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
	.caption {
		z-index: 3;
		width: 65%;
		position:absolute;
		top: 16%;
		right: 10px;
		font-size: 14px;
		padding: 0.7em;
		background-color:rgba(255,255,255,0.7);
	}
}

.caption2 {
	// スマホ
	width: 100%;
	font-size: 12px;
	padding: 0.7em;
}
.caption2 .h4 {
	padding-bottom: 0px;
	margin: 2px 0 2px 0;
	font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
	.caption2 {
		z-index: 3;
		width: 65%;
		position:absolute;
		top: 0;
		right: 10px;
		font-size: 14px;
		padding: 0.7em;
		background-color:rgba(255,255,255,0.7);
	}
	.height_auto {
		clear: both;
		height: 70px;
	}
	
	.height_auto2 {
		clear: both;
		height: 100px;
	}
}