@charset "UTF-8";


/* ==========================================================================
   Top
============================================================================= */
.top-visualbtm{
	position: relative;
	height: 400px;
	background: url(../img/h-bgline.png) bottom repeat-x;
	overflow: hidden;
}
#top-visual {
	position: relative;
	height: 394px;
	background: url(../img/visual-bg.gif) center top;
	overflow: hidden;
}

#top-visual h1 {
	position: absolute;
	width: 260px;
	height: 260px;
	top: 69px;
	left: 50%;
	margin-left: -130px;
	text-indent: -9999px;
	overflow: hidden;
}

/* keyframes に任意の名前を付ける */
	-moz-animation-name: rotate1;
	-webkit-animation-name: rotate1;
	animation-name: rotate1;
	
 /* 1動作(ここでは1回転)あたりの秒数 */
	-moz-animation-duration: 12s;
	-webkit-animation-duration: 12s;
	animation-duration: 12s;
	
/* 動作の向き、初期値はnormal 、逆再生は alternate */
	-moz-animation-direction: normal;
	-webkit-animation-direction: normal;
	animation-direction: normal;
	
/* 動き方 linear, ease, easein, ease-out, ease-in-out */
	-moz-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	
/* 動作 (ここでは回転) の回数を数値で指定、無限ループは infinite */
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-moz-keyframes rotate1 {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(-360deg);
	}
}

@-webkit-keyframes rotate1 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(-360deg);
	}
}

@keyframes rotate1 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

#top-visual h1:after {
	position: absolute;
	display: block;
	content: '';
	width: 206px;
	height: 66px;
	top: 100px;
	left: 50px;
	background: url(../img/h-title.png) no-repeat;
	overflow: hidden;
	z-index: 30;
}

#top-contents {
	margin: 20px auto 0;
	width: 960px;
}

p.subttlIntro {
	text-align: center;
    margin: 50px 0 60px;
    font-weight: bold;
}

#top-index {
	padding: 0 75px 28px 87px;
	padding-bottom: 28px;
	background: url(../common/img/line-dotx.png) repeat-x center bottom;
}

#top-index li {
	float: left;
	margin-left: 12px;
	width: 150px;
	position: relative;
}

#top-index li:first-child {
	margin-left: 0;
}

#top-index li a {
	display: block;
	box-sizing: border-box;
	height: 150px;
	text-indent: -9999px;
	overflow: hidden;
	border-radius: 10px;
	border-style: solid;
	border-width: 0;
	background-repeat: no-repeat;
	background-position: center center;

	transition-property: border;
	-ms-ransition-property: border;
	transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
}

#top-index li a:hover {
	border-width: 6px;
}

#ti-engineer a {
	background-color: #88d60e;
	background-image: url(../img/nav_engineer.png);
	border-color: #c4eb87;
}

#ti-design a {
	background-color: #6e73c7;
	background-image: url(../img/nav_design.png);
	border-color: #b7b9e3;
}

#ti-sound a {
	background-color: #f4b800;
	background-image: url(../img/nav_sound.png);
	border-color: #fadc80;
}

#ti-planning a {
	background-color: #199be7;
	background-image: url(../img/nav_planning.png);
	border-color: #8ccdf3;
}

#ti-business a {
	background-color: #ff6190;
	background-image: url(../img/nav_business.png);
	border-color: #ffb0c8;
}

#ob-interview {
	padding: 40px;
}

#ob-interview p {
	float: left;
	width: 600px;
	line-height: 25px;
}

#top-note {
	padding: 20px 0 40px;
	font-size: 13px;
	text-align: center;
}


