@charset "shift_jis";
/* ------------------------------------------------
 パスワード認証
------------------------------------------------ */
/* 認証モーダル */
#modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 10;
}

#auth-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #CCCCCC;
	border-radius: 10px;
	padding: 25px;
	background-color: #FFFFFF;
	max-width: 320px;
	width: 80%;
	z-index: 11;
	text-align: center;
}

#modal-close-btn {
	position: absolute;
	top: 2px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	color: #000000;
}

#auth-form #password {
	width: 100%;
	padding: 8px;
	margin: 8px 0 15px 0;
	border: 1px solid #CCCCCC;
	font-size: 16px;
}

#auth-form .auth-btn {
	width: 100%;
	padding: 10px;
	background-color: #99e3ee;
	border-radius: 10px;
	cursor: pointer;
}

#auth-form #error-message {
	display: none;
	color: #FF0000;
	margin-top: 15px;
}
