@charset "utf-8";
/* CSS Document */
.photo-wrap {
	position: relative;
	overflow: hidden;
}
	
a .photo-on {
	position: absolute;
	background: rgba(32, 32, 32, 0.7);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
a .photo-on .ico-plus {
	width: 40px;
	height: 40px;
	top: 50%;
	margin-top: -20px;
	position: relative;
	display: inline-block;
	z-index: 10;
}
a .photo-on .ico-plus:before, a .photo-on .ico-plus:after {
	position: absolute;
	content: "";
	display: inline-block;
	background: #999999;
	z-index: 10;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
a .photo-on .ico-plus:before {
	width: 40px;
	height: 1px;
	top: 50%;
	left: 0;
	margin-top: -1px;
}
a .photo-on .ico-plus:after {
	width: 1px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -1px;
}

a:hover .photo-on {
	opacity: 1;
}
a:hover .photo-on .ico-plus {
	animation: myspin .5s ease-out;
}

@keyframes myspin {
  0% {
	transform: rotate(180deg); }
  100% {
    transform: rotate(360deg); }
}

a:hover .photo-on .ico-plus:before, a:hover .photo-on .ico-plus:after {
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}
a:hover .photo-on .ico-plus:before {
	width: 40px;
	margin-top: -1px;
}
a:hover .photo-on .ico-plus:after {
	height: 40px;
	margin-left: -1px;
}
