.flex-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.x {
    flex: 1 1 1px;
    width: auto !important;
}

.guest-room-button.copilot-button,
.facility-button.copilot-button {
	color: #fff;
	cursor: pointer;
}

.pas-element-list {
    width: 320px;
    height: 100%;
    background-color: #ddd;
	display: none;
	flex-direction: column;
	font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif !important;
}

.pas-element-list-header {
	background-color: #fff;
	height: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.pas-element-list-label {
	margin-left: 12px;
	font-size: 14px;
	flex: 1 1 1px;
}

.pas-element-list-close-button {
    width: 32px;
	height: 32px;
	margin-right: 4px;
	cursor: pointer;
	transition: 0.5s;
	text-align: center;
}

.pas-element-list-close-button:hover {
    color: #6283D0;
}

.pas-element-list-close-button > i {
	line-height: 32px;
}

.pas-element-list-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 1px;
	overflow-y: auto;
	padding: 12px 0px;
}

.pas-element-card {
	margin: 0px 12px;
	padding: 12px;
	border-radius: 16px;
	background-color: #fff;
	text-align: center;
	border: 3px solid #fff;
	transition: 0.5s;
}

.pas-element-card:hover {
	cursor: pointer;
	border: 3px solid #027ff6;
}

.pas-element-image img { 
	width: 100%;
	border-radius: 12px;
}

.pas-element-name {
	margin-top: 8px;
	font-size: 14px;
}

.pas-element-description {
	margin-top: 8px;
	font-size: 12px;
	text-align: left;
	line-height: 150%;
}

/* タブレット用 */
@media screen and (orientation: portrait) and (min-width: 600px) and (max-width: 1024px) {
    .pas-element-list {
        position: absolute;
        right: 0;
        height: 70%;
		border-radius: 10px;
    }
}

/* スマホ用 */
@media screen and (max-width: 480px) {
	.pas-element-list {
		position: absolute;
		left: 0;
		top: 0px;
		width: 100%;
		height: 100%;
		border-radius: 0px;
	}
}