.add-bookmark{
	background: forestgreen;
}

#view_block .add-bookmark{
	margin-left: 2rem;
}

#bookmark_block{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: white;
}
#bookmark_block_title{
	margin-top: 0;
	text-align: center;
}
#bookmark_close {
	/*
	position: absolute;
	top: 0;
	left: 0;
	*/
	font-size: 2rem;
	padding: 1rem;
}
#bookmark_close:hover {
	cursor: pointer;
}
#bookmark_wrap{
	width: calc(100% - 2rem);
	height: calc(100% - 8rem);
	margin: 0 auto;
	padding: 0.5rem;
	overflow-y: auto;
}
.bookmark_box{
	position: relative;
	display: flex;
	column-gap: 0.5rem;
	width: 100%;
	height: 150px;
	border: 1px solid #aaa;
	box-sizing: border-box;
/*	align-items: center; */
}
.bookmark_box:hover{
	cursor: pointer;
	background: aliceblue;
}
.bookmark_img{
	width: 25%;
	min-width: 150px;
	max-width: 360px;
	border-right: 1px solid #aaa;
}
.bookmark_body_box{
	flex: 1;
	overflow-y: hidden;
}
.bookmark_title{
	/*font-size: 150%;*/
	font-weight: bold;
}
.bookmark_del{
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
	font-size: large;
	font-weight: normal;
}
