/* ページ共通クイックメニュー（天神III・小倉駅前と共通デザイン） */
.quick-actions {
	position: absolute;
	right: 0;
	top: 92px;
	width: 80px;
	z-index: 1100;
	background-color: #fff;
	border-left: 1px solid #ccc;
	text-align: center;
	transition: top .3s ease;
}

.quick-actions.is-fixed {
	position: fixed;
	top: 0;
}

.quick-actions ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.quick-actions li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.quick-actions a {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	box-sizing: border-box;
	padding: 1em 0 .5em;
	border-bottom: 1px solid #ccc;
	color: #917659;
	background-color: #fff;
	text-decoration: none;
	font-size: .9em;
	font-weight: bold;
	line-height: 1.4;
}

.quick-actions .reserve a {
	color: #fff;
	background-color: #f34235;
}

.quick-actions a::before {
	position: relative;
	display: block;
	font-family: 'Material Symbols Rounded';
	font-size: 22px;
	font-weight: normal;
	line-height: 1;
	transition: .3s;
}

.quick-actions .reserve a::before {
	content: '\efdf';
	color: #fff;
}

.quick-actions .contact a::before {
	content: '\e61d';
	color: #92775a;
}

.quick-actions .access a::before {
	content: '\e55e';
	color: #92775a;
}

@media screen and (max-width: 799px) {
	.quick-actions,
	.quick-actions.is-fixed {
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		width: 100%;
		z-index: 1200;
		border-top: 1px solid #ccc;
		border-left: 0;
		transition: none;
	}

	.quick-actions ul {
		flex-direction: row;
		flex-wrap: nowrap;
	}

	.quick-actions li {
		width: 33.333%;
	}

	.quick-actions a {
		width: 100%;
		height: 15vw;
		padding: 1vw 0 .5em;
		border-right: 1px solid #ccc;
		border-bottom: 0;
		font-size: 2.5vw;
	}

	.quick-actions li:last-child a {
		border-right: 0;
	}

	.quick-actions a::before {
		font-size: 5vw;
	}
}