#otherBoxMain {
	position: fixed;
	z-index: 2000;
	background: #000 url(../images/loading.gif) no-repeat 50% 50%;
	border-radius: 1em;
	/*display: none;*/
	opacity: 0;
	transition: top 0.25s, left 0.25s, width 0.25s, height 0.25s, opacity 0.25s;
}
#otherBoxMain span {
	display: block;
	position: absolute;
	top: -0.8em;
	right: -0.8em;
	background: url(../images/icon_otherBox_close.svg) no-repeat 50% 50%;
	backgrund-size: 80% auto;
	color: #ccc;
	cursor: pointer;
	line-height: 1.8em;
	height: 2em;
	width: 2em;
	border-radius: 100%;
	border: 0px solid #fff;
	text-align: center;
	font-weight: bold;
	z-index: 3000;
}
/*
#otherBoxMain span:hover {
	background: #729868 url(../images/icon_otherBox_close.svg) no-repeat 50% 50%;
	backgrund-size: 80% auto;
	color: #fff;
	border-color: #fff;
}
*/
#otherBoxMain .otherBoxItem {
	border: 2px solid #fff;
	/*border-radius: 1em;*/
	width: 100%;
	height: auto;
	transition: width 0.25s, height 0.25s;
}
.otherBoxBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.75);
	/*display: none;*/
	opacity: 0;
	transition: opacity 0.25s;
}
.otherBoxMainBtn {
	position: absolute;
	top: calc(50% - 2em);
	height: 4em;
	width: 4em;
	/*min-width: 100px;*/
	border-radius: 1em;
	opacity: 0.75;
	z-index: 2500;
	transition: opacity 0.25s;
}
.otherBoxMainBtn:hover {
	opacity: 1;
	cursor: pointer;
}
.otherBoxMainBtn.next {
	right: 1em;
	background: rgba(255, 255, 255, 0.5) url(../img/next.png) no-repeat 50% 50%;
	background-size: 2em 2em;
/*	background-color: red;*/
}
.otherBoxMainBtn.back {
	left: 1em;
	background: blue;
	background: rgba(255, 255, 255, 0.5) url(../img/back.png) no-repeat 50% 50%;
	background-size: 2em 2em;
	/*background-color: red;*/
}
