@charset "UTF-8";
/* ------------------------------------------------------------
 * Hanbun Chapter Popup Cascading Style Sheets
 * first edition: 2020-03-12
 * -----------------------------------------------------------*/
header .chapter-popup {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	margin: 0;
	padding: 0.5em;
	text-align: center;
	background-color: #478384;
	color: #f8f8f4;
	z-index: 10001;
}

header .chapter-popup.show {
	display: block;
	transform-origin: left top;
	animation: show-blind 0.25s linear 1;
}

header .chapter-popup.hide {
	display: block;
	transform-origin: left top;
	animation: hide-blind 0.25s linear 1;
}
