/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999999999;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}
#cboxWrapper {
	max-width: none;
}
#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
	clear: left;
}
#cboxContent {
	position: relative;
}
#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#cboxTitle {
	margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
	cursor: pointer;
}
.cboxPhoto {
	float: left;
	margin: auto;
	border: 0;
	display: block;
	max-width: none;
	-ms-interpolation-mode: bicubic;
}
.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
}
/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
/* モーダルの背景色 */
#cboxOverlay {
	background: rgba(255,255,255,0.99);
	/*opacity: 0.95;
	filter: alpha(opacity=95);*/
}
#mov #cboxOverlay {
	background: rgba(255,255,255,1.0);
	/*opacity: 0.95;
	filter: alpha(opacity=95);*/
}
#colorbox {
	outline: 0;
}
#cboxContent {
	margin-top: 20px;
	background: #fff;
}
/* 読み込み時側の背景色 */
.cboxIframe {
	background: #fff;
}
#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}
#cboxLoadedContent {
	border: 0px solid #fff;
	background: #000;
}
/* 枠の線 */
#cboxTitle {
	position: absolute;
	top: -20px;
	left: 0;
	color: #ccc;
}
#cboxCurrent {
	position: absolute;
	top: -20px;
	right: 0px;
	color: #ccc;
}
/*
#cboxLoadingGraphic {
	background: url(../../recruit/common/images/loading.gif) no-repeat center center;
}
*/
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	width: auto;
	background: none;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
	outline: 0;
}
#cboxSlideshow {
	position: absolute;
	top: -20px;
	right: 90px;
	color: #fff;
}

#cboxPrevious {
	position: absolute;
	z-index: 10;
	top: 0;
	left: -35px;
	margin-top: 200px;
	background: url("../../recruit/images/icn_back.png") no-repeat top left;
	background-size: 16px auto;
	background-position: center;
	width: 100px;
	height: 100px;
	text-indent: -9999px;
	background-color: #3c65c9;
	border-radius: 50vh;
	transition: 0.5s;
	box-shadow: 3px 3px 3px 2px rgba(0,0,0,0.1);
}
#cboxPrevious:hover {
	background-position: center left 36px;
	background-color: #7693d9;
}
@media screen and (max-width: 768px) {
	#cboxPrevious {
		width: 45px;
		height: 45px;
		background-size: 8px auto;
		left: -10px;
	}
	#cboxPrevious:hover {
		background-position: center;
	}
}

#cboxNext {
	position: absolute;
	z-index: 10;
	top: 50%;
	right: -35px;
	margin-top: 200px;
	background: url("../../recruit/images/icn_back.png") no-repeat top left;
	transform: scale(-1, 1);
	background-size: 16px auto;
	background-position: center;
	width: 100px;
	height: 100px;
	text-indent: -9999px;
	background-color: #3c65c9;
	border-radius: 50vh;
	transition: 0.5s;
	box-shadow: -3px 3px 3px 2px rgba(0,0,0,0.1);
}
#cboxNext:hover {
	background-position: center left 36px;
	background-color: #7693d9;
}
@media screen and (max-width: 768px) {
	#cboxNext {
		width: 45px;
		height: 45px;
		background-size: 8px auto;
		right: -10px;
	}
	#cboxNext:hover {
		background-position: center;
	}
}

/*クローズボタン */
#cboxClose {
	position: absolute;
	top: -50px !important;
	right: 0px;
	display: block;
	background: url("../images/close.png") no-repeat center;
	background-size: 80px auto;
	width: 100px;
	height: 50px;
	text-indent: -9999px;
	background-color: #fff;
	transition: 0.5s;
}
/*ムービー クローズボタン */
#mov #cboxClose {
	top: -50px !important;
	background-color: rgba(255,255,255,0.00);
}
@media screen and (max-width: 768px) {
	#cboxClose {
		background-size: 60px auto;
		top: 5px !important;
		right: 5px;
	}
}
#cboxClose:hover {
	opacity: 0.4;
}

#cboxLoadedContent {
	background: #fff;
}
#cboxLoadedContent {
	padding: 0;
	overflow: auto;
	-moz-box-shadow: 0px 1px 5px #000000;
	-webkit-box-shadow: 0px 1px 5px #000000;
	box-shadow: 0px 1px 5px #ccc;
	
	/*border-radius: 5px;*/
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose, #cboxTitle {
	top: -30px;
}
#colorbox, #cboxOverlay, #cboxWrapper {
	overflow: visible;
}
#cboxTitle {
	color: #fff;
}