.vt-wrap{
	position:relative;
	width:100%;
	margin:0 auto;
	background:#000;
	overflow:hidden;
}

.vt-viewer{
	width:100%;
	height:80vh;
	min-height:600px;
	background:#000;
}

@media (max-width:767px){
	.vt-viewer{
		height:70vh;
		min-height:500px;
	}
}

.vt-loading{
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(0,0,0,.85);
	color:#fff;
	font-size:15px;
	z-index:999;
}

/* ---------- ホットスポット ---------- */

.vt-hotspot{
	width:64px;
	height:64px;
	cursor:pointer;
	transform:translate(-50%,-50%);
}

.vt-hotspot-inner{
	width:64px;
	height:64px;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
	transition:transform .2s ease;
}

.vt-hotspot-inner:hover{
	transform:scale(1.15);
}

/* 前 */

.vt-dir-forward .vt-hotspot-inner{
	background-image:url("../icons/front.png");
}

/* 後 */

.vt-dir-back .vt-hotspot-inner{
	background-image:url("../icons/back.png");
}

/* 左 */

.vt-dir-left .vt-hotspot-inner{
	background-image:url("../icons/left.png");
}

/* 右 */

.vt-dir-right .vt-hotspot-inner{
	background-image:url("../icons/right.png");
}

/* ---------- Pannellum ---------- */

.pnlm-container{
	background:#000 !important;
}

.pnlm-about-msg{
	display:none !important;
}

.pnlm-about-msg a{
	display:none !important;
}

/* ズームボタン */

.pnlm-zoom-controls{
	z-index:999;
}

/* 全画面ボタン */

.pnlm-fullscreen-toggle-button{
	z-index:999;
}