body {
	padding: 50px;
	font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
	color: #00B7FF;
}

.font14px {
	font-size: 14px;
}

.font12px {
	font-size: 12px;
}

.font10px {
	font-size: 10px;
}

.font9px {
	font-size: 9px;
}

.font8px {
	font-size: 8px;
}

#drop_area {
	border: 5px dashed #000000;
	padding: 50px;
	margin: 10px;
	font-size: 22px;
	color: #000000;
	background-color: #ffffff;
	text-align: center;
}

#preview {
	overflow: hidden;
}

#preview img {
	width: 100px;
	float: left;
	margin: 10px;
	cursor: move;
}

.wsi_thumbnail {
	background-color: #ddddddc7;
	width: 6em;
	height: 6em;
	margin: 0.5em;
	padding: 0;
	position: relative;
}

.pdf_thumbnail {
	background-color: #fcfcfc;
	width: 6em;
	height: 6em;
	margin: 0.5em;
	padding: 0;
	position: relative;
}

.wsi_thumbnail img,
.pdf_thumbnail img {
	margin: 0px;
	padding: 0px;
	width: 6em;
	height: 6em;
	object-fit: cover;
	cursor: pointer;
}

.wsi_inside {
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	color: #fff;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.5);
	/* 背景色（透明度を調整できます） */
	border-radius: 5px;
	padding: 5px;
	font-size: 0.75em;
}

.pdf_inside {
	position: absolute;
	top: 5;
	left: 5;
	right: 5;
	bottom: 5;
	margin: auto;
	color: #fff;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.5);
	/* 背景色（透明度を調整できます） */
	border-radius: 5px;
	padding: 5px;
	font-size: 0.75em;
}

.divider:after,
.divider:before {
	content: "";
	flex: 1;
	height: 1px;
	background: #eee;
}

img {
	font-weight: 300;
    cursor: pointer;
}

.wsi_thumbnail:before {
	content: "";
	margin-top: 1em;
	display: block;
	background-color: rgb(230, 230, 230);
}

ul.pagination {
	margin-top: 10px;
}


/*　bootstrapからの変更　*/
input[type="text"]:not(:disabled),
input[type="number"]:not(:disabled),
input[type="email"]:not(:disabled),
input[type="date"]:not(:disabled),
input[type="password"]:not(:disabled),
textarea:not(:disabled),
select:not(:disabled) {
	background-color: #f6f6f6 !important;
}


.custom-checkbox .form-check-input {
	background-color: #ffffff;
	/* 初期状態の背景を白 */
	border: 1px solid #6c757d;
	/* 灰色のボーダー */
	width: 1rem;
	/* サイズ調整 */
	height: 1rem;
	/* サイズ調整 */
}

.custom-checkbox .form-check-input:checked {
	background-color: #000000;
	/* チェック状態の背景を黒 */
	border-color: #000000;
	/* ボーダーも黒 */
	color: #ffffff;
	/* チェックマークの色を白 */
}

.custom-checkbox .form-check-input:checked::before {
	display: inline-block;
	color: #ffffff;
	/* チェックマークの色を白 */
	text-align: center;
	line-height: 1rem;
}

.custom-checkbox .form-check-label {
	margin-left: 10px;
	/* チェックボックスとラベルの間隔 */
	color: #000000;
	/* ラベルの初期色 */
}