.popup-menu {
	padding: 0.5em 1em;
	background: #fff;
	border: solid 3px #0065B5;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
	transition: opacity .5s ease, transform .5s ease;
}

.popup-menu.hidden {
	opacity: 0;
}

.popup-menu-list li{
	padding:10px 10px;
	text-align:left;
}
.popup-menu-list li + li{
	border-top:1px dotted #DDD;
}
.popup-menu-list li a{
	padding: 6px 0 6px 13px;
    background: url(../images/ico_arrow03.png) left center no-repeat scroll transparent;
    background-size: 5px 9px;
    font-weight: bold;
	font-size:15px;
	color:#000000;
}


/* Mobile */
@media screen and (max-width: 768px) {
	#g-reservation-popup {
		position: fixed;
		bottom: 56px;
		left: 10px;
		transform-origin: 50% 100%;
		min-width:60%;
	}
	#g-reservation-popup.hidden {
		transform: scaleY(0);
	}
	#g-reservation-popup:not(.hidden) {
		transform: scaleY(1);
		z-index:10002;
	}
}

/* Desktop */
@media screen and (min-width: 769px) {
	#g-reservation-popup {
		position: fixed;
		right: 45px;
		top: 160px;
		transform-origin: 100% 50%;
	}
	#g-reservation-popup.hidden {
		transform: scaleX(0);
	}
	#g-reservation-popup:not(.hidden) {
		transform: scaleX(1);
		z-index:10002;
	}
}
