/**
 * ログインポイント等 flash(key=point) 用トースト（レイアウトの流れを占有しない）
 */
.gp-flash-point-toast {
	position: fixed;
	top: 88px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10050;
	max-width: 520px;
	width: 92%;
	box-sizing: border-box;
	padding: 14px 18px;
	border-radius: 10px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
	border: 1px solid #c5e1c5;
	background: #f4faf4;
	color: #2d5a2d;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	transition: opacity 0.32s ease;
	pointer-events: none;
}
.gp-flash-point-toast .alert {
	margin: 0;
	border: none;
	background: transparent;
	padding: 0;
	color: inherit;
}
.gp-flash-point-toast.gp-flash-point-toast--hide {
	opacity: 0;
}
