@charset "utf-8";

/******************** play_manga ********************/
*, *:before, *:after {
	margin: 0;
	padding: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
body {
	color: #444;
	background: #fff;
	font-size: 15px;
	line-height: 150%;
	font-family: "Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	text-align: center;
}
a {
	color: #1ed6bb;
	text-decoration: none;
}
a:hover {
	color: #55e8d2;
}
h1,h2,h3,p,ol,ul,li,dl,dt,dd,table {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style-type: none;
	font-weight: normal;
}
table {
	line-height: 150%;
	border: 0;
}
td {
	vertical-align: top;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}
p {
	margin: 0;
}
p.spacer {
	margin-bottom: 10px;
}
p.spacer2 {
	margin-bottom: 20px;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.bold {
	font-weight: bold;
}
.small {
	font-size: 85%;
}
/******************** manga ********************/
div#target {
	text-align: center;
	z-index: 0;
}
div.navi {
	width: 320px;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	z-index: 1;
	position: relative;
	top: -20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.pre, p,next, p.page {
	width: 140px;
}
p.pre a, p.next a {
	display: block;
	width: 140px;
	height: 40px;
	line-height: 40px;
	background: #eee;
	border: 1px solid #000;
	color: #000;
	font-size: 20px;
	font-weight: bold;
}
p.pre a:hover, p.next a:hover {
	background: #999;
	color: #fff;
}
p.page {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #000;
	color: #fff;
	font-size: 20px;
	border: 1px solid #000;
}
/******************** movie ********************/
div.movie {
	width: 700px;
	margin: 0 auto;
	text-align: center;
}
video {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 50% 10%;
}
@media screen and (min-width: 320px) and (max-width: 650px){
div.movie {
	width: 98%;
	margin: 5px auto;
}
video {
	width: 100%;
	max-width: 620px;
}
}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
    background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#066));　/* Safari,Google Chrome用 */  
}

@media screen and (min-width: 320px) and (max-width: 650px){
}

