@charset "UTF-8";

#logo {
	position: relative;
	top: 150px;
	width: 100%;
	text-align: center;
}

#logo img{
	width: 15%;
}

#logo_takumi {
	position: relative;
	top: 148px;
	width: 100%;
	text-align: center;
}

#logo_takumi img{
	width: 9%;
}

#title{
	position: relative;
	top: 150px;
	width: 100%;
	text-align: center;
}


.list{
	position: relative;
	top: 180px;
	text-align: center;
}
.list li{
	display: inline-block;
	margin: 20px;
	width: 120px;
	height: 120px;
}
.imgholder{
	position:relative;
	width:100px;
	height:100px;
	float:left;
	margin:40px 30px;
	border-radius:100px;
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
}

/* thumbnails style */
.imgholder figure{
	position:absolute;
	left:0;
	top:0;
	width:100px;
	height:100px;
	margin:0;
	overflow:hidden;
	border-radius:80px;
	-moz-border-radius:80px;
	-webkit-border-radius:80px;
}
.imgholder img{
	position:absolute;
	left:0;
	top:0px;
	width:100px;
	height:100px;
	z-index:5;
	border-radius:80px;
	-moz-border-radius:80px;
	-webkit-border-radius:80px;
	opacity:0;
	filter: alpha(opacity = 0);

	transform: scale(1.5,1.5);
	-ms-transform: scale(1.5,1.5);
	-moz-transform: scale(1.5,1.5);
	-webkit-transform: scale(1.5,1.5);

	transition:
		opacity 1s ease-in,
		transform 1.5s;
	-moz-transition:
		opacity 1s ease-in,
		-moz-transform 1.5s;
	-webkit-transition:
		opacity 1s ease-in,
		-webkit-transform 1.5s;
}
.imgholder:hover img{
	opacity:0.6;
	filter: alpha(opacity = 100);
	transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-webkit-transform: scale(1,1);
}
.imgholder figcaption{
	position:absolute;
	left:-5px;
	top:40%;
	width:110px;
	opacity:1;
	filter: alpha(opacity = 100);
	color:#888;
	font-weight:bold;
	text-shadow:-1px -1px 0 #fff;
	z-index:4;

	transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-webkit-transform: scale(1,1);

	transition:
		opacity 1s,
		transform 1s ease;
	-moz-transition:
		opacity 1s,
		-moz-transform 1s ease;
	-webkit-transition:
		opacity 1s,
		-webkit-transform 1s ease;
}
.imgholder:hover figcaption{
	opacity:0;
	filter: alpha(opacity = 0);
	transform: scale(1.5,1.5);
	-ms-transform: scale(1.5,1.5);
	-moz-transform: scale(1.5,1.5);
	-webkit-transform: scale(1.5,1.5);
}
/* decoration style */
.imgholder .circle{
	position:absolute;
	border-radius:80px;
	-moz-border-radius:80px;
	-webkit-border-radius:80px;
}
.imgholder .outer1{
	top:-8px;
	left:-8px;
	width:100px;
	height:100px;
	z-index:2;

	border:8px solid;
	border-color:rgba(254,18,13,0.1);
	box-shadow:0 0 3px rgba(254,18,13,0.2);
	-moz-box-shadow:0 0 3px rgba(254,18,13,0.2);
	-webkit-box-shadow:0 0 3px rgba(254,18,13,0.2);

	background: #ffffff;
	background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, rgba(254,18,13,0) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,rgba(254,18,13,0)));
	background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,rgba(254,18,13,0) 100%);
	background: -o-radial-gradient(center, ellipse cover, #ffffff 0%,rgba(254,18,13,0) 100%);
	background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,rgba(254,18,13,0) 100%);
	background: radial-gradient(center, ellipse cover, #ffffff 0%,rgba(254,18,13,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='rgba(254,18,13,0)',GradientType=1 );

	transition:
		box-shadow 1s ease-out,
		border-color 1.5s;
	-moz-transition:
		-moz-box-shadow 1s ease-out,
		border-color 1.5s;
	-webkit-transition:
		-webkit-box-shadow 1s ease-out,
		border-color 1.5s;
}
.imgholder:hover .outer1{
	border-color:rgba(254,18,13,0.3);
	box-shadow:0 0 10px rgba(254,18,13,0.2);
	-moz-box-shadow:0 0 10px rgba(254,18,13,0.2);
	-webkit-box-shadow:0 0 10px rgba(254,18,13,0.2);
}

.imgholder .outer2{
	top:-18px;
	left:-18px;
	width:116px;
	height:116px;
	z-index:1;

	border:10px solid;
	border-color: rgba(254,18,13,0.5);
	box-shadow:0 0 20px rgba(254,18,13,0.4);
	-moz-box-shadow:0 0 20px rgba(254,18,13,0.4);
	-webkit-box-shadow:0 0 20px rgba(254,18,13,0.4);
	opacity:0;
	filter: alpha(opacity = 0);

	transform: scale(1.3,1.3);
	-ms-transform: scale(1.3,1.3);
	-moz-transform: scale(1.3,1.3);
	-webkit-transform: scale(1.3,1.3);

	transition:
		opacity 1s ease 0.3s,
		transform 1s ease-out 0.3s;
	-moz-transition:
		opacity 1s ease 0.3s,
		-moz-transform 1s ease-out 0.3s;
	-webkit-transition:
		opacity 1s ease 0.3s,
		-webkit-transform 1s ease-out 0.3s;
}
.imgholder:hover .outer2{
	opacity:1;
	filter: alpha(opacity = 100);
	transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-webkit-transform: scale(1,1);
}
/******************************************************************************
 SmartPhone.
 ******************************************************************************/
@media screen and (max-width: 768px) {
	#logo img{
		width: 70%;
	}
}
