@charset "utf-8";
/*--------------------------------------*/
/* kensin maincolor rgb(140,199,0)      */
/*--------------------------------------*/
html {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow-y: hidden;
}


body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	color: rgb(135,142,145);
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-text-size-adjust: none;
}

#container {
	/*min-width: 1024px;
	min-height: 581px;*/
	background-color: rgb(252, 252, 252);
	height: 100%;
	margin: 0 auto 0 auto;
	padding: 0;
	position: relative;
}

img{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;    
	pointer-events: none;
}
@media print {
    body { display: none }
}

/*--------------------------------------*/
/* ヘッダー ----------------------------*/
/*--------------------------------------*/
#header {
	height: 46px;
	width: 100%;
	margin: 0;
	padding: 0;
	/*background-color: rgb(46, 115, 194);*/ /* TODO NEW*/
	background-color: rgb(140, 199, 0);
}
#title {
	height: 34px;
	width: 250px;
}
#titleText {
	height: 34px;
	line-height: 34px;
	margin: 5px 0px 5px 20px;
	float: left;
	font-size: 16px;
	cursor: pointer;
	color: rgb(84, 84, 84); /* TODO NEW */
}

/*--------------------------------------*/
/* コントロールエリア--------------------*/
/*--------------------------------------*/
#control {
	height: 46px;
	width: 100%;
	margin: 0;
	padding: 0;
    display:flex;
    align-items: center;
}
#control svg {
	margin:5px 0px 5px 5px;
}
#control svg:hover {
	cursor:pointer
}
#control div {
	/* 上 | 右 | 下 | 左 */
	margin:5px 5px 5px 15px;
}
.pagenumber {
    border-radius: 8px;
    height: 24px;
    width: 36px;
    text-align: center;
    border: 1px solid rgb(135, 142, 145);
	margin-left: 10px;
}
#datetitle {
	font-size: 24px;
	margin-right: 10px;
}
#datetitles {
	display: none;
	font-size: 24px;
	margin-right: 10px;
	text-align: center;
}
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
	-webkit-appearance: none; 
	margin: 0; 
} 
input[type="number"] { 
	-moz-appearance:textfield; 
} 
/*--------------------------------------*/
/* ビューワーV----------------------------*/
/*--------------------------------------*/
#viewer {
    height:calc(100% - 92px);
    width:100%;
}
/*--------------------------------------*/
/* ビューワーR---------------------------*/
/*--------------------------------------*/
#pages {
	background: rgb(224, 224, 224);
	text-align: center;
    width:100%;
	height:calc(100% - 92px);
	overflow: auto;
}
.page {
	/*margin: 0px auto;*/
	margin-top: 0px;
	box-shadow: 0px 0px 5px #000;
  }

/*--------------------------------------*/
/* スマホ対策　--------------------------*/
/*--------------------------------------*/
@media (max-width: 767px) { 
	#header {
		background-color: rgb(255,255,255)!important;
		height:auto!important;
	}
	#title,#datetitle {
		display: none!important;
	}
	#datetitles {
		display: block!important;
		margin-right: none!important;
	}	
	#control div {
		/* 上 | 右 | 下 | 左 */
		margin:5px 5px 5px 5px!important;
	}	
	#zoomin,#zoomout,#last,#next,#previous,#first {
		width:36px;
		height:36px;
	}
	#control div:nth-child(2),#control div:nth-child(5) {
		display: none!important;
	}
	#nowpage,#maxpage {
		font-size:24px!important;
	}
	.pagenumber {
		height:36px!important;
		width:52px!important;
		margin-left: 0px;
	}
}

/* マスク */
#mask {
	display:none;
	width:100%;
	height:100%;
	background: rgba(255,255,255,0.8);
	z-index: 99;
   	position: absolute;
    top: 0px;
    left: 0px;
}
