@charset "utf-8";

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

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

/* 見出し */
.title {
	margin: 3px 0 3px 0;
	color: #ff7f50;
	font-size: 1.4rem;
}

.naka {
	margin: 3px 0 3px 0;
	color: #d2b48c;
	font-size: 0.9rem;
}

/* ========== ボタン ========== */
.btn-border {
  display: inline-block;
  max-width: 180px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  border: 2px solid #ff4500;
  background-color: #ff4500;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 14px 6px 14px;
  border-radius: 4px;
  transition: .4s;
}

.btn-border:hover {
  background-color: #fff;
  border-color: #ff4500;
  color: #ff4500;
}

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

@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 #c5de93;
	border-width: 1px;
}
.navbar a {
	display: block;
	padding: 0.6rem 0;
	color: #fff;
	text-decoration: none;
}
.navbar a:hover {
	color: #241309;
	background: #c5de93;
}

/* ========== 漫画ブロック ========== */
.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: #ed8c1f;
	font-size: 0.8em;
	width: auto;
	height: auto;
}
.item img{
	max-width: 100%;
	height: auto;
	border: 1px solid #ccc;
}
.item {
	position: relative;
	z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
}

/* ========== 漫画ブロックリスト ========== */
.comic_list ul {
	list-style-type: none;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
}
.comic_list li {
	width: calc(50% - 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);
}

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

/* ========== 章ブロックリスト ========== */
.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 img{
	max-width: 100%;
}

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


.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;
	}
}
