@charset "UTF-8";

.panorama {
	position: absolute;
	z-index: 10;
	width: 500px;
	border: 2px solid #000;
	border-radius: 5px;
	left: 50%;
	top: -8px;
	background-color: #fff;
	box-shadow: 0px 0px 5px 2px rgba(170, 170, 170, 0.43);
	margin: 0 0 0 -208px;
	display: none;
}

.panorama_inner {
	padding: 55px 34px 30px;
}

.panorama_closeButton {
	background-color: #444;
	border: 1px solid #ccc;
	position: absolute;
	z-index: 1;
	right: 15px;
	top: 12px;
	width: 36px;
	line-height: 34px;
	background-image: -moz-linear-gradient(rgb(255, 255, 255) 0%, rgb(238, 238, 238) 100%);
	background-image: -webkit-gradient(linear, color-stop(0, rgb(255, 255, 255)), color-stop(1, rgb(238, 238, 238)));
	background-image: -webkit-linear-gradient(rgb(255, 255, 255) 0%, rgb(238, 238, 238) 100%);
	background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(238, 238, 238) 100%);
	text-align: center;
	border-radius: 50%;
	font-size: 15px;
	height: 36px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.panorama_closeButton:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.panorama_closeButton .icon {}

/* タブレット以下設定 */
@media screen and (max-width:999px) {
	.panorama {
		width: 96%;
		left: 2%;
		margin-left: 0;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.panorama_inner {
		padding: 15px 10px 20px;
	}

	.panorama_closeButton {
		top: -19px;
		right: -14px;
	}
}