/* 360度カメラ部屋ページ用CSS */

#panorama {
		width: 100%;
		max-height: 500px;
}
/* bottom nav */
#menu{
		position: absolute;
		bottom:0;
		left: calc(50% - 200px);
		width: 400px;
		padding: 15px 24px;
		background: rgba(0,0,0,0.3);
		box-sizing: border-box;
}
@media screen and (max-width:600px) {
	#menu{
		left: 0;
		width: 100%;
		padding: 9px 22px;
	}
}
#copy{
	position: absolute;
	right: 12px;
	bottom: 8px;
	font-size: 12px;
	line-height: 1.3;
	color: #fff;
	max-width: calc((100% - 450px) / 2);
}
@media screen and (max-width:600px) {
	#copy{
		left: 7px;
		right: auto;
		bottom: 62px;
		font-size: 9px;
		max-width: 100%;
	}
}
/* controller */
#controls {
		z-index: 2;
		text-align: center;
		width: 100%;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
}
.ctrl {
		width: 40px;
		height: 40px;
		border-radius: 20px;
		text-align: center;
		background: rgba(200, 200, 200, 0.2);
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
}
.ctrl:hover {
		background: rgba(200, 200, 200, 0.5);
}

/* thumbnail */
.thumbs {
	margin: 0 auto 15px;
	z-index: 2;
	list-style: none;
	display: flex;
	justify-content: center;
}
.thumbs li {
	width: 140px;
	text-align: center;
}
.thumbs li > a {
	display: inline-block;
	padding:3px
}
.thumbs li > a.active {
	border: 3px solid #fff;
	padding: 0;
}
.thumbs li > a > img {
	width: 120px;
	height: 60px;
	object-fit: cover;
	vertical-align: bottom;
}
.thumbs li > a:hover img {
	opacity: 0.65;
	cursor: pointer;
}

/* move scene */
.tour{
	width:50px;
	height: 50px;
	background: url(../images/panorama/ico_tour.png) no-repeat left top;
}

/* title */
.pnlm-panorama-info{
	bottom:auto;
	top: 6px;
	padding-right: 0;
}
.pnlm-title-box{
	font-size:16px;
	padding:6px 12px 2px;
}
.pnlm-title-box span{
	display: block;
	font-size: 80%;
}
@media screen and (max-width:600px) {
	.pnlm-panorama-info{
		top: 0;
		border-radius: 0;
		max-width: calc(100% - 90px);
	}
	.pnlm-title-box{
		font-size:12px;
		padding:5px 7px 2px;
	}
}

/* close button */
#btn_close{
		cursor: pointer;
		background: rgba(255,255,255,0.85);
		color: #333;
		line-height: 1.2;
		font-size: 12px;
		font-weight: bold;
		padding: 7px 10px 7px 24px;
		position: absolute;
		right: 10px;
		top: 10px;
		z-index: 9999;
		border-radius: 2px;
}
#btn_close::before, #btn_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 2px;
  height: 12px;
  background: #333;
}
#btn_close::before {
  transform: translate(-50%,-50%) rotate(45deg);
} 
#btn_close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (max-width:600px) {
	#btn_close{
		padding: 7px 10px 7px 24px;
		right: 6px;
		top: 6px;
	}
}